From c23a642d1e5ddd47bca5ce20094c6b44805b7139 Mon Sep 17 00:00:00 2001
From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com>
Date: Tue, 9 Jul 2024 01:16:04 +0530
Subject: [PATCH 1/8] Create README.md
---
Term Deposit Prediction/README.md | 237 ++++++++++++++++++++++++++++++
1 file changed, 237 insertions(+)
create mode 100644 Term Deposit Prediction/README.md
diff --git a/Term Deposit Prediction/README.md b/Term Deposit Prediction/README.md
new file mode 100644
index 000000000..de99c8ae2
--- /dev/null
+++ b/Term Deposit Prediction/README.md
@@ -0,0 +1,237 @@
+## Term Deposit Campaign Analysis and Classification
+
+---
+
+### ๐ฏ **Goal**
+
+The goal of this project is to analyze a bank marketing campaign dataset and build various machine learning models to predict the success of the campaign. We aim to understand the characteristics of the clients who responded positively and identify patterns that can help improve future marketing strategies.
+
+
+### ๐งพ **Description**
+
+This project involves:
+1. Data cleaning and preprocessing.
+2. Exploratory Data Analysis (EDA) to uncover insights and patterns.
+3. Building and evaluating multiple machine learning models.
+4. Comparing model performance based on key metrics.
+
+### ๐ **Repo Structure**
+
+```bash
+
+Term Deposit Prediction
+|- Dataset
+ |- dataset.csv
+ |- README.md
+|- Images
+ |- img1.png
+ |- img2.png
+ :
+ :
+ |- README.md
+|- Models
+ |- Notebook.ipynb
+ |- README.md
+|- requirements.txt
+
+```
+
+
+### ๐งฎ **What I had done!**
+
+1. **Data Cleaning**: Replaced 'unknown' values with NaN and dropped rows with missing values.
+2. **EDA**: Conducted visual and statistical analysis to understand the distribution and relationships of features.
+3. **Feature Engineering**: Encoded categorical features and scaled numerical features.
+4. **Model Training**: Trained and evaluated several machine learning models
+
+
+### ๐ **Models Implemented**
+
+- Random Forest
+- Decision Tree
+- k-Nearest Neighbors (KNN)
+- XGBoost
+- AdaBoost
+- Logistic Regression
+- Naive Bayes
+- Support Vector Classifier (SVC)
+
+
+### ๐ **Libraries Needed**
+
+- `numpy`
+- `pandas`
+- `seaborn`
+- `matplotlib`
+- `plotly`
+- `scikit-learn`
+
+
+### ๐ **Exploratory Data Analysis Results**
+
+1. **Age Distribution**:
+ - Most clients are in the age range of 30-40 years.
+ - Age distribution is visualized using a pie chart.
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/2c7fae04-f030-4e9c-b3e3-e621390a6d2d)
+
+
+2. **Job Distribution**:
+ - The most common job types are blue-collar, management, and technician.
+ - Job distribution is visualized using a bar chart.
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/b0d6a595-40c0-46f5-9b2f-3b2ac2728097)
+
+
+3. **Education Level**:
+ - Most clients have a university degree, followed by high school education.
+ - Education distribution is visualized using a bar chart.
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/11d9f16c-7233-4e3d-b7d4-21e387123f92)
+
+
+4. **Loan Status**:
+ - Majority of clients do not have personal loans, housing loans, or defaults.
+ - Loan status distribution is visualized using a pie chart.
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/a14127e0-d8fc-4b78-a9ad-9d573d0ef489)
+
+
+5. **Marital Status**:
+ - Most clients are married, followed by single and divorced.
+ - Marital status distribution is visualized using a pie chart.
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/2de201d4-a4d4-4d4a-8b39-587068057977)
+
+
+6. **Contact Type**:
+ - The preferred contact type is cellular.
+ - Contact type distribution is visualized using a histogram.
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/e6de612d-8229-4aef-93f3-2abcd6ce78a7)
+
+
+7. **Call Duration**:
+ - Total call duration peaks in certain months and days of the week.
+ - Call duration by month and day is visualized using line charts.
+
+
+
+
+
+
+
+8. **### Addressing Class Imbalance in the Target Variable Distribution**
+
+ - The histogram shows a significant class imbalance in the target variable 'y', with the 'no' class having approximately 27,000 instances and the 'yes' class having only 3,859 instances.
+ - This imbalance indicates that the dataset is heavily skewed towards the 'no' class, which can lead to biased model performance if not addressed properly.
+
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/f2e9ed95-fc66-4ca2-8d55-9ce712ee439b)
+
+ - Adjusting Class Weights: In models that support it, I adjusted the class weights to give more importance to the minority class during training.
+ - Evaluation Metrics: Focused on metrics that are sensitive to class imbalance, such as precision, recall, and the F1 score, rather than just accuracy.
+
+9. **Correlation Analysis**:
+ - Heatmap reveals the correlation between numerical features.
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/2b5505c4-b4c4-4a43-bfe0-87065db6f15a)
+
+
+### ๐ **Performance of the Models based on the Accuracy Scores**
+
+
+
+
+
+ Model
+ Accuracy
+ Precision
+ Recall
+ F1 Score
+
+
+
+
+ Random Forest
+ 87.40%
+ 0.50
+ 0.87
+ 0.64
+
+
+ Decision Tree
+ 88.22%
+ 0.54
+ 0.52
+ 0.53
+
+
+ KNN
+ 89.07%
+ 0.61
+ 0.39
+ 0.47
+
+
+ XGBoost
+ 90.11%
+ 0.63
+ 0.54
+ 0.58
+
+
+ Adaboost
+ 89.98%
+ 0.68
+ 0.40
+ 0.50
+
+
+ Logistic Regression
+ 89.95%
+ 0.67
+ 0.41
+ 0.51
+
+
+ Naive Bayes
+ 82.98%
+ 0.39
+ 0.57
+ 0.46
+
+
+ SVC
+ 89.69%
+ 0.67
+ 0.37
+ 0.48
+
+
+
+
+
+
+![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/8ecf69f4-e2da-4ead-8683-0ce3c14ad324)
+
+### ๐ข **Conclusion**
+
+- The XGBoost model achieved the highest accuracy and F1 score, making it the best-performing model in this study.
+- The exploratory data analysis provided valuable insights into client demographics and behavior patterns.
+- The findings from this project can help in optimizing future marketing campaigns and improving client targeting strategies.
+
+
+### โ๏ธ **Signature**
+
+
+
+
+
+ Kamalakar Satapathi
+
+
+
+Connect with me on [![LinkedIn](https://img.shields.io/badge/-Kamalakar_Satapathi-0077B5?style=flat-square&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/sgvkamalakar)
+
+Explore my codes [![GitHub](https://img.shields.io/badge/-Sgvkamalakar-181717?style=flat-square&logo=github)](https://github.com/sgvkamalakar)
From f2be2014daea3db64d8007e5d16570e6147e688b Mon Sep 17 00:00:00 2001
From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com>
Date: Tue, 9 Jul 2024 01:16:41 +0530
Subject: [PATCH 2/8] Create requirements.txt
---
Term Deposit Prediction/requirements.txt | 7 +++++++
1 file changed, 7 insertions(+)
create mode 100644 Term Deposit Prediction/requirements.txt
diff --git a/Term Deposit Prediction/requirements.txt b/Term Deposit Prediction/requirements.txt
new file mode 100644
index 000000000..e1d5d0825
--- /dev/null
+++ b/Term Deposit Prediction/requirements.txt
@@ -0,0 +1,7 @@
+numpy
+pandas
+seaborn
+matplotlib
+plotly
+scikit-learn
+xgboost
From cfe6613a65164a9b54da7782fc8fdf8c62f44f77 Mon Sep 17 00:00:00 2001
From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com>
Date: Tue, 9 Jul 2024 01:19:03 +0530
Subject: [PATCH 3/8] Create README.md
---
Term Deposit Prediction/Dataset/README.md | 6 ++++++
1 file changed, 6 insertions(+)
create mode 100644 Term Deposit Prediction/Dataset/README.md
diff --git a/Term Deposit Prediction/Dataset/README.md b/Term Deposit Prediction/Dataset/README.md
new file mode 100644
index 000000000..841ec0cc6
--- /dev/null
+++ b/Term Deposit Prediction/Dataset/README.md
@@ -0,0 +1,6 @@
+The dataset used in this project is related to a bank marketing campaign, containing various client attributes and the outcome of the marketing campaign.
+
+You can download the dataset from the following sources:
+
+- Kaggle Dataset: [Bank Marketing Dataset](https://www.kaggle.com/datasets/henriqueyamahata/bank-marketing/data)
+- Direct Download: `dataset.csv`
From 89c0c9948f5cfe2e17645373dc71975ac9000770 Mon Sep 17 00:00:00 2001
From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com>
Date: Tue, 9 Jul 2024 01:20:51 +0530
Subject: [PATCH 4/8] Add files via upload
---
Term Deposit Prediction/Dataset/dataset.csv | 41189 ++++++++++++++++++
1 file changed, 41189 insertions(+)
create mode 100644 Term Deposit Prediction/Dataset/dataset.csv
diff --git a/Term Deposit Prediction/Dataset/dataset.csv b/Term Deposit Prediction/Dataset/dataset.csv
new file mode 100644
index 000000000..8c47ee2f0
--- /dev/null
+++ b/Term Deposit Prediction/Dataset/dataset.csv
@@ -0,0 +1,41189 @@
+age,job,marital,education,default,housing,loan,contact,month,day_of_week,duration,campaign,pdays,previous,poutcome,emp.var.rate,cons.price.idx,cons.conf.idx,euribor3m,nr.employed,y
+56,housemaid,married,basic.4y,no,no,no,telephone,may,mon,261,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,services,married,high.school,unknown,no,no,telephone,may,mon,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,services,married,high.school,no,yes,no,telephone,may,mon,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,married,basic.6y,no,no,no,telephone,may,mon,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,services,married,high.school,no,no,yes,telephone,may,mon,307,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,services,married,basic.9y,unknown,no,no,telephone,may,mon,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,admin.,married,professional.course,no,no,no,telephone,may,mon,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,unknown,unknown,no,no,telephone,may,mon,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,technician,single,professional.course,no,yes,no,telephone,may,mon,380,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,services,single,high.school,no,yes,no,telephone,may,mon,50,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,unknown,unknown,no,no,telephone,may,mon,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,services,single,high.school,no,yes,no,telephone,may,mon,222,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,single,high.school,no,no,yes,telephone,may,mon,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,housemaid,divorced,basic.4y,no,yes,no,telephone,may,mon,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,retired,married,basic.9y,unknown,yes,yes,telephone,may,mon,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,312,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,mon,440,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,basic.9y,no,yes,yes,telephone,may,mon,353,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,single,basic.9y,unknown,no,no,telephone,may,mon,195,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,unemployed,married,high.school,no,no,no,telephone,may,mon,38,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,retired,single,high.school,no,yes,no,telephone,may,mon,342,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,single,high.school,no,yes,no,telephone,may,mon,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,high.school,no,yes,no,telephone,may,mon,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,married,university.degree,no,no,yes,telephone,may,mon,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,technician,married,unknown,no,yes,no,telephone,may,mon,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,self-employed,married,basic.9y,unknown,no,no,telephone,may,mon,233,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,technician,single,university.degree,unknown,no,no,telephone,may,mon,255,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,unknown,married,university.degree,unknown,unknown,unknown,telephone,may,mon,362,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,married,unknown,no,no,no,telephone,may,mon,348,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,technician,married,unknown,no,yes,no,telephone,may,mon,386,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,unknown,no,no,no,telephone,may,mon,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,management,married,basic.4y,unknown,yes,no,telephone,may,mon,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,blue-collar,divorced,basic.4y,no,no,no,telephone,may,mon,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,unknown,married,basic.4y,unknown,yes,no,telephone,may,mon,336,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,married,high.school,no,no,no,telephone,may,mon,365,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,technician,married,basic.9y,no,yes,no,telephone,may,mon,1666,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,married,university.degree,no,yes,no,telephone,may,mon,577,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,technician,married,basic.4y,no,yes,no,telephone,may,mon,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,management,unknown,university.degree,no,yes,no,telephone,may,mon,366,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,entrepreneur,married,high.school,no,yes,no,telephone,may,mon,314,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,single,professional.course,no,no,no,telephone,may,mon,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,admin.,married,university.degree,no,no,yes,telephone,may,mon,212,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,single,professional.course,unknown,no,no,telephone,may,mon,22,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,admin.,married,university.degree,no,yes,yes,telephone,may,mon,616,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.9y,no,no,yes,telephone,may,mon,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,university.degree,no,yes,no,telephone,may,mon,355,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,225,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,admin.,married,high.school,no,no,no,telephone,may,mon,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,housemaid,married,basic.4y,no,no,yes,telephone,may,mon,266,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,admin.,married,high.school,no,no,no,telephone,may,mon,253,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,admin.,single,professional.course,no,no,no,telephone,may,mon,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,269,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,technician,married,professional.course,unknown,yes,no,telephone,may,mon,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,management,married,university.degree,unknown,no,yes,telephone,may,mon,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,services,married,high.school,unknown,yes,no,telephone,may,mon,787,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,unemployed,married,professional.course,unknown,yes,yes,telephone,may,mon,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,technician,single,university.degree,no,yes,no,telephone,may,mon,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,entrepreneur,married,university.degree,unknown,no,no,telephone,may,mon,449,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,812,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.6y,unknown,no,no,telephone,may,mon,366,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,admin.,married,high.school,no,no,no,telephone,may,mon,357,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,university.degree,no,no,no,telephone,may,mon,232,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,single,basic.9y,no,yes,no,telephone,may,mon,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,unknown,no,yes,no,telephone,may,mon,273,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,admin.,married,basic.9y,no,yes,no,telephone,may,mon,158,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,single,basic.4y,unknown,yes,yes,telephone,may,mon,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,management,married,basic.6y,no,no,no,telephone,may,mon,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,management,divorced,university.degree,no,yes,no,telephone,may,mon,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,176,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,unknown,married,unknown,unknown,no,no,telephone,may,mon,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,214,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,mon,1575,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+55,technician,married,university.degree,no,no,no,telephone,may,mon,349,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,married,high.school,unknown,yes,no,telephone,may,mon,337,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,management,married,unknown,unknown,yes,no,telephone,may,mon,272,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,mon,212,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,married,high.school,unknown,no,no,telephone,may,mon,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,mon,1042,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+38,technician,single,university.degree,no,no,yes,telephone,may,mon,20,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,divorced,high.school,no,no,no,telephone,may,mon,246,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,management,married,basic.6y,no,no,no,telephone,may,mon,529,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,university.degree,no,yes,yes,telephone,may,mon,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,technician,married,basic.9y,no,no,no,telephone,may,mon,1467,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+34,admin.,married,high.school,no,yes,no,telephone,may,mon,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,university.degree,no,yes,no,telephone,may,mon,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,unknown,married,unknown,unknown,yes,no,telephone,may,mon,48,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,admin.,married,unknown,unknown,no,yes,telephone,may,mon,213,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,unemployed,married,basic.9y,no,no,no,telephone,may,mon,545,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.6y,no,no,yes,telephone,may,mon,583,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,services,married,professional.course,no,yes,no,telephone,may,mon,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,management,married,university.degree,no,no,no,telephone,may,mon,426,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,admin.,divorced,university.degree,unknown,no,no,telephone,may,mon,287,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,single,professional.course,no,no,no,telephone,may,mon,197,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,services,married,unknown,no,yes,no,telephone,may,mon,229,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,55,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,services,married,unknown,no,no,no,telephone,may,mon,400,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,admin.,divorced,university.degree,no,no,no,telephone,may,mon,197,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,admin.,divorced,university.degree,no,no,no,telephone,may,mon,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,services,single,high.school,unknown,no,no,telephone,may,mon,21,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,housemaid,married,basic.6y,no,yes,no,telephone,may,mon,300,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,high.school,no,yes,no,telephone,may,mon,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,entrepreneur,married,unknown,unknown,yes,no,telephone,may,mon,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,technician,married,unknown,unknown,yes,yes,telephone,may,mon,325,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,retired,divorced,university.degree,unknown,no,no,telephone,may,mon,514,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,unemployed,married,basic.4y,unknown,no,no,telephone,may,mon,849,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,divorced,high.school,no,yes,no,telephone,may,mon,194,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,212,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,management,married,university.degree,no,no,no,telephone,may,mon,337,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,high.school,no,no,no,telephone,may,mon,286,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,admin.,divorced,university.degree,no,no,no,telephone,may,mon,247,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,blue-collar,divorced,unknown,unknown,yes,no,telephone,may,mon,518,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,admin.,married,unknown,no,yes,no,telephone,may,mon,364,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,mon,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,high.school,unknown,yes,no,telephone,may,mon,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,divorced,high.school,no,no,no,telephone,may,mon,439,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,services,married,high.school,no,no,no,telephone,may,mon,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,technician,married,high.school,no,yes,no,telephone,may,mon,79,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,married,university.degree,no,yes,yes,telephone,may,mon,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,married,university.degree,no,no,yes,telephone,may,mon,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,admin.,married,basic.6y,no,no,no,telephone,may,mon,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,technician,divorced,professional.course,no,yes,yes,telephone,may,mon,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,married,basic.4y,no,yes,no,telephone,may,mon,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,married,professional.course,unknown,yes,no,telephone,may,mon,579,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+37,blue-collar,married,basic.6y,no,yes,yes,telephone,may,mon,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,married,professional.course,unknown,no,no,telephone,may,mon,677,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,unknown,no,yes,no,telephone,may,mon,267,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,management,married,university.degree,no,no,no,telephone,may,mon,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,divorced,university.degree,no,no,no,telephone,may,mon,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,housemaid,married,basic.4y,unknown,no,no,telephone,may,mon,69,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,married,high.school,no,yes,no,telephone,may,mon,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,461,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+43,unemployed,single,university.degree,no,yes,no,telephone,may,mon,240,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,management,married,unknown,no,yes,no,telephone,may,mon,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,married,university.degree,no,yes,no,telephone,may,mon,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,unknown,divorced,high.school,unknown,yes,no,telephone,may,mon,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,528,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,541,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,single,high.school,no,yes,no,telephone,may,mon,338,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,163,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,301,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,entrepreneur,married,unknown,unknown,yes,no,telephone,may,mon,46,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,services,divorced,high.school,unknown,yes,no,telephone,may,mon,52,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,entrepreneur,married,unknown,unknown,no,no,telephone,may,mon,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,unknown,no,yes,yes,telephone,may,mon,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.9y,no,yes,yes,telephone,may,mon,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,unknown,unknown,yes,no,telephone,may,mon,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,unknown,unknown,no,no,telephone,may,mon,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,technician,single,professional.course,no,yes,no,telephone,may,mon,186,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,services,married,high.school,no,no,no,telephone,may,mon,579,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,management,single,university.degree,no,yes,no,telephone,may,mon,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,basic.9y,unknown,yes,yes,telephone,may,mon,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,46,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,559,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,services,divorced,high.school,unknown,no,no,telephone,may,mon,2033,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,entrepreneur,married,basic.6y,no,no,no,telephone,may,mon,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,services,married,high.school,no,yes,yes,telephone,may,mon,506,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,admin.,divorced,unknown,unknown,no,no,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,unknown,no,no,no,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,management,divorced,university.degree,no,yes,no,telephone,may,mon,843,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,high.school,unknown,no,yes,telephone,may,mon,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,unknown,no,no,telephone,may,mon,427,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,technician,married,university.degree,no,yes,yes,telephone,may,mon,292,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,single,university.degree,unknown,no,no,telephone,may,mon,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,services,married,high.school,no,no,no,telephone,may,mon,93,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,management,married,basic.9y,no,no,no,telephone,may,mon,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,services,married,high.school,no,yes,yes,telephone,may,mon,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,admin.,single,basic.6y,no,no,no,telephone,may,mon,303,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,services,married,high.school,no,yes,no,telephone,may,mon,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,270,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,married,high.school,no,no,no,telephone,may,mon,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,240,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.9y,no,yes,yes,telephone,may,mon,673,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+36,admin.,married,university.degree,no,yes,no,telephone,may,mon,233,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,management,married,university.degree,no,no,no,telephone,may,mon,461,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,technician,married,basic.6y,unknown,no,no,telephone,may,mon,250,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,retired,married,high.school,unknown,no,no,telephone,may,mon,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,252,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,married,university.degree,no,yes,no,telephone,may,mon,138,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,married,professional.course,no,no,no,telephone,may,mon,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,single,basic.9y,no,yes,no,telephone,may,mon,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,management,divorced,university.degree,no,no,no,telephone,may,mon,19,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,married,university.degree,no,no,no,telephone,may,mon,228,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,mon,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,717,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,high.school,unknown,yes,no,telephone,may,mon,313,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,single,basic.9y,unknown,no,no,telephone,may,mon,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,married,basic.9y,unknown,yes,no,telephone,may,mon,683,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,1077,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,married,high.school,no,no,no,telephone,may,mon,146,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,services,single,basic.6y,no,no,no,telephone,may,mon,167,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,high.school,no,yes,no,telephone,may,mon,356,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,admin.,married,unknown,no,no,no,telephone,may,mon,277,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,student,single,university.degree,unknown,no,no,telephone,may,mon,218,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,student,single,university.degree,unknown,yes,yes,telephone,may,mon,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,unemployed,married,professional.course,no,no,no,telephone,may,mon,67,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,single,basic.4y,no,no,no,telephone,may,mon,291,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,student,single,university.degree,unknown,yes,no,telephone,may,mon,248,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,student,single,basic.9y,no,yes,no,telephone,may,mon,256,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,housemaid,divorced,university.degree,no,no,no,telephone,may,mon,286,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,admin.,married,university.degree,no,no,no,telephone,may,mon,477,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,retired,married,unknown,unknown,no,no,telephone,may,mon,611,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,professional.course,unknown,yes,no,telephone,may,mon,471,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,housemaid,married,basic.4y,unknown,yes,no,telephone,may,mon,381,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,single,unknown,no,yes,no,telephone,may,mon,251,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,single,unknown,no,yes,yes,telephone,may,mon,408,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,housemaid,married,basic.4y,unknown,no,no,telephone,may,mon,287,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,services,married,high.school,no,no,no,telephone,may,mon,322,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,high.school,no,yes,no,telephone,may,mon,216,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,technician,married,unknown,unknown,no,no,telephone,may,mon,366,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,single,basic.6y,unknown,yes,no,telephone,may,mon,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,technician,married,basic.4y,unknown,yes,no,telephone,may,mon,288,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,married,basic.9y,no,no,no,telephone,may,mon,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,retired,married,university.degree,no,no,no,telephone,may,mon,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,married,university.degree,no,no,no,telephone,may,mon,64,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,single,university.degree,no,no,no,telephone,may,mon,209,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,retired,married,basic.4y,unknown,no,no,telephone,may,mon,410,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.4y,no,yes,yes,telephone,may,mon,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,professional.course,no,yes,no,telephone,may,mon,580,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,services,divorced,professional.course,no,yes,no,telephone,may,mon,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,management,divorced,basic.4y,unknown,yes,no,telephone,may,mon,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,high.school,unknown,no,no,telephone,may,mon,357,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,self-employed,married,university.degree,unknown,no,no,telephone,may,mon,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,married,professional.course,no,yes,no,telephone,may,mon,300,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,admin.,married,high.school,no,no,no,telephone,may,mon,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,married,high.school,unknown,no,yes,telephone,may,mon,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,management,married,university.degree,unknown,no,yes,telephone,may,mon,213,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,retired,married,high.school,no,no,no,telephone,may,mon,238,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,single,professional.course,no,no,no,telephone,may,mon,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,management,married,university.degree,no,yes,no,telephone,may,mon,18,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,single,basic.9y,no,no,no,telephone,may,mon,730,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,married,university.degree,unknown,no,no,telephone,may,mon,40,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,divorced,unknown,no,no,no,telephone,may,mon,181,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,technician,single,professional.course,no,no,no,telephone,may,mon,79,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,single,high.school,no,yes,no,telephone,may,mon,142,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,single,high.school,no,no,yes,telephone,may,mon,389,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,single,high.school,no,no,no,telephone,may,mon,702,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,divorced,professional.course,no,no,no,telephone,may,mon,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,services,married,basic.6y,no,yes,no,telephone,may,mon,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,married,professional.course,no,yes,no,telephone,may,mon,232,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,services,married,unknown,no,no,no,telephone,may,mon,408,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,services,married,high.school,no,yes,yes,telephone,may,mon,370,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,management,married,basic.9y,no,no,yes,telephone,may,mon,46,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,technician,married,unknown,no,yes,no,telephone,may,mon,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,high.school,no,no,yes,telephone,may,mon,50,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,high.school,no,no,yes,telephone,may,mon,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,single,basic.6y,no,unknown,unknown,telephone,may,mon,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,married,high.school,no,no,no,telephone,may,mon,361,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,admin.,divorced,basic.9y,no,no,no,telephone,may,mon,73,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,married,university.degree,no,no,no,telephone,may,mon,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,single,basic.6y,no,no,no,telephone,may,mon,350,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,self-employed,single,university.degree,no,yes,no,telephone,may,mon,150,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,student,single,university.degree,unknown,no,no,telephone,may,mon,332,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,management,divorced,university.degree,no,no,no,telephone,may,mon,611,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,self-employed,married,basic.4y,unknown,no,no,telephone,may,mon,58,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,unemployed,married,high.school,unknown,yes,no,telephone,may,mon,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,management,divorced,university.degree,no,no,no,telephone,may,mon,89,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,housemaid,married,basic.9y,unknown,no,no,telephone,may,mon,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,single,high.school,no,no,no,telephone,may,mon,611,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,housemaid,single,high.school,unknown,yes,yes,telephone,may,mon,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,463,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,married,high.school,no,no,no,telephone,may,mon,962,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,technician,single,basic.9y,no,no,no,telephone,may,mon,10,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,retired,married,professional.course,no,no,no,telephone,may,mon,118,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,technician,married,basic.4y,no,yes,no,telephone,may,mon,143,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,admin.,married,basic.9y,no,no,no,telephone,may,mon,189,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,75,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,mon,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,divorced,basic.6y,no,no,no,telephone,may,mon,55,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,housemaid,married,basic.9y,no,yes,no,telephone,may,mon,935,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+37,admin.,single,high.school,no,yes,yes,telephone,may,mon,56,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,blue-collar,married,unknown,unknown,yes,no,telephone,may,mon,5,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,no,no,no,telephone,may,mon,225,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,management,divorced,university.degree,no,yes,no,telephone,may,mon,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,married,high.school,no,yes,yes,telephone,may,mon,286,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,technician,divorced,professional.course,unknown,no,yes,telephone,may,mon,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,164,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,single,professional.course,no,yes,no,telephone,may,mon,98,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,self-employed,married,professional.course,no,no,no,telephone,may,mon,446,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,divorced,high.school,no,no,yes,telephone,may,mon,742,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,university.degree,no,yes,no,telephone,may,mon,120,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,divorced,high.school,no,no,no,telephone,may,mon,122,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,unknown,married,unknown,unknown,no,no,telephone,may,mon,362,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,services,single,high.school,unknown,no,no,telephone,may,mon,357,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,divorced,high.school,unknown,no,yes,telephone,may,mon,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,retired,married,professional.course,unknown,no,no,telephone,may,mon,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,unknown,married,unknown,no,yes,no,telephone,may,mon,267,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,married,high.school,no,yes,no,telephone,may,mon,248,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,married,basic.6y,unknown,yes,no,telephone,may,mon,215,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,unknown,unknown,no,no,telephone,may,mon,209,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,housemaid,divorced,basic.4y,no,yes,yes,telephone,may,mon,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,married,university.degree,no,yes,no,telephone,may,mon,261,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,management,divorced,university.degree,no,yes,no,telephone,may,mon,106,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,admin.,single,university.degree,no,no,no,telephone,may,mon,106,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,high.school,no,no,no,telephone,may,mon,108,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,blue-collar,married,professional.course,unknown,yes,no,telephone,may,mon,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,management,married,university.degree,unknown,yes,no,telephone,may,mon,358,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,single,basic.9y,unknown,no,no,telephone,may,mon,453,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,divorced,high.school,no,no,no,telephone,may,mon,364,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,married,basic.6y,no,no,no,telephone,may,mon,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,173,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,services,married,high.school,no,yes,no,telephone,may,mon,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,management,single,basic.9y,no,yes,no,telephone,may,mon,224,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,admin.,single,basic.6y,no,yes,yes,telephone,may,mon,148,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,single,unknown,no,no,no,telephone,may,mon,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,services,married,basic.6y,unknown,no,no,telephone,may,mon,199,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,technician,married,professional.course,no,yes,yes,telephone,may,mon,196,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,housemaid,single,professional.course,no,no,no,telephone,may,mon,111,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,admin.,single,university.degree,no,yes,no,telephone,may,mon,231,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,high.school,no,no,no,telephone,may,mon,316,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,240,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,high.school,no,no,no,telephone,may,mon,669,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,services,single,high.school,no,yes,no,telephone,may,mon,425,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,management,married,high.school,no,yes,no,telephone,may,mon,174,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,self-employed,single,university.degree,no,no,yes,telephone,may,mon,88,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,services,married,high.school,unknown,yes,no,telephone,may,mon,313,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,entrepreneur,married,high.school,no,yes,no,telephone,may,mon,135,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,single,professional.course,unknown,yes,no,telephone,may,mon,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,single,high.school,no,yes,yes,telephone,may,mon,402,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,management,married,university.degree,unknown,no,no,telephone,may,mon,213,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,management,married,professional.course,unknown,yes,no,telephone,may,mon,144,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,services,single,high.school,no,yes,no,telephone,may,mon,158,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,admin.,married,basic.9y,no,no,no,telephone,may,mon,220,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,unknown,married,unknown,unknown,yes,no,telephone,may,mon,325,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,mon,254,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,technician,married,high.school,no,yes,no,telephone,may,mon,503,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,services,divorced,professional.course,no,no,no,telephone,may,mon,680,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,mon,421,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,entrepreneur,married,university.degree,no,yes,no,telephone,may,mon,130,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,164,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,married,basic.6y,unknown,no,no,telephone,may,mon,174,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,technician,married,professional.course,no,no,no,telephone,may,mon,113,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,management,married,university.degree,no,no,no,telephone,may,mon,195,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,services,married,high.school,no,yes,no,telephone,may,mon,347,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,admin.,married,university.degree,no,yes,no,telephone,may,mon,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,unemployed,single,university.degree,no,no,no,telephone,may,mon,404,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,single,high.school,no,no,no,telephone,may,mon,396,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,98,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,married,basic.4y,no,no,no,telephone,may,mon,229,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,entrepreneur,married,basic.4y,no,yes,no,telephone,may,mon,350,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,unemployed,divorced,high.school,unknown,no,no,telephone,may,tue,88,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,management,married,university.degree,no,yes,no,telephone,may,tue,379,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,technician,married,high.school,no,yes,no,telephone,may,tue,168,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,190,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,married,university.degree,no,yes,no,telephone,may,tue,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,married,university.degree,no,no,no,telephone,may,tue,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,self-employed,married,high.school,no,yes,no,telephone,may,tue,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,admin.,divorced,basic.9y,no,no,no,telephone,may,tue,306,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,management,divorced,high.school,no,no,no,telephone,may,tue,218,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,54,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,single,high.school,no,yes,no,telephone,may,tue,344,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+22,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,195,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,services,married,high.school,no,no,no,telephone,may,tue,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,unknown,no,no,no,telephone,may,tue,286,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,married,basic.6y,no,yes,no,telephone,may,tue,278,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,single,university.degree,no,no,no,telephone,may,tue,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,basic.9y,no,no,no,telephone,may,tue,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,admin.,married,university.degree,no,yes,yes,telephone,may,tue,18,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,single,unknown,no,no,no,telephone,may,tue,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,basic.9y,no,yes,no,telephone,may,tue,235,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,management,single,university.degree,no,no,no,telephone,may,tue,290,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,student,single,unknown,unknown,no,no,telephone,may,tue,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,management,married,basic.4y,unknown,yes,yes,telephone,may,tue,318,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,management,married,basic.4y,unknown,unknown,unknown,telephone,may,tue,437,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,self-employed,married,university.degree,no,no,no,telephone,may,tue,402,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,housemaid,married,basic.6y,unknown,yes,yes,telephone,may,tue,501,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,unknown,single,unknown,unknown,yes,yes,telephone,may,tue,1201,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+44,services,married,high.school,no,yes,no,telephone,may,tue,1030,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+59,retired,unknown,university.degree,unknown,no,no,telephone,may,tue,253,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,management,married,high.school,unknown,no,no,telephone,may,tue,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,university.degree,no,no,no,telephone,may,tue,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,married,high.school,no,no,no,telephone,may,tue,69,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,admin.,married,basic.9y,no,no,no,telephone,may,tue,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,married,professional.course,no,no,no,telephone,may,tue,769,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,services,married,high.school,unknown,no,no,telephone,may,tue,135,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,divorced,basic.4y,no,no,no,telephone,may,tue,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,self-employed,married,university.degree,no,yes,yes,telephone,may,tue,442,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,199,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,services,single,high.school,no,no,no,telephone,may,tue,455,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,services,married,high.school,unknown,unknown,unknown,telephone,may,tue,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,high.school,unknown,yes,no,telephone,may,tue,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,unemployed,married,university.degree,unknown,yes,no,telephone,may,tue,424,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,43,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,entrepreneur,married,university.degree,no,yes,no,telephone,may,tue,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,services,divorced,basic.6y,no,no,no,telephone,may,tue,393,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,high.school,no,yes,no,telephone,may,tue,203,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,no,no,yes,telephone,may,tue,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,326,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,married,high.school,no,no,no,telephone,may,tue,483,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,technician,married,basic.4y,no,no,yes,telephone,may,tue,259,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,retired,unknown,basic.4y,no,no,no,telephone,may,tue,673,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,entrepreneur,married,basic.4y,unknown,yes,no,telephone,may,tue,576,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,tue,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,self-employed,single,basic.9y,unknown,yes,yes,telephone,may,tue,90,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,married,high.school,unknown,no,no,telephone,may,tue,505,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,services,married,high.school,no,yes,no,telephone,may,tue,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,single,university.degree,no,yes,no,telephone,may,tue,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,entrepreneur,married,basic.4y,no,no,no,telephone,may,tue,623,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,married,university.degree,unknown,no,no,telephone,may,tue,496,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,management,married,basic.6y,no,no,no,telephone,may,tue,342,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,technician,married,professional.course,no,yes,no,telephone,may,tue,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,unknown,married,unknown,unknown,yes,no,telephone,may,tue,185,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,married,high.school,unknown,no,no,telephone,may,tue,276,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,self-employed,divorced,university.degree,no,no,no,telephone,may,tue,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,self-employed,married,basic.9y,unknown,no,no,telephone,may,tue,744,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,self-employed,single,university.degree,no,yes,no,telephone,may,tue,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,services,single,professional.course,no,yes,yes,telephone,may,tue,271,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,services,married,unknown,unknown,no,no,telephone,may,tue,141,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,married,professional.course,no,yes,no,telephone,may,tue,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,housemaid,married,basic.9y,no,yes,no,telephone,may,tue,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,professional.course,no,no,no,telephone,may,tue,241,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,divorced,university.degree,no,no,no,telephone,may,tue,196,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,management,married,unknown,no,yes,no,telephone,may,tue,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,married,professional.course,unknown,no,yes,telephone,may,tue,264,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,housemaid,married,university.degree,no,no,no,telephone,may,tue,246,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,tue,309,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,management,married,university.degree,no,yes,no,telephone,may,tue,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,married,basic.9y,no,no,no,telephone,may,tue,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,unknown,unknown,no,no,telephone,may,tue,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,married,professional.course,no,no,no,telephone,may,tue,1623,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+57,technician,married,basic.4y,unknown,no,yes,telephone,may,tue,50,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,technician,married,basic.4y,unknown,no,no,telephone,may,tue,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.4y,no,no,yes,telephone,may,tue,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,technician,married,basic.4y,unknown,no,no,telephone,may,tue,238,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,student,single,basic.9y,unknown,yes,no,telephone,may,tue,354,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,management,married,university.degree,no,no,no,telephone,may,tue,451,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,admin.,married,university.degree,no,yes,no,telephone,may,tue,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,technician,married,professional.course,no,yes,no,telephone,may,tue,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,married,high.school,no,no,no,telephone,may,tue,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,management,married,professional.course,unknown,yes,no,telephone,may,tue,141,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,unemployed,single,basic.4y,no,yes,no,telephone,may,tue,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,housemaid,married,basic.4y,no,no,no,telephone,may,tue,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.6y,no,no,yes,telephone,may,tue,53,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,single,basic.9y,unknown,no,no,telephone,may,tue,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,divorced,high.school,no,no,no,telephone,may,tue,204,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,self-employed,married,university.degree,no,yes,no,telephone,may,tue,678,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,services,married,high.school,no,no,no,telephone,may,tue,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,married,high.school,no,yes,yes,telephone,may,tue,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,married,basic.6y,unknown,no,no,telephone,may,tue,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,management,married,professional.course,unknown,yes,no,telephone,may,tue,699,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,admin.,married,basic.4y,no,yes,no,telephone,may,tue,358,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,management,married,university.degree,no,no,no,telephone,may,tue,1677,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+42,technician,single,professional.course,unknown,unknown,unknown,telephone,may,tue,529,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,management,married,professional.course,no,yes,no,telephone,may,tue,310,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,divorced,high.school,no,no,no,telephone,may,tue,47,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,married,university.degree,unknown,yes,no,telephone,may,tue,379,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,blue-collar,divorced,basic.4y,no,no,no,telephone,may,tue,30,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,472,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,unknown,married,unknown,unknown,no,no,telephone,may,tue,113,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,114,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,retired,married,university.degree,no,no,no,telephone,may,tue,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,management,married,unknown,unknown,no,no,telephone,may,tue,448,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,single,high.school,unknown,no,yes,telephone,may,tue,264,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,services,married,high.school,no,yes,no,telephone,may,tue,169,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,retired,married,basic.4y,no,no,no,telephone,may,tue,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,unknown,married,unknown,unknown,yes,no,telephone,may,tue,288,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,management,married,basic.6y,unknown,yes,yes,telephone,may,tue,381,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,university.degree,no,unknown,unknown,telephone,may,tue,176,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,single,university.degree,unknown,no,no,telephone,may,tue,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,married,professional.course,no,yes,no,telephone,may,tue,278,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,housemaid,married,professional.course,unknown,no,no,telephone,may,tue,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,technician,married,unknown,no,yes,no,telephone,may,tue,174,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,married,university.degree,no,yes,no,telephone,may,tue,226,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,unemployed,married,basic.9y,unknown,no,no,telephone,may,tue,111,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,services,married,basic.9y,no,no,no,telephone,may,tue,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,46,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,single,university.degree,unknown,unknown,unknown,telephone,may,tue,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,married,high.school,unknown,unknown,unknown,telephone,may,tue,374,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,technician,married,professional.course,no,yes,no,telephone,may,tue,349,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,divorced,university.degree,unknown,yes,no,telephone,may,tue,325,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,admin.,married,professional.course,no,yes,no,telephone,may,tue,233,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,admin.,married,basic.6y,unknown,yes,no,telephone,may,tue,531,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,entrepreneur,married,university.degree,unknown,no,no,telephone,may,tue,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,basic.9y,no,unknown,unknown,telephone,may,tue,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,basic.9y,no,no,no,telephone,may,tue,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,services,divorced,high.school,unknown,yes,no,telephone,may,tue,568,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,services,married,high.school,unknown,yes,no,telephone,may,tue,918,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+45,entrepreneur,married,university.degree,no,no,no,telephone,may,tue,82,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,single,university.degree,no,no,no,telephone,may,tue,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,unknown,single,unknown,unknown,yes,no,telephone,may,tue,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,married,university.degree,no,yes,no,telephone,may,tue,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,high.school,unknown,yes,no,telephone,may,tue,269,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,entrepreneur,married,high.school,no,no,no,telephone,may,tue,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,management,married,university.degree,no,yes,no,telephone,may,tue,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,services,married,basic.9y,no,yes,yes,telephone,may,tue,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,entrepreneur,married,high.school,no,yes,no,telephone,may,tue,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,technician,married,unknown,unknown,yes,no,telephone,may,tue,267,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,housemaid,single,basic.4y,unknown,yes,no,telephone,may,tue,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,unknown,unknown,no,no,telephone,may,tue,288,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,married,unknown,no,no,no,telephone,may,tue,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,management,married,basic.9y,unknown,unknown,unknown,telephone,may,tue,427,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,310,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,married,high.school,no,no,no,telephone,may,tue,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,single,unknown,unknown,yes,no,telephone,may,tue,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,single,high.school,no,no,no,telephone,may,tue,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,divorced,high.school,no,yes,yes,telephone,may,tue,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,technician,divorced,university.degree,no,no,no,telephone,may,tue,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,married,high.school,no,no,no,telephone,may,tue,263,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,high.school,no,no,no,telephone,may,tue,342,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,services,married,high.school,unknown,yes,yes,telephone,may,tue,41,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,13,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,79,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,married,high.school,no,no,no,telephone,may,tue,358,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,unknown,no,no,telephone,may,tue,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,single,high.school,no,yes,yes,telephone,may,tue,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,single,basic.4y,unknown,no,no,telephone,may,tue,26,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,single,basic.6y,unknown,no,no,telephone,may,tue,250,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,self-employed,married,university.degree,no,no,no,telephone,may,tue,792,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,self-employed,married,unknown,unknown,no,no,telephone,may,tue,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,single,basic.9y,unknown,no,no,telephone,may,tue,440,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,technician,married,professional.course,unknown,no,yes,telephone,may,tue,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,entrepreneur,single,university.degree,no,yes,no,telephone,may,tue,242,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,self-employed,single,high.school,no,yes,no,telephone,may,tue,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,admin.,married,professional.course,no,yes,yes,telephone,may,tue,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,married,university.degree,no,no,no,telephone,may,tue,268,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,divorced,high.school,no,no,yes,telephone,may,tue,259,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,single,university.degree,no,yes,yes,telephone,may,tue,26,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,tue,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,single,university.degree,no,no,no,telephone,may,tue,424,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,375,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,entrepreneur,married,basic.6y,no,no,no,telephone,may,tue,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,retired,married,university.degree,no,yes,no,telephone,may,tue,383,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,440,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,married,basic.4y,no,no,yes,telephone,may,tue,195,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,high.school,no,no,yes,telephone,may,tue,1297,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+40,technician,married,basic.4y,no,no,no,telephone,may,tue,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,single,basic.4y,unknown,no,no,telephone,may,tue,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,tue,427,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,502,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.4y,no,yes,yes,telephone,may,tue,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,admin.,married,university.degree,unknown,no,no,telephone,may,tue,209,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,divorced,university.degree,no,unknown,unknown,telephone,may,tue,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,basic.6y,no,yes,no,telephone,may,tue,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,high.school,unknown,no,no,telephone,may,tue,69,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,married,unknown,no,no,no,telephone,may,tue,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+23,admin.,single,university.degree,no,no,no,telephone,may,tue,266,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,unemployed,married,university.degree,unknown,unknown,unknown,telephone,may,tue,87,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,entrepreneur,married,professional.course,no,unknown,unknown,telephone,may,tue,524,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,married,professional.course,no,unknown,unknown,telephone,may,tue,155,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,married,basic.4y,unknown,yes,yes,telephone,may,tue,316,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,housemaid,married,high.school,no,no,no,telephone,may,tue,352,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,married,high.school,no,no,no,telephone,may,tue,695,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,divorced,high.school,no,no,no,telephone,may,tue,76,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,services,married,high.school,unknown,no,yes,telephone,may,tue,535,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,management,married,university.degree,no,no,no,telephone,may,tue,310,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,unknown,no,no,no,telephone,may,tue,390,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,management,married,university.degree,unknown,no,no,telephone,may,tue,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,unknown,married,unknown,unknown,no,no,telephone,may,tue,79,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,technician,single,professional.course,no,no,yes,telephone,may,tue,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,unknown,married,unknown,unknown,no,no,telephone,may,tue,315,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,single,university.degree,no,no,yes,telephone,may,tue,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,management,married,university.degree,unknown,no,no,telephone,may,tue,174,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,424,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,36,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,technician,married,professional.course,no,no,no,telephone,may,tue,1906,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,married,professional.course,no,yes,no,telephone,may,tue,219,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,married,university.degree,no,no,no,telephone,may,tue,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,single,high.school,no,unknown,unknown,telephone,may,tue,147,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,management,married,university.degree,no,no,no,telephone,may,tue,407,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,technician,married,professional.course,no,yes,no,telephone,may,tue,402,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,married,basic.9y,no,no,no,telephone,may,tue,209,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,admin.,married,professional.course,no,yes,no,telephone,may,tue,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,admin.,divorced,university.degree,unknown,yes,no,telephone,may,tue,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,married,high.school,no,no,no,telephone,may,tue,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,single,university.degree,no,yes,yes,telephone,may,tue,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,284,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,married,high.school,unknown,no,no,telephone,may,tue,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,single,university.degree,no,yes,no,telephone,may,tue,278,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,single,university.degree,no,no,no,telephone,may,tue,389,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,no,no,no,telephone,may,tue,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,tue,78,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,258,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,services,married,high.school,no,no,no,telephone,may,tue,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,147,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,married,high.school,no,no,no,telephone,may,tue,635,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,single,basic.4y,no,no,no,telephone,may,tue,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,management,married,university.degree,no,yes,no,telephone,may,tue,170,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,married,university.degree,no,yes,no,telephone,may,tue,802,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,married,basic.6y,no,yes,no,telephone,may,tue,381,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,services,married,high.school,unknown,no,no,telephone,may,tue,218,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,married,professional.course,no,yes,no,telephone,may,tue,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,married,basic.9y,no,yes,no,telephone,may,tue,241,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,divorced,university.degree,no,yes,yes,telephone,may,tue,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,technician,married,professional.course,no,no,no,telephone,may,tue,79,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,married,professional.course,no,no,no,telephone,may,tue,262,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,services,married,high.school,unknown,no,no,telephone,may,tue,392,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,single,unknown,no,yes,yes,telephone,may,tue,201,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,married,professional.course,no,no,no,telephone,may,tue,252,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,single,basic.4y,no,no,no,telephone,may,tue,329,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,admin.,married,unknown,unknown,yes,no,telephone,may,tue,328,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,married,professional.course,no,no,no,telephone,may,tue,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,married,university.degree,no,no,no,telephone,may,tue,116,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,admin.,single,university.degree,no,no,no,telephone,may,tue,246,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,services,married,basic.6y,no,no,no,telephone,may,tue,532,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,management,single,basic.4y,no,no,no,telephone,may,tue,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,management,married,university.degree,unknown,yes,no,telephone,may,tue,416,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,technician,single,professional.course,no,yes,no,telephone,may,tue,37,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,university.degree,no,yes,yes,telephone,may,tue,132,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,single,university.degree,no,no,no,telephone,may,tue,530,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,married,unknown,unknown,yes,no,telephone,may,tue,175,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,management,divorced,university.degree,no,yes,no,telephone,may,tue,90,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,housemaid,married,basic.4y,unknown,unknown,unknown,telephone,may,tue,524,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,married,high.school,no,yes,no,telephone,may,tue,29,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,311,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,retired,married,high.school,unknown,yes,no,telephone,may,tue,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,single,professional.course,no,no,no,telephone,may,tue,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,management,single,university.degree,no,yes,no,telephone,may,tue,312,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,housemaid,divorced,university.degree,no,no,no,telephone,may,tue,392,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,high.school,no,no,no,telephone,may,tue,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,married,basic.9y,unknown,yes,no,telephone,may,tue,284,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,married,high.school,no,no,no,telephone,may,tue,328,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,housemaid,married,high.school,no,yes,no,telephone,may,tue,100,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,housemaid,married,high.school,no,no,no,telephone,may,tue,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,507,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,333,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,divorced,unknown,unknown,yes,yes,telephone,may,tue,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,married,high.school,no,no,no,telephone,may,tue,322,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,married,basic.4y,no,no,no,telephone,may,tue,202,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,management,married,university.degree,unknown,no,yes,telephone,may,tue,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,divorced,university.degree,unknown,yes,no,telephone,may,tue,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,self-employed,single,university.degree,no,no,no,telephone,may,tue,739,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,retired,divorced,basic.4y,unknown,no,no,telephone,may,tue,273,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,single,unknown,no,yes,no,telephone,may,tue,339,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,services,married,high.school,no,no,yes,telephone,may,tue,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,university.degree,no,unknown,unknown,telephone,may,tue,308,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,467,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,technician,married,basic.9y,no,no,yes,telephone,may,tue,245,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,single,university.degree,no,no,no,telephone,may,tue,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,477,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,admin.,married,high.school,no,no,no,telephone,may,tue,65,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,management,married,university.degree,unknown,no,no,telephone,may,tue,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,services,single,high.school,unknown,yes,no,telephone,may,tue,196,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,married,high.school,no,yes,no,telephone,may,tue,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,married,high.school,no,no,yes,telephone,may,tue,197,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,services,married,high.school,no,yes,no,telephone,may,tue,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,admin.,married,professional.course,no,no,yes,telephone,may,tue,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,single,high.school,unknown,no,no,telephone,may,tue,64,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,management,married,university.degree,no,yes,no,telephone,may,tue,75,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,entrepreneur,married,professional.course,no,no,no,telephone,may,tue,400,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,divorced,university.degree,unknown,yes,no,telephone,may,tue,378,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,technician,married,basic.4y,unknown,no,no,telephone,may,tue,118,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,housemaid,married,professional.course,unknown,yes,no,telephone,may,tue,1597,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+36,self-employed,married,university.degree,no,no,no,telephone,may,tue,346,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,management,married,professional.course,unknown,yes,no,telephone,may,tue,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,services,married,high.school,no,no,no,telephone,may,tue,60,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,276,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,housemaid,married,basic.4y,unknown,yes,no,telephone,may,tue,176,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,admin.,single,high.school,no,yes,no,telephone,may,tue,390,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,married,professional.course,unknown,yes,no,telephone,may,tue,251,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,management,married,university.degree,no,yes,no,telephone,may,tue,716,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,189,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,management,single,university.degree,no,no,no,telephone,may,tue,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,retired,married,high.school,no,yes,no,telephone,may,tue,234,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,79,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,admin.,married,university.degree,unknown,yes,no,telephone,may,tue,13,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,services,married,high.school,unknown,no,no,telephone,may,tue,296,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,housemaid,married,basic.4y,no,no,no,telephone,may,tue,283,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,entrepreneur,married,basic.9y,no,no,no,telephone,may,tue,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,admin.,married,university.degree,unknown,no,no,telephone,may,tue,132,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,self-employed,married,basic.9y,no,yes,no,telephone,may,tue,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,housemaid,married,basic.6y,unknown,yes,no,telephone,may,tue,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,self-employed,divorced,basic.9y,no,yes,no,telephone,may,tue,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,self-employed,married,university.degree,no,no,no,telephone,may,tue,31,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,unemployed,single,basic.9y,no,yes,no,telephone,may,tue,112,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,university.degree,no,yes,yes,telephone,may,tue,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,admin.,married,university.degree,no,no,no,telephone,may,tue,87,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,tue,593,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,married,high.school,unknown,yes,no,telephone,may,tue,99,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,retired,divorced,university.degree,unknown,yes,no,telephone,may,tue,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,285,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,management,married,university.degree,unknown,no,no,telephone,may,tue,190,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,student,single,university.degree,unknown,no,no,telephone,may,tue,172,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,admin.,married,university.degree,no,no,no,telephone,may,tue,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,services,married,high.school,no,no,no,telephone,may,tue,174,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,married,basic.9y,no,no,no,telephone,may,tue,631,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,technician,married,university.degree,no,no,no,telephone,may,tue,152,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,married,high.school,no,no,no,telephone,may,tue,176,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,services,married,basic.6y,no,no,no,telephone,may,tue,32,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,1529,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,married,university.degree,no,yes,no,telephone,may,tue,254,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,entrepreneur,married,basic.4y,no,yes,no,telephone,may,tue,147,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,800,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,services,married,high.school,no,yes,no,telephone,may,tue,106,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,married,basic.9y,no,no,no,telephone,may,tue,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,married,high.school,no,no,no,telephone,may,tue,112,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,entrepreneur,married,university.degree,no,yes,no,telephone,may,tue,222,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,314,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,technician,single,professional.course,no,no,no,telephone,may,tue,421,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,single,unknown,unknown,yes,yes,telephone,may,tue,410,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,married,professional.course,unknown,no,no,telephone,may,tue,207,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,single,high.school,no,yes,yes,telephone,may,tue,239,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,self-employed,single,basic.4y,unknown,yes,no,telephone,may,tue,83,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,single,university.degree,unknown,no,no,telephone,may,tue,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,42,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,married,basic.4y,no,no,no,telephone,may,tue,55,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,admin.,married,high.school,no,no,no,telephone,may,tue,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,unemployed,divorced,university.degree,no,no,no,telephone,may,tue,303,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,unknown,unknown,yes,no,telephone,may,tue,336,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,admin.,divorced,high.school,no,no,no,telephone,may,tue,233,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,housemaid,married,basic.4y,no,yes,yes,telephone,may,tue,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,management,married,basic.4y,unknown,yes,no,telephone,may,tue,88,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,technician,single,professional.course,no,yes,yes,telephone,may,tue,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,329,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,divorced,basic.6y,unknown,yes,no,telephone,may,tue,305,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,unemployed,married,basic.4y,unknown,yes,yes,telephone,may,tue,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,no,yes,no,telephone,may,tue,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,single,university.degree,no,no,no,telephone,may,tue,122,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,technician,single,professional.course,no,yes,no,telephone,may,tue,343,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,divorced,basic.9y,no,no,yes,telephone,may,tue,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,249,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,blue-collar,married,professional.course,no,no,no,telephone,may,tue,59,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,university.degree,no,yes,no,telephone,may,tue,166,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,services,married,high.school,no,no,no,telephone,may,tue,190,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,216,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,married,university.degree,no,yes,no,telephone,may,wed,51,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,169,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,148,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,married,professional.course,unknown,yes,no,telephone,may,wed,132,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,117,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,unemployed,married,basic.4y,no,no,no,telephone,may,wed,275,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,services,married,high.school,no,yes,no,telephone,may,wed,124,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,technician,married,university.degree,unknown,no,no,telephone,may,wed,118,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,technician,married,professional.course,no,no,no,telephone,may,wed,479,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,technician,married,university.degree,no,yes,no,telephone,may,wed,285,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,admin.,married,university.degree,no,no,no,telephone,may,wed,322,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,self-employed,married,university.degree,unknown,no,no,telephone,may,wed,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,technician,married,unknown,unknown,unknown,unknown,telephone,may,wed,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,student,single,high.school,unknown,no,no,telephone,may,wed,216,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,195,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,housemaid,divorced,unknown,no,yes,no,telephone,may,wed,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,management,married,unknown,unknown,yes,no,telephone,may,wed,149,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,technician,married,professional.course,no,no,no,telephone,may,wed,720,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,housemaid,married,basic.9y,no,no,no,telephone,may,wed,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,single,unknown,unknown,no,yes,telephone,may,wed,70,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,wed,141,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,admin.,married,high.school,no,yes,no,telephone,may,wed,395,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,services,married,high.school,unknown,no,no,telephone,may,wed,629,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,technician,married,basic.6y,no,yes,no,telephone,may,wed,261,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,services,married,high.school,unknown,yes,no,telephone,may,wed,502,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,technician,divorced,professional.course,no,no,no,telephone,may,wed,446,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,married,basic.6y,no,unknown,unknown,telephone,may,wed,131,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,single,basic.6y,no,yes,no,telephone,may,wed,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,self-employed,married,university.degree,no,no,no,telephone,may,wed,312,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,275,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,admin.,married,basic.4y,unknown,no,yes,telephone,may,wed,120,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,technician,married,professional.course,no,yes,no,telephone,may,wed,333,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,113,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,single,basic.9y,unknown,unknown,unknown,telephone,may,wed,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,management,single,university.degree,unknown,yes,yes,telephone,may,wed,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,management,married,high.school,no,no,no,telephone,may,wed,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,entrepreneur,married,basic.9y,no,no,no,telephone,may,wed,128,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,unknown,single,basic.9y,unknown,no,no,telephone,may,wed,298,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,services,single,unknown,no,yes,no,telephone,may,wed,326,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,single,high.school,no,no,no,telephone,may,wed,292,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,divorced,unknown,no,yes,no,telephone,may,wed,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,wed,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,divorced,basic.6y,unknown,yes,yes,telephone,may,wed,32,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,blue-collar,single,basic.4y,unknown,yes,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,services,divorced,high.school,no,no,no,telephone,may,wed,421,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,entrepreneur,single,professional.course,no,no,no,telephone,may,wed,268,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,admin.,divorced,university.degree,no,no,no,telephone,may,wed,232,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,admin.,married,high.school,no,no,no,telephone,may,wed,152,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,technician,married,basic.6y,no,no,no,telephone,may,wed,104,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,services,single,unknown,no,yes,no,telephone,may,wed,852,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,wed,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+26,admin.,single,high.school,no,no,no,telephone,may,wed,416,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,admin.,single,university.degree,no,yes,yes,telephone,may,wed,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,self-employed,single,high.school,unknown,no,no,telephone,may,wed,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,services,married,high.school,no,no,no,telephone,may,wed,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,blue-collar,married,high.school,no,yes,no,telephone,may,wed,294,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,admin.,married,university.degree,no,no,no,telephone,may,wed,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,blue-collar,single,high.school,unknown,unknown,unknown,telephone,may,wed,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,technician,single,unknown,unknown,yes,no,telephone,may,wed,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,housemaid,married,basic.4y,no,yes,no,telephone,may,wed,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,management,married,high.school,unknown,yes,no,telephone,may,wed,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,admin.,single,basic.9y,no,yes,no,telephone,may,wed,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,admin.,single,university.degree,no,no,no,telephone,may,wed,992,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+31,admin.,married,university.degree,unknown,no,no,telephone,may,wed,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,250,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,management,single,university.degree,no,yes,no,telephone,may,wed,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,management,divorced,high.school,no,no,yes,telephone,may,wed,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,technician,married,professional.course,no,yes,no,telephone,may,wed,133,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,technician,divorced,professional.course,no,no,no,telephone,may,wed,374,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,services,married,university.degree,no,yes,no,telephone,may,wed,425,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,wed,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,technician,married,university.degree,no,yes,no,telephone,may,wed,464,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,entrepreneur,married,basic.9y,no,yes,no,telephone,may,wed,439,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,admin.,married,high.school,no,no,no,telephone,may,wed,83,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,student,single,basic.9y,unknown,yes,yes,telephone,may,wed,732,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+53,technician,married,high.school,no,yes,no,telephone,may,wed,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,admin.,married,high.school,unknown,yes,no,telephone,may,wed,359,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,technician,married,professional.course,no,yes,no,telephone,may,wed,274,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,admin.,single,university.degree,no,yes,no,telephone,may,wed,325,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,admin.,single,unknown,no,yes,no,telephone,may,wed,1521,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,technician,married,professional.course,no,no,no,telephone,may,wed,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,entrepreneur,married,basic.9y,no,yes,yes,telephone,may,wed,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,admin.,single,university.degree,unknown,yes,no,telephone,may,wed,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,admin.,divorced,high.school,unknown,yes,no,telephone,may,wed,800,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,wed,615,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+24,services,single,high.school,no,no,no,telephone,may,wed,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,admin.,single,high.school,no,yes,no,telephone,may,wed,359,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,technician,married,professional.course,no,yes,no,telephone,may,wed,327,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,management,divorced,university.degree,no,yes,no,telephone,may,wed,236,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,services,married,basic.6y,no,yes,no,telephone,may,wed,492,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,298,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,housemaid,married,basic.4y,unknown,yes,no,telephone,may,wed,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,admin.,married,university.degree,no,no,no,telephone,may,wed,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,entrepreneur,married,university.degree,no,yes,no,telephone,may,wed,1138,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+47,blue-collar,married,professional.course,unknown,yes,no,telephone,may,wed,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,single,unknown,no,yes,no,telephone,may,wed,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,management,married,university.degree,no,yes,no,telephone,may,wed,295,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,287,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,technician,married,professional.course,unknown,yes,no,telephone,may,wed,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,admin.,single,university.degree,no,yes,no,telephone,may,wed,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,married,unknown,no,yes,yes,telephone,may,wed,52,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,married,high.school,no,yes,no,telephone,may,wed,233,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,technician,married,professional.course,no,yes,no,telephone,may,wed,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,technician,married,professional.course,no,yes,no,telephone,may,wed,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,admin.,single,unknown,unknown,no,no,telephone,may,wed,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,wed,591,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+40,blue-collar,married,high.school,no,yes,no,telephone,may,wed,294,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,married,high.school,no,yes,no,telephone,may,wed,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+59,entrepreneur,divorced,high.school,unknown,yes,no,telephone,may,wed,173,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,technician,single,university.degree,no,no,no,telephone,may,wed,336,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,married,basic.6y,no,yes,yes,telephone,may,wed,344,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,786,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+41,admin.,married,university.degree,no,yes,no,telephone,may,wed,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,unknown,single,basic.9y,unknown,yes,no,telephone,may,wed,99,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,services,married,high.school,unknown,yes,no,telephone,may,wed,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,admin.,single,high.school,no,yes,no,telephone,may,wed,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,164,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,technician,single,university.degree,no,yes,no,telephone,may,wed,255,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,retired,married,basic.4y,unknown,yes,no,telephone,may,wed,47,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,divorced,unknown,no,yes,no,telephone,may,wed,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,unknown,married,high.school,unknown,no,no,telephone,may,wed,463,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,technician,married,professional.course,no,yes,no,telephone,may,wed,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,admin.,married,university.degree,no,no,no,telephone,may,wed,388,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,technician,married,professional.course,no,no,no,telephone,may,wed,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,admin.,single,university.degree,no,no,no,telephone,may,wed,25,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,services,single,unknown,unknown,yes,no,telephone,may,wed,256,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,283,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,retired,single,high.school,no,yes,no,telephone,may,wed,448,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,technician,single,professional.course,no,no,no,telephone,may,wed,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,admin.,married,high.school,no,yes,no,telephone,may,wed,378,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,67,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,management,married,basic.6y,no,no,no,telephone,may,wed,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,technician,married,professional.course,no,yes,no,telephone,may,wed,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,technician,divorced,professional.course,no,yes,no,telephone,may,wed,296,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,technician,married,basic.4y,unknown,no,no,telephone,may,wed,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,401,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,management,divorced,university.degree,no,unknown,unknown,telephone,may,wed,435,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,technician,married,basic.4y,unknown,no,yes,telephone,may,wed,388,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,technician,single,professional.course,no,no,no,telephone,may,wed,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,admin.,divorced,basic.9y,unknown,no,no,telephone,may,wed,423,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+59,services,divorced,high.school,no,no,no,telephone,may,wed,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,married,unknown,unknown,no,yes,telephone,may,wed,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,divorced,basic.6y,unknown,yes,no,telephone,may,wed,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,admin.,married,professional.course,no,no,no,telephone,may,wed,69,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,single,high.school,no,no,no,telephone,may,wed,799,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,services,married,high.school,unknown,yes,no,telephone,may,wed,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,45,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,retired,married,basic.9y,no,yes,no,telephone,may,wed,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,68,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,services,single,high.school,no,yes,no,telephone,may,wed,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+59,retired,divorced,basic.4y,no,yes,no,telephone,may,wed,112,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,wed,444,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,246,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,blue-collar,single,basic.6y,no,yes,no,telephone,may,wed,148,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,admin.,married,university.degree,no,yes,no,telephone,may,wed,223,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,technician,single,university.degree,no,yes,no,telephone,may,wed,566,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,technician,married,high.school,no,yes,no,telephone,may,wed,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,49,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,services,married,high.school,unknown,yes,no,telephone,may,wed,376,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,retired,married,basic.4y,unknown,yes,no,telephone,may,wed,421,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,admin.,single,high.school,no,yes,no,telephone,may,wed,511,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,married,high.school,no,yes,no,telephone,may,wed,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,management,married,high.school,unknown,yes,yes,telephone,may,wed,328,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,admin.,married,basic.9y,unknown,no,no,telephone,may,wed,19,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,management,divorced,university.degree,no,yes,no,telephone,may,wed,866,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,admin.,single,university.degree,unknown,yes,no,telephone,may,wed,229,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,technician,married,professional.course,unknown,yes,no,telephone,may,wed,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,technician,single,university.degree,unknown,yes,no,telephone,may,wed,56,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,may,wed,199,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,services,divorced,high.school,unknown,no,no,telephone,may,wed,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+55,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,1581,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,services,divorced,high.school,unknown,no,no,telephone,may,wed,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,admin.,married,university.degree,unknown,no,no,telephone,may,wed,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,279,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,180,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,technician,married,high.school,no,yes,no,telephone,may,wed,530,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,single,basic.6y,no,yes,no,telephone,may,wed,129,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,services,divorced,high.school,no,yes,yes,telephone,may,wed,60,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,technician,divorced,unknown,no,yes,yes,telephone,may,wed,432,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,services,divorced,high.school,no,no,yes,telephone,may,wed,516,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,management,married,basic.9y,no,no,no,telephone,may,wed,617,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,housemaid,divorced,basic.9y,unknown,no,no,telephone,may,wed,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,technician,married,professional.course,no,no,no,telephone,may,wed,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,services,married,unknown,no,no,no,telephone,may,wed,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,396,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,294,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,171,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,services,married,high.school,no,no,no,telephone,may,wed,614,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,unknown,married,unknown,unknown,no,no,telephone,may,wed,118,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,blue-collar,married,professional.course,no,no,yes,telephone,may,wed,485,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,406,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,287,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,services,married,unknown,no,no,no,telephone,may,wed,216,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,admin.,married,university.degree,no,yes,no,telephone,may,wed,37,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,650,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,unemployed,divorced,professional.course,no,no,no,telephone,may,wed,590,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,admin.,married,university.degree,no,no,no,telephone,may,wed,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,management,single,unknown,no,yes,no,telephone,may,wed,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,self-employed,married,basic.9y,no,yes,no,telephone,may,wed,48,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,72,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+55,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,admin.,single,basic.6y,no,unknown,unknown,telephone,may,wed,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,196,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,entrepreneur,divorced,university.degree,no,no,no,telephone,may,wed,96,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,blue-collar,married,high.school,no,no,no,telephone,may,wed,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,entrepreneur,married,basic.4y,no,yes,no,telephone,may,wed,474,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,single,university.degree,no,no,no,telephone,may,wed,559,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+55,blue-collar,married,basic.4y,no,yes,yes,telephone,may,wed,1101,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,entrepreneur,single,university.degree,no,unknown,unknown,telephone,may,wed,229,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,management,divorced,university.degree,no,no,no,telephone,may,wed,236,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,admin.,divorced,university.degree,unknown,no,no,telephone,may,wed,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,unemployed,married,professional.course,unknown,no,no,telephone,may,wed,912,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,admin.,married,university.degree,no,no,no,telephone,may,wed,209,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,housemaid,divorced,basic.4y,no,no,no,telephone,may,wed,485,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,services,married,high.school,unknown,yes,no,telephone,may,wed,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,services,single,high.school,no,unknown,unknown,telephone,may,wed,239,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,311,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,technician,single,basic.6y,unknown,no,no,telephone,may,wed,362,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,services,married,basic.9y,no,no,no,telephone,may,wed,274,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,entrepreneur,married,basic.6y,no,yes,no,telephone,may,wed,163,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,services,single,high.school,no,yes,yes,telephone,may,wed,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+59,housemaid,married,basic.6y,no,yes,no,telephone,may,wed,329,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,technician,married,basic.9y,no,yes,no,telephone,may,wed,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,services,married,unknown,no,no,no,telephone,may,wed,143,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,entrepreneur,married,basic.4y,no,no,no,telephone,may,wed,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,technician,married,high.school,no,no,no,telephone,may,wed,1062,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,divorced,unknown,no,no,no,telephone,may,wed,258,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,253,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,admin.,married,university.degree,no,unknown,unknown,telephone,may,wed,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,self-employed,single,high.school,unknown,no,no,telephone,may,wed,688,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,103,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,services,married,high.school,unknown,yes,no,telephone,may,wed,349,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,unemployed,married,basic.4y,no,yes,no,telephone,may,wed,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,services,married,high.school,no,yes,no,telephone,may,wed,78,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,management,married,university.degree,no,no,no,telephone,may,wed,194,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,admin.,single,university.degree,no,no,no,telephone,may,wed,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,technician,married,high.school,no,no,no,telephone,may,wed,224,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,entrepreneur,married,university.degree,no,no,no,telephone,may,wed,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,252,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,607,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,single,basic.4y,unknown,no,no,telephone,may,wed,331,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,single,basic.4y,unknown,yes,no,telephone,may,wed,398,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,admin.,single,high.school,no,no,no,telephone,may,wed,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,single,basic.4y,unknown,no,no,telephone,may,wed,803,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,technician,married,professional.course,unknown,no,no,telephone,may,wed,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,technician,married,professional.course,no,no,no,telephone,may,wed,96,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,management,married,high.school,no,no,no,telephone,may,wed,238,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,self-employed,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,153,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,technician,married,professional.course,unknown,yes,no,telephone,may,wed,481,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,119,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,services,divorced,high.school,no,yes,no,telephone,may,wed,245,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,admin.,married,high.school,no,no,yes,telephone,may,wed,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,technician,married,high.school,no,yes,no,telephone,may,wed,418,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,421,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,services,married,high.school,no,no,yes,telephone,may,wed,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,admin.,married,high.school,no,yes,no,telephone,may,wed,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,374,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,management,married,university.degree,no,no,no,telephone,may,wed,51,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,services,married,professional.course,unknown,yes,no,telephone,may,wed,263,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,services,married,professional.course,unknown,no,no,telephone,may,wed,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,technician,single,professional.course,no,yes,no,telephone,may,wed,229,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,housemaid,married,basic.4y,no,yes,no,telephone,may,wed,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,single,high.school,unknown,no,yes,telephone,may,wed,278,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,married,professional.course,no,no,no,telephone,may,wed,306,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,retired,divorced,high.school,no,no,no,telephone,may,wed,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,divorced,high.school,no,yes,no,telephone,may,wed,24,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,technician,single,university.degree,unknown,no,no,telephone,may,wed,79,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,services,married,high.school,unknown,no,no,telephone,may,wed,169,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,332,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,263,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,management,married,university.degree,no,yes,no,telephone,may,wed,353,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,108,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,retired,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,441,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,technician,single,professional.course,no,unknown,unknown,telephone,may,wed,46,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,services,married,basic.6y,unknown,no,no,telephone,may,wed,266,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,housemaid,divorced,professional.course,no,yes,no,telephone,may,wed,222,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,1009,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,services,married,high.school,no,no,no,telephone,may,wed,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,single,basic.4y,unknown,yes,no,telephone,may,wed,381,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,admin.,married,high.school,no,no,no,telephone,may,wed,228,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,admin.,married,high.school,no,yes,no,telephone,may,wed,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,management,married,university.degree,no,no,no,telephone,may,wed,550,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,management,married,professional.course,no,no,no,telephone,may,wed,764,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,113,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,management,divorced,basic.4y,unknown,no,no,telephone,may,wed,396,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,42,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,self-employed,married,university.degree,no,yes,no,telephone,may,wed,234,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,technician,married,professional.course,no,unknown,unknown,telephone,may,wed,50,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,housemaid,married,basic.4y,no,no,no,telephone,may,wed,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,services,married,unknown,no,yes,no,telephone,may,wed,274,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,191,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,married,basic.6y,no,yes,yes,telephone,may,wed,305,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,retired,married,basic.4y,no,no,no,telephone,may,wed,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,112,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+26,admin.,single,university.degree,no,yes,no,telephone,may,wed,217,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,management,divorced,university.degree,no,no,no,telephone,may,wed,283,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,353,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,technician,married,professional.course,no,no,no,telephone,may,wed,212,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,admin.,married,university.degree,no,no,no,telephone,may,wed,225,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+60,services,married,unknown,no,no,no,telephone,may,wed,283,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,admin.,single,university.degree,no,yes,no,telephone,may,wed,1273,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,entrepreneur,married,basic.4y,unknown,no,no,telephone,may,wed,1574,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+26,technician,single,basic.9y,no,yes,no,telephone,may,wed,139,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,62,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,blue-collar,single,high.school,unknown,no,yes,telephone,may,wed,256,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,admin.,single,high.school,no,yes,no,telephone,may,wed,245,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,admin.,divorced,high.school,no,yes,no,telephone,may,wed,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,single,high.school,no,yes,no,telephone,may,wed,245,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,management,married,basic.6y,no,yes,yes,telephone,may,wed,89,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,retired,married,basic.4y,unknown,yes,no,telephone,may,wed,591,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,technician,married,professional.course,no,yes,no,telephone,may,wed,113,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+59,retired,divorced,basic.4y,no,yes,no,telephone,may,wed,517,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,admin.,married,basic.6y,unknown,no,no,telephone,may,wed,193,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,231,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,technician,divorced,professional.course,unknown,no,no,telephone,may,wed,348,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,admin.,married,university.degree,no,no,no,telephone,may,wed,299,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,admin.,married,university.degree,unknown,yes,no,telephone,may,wed,103,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,technician,married,professional.course,no,yes,no,telephone,may,wed,253,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+26,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,73,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,technician,married,professional.course,no,yes,no,telephone,may,wed,164,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,244,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,services,married,high.school,no,no,no,telephone,may,wed,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,technician,married,professional.course,no,yes,no,telephone,may,wed,157,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,548,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,services,divorced,basic.6y,unknown,no,yes,telephone,may,wed,114,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,entrepreneur,married,high.school,no,yes,no,telephone,may,wed,126,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,blue-collar,married,unknown,unknown,yes,yes,telephone,may,wed,161,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+60,services,married,unknown,no,yes,no,telephone,may,wed,333,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,management,married,university.degree,no,yes,no,telephone,may,wed,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,152,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,management,married,university.degree,no,yes,yes,telephone,may,wed,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,66,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,technician,married,professional.course,no,no,no,telephone,may,wed,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,admin.,single,university.degree,no,unknown,unknown,telephone,may,wed,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,248,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,275,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,management,married,university.degree,no,no,no,telephone,may,wed,984,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,admin.,divorced,university.degree,no,no,no,telephone,may,wed,1689,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+58,self-employed,married,professional.course,no,yes,no,telephone,may,wed,84,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,services,married,high.school,no,yes,yes,telephone,may,wed,27,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,entrepreneur,married,university.degree,no,no,no,telephone,may,wed,130,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,489,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,married,university.degree,no,no,no,telephone,may,wed,41,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,blue-collar,single,unknown,no,yes,no,telephone,may,wed,276,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,196,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+59,retired,married,basic.4y,unknown,no,no,telephone,may,wed,81,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,technician,married,professional.course,unknown,unknown,unknown,telephone,may,wed,865,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,management,married,high.school,unknown,no,no,telephone,may,wed,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,management,married,university.degree,no,yes,no,telephone,may,wed,281,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,services,married,high.school,no,no,no,telephone,may,wed,122,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,admin.,married,university.degree,unknown,no,no,telephone,may,wed,361,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,944,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,management,married,university.degree,no,yes,no,telephone,may,wed,319,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,unknown,married,high.school,unknown,no,no,telephone,may,wed,35,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,143,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,22,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,90,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,505,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,services,single,high.school,no,yes,no,telephone,may,wed,17,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,404,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,admin.,married,high.school,no,yes,no,telephone,may,wed,238,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,retired,married,basic.9y,no,yes,yes,telephone,may,wed,71,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,single,basic.4y,unknown,no,no,telephone,may,wed,309,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,408,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,entrepreneur,married,basic.9y,no,no,no,telephone,may,wed,157,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,technician,married,professional.course,no,yes,no,telephone,may,wed,280,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,374,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,365,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,admin.,divorced,high.school,no,yes,no,telephone,may,thu,177,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,technician,married,professional.course,no,yes,no,telephone,may,thu,238,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,31,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+59,retired,married,university.degree,no,no,no,telephone,may,thu,425,6,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,77,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,admin.,married,high.school,no,yes,yes,telephone,may,thu,223,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,admin.,married,university.degree,no,yes,no,telephone,may,thu,239,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+46,blue-collar,married,professional.course,no,no,no,telephone,may,thu,116,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,admin.,single,high.school,no,no,no,telephone,may,thu,308,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,services,single,high.school,no,no,no,telephone,may,thu,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+58,admin.,married,university.degree,no,no,yes,telephone,may,thu,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,self-employed,married,high.school,no,yes,no,telephone,may,thu,175,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,services,married,professional.course,unknown,no,no,telephone,may,thu,125,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,admin.,single,unknown,no,no,no,telephone,may,thu,211,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,retired,married,basic.9y,unknown,yes,no,telephone,may,thu,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,admin.,married,high.school,no,yes,no,telephone,may,thu,67,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,admin.,married,high.school,no,no,no,telephone,may,thu,196,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,admin.,single,university.degree,no,no,no,telephone,may,thu,342,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+52,unknown,married,basic.4y,no,no,no,telephone,may,thu,156,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,services,married,professional.course,no,yes,no,telephone,may,thu,813,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+53,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,housemaid,married,basic.6y,no,no,no,telephone,may,thu,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,blue-collar,married,professional.course,no,yes,no,telephone,may,thu,194,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,admin.,single,high.school,no,yes,no,telephone,may,thu,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,admin.,single,high.school,no,no,yes,telephone,may,thu,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+53,blue-collar,married,high.school,unknown,no,yes,telephone,may,thu,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+55,admin.,married,high.school,no,no,no,telephone,may,thu,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,technician,married,professional.course,no,no,no,telephone,may,thu,31,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,blue-collar,married,basic.9y,no,no,yes,telephone,may,thu,220,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,housemaid,divorced,basic.4y,unknown,no,no,telephone,may,thu,489,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,services,divorced,basic.6y,no,no,no,telephone,may,thu,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,unemployed,married,basic.9y,unknown,no,no,telephone,may,thu,314,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,technician,married,professional.course,unknown,no,no,telephone,may,thu,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,admin.,married,basic.6y,unknown,no,no,telephone,may,thu,328,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,unknown,married,basic.6y,no,no,no,telephone,may,thu,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,technician,married,professional.course,no,no,yes,telephone,may,thu,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,technician,married,high.school,no,yes,yes,telephone,may,thu,177,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,technician,married,professional.course,no,no,no,telephone,may,thu,528,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,blue-collar,married,high.school,no,yes,no,telephone,may,thu,183,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,self-employed,single,university.degree,no,no,no,telephone,may,thu,238,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,blue-collar,married,basic.6y,no,no,yes,telephone,may,thu,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,admin.,married,high.school,no,no,no,telephone,may,thu,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+46,blue-collar,single,basic.9y,no,yes,no,telephone,may,thu,541,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+49,housemaid,married,basic.4y,unknown,no,no,telephone,may,thu,41,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+47,blue-collar,married,basic.6y,no,yes,yes,telephone,may,thu,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,admin.,single,university.degree,unknown,yes,no,telephone,may,thu,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,services,married,unknown,no,yes,no,telephone,may,thu,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,admin.,single,university.degree,unknown,yes,yes,telephone,may,thu,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,604,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,technician,divorced,unknown,no,yes,no,telephone,may,thu,86,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,technician,married,professional.course,no,no,no,telephone,may,thu,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,380,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,11,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,management,married,university.degree,unknown,no,no,telephone,may,thu,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,405,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,unknown,married,basic.9y,no,yes,yes,telephone,may,thu,20,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+46,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,unknown,married,basic.9y,no,yes,no,telephone,may,thu,235,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,management,single,university.degree,no,no,no,telephone,may,thu,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,admin.,married,university.degree,unknown,no,no,telephone,may,thu,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,admin.,single,professional.course,no,no,no,telephone,may,thu,462,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,services,married,high.school,unknown,no,no,telephone,may,thu,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,unemployed,married,basic.4y,no,yes,yes,telephone,may,thu,56,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+53,blue-collar,married,professional.course,no,yes,yes,telephone,may,thu,418,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,management,married,university.degree,no,yes,yes,telephone,may,thu,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+59,retired,married,unknown,no,yes,no,telephone,may,thu,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,unemployed,married,high.school,no,yes,no,telephone,may,thu,39,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+47,services,married,high.school,unknown,yes,no,telephone,may,thu,231,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,technician,married,university.degree,unknown,no,no,telephone,may,thu,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,entrepreneur,single,university.degree,no,yes,no,telephone,may,thu,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,housemaid,married,high.school,unknown,no,no,telephone,may,thu,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,housemaid,married,high.school,unknown,no,no,telephone,may,thu,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,entrepreneur,married,basic.9y,no,yes,no,telephone,may,thu,187,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,unemployed,single,university.degree,no,no,no,telephone,may,thu,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,323,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,services,married,high.school,no,no,no,telephone,may,thu,194,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,unknown,single,basic.4y,unknown,no,no,telephone,may,thu,82,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,blue-collar,divorced,basic.4y,no,no,no,telephone,may,thu,521,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,technician,married,professional.course,no,no,no,telephone,may,thu,269,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,thu,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,blue-collar,married,professional.course,no,no,no,telephone,may,thu,1119,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+55,admin.,married,high.school,no,no,no,telephone,may,thu,294,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,admin.,married,basic.4y,unknown,no,yes,telephone,may,thu,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,student,single,high.school,unknown,no,no,telephone,may,thu,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,12,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,services,married,basic.9y,no,no,no,telephone,may,thu,187,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,blue-collar,married,high.school,no,no,no,telephone,may,thu,268,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+54,technician,married,basic.9y,no,no,no,telephone,may,thu,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,admin.,married,high.school,unknown,no,yes,telephone,may,thu,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,60,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,management,married,university.degree,no,no,yes,telephone,may,thu,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,technician,single,high.school,no,no,no,telephone,may,thu,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,technician,married,professional.course,no,no,no,telephone,may,thu,103,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,student,single,university.degree,no,no,no,telephone,may,thu,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,student,single,university.degree,no,yes,no,telephone,may,thu,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,admin.,divorced,professional.course,no,yes,no,telephone,may,thu,339,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+24,services,single,high.school,no,yes,yes,telephone,may,thu,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,technician,married,university.degree,no,no,yes,telephone,may,thu,141,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,thu,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,technician,single,university.degree,no,yes,no,telephone,may,thu,1120,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+35,admin.,married,university.degree,no,yes,yes,telephone,may,thu,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,admin.,single,high.school,unknown,yes,no,telephone,may,thu,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,technician,married,professional.course,unknown,yes,no,telephone,may,thu,306,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+52,housemaid,married,basic.4y,no,no,no,telephone,may,thu,249,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,admin.,married,high.school,no,yes,yes,telephone,may,thu,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,services,married,high.school,no,yes,no,telephone,may,thu,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,admin.,divorced,university.degree,no,no,no,telephone,may,thu,33,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,393,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,admin.,married,high.school,no,no,no,telephone,may,thu,784,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,technician,married,professional.course,no,yes,yes,telephone,may,thu,87,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,unknown,married,basic.9y,no,no,no,telephone,may,thu,108,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+55,retired,married,university.degree,unknown,no,no,telephone,may,thu,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+57,retired,married,high.school,unknown,yes,no,telephone,may,thu,278,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,entrepreneur,married,basic.6y,no,yes,no,telephone,may,thu,196,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+52,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+60,services,married,high.school,no,yes,no,telephone,may,thu,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+24,student,single,high.school,no,yes,no,telephone,may,thu,287,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,entrepreneur,married,basic.6y,no,no,no,telephone,may,thu,229,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,technician,divorced,high.school,no,no,no,telephone,may,thu,21,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,services,divorced,high.school,no,yes,no,telephone,may,thu,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,admin.,married,basic.6y,no,no,no,telephone,may,thu,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,665,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,admin.,single,university.degree,no,no,no,telephone,may,thu,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,housemaid,married,basic.9y,no,yes,no,telephone,may,thu,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,services,married,basic.9y,no,yes,yes,telephone,may,thu,60,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,services,single,high.school,no,yes,no,telephone,may,thu,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+60,entrepreneur,married,basic.4y,no,yes,no,telephone,may,thu,82,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,services,single,unknown,no,yes,no,telephone,may,thu,475,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,thu,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,unemployed,married,professional.course,no,no,no,telephone,may,thu,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,unemployed,married,professional.course,no,no,yes,telephone,may,thu,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,services,married,basic.6y,no,yes,no,telephone,may,thu,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,services,married,professional.course,unknown,yes,no,telephone,may,thu,156,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,admin.,single,high.school,no,no,no,telephone,may,thu,63,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,362,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,admin.,married,university.degree,unknown,yes,no,telephone,may,thu,712,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,338,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,services,married,university.degree,no,yes,no,telephone,may,thu,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,unemployed,married,high.school,no,no,yes,telephone,may,thu,446,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,admin.,divorced,university.degree,unknown,no,no,telephone,may,thu,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,blue-collar,divorced,professional.course,no,yes,no,telephone,may,thu,176,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,management,married,university.degree,no,no,no,telephone,may,thu,1007,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,blue-collar,married,unknown,unknown,yes,no,telephone,may,thu,266,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,services,married,high.school,no,no,no,telephone,may,thu,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,technician,single,university.degree,no,yes,no,telephone,may,thu,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,technician,single,university.degree,no,no,no,telephone,may,thu,500,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+26,services,divorced,basic.6y,no,no,no,telephone,may,thu,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,management,married,high.school,unknown,no,no,telephone,may,thu,96,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+54,admin.,married,university.degree,no,yes,no,telephone,may,thu,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,364,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,entrepreneur,married,university.degree,no,yes,yes,telephone,may,thu,477,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,admin.,married,university.degree,no,no,no,telephone,may,thu,319,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,services,single,high.school,no,yes,no,telephone,may,thu,789,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+54,admin.,married,university.degree,no,no,no,telephone,may,thu,513,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+37,blue-collar,married,basic.4y,no,no,yes,telephone,may,thu,280,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,blue-collar,divorced,basic.6y,unknown,yes,no,telephone,may,thu,365,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,technician,married,professional.course,no,no,no,telephone,may,thu,63,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,technician,married,university.degree,no,yes,no,telephone,may,thu,159,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,entrepreneur,married,university.degree,no,no,no,telephone,may,thu,177,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,108,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+47,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,194,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,services,divorced,high.school,no,no,no,telephone,may,thu,366,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,admin.,divorced,university.degree,no,yes,no,telephone,may,thu,213,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+59,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,141,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,unemployed,married,university.degree,no,yes,no,telephone,may,thu,168,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,468,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,blue-collar,married,professional.course,no,no,no,telephone,may,thu,195,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,352,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,blue-collar,married,professional.course,no,yes,yes,telephone,may,thu,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,admin.,divorced,university.degree,no,yes,no,telephone,may,thu,93,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,thu,288,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,management,single,basic.6y,no,no,no,telephone,may,thu,218,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,blue-collar,married,basic.9y,no,yes,yes,telephone,may,thu,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,services,married,high.school,no,no,no,telephone,may,thu,130,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,admin.,divorced,high.school,no,yes,no,telephone,may,thu,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+60,entrepreneur,married,basic.4y,no,yes,no,telephone,may,thu,442,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,entrepreneur,married,university.degree,no,no,no,telephone,may,thu,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,technician,married,high.school,no,yes,no,telephone,may,thu,756,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+36,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,342,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,unemployed,married,professional.course,no,no,no,telephone,may,thu,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+54,entrepreneur,married,basic.4y,unknown,no,yes,telephone,may,thu,108,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,management,married,university.degree,no,no,no,telephone,may,thu,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+20,entrepreneur,single,high.school,no,no,no,telephone,may,thu,238,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+24,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,management,single,unknown,no,yes,no,telephone,may,thu,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+55,housemaid,married,basic.4y,no,yes,no,telephone,may,thu,14,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,blue-collar,married,high.school,no,no,no,telephone,may,thu,250,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,admin.,married,basic.9y,unknown,yes,no,telephone,may,thu,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,269,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,491,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,44,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,thu,26,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,technician,single,professional.course,no,no,no,telephone,may,thu,22,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,management,married,university.degree,unknown,yes,no,telephone,may,thu,293,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,blue-collar,single,basic.6y,no,no,no,telephone,may,thu,989,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,147,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,blue-collar,married,basic.9y,no,no,yes,telephone,may,thu,1170,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,management,married,university.degree,no,yes,yes,telephone,may,thu,807,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,347,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,technician,single,basic.6y,unknown,yes,no,telephone,may,thu,58,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,534,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,admin.,single,high.school,no,unknown,unknown,telephone,may,thu,155,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,services,single,basic.9y,no,no,no,telephone,may,thu,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,343,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,admin.,married,high.school,no,yes,no,telephone,may,thu,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,unknown,married,basic.9y,no,no,no,telephone,may,thu,461,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,admin.,married,high.school,no,yes,no,telephone,may,thu,389,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,admin.,married,high.school,no,no,no,telephone,may,thu,90,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,admin.,married,high.school,unknown,no,no,telephone,may,thu,314,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,blue-collar,single,basic.4y,unknown,no,no,telephone,may,thu,28,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,blue-collar,single,basic.9y,unknown,no,no,telephone,may,thu,30,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,admin.,married,high.school,no,yes,no,telephone,may,thu,103,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,technician,married,professional.course,no,no,yes,telephone,may,thu,32,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,services,married,high.school,unknown,no,yes,telephone,may,thu,252,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,20,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,technician,married,professional.course,no,no,no,telephone,may,thu,369,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,services,single,high.school,unknown,no,no,telephone,may,thu,302,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,31,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,admin.,married,university.degree,unknown,no,yes,telephone,may,thu,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,admin.,single,high.school,no,no,no,telephone,may,thu,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,self-employed,single,basic.6y,no,no,no,telephone,may,thu,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,management,married,high.school,unknown,no,no,telephone,may,thu,234,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,unemployed,married,basic.4y,no,no,no,telephone,may,thu,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,services,married,basic.6y,no,no,no,telephone,may,thu,2087,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+35,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,admin.,married,university.degree,no,no,no,telephone,may,thu,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,technician,divorced,professional.course,no,yes,no,telephone,may,thu,223,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+47,admin.,married,university.degree,no,no,no,telephone,may,thu,42,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+59,technician,married,professional.course,unknown,no,no,telephone,may,thu,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,blue-collar,single,high.school,unknown,unknown,unknown,telephone,may,thu,242,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,services,single,high.school,no,no,no,telephone,may,thu,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,173,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,management,single,university.degree,no,no,no,telephone,may,thu,477,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,self-employed,single,university.degree,no,no,no,telephone,may,thu,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,219,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,entrepreneur,married,basic.6y,no,yes,yes,telephone,may,thu,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,admin.,single,basic.9y,no,yes,yes,telephone,may,thu,376,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,technician,divorced,professional.course,no,yes,yes,telephone,may,thu,453,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,housemaid,divorced,university.degree,no,no,no,telephone,may,thu,767,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+54,housemaid,married,basic.9y,no,yes,no,telephone,may,thu,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+53,retired,married,basic.6y,unknown,no,yes,telephone,may,thu,298,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,unemployed,married,basic.9y,no,yes,no,telephone,may,thu,305,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,admin.,married,high.school,no,no,yes,telephone,may,thu,627,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,self-employed,divorced,professional.course,no,no,no,telephone,may,thu,242,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,services,married,high.school,no,yes,no,telephone,may,thu,287,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,blue-collar,single,basic.9y,unknown,yes,yes,telephone,may,thu,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,blue-collar,divorced,basic.9y,no,no,no,telephone,may,thu,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,403,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,self-employed,married,professional.course,no,no,no,telephone,may,thu,626,6,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,blue-collar,married,high.school,no,no,no,telephone,may,thu,12,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+46,blue-collar,divorced,basic.6y,no,no,no,telephone,may,thu,266,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,unemployed,divorced,basic.4y,no,unknown,unknown,telephone,may,thu,23,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,thu,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+53,admin.,married,university.degree,no,no,no,telephone,may,thu,10,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,301,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,services,single,basic.4y,no,no,yes,telephone,may,thu,240,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,admin.,divorced,basic.9y,no,yes,no,telephone,may,thu,312,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,224,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,services,single,professional.course,no,no,no,telephone,may,thu,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,services,divorced,high.school,no,no,no,telephone,may,thu,144,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,263,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+47,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,543,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,technician,married,university.degree,unknown,no,no,telephone,may,thu,257,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,technician,married,professional.course,no,yes,no,telephone,may,thu,237,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+53,retired,married,high.school,unknown,yes,no,telephone,may,thu,23,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+53,management,married,university.degree,no,yes,no,telephone,may,thu,209,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,1178,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+35,services,married,basic.9y,no,yes,yes,telephone,may,thu,442,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,entrepreneur,divorced,high.school,no,yes,no,telephone,may,thu,1120,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+46,entrepreneur,married,basic.4y,no,no,no,telephone,may,thu,186,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,thu,318,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,admin.,married,basic.9y,unknown,yes,no,telephone,may,thu,617,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,self-employed,single,university.degree,no,yes,no,telephone,may,thu,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,technician,married,professional.course,no,yes,no,telephone,may,thu,275,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,management,single,university.degree,no,no,no,telephone,may,thu,81,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,thu,74,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,blue-collar,married,basic.9y,no,no,yes,telephone,may,thu,261,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,admin.,married,high.school,no,yes,yes,telephone,may,thu,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+54,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,thu,422,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,thu,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,services,married,high.school,unknown,yes,no,telephone,may,thu,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,78,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,admin.,divorced,high.school,no,no,yes,telephone,may,thu,15,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,student,married,university.degree,no,no,yes,telephone,may,thu,352,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,management,married,university.degree,no,yes,no,telephone,may,thu,345,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+55,admin.,divorced,university.degree,no,yes,no,telephone,may,thu,230,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,self-employed,single,university.degree,no,no,no,telephone,may,thu,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+57,services,divorced,high.school,unknown,no,yes,telephone,may,thu,185,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,entrepreneur,married,high.school,no,yes,no,telephone,may,thu,181,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,blue-collar,single,high.school,unknown,yes,no,telephone,may,thu,133,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,admin.,single,university.degree,no,no,no,telephone,may,thu,335,9,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,technician,single,university.degree,no,yes,no,telephone,may,thu,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,services,divorced,high.school,no,yes,no,telephone,may,thu,956,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,blue-collar,married,basic.9y,no,yes,yes,telephone,may,thu,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,services,married,basic.9y,no,no,no,telephone,may,thu,95,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+60,entrepreneur,married,basic.4y,no,no,no,telephone,may,thu,71,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,self-employed,single,university.degree,no,no,no,telephone,may,thu,459,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+57,blue-collar,divorced,professional.course,no,no,no,telephone,may,thu,100,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,technician,divorced,unknown,no,no,yes,telephone,may,thu,233,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,entrepreneur,married,basic.9y,no,yes,no,telephone,may,thu,255,6,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+46,technician,divorced,basic.9y,no,yes,no,telephone,may,thu,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,technician,married,professional.course,unknown,yes,no,telephone,may,thu,56,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,management,married,university.degree,no,yes,no,telephone,may,thu,4,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+57,services,married,basic.6y,no,no,no,telephone,may,thu,43,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,admin.,single,basic.6y,no,yes,no,telephone,may,thu,210,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,21,9,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,services,divorced,high.school,no,yes,no,telephone,may,thu,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,services,divorced,high.school,no,no,no,telephone,may,thu,219,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+52,self-employed,single,university.degree,unknown,yes,no,telephone,may,thu,169,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,technician,single,university.degree,no,yes,no,telephone,may,thu,248,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+60,retired,divorced,high.school,no,yes,no,telephone,may,thu,223,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,92,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,blue-collar,married,professional.course,no,yes,no,telephone,may,thu,112,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,services,married,high.school,no,no,no,telephone,may,thu,205,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,services,unknown,high.school,no,yes,yes,telephone,may,thu,155,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,technician,married,professional.course,no,yes,yes,telephone,may,thu,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,technician,married,professional.course,no,no,no,telephone,may,thu,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,383,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,193,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,services,married,high.school,no,no,yes,telephone,may,thu,207,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,132,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,admin.,married,high.school,no,yes,yes,telephone,may,thu,10,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,services,divorced,high.school,no,yes,no,telephone,may,thu,985,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+58,services,married,basic.4y,no,no,no,telephone,may,thu,249,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,blue-collar,single,basic.9y,unknown,no,no,telephone,may,thu,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,300,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,admin.,married,high.school,no,yes,no,telephone,may,thu,672,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,technician,married,professional.course,no,no,no,telephone,may,thu,390,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,116,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,admin.,married,high.school,no,yes,yes,telephone,may,thu,21,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,admin.,married,basic.9y,unknown,no,no,telephone,may,thu,192,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,blue-collar,married,professional.course,unknown,yes,no,telephone,may,thu,8,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,services,married,basic.9y,unknown,no,no,telephone,may,thu,13,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,thu,369,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,admin.,single,university.degree,no,yes,no,telephone,may,thu,393,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+46,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,246,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,technician,married,university.degree,no,yes,no,telephone,may,thu,330,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,admin.,married,university.degree,unknown,yes,yes,telephone,may,thu,91,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,services,married,high.school,no,yes,no,telephone,may,thu,84,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,management,married,university.degree,unknown,no,no,telephone,may,thu,277,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,services,married,high.school,no,yes,no,telephone,may,thu,399,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,admin.,married,high.school,unknown,yes,no,telephone,may,thu,89,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,services,married,basic.9y,no,yes,no,telephone,may,thu,297,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+47,technician,married,professional.course,no,yes,no,telephone,may,thu,111,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,technician,single,professional.course,no,yes,no,telephone,may,thu,170,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,admin.,single,university.degree,no,no,no,telephone,may,thu,141,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,blue-collar,single,high.school,no,yes,yes,telephone,may,thu,886,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,self-employed,married,university.degree,no,no,yes,telephone,may,thu,49,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,services,single,basic.6y,unknown,no,no,telephone,may,thu,89,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,management,divorced,university.degree,unknown,yes,yes,telephone,may,thu,341,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+54,admin.,married,university.degree,no,yes,no,telephone,may,thu,461,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,admin.,single,university.degree,no,no,yes,telephone,may,thu,515,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+55,technician,married,university.degree,no,yes,no,telephone,may,thu,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,admin.,married,high.school,no,no,no,telephone,may,thu,179,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,services,married,high.school,no,no,yes,telephone,may,thu,102,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,unemployed,married,university.degree,no,yes,yes,telephone,may,thu,272,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,services,married,high.school,no,yes,no,telephone,may,thu,17,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,blue-collar,divorced,professional.course,no,no,yes,telephone,may,thu,291,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,services,divorced,high.school,no,yes,no,telephone,may,thu,209,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,services,married,high.school,no,no,no,telephone,may,thu,1187,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,blue-collar,married,high.school,no,yes,no,telephone,may,thu,89,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,admin.,married,university.degree,no,yes,yes,telephone,may,thu,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,management,married,high.school,no,no,no,telephone,may,thu,104,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,admin.,married,university.degree,no,yes,no,telephone,may,thu,117,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+47,services,single,high.school,no,no,no,telephone,may,thu,37,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+56,entrepreneur,married,university.degree,no,yes,no,telephone,may,thu,51,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,management,married,university.degree,no,no,no,telephone,may,thu,627,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,466,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,admin.,divorced,university.degree,no,no,no,telephone,may,thu,101,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+53,entrepreneur,married,university.degree,no,yes,no,telephone,may,thu,303,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,entrepreneur,married,basic.9y,no,yes,no,telephone,may,thu,283,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,self-employed,married,university.degree,unknown,no,no,telephone,may,thu,826,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+20,entrepreneur,single,high.school,no,no,no,telephone,may,thu,598,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,blue-collar,married,professional.course,unknown,yes,no,telephone,may,thu,120,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+47,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,185,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,technician,married,professional.course,no,yes,no,telephone,may,thu,220,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,entrepreneur,married,university.degree,no,yes,no,telephone,may,thu,423,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,technician,single,professional.course,no,yes,yes,telephone,may,thu,337,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,blue-collar,single,professional.course,no,no,no,telephone,may,thu,99,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,blue-collar,single,basic.6y,no,no,no,telephone,may,thu,27,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,blue-collar,single,basic.6y,unknown,no,no,telephone,may,thu,201,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,management,married,university.degree,no,no,no,telephone,may,thu,166,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,services,single,professional.course,no,no,no,telephone,may,thu,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,management,divorced,basic.6y,unknown,yes,no,telephone,may,thu,271,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,admin.,married,high.school,no,yes,no,telephone,may,thu,103,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,admin.,married,university.degree,no,yes,no,telephone,may,thu,379,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,technician,divorced,professional.course,no,yes,no,telephone,may,thu,287,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,732,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,126,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,admin.,single,university.degree,no,no,no,telephone,may,thu,172,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,technician,single,high.school,no,yes,no,telephone,may,thu,43,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,retired,single,high.school,no,no,no,telephone,may,thu,109,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,admin.,married,high.school,no,yes,no,telephone,may,thu,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,management,married,university.degree,no,yes,no,telephone,may,thu,117,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+52,housemaid,married,university.degree,no,yes,no,telephone,may,thu,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,admin.,married,high.school,no,yes,no,telephone,may,thu,260,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+54,technician,married,basic.9y,no,no,no,telephone,may,thu,207,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,admin.,single,university.degree,no,yes,no,telephone,may,thu,128,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,admin.,married,high.school,no,no,no,telephone,may,fri,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,admin.,married,high.school,no,yes,no,telephone,may,fri,110,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,technician,married,professional.course,unknown,no,yes,telephone,may,fri,203,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,admin.,married,professional.course,unknown,yes,no,telephone,may,fri,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,blue-collar,married,professional.course,unknown,no,no,telephone,may,fri,94,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,122,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+60,technician,married,university.degree,unknown,yes,no,telephone,may,fri,175,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,admin.,single,high.school,no,no,no,telephone,may,fri,132,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+55,technician,married,basic.9y,unknown,unknown,unknown,telephone,may,fri,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,services,single,high.school,no,no,no,telephone,may,fri,346,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,management,married,high.school,no,no,no,telephone,may,fri,205,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,admin.,married,university.degree,no,yes,no,telephone,may,fri,218,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,services,married,high.school,no,no,no,telephone,may,fri,62,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,technician,married,university.degree,no,yes,no,telephone,may,fri,93,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+53,housemaid,divorced,basic.6y,unknown,unknown,unknown,telephone,may,fri,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,admin.,married,high.school,no,unknown,unknown,telephone,may,fri,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,self-employed,married,professional.course,no,unknown,unknown,telephone,may,fri,252,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,admin.,married,high.school,no,yes,yes,telephone,may,fri,286,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,unemployed,married,high.school,no,no,no,telephone,may,fri,241,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,unemployed,married,high.school,no,yes,no,telephone,may,fri,283,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,unemployed,married,high.school,no,yes,no,telephone,may,fri,380,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,admin.,married,high.school,no,yes,no,telephone,may,fri,584,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,371,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,blue-collar,married,professional.course,no,no,no,telephone,may,fri,274,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,technician,married,basic.9y,no,no,no,telephone,may,fri,71,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,blue-collar,married,university.degree,no,no,yes,telephone,may,fri,357,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,unknown,unknown,university.degree,no,no,no,telephone,may,fri,617,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+33,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+47,blue-collar,single,basic.4y,no,no,no,telephone,may,fri,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,fri,383,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,services,married,high.school,unknown,no,no,telephone,may,fri,483,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+54,admin.,married,university.degree,no,no,no,telephone,may,fri,847,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,services,married,high.school,no,yes,no,telephone,may,fri,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,306,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,blue-collar,married,high.school,no,no,no,telephone,may,fri,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+55,services,married,high.school,no,yes,no,telephone,may,fri,244,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,admin.,single,high.school,no,yes,no,telephone,may,fri,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,self-employed,married,basic.9y,no,yes,yes,telephone,may,fri,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,management,married,university.degree,no,no,yes,telephone,may,fri,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,management,married,university.degree,no,no,no,telephone,may,fri,21,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+59,management,married,university.degree,no,no,no,telephone,may,fri,659,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+55,technician,married,basic.9y,unknown,yes,no,telephone,may,fri,327,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+53,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,267,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,services,married,basic.6y,no,no,no,telephone,may,fri,296,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,services,married,high.school,no,no,no,telephone,may,fri,307,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,technician,single,professional.course,no,no,no,telephone,may,fri,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+56,housemaid,divorced,high.school,no,no,no,telephone,may,fri,390,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,admin.,married,high.school,no,yes,no,telephone,may,fri,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,management,married,basic.9y,unknown,no,no,telephone,may,fri,772,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+28,services,married,high.school,unknown,no,no,telephone,may,fri,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,management,married,basic.4y,unknown,yes,no,telephone,may,fri,100,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+60,housemaid,married,high.school,unknown,no,no,telephone,may,fri,929,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+32,student,single,university.degree,no,no,no,telephone,may,fri,21,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,unemployed,single,basic.9y,unknown,yes,no,telephone,may,fri,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+56,services,married,basic.4y,unknown,yes,yes,telephone,may,fri,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+20,entrepreneur,single,high.school,no,no,no,telephone,may,fri,217,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+46,admin.,married,university.degree,no,yes,yes,telephone,may,fri,375,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,technician,single,university.degree,unknown,no,no,telephone,may,fri,352,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,admin.,single,university.degree,no,no,no,telephone,may,fri,45,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,admin.,divorced,basic.9y,no,no,no,telephone,may,fri,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,admin.,married,university.degree,unknown,yes,no,telephone,may,fri,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,admin.,married,university.degree,unknown,no,no,telephone,may,fri,266,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+47,unemployed,married,high.school,unknown,yes,no,telephone,may,fri,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+24,technician,single,professional.course,no,no,no,telephone,may,fri,410,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,157,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,services,divorced,high.school,no,no,no,telephone,may,fri,72,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,blue-collar,married,basic.6y,no,unknown,unknown,telephone,may,fri,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+58,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,70,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,blue-collar,married,professional.course,no,yes,yes,telephone,may,fri,710,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+35,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,131,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,admin.,married,high.school,no,no,no,telephone,may,fri,498,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,514,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,admin.,married,basic.9y,no,no,no,telephone,may,fri,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,fri,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,unemployed,divorced,professional.course,unknown,yes,no,telephone,may,fri,705,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,unemployed,married,high.school,unknown,yes,no,telephone,may,fri,239,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+60,retired,married,high.school,no,no,no,telephone,may,fri,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,admin.,divorced,university.degree,no,no,no,telephone,may,fri,18,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,services,single,high.school,no,yes,yes,telephone,may,fri,386,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,admin.,married,basic.9y,unknown,yes,no,telephone,may,fri,138,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,entrepreneur,single,basic.9y,no,no,no,telephone,may,fri,341,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,unemployed,single,professional.course,unknown,no,no,telephone,may,fri,339,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+46,unknown,married,basic.4y,unknown,no,no,telephone,may,fri,232,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,services,divorced,university.degree,no,no,no,telephone,may,fri,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,technician,divorced,professional.course,no,yes,no,telephone,may,fri,44,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,services,single,high.school,unknown,no,no,telephone,may,fri,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+60,retired,married,university.degree,unknown,no,no,telephone,may,fri,485,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+60,retired,married,university.degree,unknown,yes,no,telephone,may,fri,576,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,services,single,high.school,unknown,no,no,telephone,may,fri,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,blue-collar,married,high.school,no,yes,no,telephone,may,fri,480,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,services,married,high.school,no,yes,no,telephone,may,fri,86,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,unknown,single,basic.4y,unknown,no,no,telephone,may,fri,121,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+56,admin.,single,high.school,no,no,no,telephone,may,fri,93,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,admin.,married,university.degree,no,yes,no,telephone,may,fri,238,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,entrepreneur,married,basic.9y,no,no,no,telephone,may,fri,399,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,technician,divorced,high.school,no,no,no,telephone,may,fri,93,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+58,management,married,unknown,unknown,yes,no,telephone,may,fri,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,management,single,university.degree,no,yes,no,telephone,may,fri,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,blue-collar,married,high.school,no,no,yes,telephone,may,fri,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,management,married,university.degree,no,yes,yes,telephone,may,fri,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+26,admin.,married,high.school,no,yes,yes,telephone,may,fri,2462,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,technician,married,professional.course,no,no,no,telephone,may,fri,114,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,fri,1132,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+39,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,249,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,admin.,married,high.school,no,no,no,telephone,may,fri,187,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,admin.,married,high.school,unknown,no,no,telephone,may,fri,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,fri,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,management,married,basic.9y,no,no,no,telephone,may,fri,117,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+52,management,married,professional.course,no,no,no,telephone,may,fri,393,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,blue-collar,single,unknown,unknown,no,no,telephone,may,fri,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,blue-collar,divorced,basic.9y,no,no,no,telephone,may,fri,25,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,blue-collar,single,basic.4y,no,no,no,telephone,may,fri,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,technician,single,professional.course,unknown,no,no,telephone,may,fri,384,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,management,single,university.degree,no,no,no,telephone,may,fri,38,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,management,single,university.degree,no,no,no,telephone,may,fri,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+58,retired,divorced,university.degree,no,yes,no,telephone,may,fri,825,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+56,services,married,high.school,unknown,no,no,telephone,may,fri,331,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,479,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,admin.,married,high.school,no,no,no,telephone,may,fri,229,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,technician,married,professional.course,no,no,no,telephone,may,fri,258,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+60,management,married,university.degree,unknown,no,no,telephone,may,fri,490,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,308,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,admin.,divorced,high.school,no,yes,no,telephone,may,fri,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,unemployed,married,high.school,unknown,no,no,telephone,may,fri,545,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,blue-collar,married,high.school,unknown,yes,no,telephone,may,fri,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,technician,married,high.school,no,no,no,telephone,may,fri,257,6,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,services,married,high.school,no,no,no,telephone,may,fri,213,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+46,services,married,professional.course,no,no,no,telephone,may,fri,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,services,single,basic.9y,unknown,no,no,telephone,may,fri,646,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,services,single,high.school,no,no,no,telephone,may,fri,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,admin.,married,professional.course,no,yes,yes,telephone,may,fri,95,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+24,services,single,high.school,no,yes,no,telephone,may,fri,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,653,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+59,admin.,married,university.degree,no,no,yes,telephone,may,fri,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,technician,married,professional.course,no,no,no,telephone,may,fri,205,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,unemployed,single,basic.4y,unknown,no,no,telephone,may,fri,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+24,services,single,high.school,no,no,no,telephone,may,fri,377,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,322,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,admin.,married,university.degree,unknown,no,no,telephone,may,fri,208,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,technician,married,professional.course,no,yes,no,telephone,may,fri,46,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,admin.,married,university.degree,no,yes,no,telephone,may,fri,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,technician,single,professional.course,no,yes,yes,telephone,may,fri,156,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,unemployed,married,basic.9y,unknown,no,no,telephone,may,fri,471,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,entrepreneur,married,high.school,unknown,yes,no,telephone,may,fri,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,unemployed,single,basic.4y,unknown,no,no,telephone,may,fri,544,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,unemployed,single,basic.4y,unknown,no,no,telephone,may,fri,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,technician,married,professional.course,unknown,yes,no,telephone,may,fri,200,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,self-employed,married,university.degree,no,no,no,telephone,may,fri,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,admin.,divorced,high.school,no,yes,no,telephone,may,fri,324,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,blue-collar,single,high.school,no,no,no,telephone,may,fri,164,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,services,married,high.school,no,no,no,telephone,may,fri,137,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,admin.,married,high.school,no,yes,yes,telephone,may,fri,87,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,admin.,married,high.school,no,no,no,telephone,may,fri,91,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,admin.,married,high.school,unknown,yes,yes,telephone,may,fri,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,admin.,married,high.school,no,yes,yes,telephone,may,fri,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,management,single,university.degree,no,yes,yes,telephone,may,fri,63,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,technician,divorced,professional.course,no,yes,no,telephone,may,fri,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,management,single,university.degree,no,no,no,telephone,may,fri,261,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,admin.,married,high.school,no,no,no,telephone,may,fri,215,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,admin.,married,high.school,no,yes,no,telephone,may,fri,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,admin.,single,university.degree,no,yes,no,telephone,may,fri,391,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+46,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,107,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,services,single,high.school,unknown,no,no,telephone,may,fri,108,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,admin.,single,basic.9y,no,no,no,telephone,may,fri,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,admin.,married,high.school,no,yes,no,telephone,may,fri,142,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,housemaid,married,high.school,unknown,no,yes,telephone,may,fri,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+24,services,single,high.school,no,no,yes,telephone,may,fri,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+53,management,married,basic.4y,no,yes,no,telephone,may,fri,241,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,entrepreneur,married,university.degree,no,no,yes,telephone,may,fri,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+24,services,single,high.school,no,yes,no,telephone,may,fri,654,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+49,entrepreneur,married,high.school,no,no,no,telephone,may,fri,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,blue-collar,married,high.school,no,yes,no,telephone,may,fri,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,admin.,married,high.school,no,yes,yes,telephone,may,fri,1087,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,housemaid,married,basic.4y,no,yes,yes,telephone,may,fri,62,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,entrepreneur,married,high.school,no,no,no,telephone,may,fri,323,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,admin.,single,high.school,no,yes,no,telephone,may,fri,111,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,management,married,university.degree,no,yes,no,telephone,may,fri,197,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,technician,married,professional.course,no,yes,yes,telephone,may,fri,224,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,blue-collar,single,basic.6y,no,no,no,telephone,may,fri,557,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,admin.,married,basic.9y,no,yes,no,telephone,may,fri,150,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,technician,married,professional.course,no,no,yes,telephone,may,fri,388,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,technician,married,professional.course,no,no,no,telephone,may,fri,194,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+60,technician,divorced,professional.course,unknown,yes,no,telephone,may,fri,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,retired,married,high.school,no,no,no,telephone,may,fri,209,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,housemaid,divorced,high.school,no,no,no,telephone,may,fri,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+56,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,342,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,technician,married,professional.course,no,yes,no,telephone,may,fri,84,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,entrepreneur,married,university.degree,no,no,no,telephone,may,fri,530,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,blue-collar,single,basic.9y,unknown,yes,yes,telephone,may,fri,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,technician,married,professional.course,no,no,yes,telephone,may,fri,365,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+47,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+47,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,352,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,unemployed,married,basic.9y,no,yes,yes,telephone,may,fri,316,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,79,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,housemaid,married,basic.4y,unknown,yes,yes,telephone,may,fri,331,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,technician,married,professional.course,no,no,no,telephone,may,fri,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+58,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,admin.,married,university.degree,no,no,yes,telephone,may,fri,1692,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+34,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,technician,married,professional.course,no,yes,no,telephone,may,fri,253,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+52,admin.,married,university.degree,no,no,no,telephone,may,fri,622,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+46,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,admin.,single,university.degree,no,yes,yes,telephone,may,fri,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+53,self-employed,married,university.degree,no,no,no,telephone,may,fri,404,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,275,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,technician,married,professional.course,no,no,no,telephone,may,fri,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,admin.,married,high.school,no,no,yes,telephone,may,fri,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,admin.,married,high.school,no,no,no,telephone,may,fri,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,admin.,married,high.school,no,yes,no,telephone,may,fri,93,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,admin.,married,high.school,no,yes,yes,telephone,may,fri,20,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,blue-collar,single,basic.4y,no,yes,no,telephone,may,fri,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,management,married,unknown,no,yes,no,telephone,may,fri,129,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,blue-collar,single,basic.4y,no,no,no,telephone,may,fri,324,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,admin.,married,university.degree,unknown,yes,no,telephone,may,fri,2016,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+34,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,1054,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,admin.,married,basic.9y,no,no,no,telephone,may,fri,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+59,admin.,married,university.degree,no,no,no,telephone,may,fri,279,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,technician,divorced,professional.course,no,no,no,telephone,may,fri,251,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+52,management,married,high.school,unknown,yes,no,telephone,may,fri,113,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,fri,193,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,125,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,technician,married,university.degree,no,no,no,telephone,may,fri,282,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+49,services,married,high.school,no,yes,no,telephone,may,fri,344,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,fri,665,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes
+41,technician,married,university.degree,no,yes,no,telephone,may,fri,67,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,services,single,high.school,no,yes,no,telephone,may,fri,167,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,admin.,single,university.degree,no,yes,no,telephone,may,fri,395,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,admin.,single,high.school,no,yes,no,telephone,may,fri,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,management,single,university.degree,no,no,no,telephone,may,fri,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+53,admin.,married,university.degree,unknown,yes,no,telephone,may,fri,231,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,management,single,university.degree,no,yes,no,telephone,may,fri,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,technician,single,university.degree,no,no,no,telephone,may,fri,195,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+55,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,admin.,married,university.degree,no,yes,no,telephone,may,fri,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,blue-collar,single,high.school,no,no,no,telephone,may,fri,79,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+26,admin.,married,university.degree,no,yes,yes,telephone,may,fri,13,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+52,self-employed,married,university.degree,no,no,no,telephone,may,fri,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,admin.,single,university.degree,no,yes,no,telephone,may,fri,286,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,management,single,university.degree,no,yes,yes,telephone,may,fri,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+60,management,married,university.degree,unknown,no,no,telephone,may,fri,409,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,fri,325,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,admin.,single,university.degree,no,yes,yes,telephone,may,fri,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,unemployed,married,basic.9y,no,yes,no,telephone,may,fri,1713,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+47,management,divorced,basic.4y,no,no,no,telephone,may,fri,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,technician,married,university.degree,no,no,no,telephone,may,fri,338,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,services,married,high.school,no,no,no,telephone,may,fri,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+52,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,346,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,management,married,unknown,no,no,no,telephone,may,fri,204,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,296,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,551,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,663,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,technician,married,professional.course,no,yes,no,telephone,may,fri,338,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,services,married,high.school,no,yes,no,telephone,may,fri,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,admin.,single,university.degree,no,no,no,telephone,may,fri,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+26,technician,married,high.school,no,yes,no,telephone,may,fri,305,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,admin.,married,high.school,no,yes,no,telephone,may,fri,1080,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+56,admin.,married,university.degree,no,no,no,telephone,may,fri,1461,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,entrepreneur,single,university.degree,no,no,no,telephone,may,fri,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,technician,single,professional.course,no,no,no,telephone,may,fri,98,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,housemaid,married,high.school,no,yes,no,telephone,may,fri,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+55,unemployed,single,basic.4y,unknown,unknown,unknown,telephone,may,fri,147,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,technician,single,professional.course,no,no,no,telephone,may,fri,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,unknown,married,university.degree,no,unknown,unknown,telephone,may,fri,282,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,services,married,high.school,no,yes,no,telephone,may,fri,332,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,admin.,single,university.degree,no,no,no,telephone,may,fri,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,fri,455,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+56,admin.,married,high.school,no,yes,no,telephone,may,fri,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,entrepreneur,married,unknown,unknown,yes,no,telephone,may,fri,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+54,management,married,basic.4y,unknown,no,no,telephone,may,fri,345,9,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,admin.,married,university.degree,no,yes,no,telephone,may,fri,154,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,services,single,basic.9y,unknown,yes,no,telephone,may,fri,294,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,750,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+59,admin.,married,university.degree,no,yes,no,telephone,may,fri,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+46,blue-collar,married,professional.course,no,yes,no,telephone,may,fri,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,admin.,divorced,university.degree,no,no,yes,telephone,may,fri,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,admin.,married,university.degree,no,yes,no,telephone,may,fri,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,admin.,divorced,university.degree,no,no,no,telephone,may,fri,279,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+56,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,400,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,admin.,married,high.school,no,yes,no,telephone,may,fri,231,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,housemaid,married,high.school,unknown,yes,no,telephone,may,fri,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,blue-collar,divorced,basic.9y,no,no,yes,telephone,may,fri,70,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,self-employed,single,university.degree,unknown,yes,no,telephone,may,fri,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+58,entrepreneur,married,university.degree,unknown,no,no,telephone,may,fri,107,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,142,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,technician,single,professional.course,unknown,no,no,telephone,may,fri,180,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+52,management,married,professional.course,no,unknown,unknown,telephone,may,fri,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,technician,single,high.school,no,no,yes,telephone,may,fri,213,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,management,single,university.degree,no,no,no,telephone,may,fri,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,blue-collar,single,high.school,unknown,no,no,telephone,may,fri,44,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,229,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,management,single,university.degree,no,yes,no,telephone,may,fri,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,management,married,university.degree,no,no,no,telephone,may,fri,32,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,services,married,high.school,no,no,no,telephone,may,fri,73,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,admin.,married,university.degree,no,no,no,telephone,may,fri,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+52,self-employed,married,university.degree,no,yes,no,telephone,may,fri,83,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,379,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+56,services,married,high.school,unknown,yes,no,telephone,may,fri,26,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,technician,married,professional.course,no,no,no,telephone,may,fri,169,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,admin.,married,high.school,unknown,yes,no,telephone,may,fri,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,retired,married,basic.4y,unknown,yes,no,telephone,may,fri,89,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,admin.,single,basic.9y,unknown,no,no,telephone,may,fri,210,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+30,technician,married,professional.course,no,no,yes,telephone,may,fri,393,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+46,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,128,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+26,admin.,single,high.school,unknown,yes,no,telephone,may,fri,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,admin.,single,basic.9y,no,no,no,telephone,may,fri,1178,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+46,self-employed,married,basic.9y,unknown,yes,no,telephone,may,fri,182,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,management,married,high.school,no,yes,no,telephone,may,fri,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,housemaid,divorced,high.school,no,no,no,telephone,may,fri,177,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,technician,single,basic.9y,unknown,no,no,telephone,may,fri,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,blue-collar,married,professional.course,no,no,no,telephone,may,fri,245,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+57,entrepreneur,married,high.school,unknown,yes,no,telephone,may,fri,255,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,admin.,divorced,basic.9y,unknown,no,no,telephone,may,fri,488,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,services,married,professional.course,unknown,yes,no,telephone,may,fri,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,unknown,single,basic.9y,unknown,unknown,unknown,telephone,may,fri,226,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,services,married,high.school,no,no,no,telephone,may,fri,460,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,services,married,high.school,no,yes,no,telephone,may,fri,432,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,housemaid,single,basic.9y,unknown,yes,yes,telephone,may,fri,136,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,admin.,single,high.school,no,no,no,telephone,may,fri,176,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,services,married,basic.9y,no,yes,no,telephone,may,fri,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,housemaid,single,university.degree,no,yes,no,telephone,may,fri,237,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,services,married,high.school,unknown,no,yes,telephone,may,fri,134,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,admin.,married,high.school,no,yes,no,telephone,may,fri,44,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,fri,47,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,483,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+29,services,married,basic.9y,no,no,no,telephone,may,fri,116,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,technician,single,professional.course,no,no,no,telephone,may,fri,182,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,admin.,single,university.degree,no,yes,no,telephone,may,fri,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,232,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,blue-collar,married,high.school,no,no,no,telephone,may,fri,51,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+59,retired,married,basic.4y,unknown,no,no,telephone,may,fri,260,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,technician,single,professional.course,no,no,no,telephone,may,fri,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,407,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,services,married,high.school,no,yes,no,telephone,may,fri,389,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,admin.,married,high.school,no,yes,no,telephone,may,fri,31,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+48,admin.,married,basic.9y,no,no,yes,telephone,may,fri,145,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+44,services,divorced,high.school,unknown,yes,no,telephone,may,fri,115,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,blue-collar,divorced,basic.9y,no,no,no,telephone,may,fri,878,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,self-employed,married,professional.course,no,no,no,telephone,may,fri,268,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,entrepreneur,married,basic.4y,unknown,no,no,telephone,may,fri,277,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+24,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,101,6,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,management,married,high.school,no,yes,no,telephone,may,fri,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+56,services,divorced,high.school,unknown,no,no,telephone,may,fri,185,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+50,technician,married,university.degree,no,yes,no,telephone,may,fri,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,blue-collar,married,high.school,no,no,no,telephone,may,fri,18,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,self-employed,single,university.degree,no,unknown,unknown,telephone,may,fri,317,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,services,single,high.school,no,unknown,unknown,telephone,may,fri,71,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,43,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+34,blue-collar,married,unknown,unknown,unknown,unknown,telephone,may,fri,298,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+27,services,single,high.school,no,no,no,telephone,may,fri,86,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+31,admin.,married,university.degree,unknown,no,no,telephone,may,fri,255,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+39,housemaid,married,basic.4y,no,yes,yes,telephone,may,fri,83,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+26,entrepreneur,married,unknown,no,no,no,telephone,may,fri,194,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,fri,268,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+25,student,single,high.school,no,no,no,telephone,may,fri,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+33,services,married,high.school,no,yes,no,telephone,may,fri,263,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,blue-collar,married,unknown,no,no,no,telephone,may,fri,338,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,entrepreneur,single,university.degree,no,no,no,telephone,may,fri,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+46,housemaid,married,basic.9y,no,no,no,telephone,may,fri,322,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+53,admin.,divorced,high.school,no,yes,no,telephone,may,fri,64,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+32,unemployed,married,basic.9y,no,no,no,telephone,may,fri,71,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,services,divorced,basic.9y,no,yes,no,telephone,may,fri,284,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,technician,single,professional.course,no,yes,no,telephone,may,fri,166,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+26,technician,married,professional.course,no,yes,no,telephone,may,fri,210,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+52,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,fri,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+54,admin.,married,basic.4y,unknown,no,no,telephone,may,fri,77,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+51,services,married,professional.course,unknown,no,no,telephone,may,fri,328,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+42,admin.,married,basic.9y,no,yes,no,telephone,may,fri,164,8,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,management,single,unknown,no,no,no,telephone,may,fri,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+26,services,single,high.school,no,no,no,telephone,may,fri,155,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+38,housemaid,married,basic.6y,unknown,yes,no,telephone,may,fri,153,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+54,technician,married,unknown,unknown,no,no,telephone,may,fri,111,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+41,blue-collar,divorced,basic.4y,no,no,no,telephone,may,fri,91,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+26,blue-collar,single,high.school,no,no,no,telephone,may,fri,213,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,management,married,basic.4y,no,yes,no,telephone,may,fri,257,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+28,technician,single,professional.course,no,yes,no,telephone,may,fri,315,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+35,technician,divorced,professional.course,no,no,yes,telephone,may,fri,102,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+45,admin.,married,high.school,no,no,yes,telephone,may,fri,35,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,admin.,married,high.school,no,no,no,telephone,may,fri,83,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+37,technician,married,professional.course,no,yes,no,telephone,may,fri,834,9,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+52,technician,married,university.degree,no,no,no,telephone,may,fri,244,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,admin.,married,high.school,no,yes,no,telephone,may,fri,143,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+40,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,277,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+43,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,1534,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,291,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no
+36,blue-collar,single,high.school,no,no,yes,telephone,may,mon,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,mon,149,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,33,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,professional.course,unknown,no,no,telephone,may,mon,144,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,married,basic.4y,unknown,yes,yes,telephone,may,mon,146,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,divorced,basic.9y,no,no,no,telephone,may,mon,40,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,married,professional.course,unknown,yes,no,telephone,may,mon,79,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,single,university.degree,unknown,no,no,telephone,may,mon,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,married,university.degree,no,yes,no,telephone,may,mon,147,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,836,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,married,high.school,no,yes,no,telephone,may,mon,290,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,technician,divorced,professional.course,no,yes,no,telephone,may,mon,148,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,services,divorced,high.school,no,yes,no,telephone,may,mon,289,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,single,basic.4y,no,yes,no,telephone,may,mon,345,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,self-employed,married,university.degree,no,yes,no,telephone,may,mon,1002,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,management,married,university.degree,unknown,yes,no,telephone,may,mon,181,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,management,married,university.degree,no,no,no,telephone,may,mon,460,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+33,unemployed,married,professional.course,unknown,yes,no,telephone,may,mon,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,entrepreneur,married,high.school,no,yes,no,telephone,may,mon,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,technician,single,professional.course,no,yes,no,telephone,may,mon,111,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,blue-collar,married,unknown,unknown,unknown,unknown,telephone,may,mon,98,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,married,high.school,unknown,yes,no,telephone,may,mon,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,services,divorced,professional.course,no,yes,no,telephone,may,mon,150,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,399,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,unknown,married,unknown,unknown,no,no,telephone,may,mon,139,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,high.school,no,yes,no,telephone,may,mon,115,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,149,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,admin.,married,university.degree,no,no,yes,telephone,may,mon,327,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,retired,married,university.degree,unknown,no,no,telephone,may,mon,92,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,single,high.school,no,no,no,telephone,may,mon,111,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,192,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,married,high.school,no,yes,no,telephone,may,mon,88,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,self-employed,married,university.degree,no,no,no,telephone,may,mon,592,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,married,professional.course,unknown,no,no,telephone,may,mon,105,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,admin.,married,high.school,no,yes,yes,telephone,may,mon,62,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,114,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,59,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,management,divorced,high.school,no,no,no,telephone,may,mon,144,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,management,married,basic.9y,no,yes,yes,telephone,may,mon,346,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,single,basic.6y,no,yes,no,telephone,may,mon,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,married,high.school,no,yes,no,telephone,may,mon,396,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,286,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,entrepreneur,married,university.degree,no,yes,no,telephone,may,mon,59,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,admin.,divorced,university.degree,no,yes,no,telephone,may,mon,38,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,technician,divorced,professional.course,unknown,yes,no,telephone,may,mon,252,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,services,married,basic.4y,unknown,yes,no,telephone,may,mon,566,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,housemaid,married,university.degree,no,yes,no,telephone,may,mon,167,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,married,professional.course,unknown,no,no,telephone,may,mon,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,services,married,high.school,unknown,unknown,unknown,telephone,may,mon,71,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,unemployed,married,high.school,unknown,no,no,telephone,may,mon,120,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,single,university.degree,no,no,no,telephone,may,mon,409,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,management,divorced,university.degree,no,yes,no,telephone,may,mon,117,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,divorced,high.school,no,no,no,telephone,may,mon,177,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,services,single,high.school,no,no,no,telephone,may,mon,757,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+49,management,divorced,high.school,unknown,yes,no,telephone,may,mon,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,management,divorced,high.school,unknown,no,no,telephone,may,mon,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,retired,single,university.degree,no,no,no,telephone,may,mon,36,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,professional.course,no,no,no,telephone,may,mon,94,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,management,married,basic.6y,unknown,no,no,telephone,may,mon,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,unemployed,married,unknown,unknown,no,no,telephone,may,mon,33,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,technician,divorced,basic.9y,unknown,yes,no,telephone,may,mon,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,entrepreneur,divorced,high.school,no,no,no,telephone,may,mon,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,entrepreneur,divorced,high.school,no,no,no,telephone,may,mon,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,single,high.school,no,no,no,telephone,may,mon,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,professional.course,no,yes,no,telephone,may,mon,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,management,married,university.degree,no,no,no,telephone,may,mon,405,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,172,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,management,single,university.degree,no,yes,yes,telephone,may,mon,207,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,university.degree,no,yes,no,telephone,may,mon,325,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,student,single,high.school,unknown,no,no,telephone,may,mon,57,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,management,married,university.degree,unknown,no,no,telephone,may,mon,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,married,high.school,unknown,no,no,telephone,may,mon,164,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,management,divorced,university.degree,no,no,no,telephone,may,mon,288,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,services,divorced,high.school,unknown,no,no,telephone,may,mon,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,basic.4y,no,yes,yes,telephone,may,mon,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,married,professional.course,no,no,no,telephone,may,mon,53,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,university.degree,no,no,no,telephone,may,mon,744,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+32,blue-collar,married,professional.course,no,no,no,telephone,may,mon,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,113,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,technician,divorced,university.degree,no,no,no,telephone,may,mon,130,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,technician,married,university.degree,no,no,no,telephone,may,mon,523,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,self-employed,married,university.degree,no,no,no,telephone,may,mon,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,blue-collar,married,high.school,no,no,no,telephone,may,mon,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,entrepreneur,married,university.degree,unknown,no,no,telephone,may,mon,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,divorced,high.school,no,no,no,telephone,may,mon,281,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,363,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,housemaid,divorced,basic.4y,unknown,no,no,telephone,may,mon,86,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,technician,single,university.degree,no,no,no,telephone,may,mon,1147,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,married,university.degree,no,yes,yes,telephone,may,mon,486,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,49,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,divorced,high.school,no,no,no,telephone,may,mon,170,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,housemaid,single,university.degree,no,no,yes,telephone,may,mon,539,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,single,university.degree,unknown,no,no,telephone,may,mon,66,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,entrepreneur,married,basic.4y,no,no,no,telephone,may,mon,820,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,mon,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,services,divorced,high.school,no,no,no,telephone,may,mon,398,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,management,married,university.degree,no,yes,no,telephone,may,mon,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,management,married,university.degree,no,no,no,telephone,may,mon,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,services,married,high.school,unknown,no,no,telephone,may,mon,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,95,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,professional.course,unknown,yes,no,telephone,may,mon,140,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,services,married,high.school,no,no,no,telephone,may,mon,788,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,single,basic.9y,no,yes,no,telephone,may,mon,239,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,194,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,married,university.degree,no,no,no,telephone,may,mon,165,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,single,basic.9y,unknown,no,no,telephone,may,mon,306,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,self-employed,married,university.degree,unknown,no,no,telephone,may,mon,63,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,unemployed,married,university.degree,no,yes,no,telephone,may,mon,501,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,married,professional.course,no,yes,no,telephone,may,mon,832,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,entrepreneur,married,high.school,no,no,no,telephone,may,mon,214,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,unemployed,married,high.school,unknown,yes,yes,telephone,may,mon,283,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,technician,married,professional.course,no,yes,no,telephone,may,mon,101,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,married,university.degree,no,yes,yes,telephone,may,mon,77,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,management,single,unknown,no,no,no,telephone,may,mon,290,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,housemaid,married,university.degree,no,no,no,telephone,may,mon,388,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,single,unknown,no,yes,yes,telephone,may,mon,1111,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+27,admin.,single,high.school,unknown,unknown,unknown,telephone,may,mon,1495,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,322,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,single,professional.course,no,no,no,telephone,may,mon,480,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,services,married,high.school,unknown,yes,yes,telephone,may,mon,146,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,professional.course,no,no,no,telephone,may,mon,393,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,entrepreneur,single,university.degree,no,yes,no,telephone,may,mon,744,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,single,university.degree,no,yes,no,telephone,may,mon,593,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,married,basic.9y,no,yes,no,telephone,may,mon,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,mon,379,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,married,basic.9y,no,yes,no,telephone,may,mon,315,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,married,high.school,no,yes,no,telephone,may,mon,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,married,basic.9y,no,no,no,telephone,may,mon,493,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,student,single,university.degree,unknown,yes,no,telephone,may,mon,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,student,single,university.degree,unknown,yes,no,telephone,may,mon,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,technician,married,professional.course,no,no,no,telephone,may,mon,80,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,management,divorced,professional.course,no,no,no,telephone,may,mon,39,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,management,married,high.school,no,yes,no,telephone,may,mon,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,university.degree,no,no,no,telephone,may,mon,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,single,basic.9y,unknown,unknown,unknown,telephone,may,mon,386,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,457,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,mon,891,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,retired,single,high.school,no,no,no,telephone,may,mon,53,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,high.school,unknown,no,no,telephone,may,mon,326,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,retired,single,high.school,no,yes,yes,telephone,may,mon,507,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,1083,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.4y,no,yes,yes,telephone,may,mon,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,retired,single,high.school,no,unknown,unknown,telephone,may,mon,1266,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,technician,married,basic.9y,no,no,no,telephone,may,mon,171,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,services,married,basic.4y,unknown,yes,no,telephone,may,mon,160,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,single,basic.9y,no,no,no,telephone,may,mon,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,entrepreneur,married,basic.6y,no,no,no,telephone,may,mon,156,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,unemployed,married,basic.9y,unknown,no,no,telephone,may,mon,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,married,basic.9y,no,no,no,telephone,may,mon,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,single,basic.9y,no,yes,yes,telephone,may,mon,163,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,mon,391,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,470,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,management,married,university.degree,unknown,no,no,telephone,may,mon,268,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,793,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,management,married,basic.9y,no,no,no,telephone,may,mon,219,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,retired,divorced,basic.4y,no,no,no,telephone,may,mon,460,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,technician,married,professional.course,no,yes,yes,telephone,may,mon,246,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,single,university.degree,no,yes,no,telephone,may,mon,194,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,413,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,unemployed,married,basic.4y,unknown,yes,no,telephone,may,mon,574,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,divorced,university.degree,no,yes,no,telephone,may,mon,256,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,88,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,self-employed,divorced,university.degree,no,yes,yes,telephone,may,mon,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,self-employed,divorced,university.degree,no,yes,no,telephone,may,mon,596,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,170,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,admin.,single,high.school,no,unknown,unknown,telephone,may,mon,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,admin.,single,high.school,no,no,no,telephone,may,mon,577,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,177,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,married,high.school,no,yes,no,telephone,may,mon,335,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,single,high.school,no,yes,no,telephone,may,mon,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,136,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,mon,289,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,529,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,247,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,services,married,high.school,no,unknown,unknown,telephone,may,mon,72,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,admin.,married,high.school,no,yes,no,telephone,may,mon,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,technician,married,university.degree,no,yes,no,telephone,may,mon,320,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,married,professional.course,no,yes,no,telephone,may,mon,307,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,married,high.school,no,no,no,telephone,may,mon,220,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,retired,divorced,professional.course,no,no,no,telephone,may,mon,241,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,services,divorced,professional.course,no,no,no,telephone,may,mon,241,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,blue-collar,married,professional.course,unknown,yes,yes,telephone,may,mon,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,management,married,professional.course,no,no,no,telephone,may,mon,98,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,divorced,basic.6y,no,yes,no,telephone,may,mon,391,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,single,university.degree,no,no,yes,telephone,may,mon,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,admin.,married,high.school,no,yes,no,telephone,may,mon,55,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,self-employed,married,university.degree,no,yes,yes,telephone,may,mon,86,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,retired,single,high.school,no,no,no,telephone,may,mon,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,high.school,unknown,no,no,telephone,may,mon,66,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,technician,married,basic.6y,no,no,yes,telephone,may,mon,155,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,married,professional.course,unknown,no,no,telephone,may,mon,311,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,63,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,management,married,university.degree,no,no,no,telephone,may,mon,236,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.9y,no,no,yes,telephone,may,mon,92,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,management,single,university.degree,no,yes,no,telephone,may,mon,253,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,basic.4y,no,yes,no,telephone,may,mon,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,41,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,mon,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,admin.,married,basic.9y,unknown,no,no,telephone,may,mon,10,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,services,married,professional.course,no,no,no,telephone,may,mon,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,484,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,management,married,university.degree,unknown,no,no,telephone,may,mon,467,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,technician,married,university.degree,no,yes,no,telephone,may,mon,241,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,management,single,university.degree,no,no,no,telephone,may,mon,248,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,services,divorced,high.school,no,no,no,telephone,may,mon,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,212,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,high.school,no,yes,yes,telephone,may,mon,115,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.6y,unknown,no,no,telephone,may,mon,58,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,single,high.school,no,unknown,unknown,telephone,may,mon,456,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,145,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,300,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,management,married,high.school,no,no,no,telephone,may,mon,264,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,married,basic.9y,unknown,yes,yes,telephone,may,mon,184,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,services,married,high.school,unknown,yes,no,telephone,may,mon,177,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,65,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,299,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,single,high.school,unknown,yes,no,telephone,may,mon,93,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,22,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,basic.4y,no,unknown,unknown,telephone,may,mon,170,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,unknown,no,no,no,telephone,may,mon,89,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,high.school,no,yes,no,telephone,may,mon,166,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,unemployed,married,basic.9y,no,unknown,unknown,telephone,may,mon,128,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,admin.,married,high.school,no,yes,yes,telephone,may,mon,197,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,unknown,yes,no,telephone,may,mon,395,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,technician,married,professional.course,no,yes,no,telephone,may,mon,220,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,divorced,basic.4y,no,no,yes,telephone,may,mon,298,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,technician,married,university.degree,unknown,no,yes,telephone,may,mon,123,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,334,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,high.school,unknown,yes,no,telephone,may,mon,73,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,single,university.degree,unknown,yes,yes,telephone,may,mon,186,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,services,divorced,high.school,no,no,no,telephone,may,mon,78,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,high.school,no,no,no,telephone,may,mon,13,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,single,unknown,no,no,no,telephone,may,mon,51,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,divorced,university.degree,unknown,no,no,telephone,may,mon,303,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,married,high.school,no,no,no,telephone,may,mon,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,unknown,married,unknown,unknown,no,no,telephone,may,mon,103,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,single,basic.4y,unknown,no,no,telephone,may,mon,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,married,basic.9y,unknown,yes,no,telephone,may,mon,46,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,housemaid,married,basic.4y,unknown,yes,no,telephone,may,mon,84,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,married,basic.9y,unknown,yes,no,telephone,may,mon,344,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,technician,married,professional.course,no,no,no,telephone,may,mon,157,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,divorced,basic.6y,no,no,no,telephone,may,mon,162,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,entrepreneur,married,basic.9y,no,no,no,telephone,may,mon,249,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,management,married,university.degree,no,no,no,telephone,may,mon,24,12,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,high.school,no,unknown,unknown,telephone,may,mon,185,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,admin.,divorced,university.degree,unknown,yes,no,telephone,may,mon,212,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,admin.,single,high.school,no,yes,no,telephone,may,mon,195,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,single,basic.4y,no,yes,no,telephone,may,mon,143,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,68,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,management,married,university.degree,no,yes,no,telephone,may,mon,274,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,152,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,high.school,no,no,no,telephone,may,mon,325,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,249,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,single,high.school,no,yes,yes,telephone,may,mon,111,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,high.school,no,yes,no,telephone,may,mon,81,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,181,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,unemployed,single,professional.course,no,no,no,telephone,may,tue,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,entrepreneur,divorced,unknown,no,yes,no,telephone,may,tue,141,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,tue,182,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+25,services,married,high.school,no,yes,no,telephone,may,tue,530,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,housemaid,single,university.degree,no,no,no,telephone,may,tue,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,services,married,high.school,no,yes,no,telephone,may,tue,176,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,management,married,university.degree,no,no,no,telephone,may,tue,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,blue-collar,married,professional.course,unknown,unknown,unknown,telephone,may,tue,514,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,181,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,504,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+60,technician,divorced,professional.course,unknown,yes,no,telephone,may,tue,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,267,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,admin.,married,university.degree,no,yes,no,telephone,may,tue,907,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,technician,married,university.degree,no,no,no,telephone,may,tue,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,technician,single,professional.course,no,no,no,telephone,may,tue,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,single,university.degree,no,yes,no,telephone,may,tue,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+26,admin.,single,high.school,no,no,no,telephone,may,tue,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+55,unemployed,married,basic.4y,unknown,yes,no,telephone,may,tue,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+59,housemaid,married,basic.4y,unknown,no,yes,telephone,may,tue,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,blue-collar,single,basic.9y,no,unknown,unknown,telephone,may,tue,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,723,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,services,married,basic.9y,no,yes,no,telephone,may,tue,518,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,admin.,single,high.school,no,yes,yes,telephone,may,tue,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,admin.,single,high.school,no,no,no,telephone,may,tue,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,admin.,single,university.degree,unknown,no,no,telephone,may,tue,1346,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+53,admin.,married,high.school,no,yes,no,telephone,may,tue,520,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,611,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,unemployed,married,basic.9y,unknown,yes,no,telephone,may,tue,66,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,admin.,married,high.school,no,yes,no,telephone,may,tue,135,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,retired,divorced,basic.4y,no,yes,no,telephone,may,tue,276,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,services,single,professional.course,unknown,no,no,telephone,may,tue,449,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,management,single,university.degree,no,no,no,telephone,may,tue,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,105,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,admin.,divorced,university.degree,no,no,no,telephone,may,tue,382,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,housemaid,married,basic.4y,no,no,no,telephone,may,tue,213,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,admin.,married,high.school,no,yes,no,telephone,may,tue,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,unknown,married,university.degree,no,no,yes,telephone,may,tue,249,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,self-employed,married,university.degree,no,yes,no,telephone,may,tue,50,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,admin.,single,university.degree,no,no,yes,telephone,may,tue,138,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,unknown,married,basic.4y,unknown,no,no,telephone,may,tue,375,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,admin.,single,university.degree,no,yes,no,telephone,may,tue,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,management,single,university.degree,no,no,no,telephone,may,tue,169,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,unemployed,married,basic.9y,unknown,no,no,telephone,may,tue,1386,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+26,admin.,married,high.school,unknown,no,no,telephone,may,tue,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,blue-collar,divorced,basic.4y,no,no,no,telephone,may,tue,244,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,428,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,entrepreneur,married,professional.course,no,yes,no,telephone,may,tue,53,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,blue-collar,divorced,basic.4y,no,no,no,telephone,may,tue,360,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,admin.,single,high.school,unknown,no,no,telephone,may,tue,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,tue,500,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,technician,divorced,high.school,no,no,no,telephone,may,tue,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,management,married,basic.4y,no,yes,yes,telephone,may,tue,568,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+22,blue-collar,single,basic.6y,unknown,unknown,unknown,telephone,may,tue,270,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,admin.,married,university.degree,no,unknown,unknown,telephone,may,tue,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,technician,married,basic.4y,unknown,unknown,unknown,telephone,may,tue,272,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,services,married,high.school,no,no,no,telephone,may,tue,229,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,technician,married,professional.course,no,no,no,telephone,may,tue,108,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,admin.,married,university.degree,no,yes,no,telephone,may,tue,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,technician,married,professional.course,unknown,yes,no,telephone,may,tue,383,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,self-employed,married,basic.4y,unknown,yes,no,telephone,may,tue,3366,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,technician,divorced,professional.course,no,no,no,telephone,may,tue,259,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,management,married,basic.9y,no,yes,no,telephone,may,tue,1000,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+35,admin.,single,high.school,no,yes,yes,telephone,may,tue,618,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+28,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,technician,single,university.degree,unknown,no,no,telephone,may,tue,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,admin.,single,university.degree,no,no,no,telephone,may,tue,351,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,housemaid,married,high.school,unknown,yes,no,telephone,may,tue,218,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,services,single,high.school,no,no,yes,telephone,may,tue,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,admin.,divorced,high.school,no,no,yes,telephone,may,tue,284,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,technician,married,professional.course,unknown,yes,no,telephone,may,tue,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+26,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,295,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+26,blue-collar,single,high.school,unknown,no,no,telephone,may,tue,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,tue,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,retired,married,unknown,no,unknown,unknown,telephone,may,tue,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,retired,married,unknown,no,unknown,unknown,telephone,may,tue,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,management,divorced,university.degree,no,yes,no,telephone,may,tue,62,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,2231,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+40,technician,divorced,university.degree,no,yes,no,telephone,may,tue,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,married,university.degree,no,yes,no,telephone,may,tue,343,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,227,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,admin.,married,professional.course,no,yes,no,telephone,may,tue,248,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,technician,married,high.school,no,no,no,telephone,may,tue,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,services,single,basic.9y,no,yes,yes,telephone,may,tue,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,admin.,single,high.school,no,no,no,telephone,may,tue,205,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,technician,single,university.degree,no,yes,no,telephone,may,tue,370,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,services,married,basic.9y,no,no,no,telephone,may,tue,427,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,self-employed,married,basic.9y,unknown,yes,no,telephone,may,tue,289,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,technician,married,professional.course,unknown,yes,no,telephone,may,tue,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,technician,married,basic.6y,no,yes,no,telephone,may,tue,705,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,technician,married,professional.course,unknown,yes,no,telephone,may,tue,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,technician,married,professional.course,unknown,yes,yes,telephone,may,tue,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,divorced,basic.6y,unknown,yes,no,telephone,may,tue,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,unknown,single,university.degree,no,no,no,telephone,may,tue,213,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,admin.,married,university.degree,no,no,no,telephone,may,tue,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,technician,married,high.school,no,no,no,telephone,may,tue,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,admin.,married,university.degree,no,no,no,telephone,may,tue,373,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,services,divorced,basic.9y,no,yes,no,telephone,may,tue,259,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,technician,married,high.school,no,no,yes,telephone,may,tue,340,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,single,university.degree,unknown,no,no,telephone,may,tue,392,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,technician,married,professional.course,unknown,yes,no,telephone,may,tue,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,tue,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,tue,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,self-employed,married,university.degree,no,yes,yes,telephone,may,tue,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,single,university.degree,unknown,no,no,telephone,may,tue,456,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,technician,married,professional.course,no,yes,no,telephone,may,tue,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,44,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,admin.,married,university.degree,no,yes,no,telephone,may,tue,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,entrepreneur,married,university.degree,no,yes,no,telephone,may,tue,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,services,married,high.school,no,yes,no,telephone,may,tue,276,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,services,married,basic.9y,unknown,yes,no,telephone,may,tue,150,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,blue-collar,married,professional.course,no,no,yes,telephone,may,tue,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+25,technician,single,university.degree,no,yes,no,telephone,may,tue,38,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,divorced,university.degree,no,no,yes,telephone,may,tue,232,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,admin.,married,university.degree,no,no,no,telephone,may,tue,1167,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,unknown,married,basic.6y,unknown,no,no,telephone,may,tue,39,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,admin.,divorced,high.school,no,no,no,telephone,may,tue,325,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,self-employed,single,university.degree,no,no,no,telephone,may,tue,311,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,admin.,married,high.school,no,no,yes,telephone,may,tue,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,entrepreneur,married,university.degree,no,yes,no,telephone,may,tue,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,entrepreneur,married,university.degree,no,no,no,telephone,may,tue,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,technician,single,basic.9y,unknown,no,yes,telephone,may,tue,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,technician,single,basic.9y,unknown,no,no,telephone,may,tue,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,married,high.school,no,yes,no,telephone,may,tue,67,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,services,married,unknown,unknown,no,no,telephone,may,tue,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,services,married,unknown,unknown,no,no,telephone,may,tue,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,services,married,unknown,unknown,no,no,telephone,may,tue,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,technician,married,professional.course,unknown,no,no,telephone,may,tue,20,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,technician,single,unknown,no,no,no,telephone,may,tue,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,technician,married,high.school,no,no,yes,telephone,may,tue,174,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,260,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,self-employed,single,professional.course,unknown,yes,yes,telephone,may,tue,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,technician,single,professional.course,no,yes,no,telephone,may,tue,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,technician,married,professional.course,no,no,yes,telephone,may,tue,334,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,609,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,admin.,married,university.degree,unknown,no,no,telephone,may,tue,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,admin.,married,university.degree,unknown,no,no,telephone,may,tue,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,302,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,services,married,high.school,no,no,no,telephone,may,tue,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,technician,married,professional.course,unknown,no,no,telephone,may,tue,202,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,services,divorced,professional.course,unknown,no,no,telephone,may,tue,806,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,admin.,divorced,unknown,unknown,yes,yes,telephone,may,tue,31,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,admin.,married,high.school,unknown,no,no,telephone,may,tue,21,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,334,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,technician,single,university.degree,no,yes,yes,telephone,may,tue,156,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,technician,married,professional.course,no,no,no,telephone,may,tue,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,blue-collar,married,professional.course,unknown,no,no,telephone,may,tue,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,admin.,single,university.degree,no,no,yes,telephone,may,tue,766,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,services,married,high.school,unknown,no,no,telephone,may,tue,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,admin.,single,basic.9y,unknown,no,no,telephone,may,tue,255,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,technician,single,university.degree,no,no,no,telephone,may,tue,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,services,married,high.school,unknown,yes,no,telephone,may,tue,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,married,high.school,no,no,no,telephone,may,tue,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,single,university.degree,unknown,yes,no,telephone,may,tue,395,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+42,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,102,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,admin.,married,unknown,unknown,yes,no,telephone,may,tue,705,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,services,married,unknown,no,no,no,telephone,may,tue,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+60,retired,married,basic.4y,unknown,no,no,telephone,may,tue,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,admin.,married,high.school,unknown,yes,no,telephone,may,tue,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,unknown,unknown,no,no,telephone,may,tue,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,admin.,single,high.school,no,no,no,telephone,may,tue,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+55,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,tue,266,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,services,married,high.school,no,yes,no,telephone,may,tue,76,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,technician,single,university.degree,no,no,no,telephone,may,tue,1015,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+45,technician,married,university.degree,unknown,yes,no,telephone,may,tue,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,blue-collar,married,basic.6y,no,no,yes,telephone,may,tue,60,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,blue-collar,married,professional.course,unknown,yes,yes,telephone,may,tue,111,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,technician,married,university.degree,no,yes,no,telephone,may,tue,683,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+36,blue-collar,married,high.school,no,no,yes,telephone,may,tue,100,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,admin.,married,high.school,no,no,no,telephone,may,tue,82,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,admin.,single,basic.6y,no,no,no,telephone,may,tue,470,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+46,housemaid,married,basic.4y,no,no,yes,telephone,may,tue,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,tue,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,services,married,high.school,unknown,no,no,telephone,may,tue,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,320,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,retired,single,professional.course,unknown,yes,no,telephone,may,tue,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+55,retired,married,basic.4y,unknown,yes,no,telephone,may,tue,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,management,married,university.degree,unknown,no,no,telephone,may,tue,730,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,36,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,services,married,unknown,unknown,no,no,telephone,may,tue,521,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,entrepreneur,married,basic.9y,no,no,no,telephone,may,tue,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,unemployed,single,university.degree,no,no,no,telephone,may,tue,349,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,retired,married,university.degree,no,yes,no,telephone,may,tue,768,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,tue,277,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,management,married,university.degree,unknown,yes,no,telephone,may,tue,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,admin.,divorced,high.school,no,no,no,telephone,may,tue,473,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,single,university.degree,no,no,no,telephone,may,tue,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+55,retired,married,basic.6y,unknown,no,no,telephone,may,tue,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,blue-collar,married,basic.4y,no,yes,yes,telephone,may,tue,386,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,services,married,basic.6y,unknown,no,no,telephone,may,tue,1001,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+38,technician,married,professional.course,no,yes,no,telephone,may,tue,76,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,self-employed,married,professional.course,no,yes,no,telephone,may,tue,214,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,self-employed,divorced,basic.9y,no,yes,no,telephone,may,tue,355,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,admin.,single,university.degree,no,yes,yes,telephone,may,tue,194,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,technician,married,university.degree,no,yes,yes,telephone,may,tue,845,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+34,management,divorced,university.degree,no,yes,no,telephone,may,tue,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,173,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,technician,single,professional.course,no,no,no,telephone,may,tue,113,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,admin.,single,unknown,no,no,no,telephone,may,tue,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,853,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,retired,married,professional.course,unknown,no,yes,telephone,may,tue,518,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,blue-collar,married,unknown,unknown,no,no,telephone,may,tue,124,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,admin.,divorced,basic.9y,unknown,no,no,telephone,may,tue,452,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,admin.,married,university.degree,no,unknown,unknown,telephone,may,tue,203,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,813,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+60,retired,married,university.degree,unknown,unknown,unknown,telephone,may,tue,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,services,divorced,basic.9y,no,no,no,telephone,may,tue,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,self-employed,married,professional.course,no,no,no,telephone,may,tue,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,unknown,married,basic.4y,no,no,yes,telephone,may,tue,295,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+59,retired,married,university.degree,no,no,no,telephone,may,tue,916,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,admin.,married,basic.6y,no,no,no,telephone,may,tue,60,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,student,single,university.degree,unknown,no,no,telephone,may,tue,443,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,divorced,high.school,no,no,no,telephone,may,tue,225,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,blue-collar,married,high.school,no,yes,no,telephone,may,tue,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,431,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,tue,358,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,565,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,admin.,married,high.school,no,no,no,telephone,may,tue,753,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+35,technician,married,professional.course,no,no,no,telephone,may,tue,103,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,708,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,divorced,basic.9y,unknown,yes,yes,telephone,may,tue,265,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,255,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,admin.,divorced,university.degree,no,no,no,telephone,may,tue,434,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+25,admin.,single,university.degree,no,no,no,telephone,may,tue,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,305,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,admin.,married,basic.6y,no,no,no,telephone,may,tue,155,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,management,married,basic.4y,unknown,yes,no,telephone,may,tue,805,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,admin.,married,high.school,no,no,no,telephone,may,tue,242,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,19,9,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,housemaid,married,university.degree,no,no,no,telephone,may,tue,93,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,management,single,university.degree,no,yes,no,telephone,may,tue,211,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,admin.,divorced,high.school,no,no,no,telephone,may,tue,31,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,management,married,unknown,unknown,yes,no,telephone,may,tue,213,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,retired,married,high.school,no,yes,no,telephone,may,tue,104,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,342,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,admin.,married,university.degree,no,no,no,telephone,may,tue,172,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,management,single,university.degree,no,yes,yes,telephone,may,tue,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,retired,divorced,professional.course,unknown,yes,no,telephone,may,tue,535,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,admin.,married,high.school,unknown,yes,no,telephone,may,tue,514,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,self-employed,married,professional.course,no,yes,no,telephone,may,tue,276,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,176,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,housemaid,divorced,unknown,no,no,no,telephone,may,tue,20,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,services,married,high.school,no,yes,no,telephone,may,tue,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,housemaid,single,unknown,no,yes,no,telephone,may,tue,473,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,245,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,services,married,unknown,unknown,no,no,telephone,may,tue,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,technician,married,university.degree,unknown,no,no,telephone,may,tue,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,admin.,married,university.degree,no,yes,no,telephone,may,tue,93,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+59,retired,married,basic.4y,unknown,no,no,telephone,may,tue,188,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,technician,married,professional.course,no,no,no,telephone,may,tue,332,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,admin.,divorced,basic.9y,no,unknown,unknown,telephone,may,tue,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,self-employed,married,basic.9y,unknown,yes,no,telephone,may,tue,318,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,unknown,divorced,basic.4y,unknown,no,no,telephone,may,tue,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,admin.,married,high.school,unknown,no,no,telephone,may,tue,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+26,services,single,high.school,no,yes,no,telephone,may,tue,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,technician,single,professional.course,no,yes,no,telephone,may,tue,94,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,admin.,married,university.degree,no,no,no,telephone,may,tue,54,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,admin.,married,basic.9y,no,yes,no,telephone,may,tue,29,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,technician,married,basic.9y,no,yes,no,telephone,may,tue,271,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,technician,married,professional.course,no,no,yes,telephone,may,tue,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,technician,married,basic.9y,no,no,no,telephone,may,tue,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,management,married,university.degree,no,no,no,telephone,may,tue,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,blue-collar,married,basic.6y,no,no,yes,telephone,may,tue,60,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,technician,single,unknown,no,no,no,telephone,may,tue,162,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,services,married,basic.9y,no,yes,yes,telephone,may,tue,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,technician,single,professional.course,no,yes,no,telephone,may,tue,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,single,high.school,no,yes,no,telephone,may,tue,78,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.4y,no,unknown,unknown,telephone,may,tue,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,technician,married,basic.6y,no,yes,no,telephone,may,tue,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,3,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,297,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,retired,married,professional.course,unknown,unknown,unknown,telephone,may,tue,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,services,married,high.school,no,no,no,telephone,may,tue,342,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,technician,married,basic.9y,no,yes,no,telephone,may,tue,420,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,services,married,high.school,unknown,yes,no,telephone,may,tue,378,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,admin.,divorced,high.school,unknown,yes,no,telephone,may,tue,354,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,services,married,high.school,unknown,no,no,telephone,may,tue,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,367,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,retired,married,basic.4y,unknown,yes,yes,telephone,may,tue,394,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,admin.,married,high.school,no,yes,no,telephone,may,tue,91,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,admin.,married,high.school,unknown,no,no,telephone,may,tue,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,768,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,unemployed,married,basic.9y,unknown,no,yes,telephone,may,tue,43,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,services,married,high.school,no,yes,yes,telephone,may,tue,108,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,single,university.degree,no,yes,yes,telephone,may,tue,195,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,admin.,married,basic.9y,unknown,yes,no,telephone,may,tue,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,technician,married,basic.9y,unknown,no,yes,telephone,may,tue,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,services,divorced,high.school,no,unknown,unknown,telephone,may,tue,299,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,unknown,married,unknown,no,no,no,telephone,may,tue,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,housemaid,married,high.school,no,no,no,telephone,may,tue,141,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,services,married,high.school,no,yes,no,telephone,may,tue,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,tue,169,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,retired,married,high.school,unknown,no,no,telephone,may,tue,119,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,admin.,married,high.school,unknown,yes,no,telephone,may,tue,101,13,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,management,married,university.degree,no,no,no,telephone,may,tue,129,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,481,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,admin.,married,university.degree,no,no,no,telephone,may,tue,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,entrepreneur,married,basic.9y,no,yes,no,telephone,may,tue,142,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,technician,married,professional.course,no,no,no,telephone,may,tue,411,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,management,married,university.degree,no,no,no,telephone,may,tue,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,services,single,high.school,no,no,no,telephone,may,tue,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,blue-collar,divorced,high.school,no,no,no,telephone,may,tue,531,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,technician,married,professional.course,no,no,no,telephone,may,tue,34,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,housemaid,married,basic.4y,no,no,no,telephone,may,tue,788,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,married,unknown,no,no,yes,telephone,may,tue,431,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,management,married,university.degree,no,no,no,telephone,may,tue,851,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,admin.,single,high.school,no,no,no,telephone,may,tue,315,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,technician,single,high.school,no,no,no,telephone,may,tue,214,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,management,divorced,university.degree,no,yes,no,telephone,may,tue,92,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,married,unknown,unknown,no,no,telephone,may,tue,73,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,single,unknown,unknown,no,no,telephone,may,tue,181,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,services,married,high.school,no,no,no,telephone,may,tue,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+55,technician,married,professional.course,no,no,no,telephone,may,tue,58,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,admin.,single,high.school,no,yes,no,telephone,may,tue,1052,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+55,services,married,high.school,no,no,no,telephone,may,tue,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,technician,married,university.degree,no,no,no,telephone,may,tue,309,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,admin.,married,basic.6y,no,yes,no,telephone,may,tue,210,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,admin.,single,high.school,no,no,no,telephone,may,tue,165,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,tue,331,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,management,married,university.degree,no,yes,no,telephone,may,tue,230,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,retired,divorced,basic.4y,no,yes,no,telephone,may,tue,584,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,management,single,university.degree,no,yes,no,telephone,may,tue,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,entrepreneur,single,basic.9y,no,no,no,telephone,may,tue,185,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,295,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,housemaid,married,basic.4y,no,no,no,telephone,may,tue,86,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,technician,single,high.school,no,no,no,telephone,may,tue,151,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,services,married,high.school,unknown,no,yes,telephone,may,tue,69,11,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,blue-collar,married,professional.course,unknown,yes,no,telephone,may,tue,15,11,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,entrepreneur,married,university.degree,unknown,no,no,telephone,may,tue,437,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,self-employed,married,professional.course,unknown,yes,yes,telephone,may,tue,139,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,267,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,admin.,married,high.school,no,yes,no,telephone,may,tue,259,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,blue-collar,single,university.degree,unknown,yes,no,telephone,may,tue,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,566,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,services,married,high.school,unknown,yes,no,telephone,may,tue,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,management,divorced,university.degree,no,no,no,telephone,may,tue,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+60,retired,married,high.school,unknown,yes,no,telephone,may,tue,220,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,services,married,high.school,no,no,no,telephone,may,tue,168,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+25,self-employed,single,university.degree,no,no,no,telephone,may,tue,247,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,tue,291,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,technician,married,unknown,no,yes,no,telephone,may,tue,322,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,services,married,high.school,unknown,yes,no,telephone,may,tue,194,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,unknown,unknown,yes,no,telephone,may,tue,379,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,services,married,high.school,no,no,yes,telephone,may,tue,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,technician,married,professional.course,unknown,no,no,telephone,may,tue,166,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,blue-collar,married,high.school,no,no,no,telephone,may,tue,64,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,technician,married,university.degree,no,yes,yes,telephone,may,tue,232,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,blue-collar,married,basic.4y,no,yes,yes,telephone,may,tue,647,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,services,married,basic.9y,no,yes,no,telephone,may,tue,322,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,admin.,married,high.school,no,no,no,telephone,may,tue,337,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,133,12,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,50,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,entrepreneur,married,professional.course,no,no,no,telephone,may,tue,87,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,blue-collar,married,professional.course,no,no,yes,telephone,may,tue,771,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,services,single,unknown,no,yes,no,telephone,may,tue,205,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,admin.,single,university.degree,no,yes,no,telephone,may,tue,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,318,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,technician,married,basic.9y,unknown,no,no,telephone,may,tue,109,9,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,tue,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,services,single,high.school,no,no,no,telephone,may,tue,209,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,services,single,professional.course,unknown,unknown,unknown,telephone,may,tue,271,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,blue-collar,single,basic.4y,no,yes,yes,telephone,may,tue,1093,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,services,divorced,high.school,no,no,no,telephone,may,tue,326,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,389,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,technician,married,professional.course,no,no,no,telephone,may,tue,273,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,technician,single,high.school,unknown,no,no,telephone,may,tue,264,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,admin.,married,high.school,no,no,no,telephone,may,tue,1106,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,single,basic.9y,no,unknown,unknown,telephone,may,tue,195,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,technician,single,unknown,no,unknown,unknown,telephone,may,tue,69,19,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,admin.,married,high.school,no,no,no,telephone,may,tue,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+59,retired,married,basic.9y,no,yes,no,telephone,may,tue,87,9,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,122,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,services,married,basic.9y,no,no,no,telephone,may,tue,945,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+52,management,married,basic.4y,unknown,yes,no,telephone,may,tue,288,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,unknown,no,no,no,telephone,may,tue,50,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+25,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,816,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,entrepreneur,married,basic.6y,no,yes,no,telephone,may,tue,284,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+23,blue-collar,married,professional.course,no,yes,no,telephone,may,tue,116,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,admin.,single,university.degree,no,yes,no,telephone,may,tue,72,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,admin.,married,high.school,no,no,no,telephone,may,tue,232,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,services,single,high.school,no,no,yes,telephone,may,tue,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,admin.,married,high.school,no,yes,no,telephone,may,tue,190,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,entrepreneur,married,university.degree,no,yes,no,telephone,may,tue,1721,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+27,technician,single,high.school,unknown,no,yes,telephone,may,tue,351,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,married,high.school,no,yes,no,telephone,may,tue,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,technician,married,professional.course,no,no,no,telephone,may,tue,104,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,divorced,high.school,no,yes,yes,telephone,may,tue,163,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,technician,married,professional.course,no,no,no,telephone,may,tue,492,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,tue,152,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,admin.,married,university.degree,no,no,no,telephone,may,tue,109,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,384,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,tue,1032,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,married,unknown,no,no,no,telephone,may,wed,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,technician,single,professional.course,no,yes,yes,telephone,may,wed,65,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,194,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,technician,married,university.degree,no,no,no,telephone,may,wed,360,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,admin.,single,university.degree,unknown,yes,no,telephone,may,wed,96,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,20,11,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+55,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,323,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,management,married,basic.6y,unknown,no,no,telephone,may,wed,332,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,management,married,university.degree,no,yes,no,telephone,may,wed,735,8,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,technician,married,professional.course,no,no,no,telephone,may,wed,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,blue-collar,married,high.school,no,no,no,telephone,may,wed,158,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,technician,married,high.school,no,yes,yes,telephone,may,wed,73,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,management,married,university.degree,no,unknown,unknown,telephone,may,wed,407,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,438,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,management,divorced,basic.9y,unknown,no,no,telephone,may,wed,174,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,management,divorced,university.degree,unknown,no,no,telephone,may,wed,175,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,student,single,high.school,unknown,yes,no,telephone,may,wed,313,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,admin.,single,high.school,no,unknown,unknown,telephone,may,wed,137,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+47,self-employed,married,unknown,unknown,no,no,telephone,may,wed,22,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+54,management,divorced,university.degree,no,yes,no,telephone,may,wed,328,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,unknown,married,university.degree,no,no,no,telephone,may,wed,93,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,admin.,married,high.school,no,no,no,telephone,may,wed,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,unemployed,married,professional.course,unknown,yes,no,telephone,may,wed,219,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,455,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,management,married,university.degree,no,no,yes,telephone,may,wed,103,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,services,married,unknown,no,no,no,telephone,may,wed,133,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+55,management,married,unknown,no,yes,yes,telephone,may,wed,77,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,admin.,married,basic.9y,unknown,yes,yes,telephone,may,wed,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,admin.,married,high.school,no,yes,no,telephone,may,wed,72,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,admin.,married,basic.4y,unknown,yes,no,telephone,may,wed,942,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+31,admin.,single,university.degree,no,no,no,telephone,may,wed,89,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,admin.,married,unknown,no,yes,no,telephone,may,wed,108,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,services,divorced,high.school,unknown,yes,no,telephone,may,wed,101,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,wed,305,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,unemployed,married,university.degree,no,yes,no,telephone,may,wed,387,9,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,admin.,married,high.school,unknown,yes,no,telephone,may,wed,146,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,admin.,married,university.degree,no,yes,yes,telephone,may,wed,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,management,married,unknown,unknown,yes,no,telephone,may,wed,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+58,housemaid,married,university.degree,unknown,no,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,admin.,single,university.degree,unknown,no,no,telephone,may,wed,117,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,blue-collar,single,basic.4y,no,no,no,telephone,may,wed,381,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,blue-collar,single,university.degree,no,no,no,telephone,may,wed,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,476,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+53,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,admin.,single,university.degree,no,no,no,telephone,may,wed,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,services,married,high.school,no,no,no,telephone,may,wed,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+59,entrepreneur,married,high.school,no,no,no,telephone,may,wed,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,technician,married,basic.6y,unknown,yes,yes,telephone,may,wed,163,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,technician,single,professional.course,no,no,no,telephone,may,wed,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,282,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,blue-collar,married,unknown,unknown,no,yes,telephone,may,wed,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,blue-collar,divorced,basic.9y,no,yes,yes,telephone,may,wed,48,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,220,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,606,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,management,divorced,high.school,unknown,no,no,telephone,may,wed,82,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,technician,single,university.degree,no,no,no,telephone,may,wed,451,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,technician,married,university.degree,unknown,no,no,telephone,may,wed,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,technician,married,high.school,no,yes,no,telephone,may,wed,832,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+29,blue-collar,married,basic.6y,no,no,yes,telephone,may,wed,168,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,admin.,single,high.school,no,yes,yes,telephone,may,wed,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,technician,married,professional.course,unknown,no,no,telephone,may,wed,69,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+49,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,283,8,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,421,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,blue-collar,married,high.school,unknown,no,no,telephone,may,wed,278,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,unknown,married,unknown,unknown,unknown,unknown,telephone,may,wed,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,management,married,basic.4y,unknown,no,no,telephone,may,wed,238,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,138,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,wed,218,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,management,married,university.degree,no,no,no,telephone,may,wed,158,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,unemployed,divorced,basic.9y,no,yes,no,telephone,may,wed,105,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+57,blue-collar,divorced,professional.course,no,no,no,telephone,may,wed,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,management,married,high.school,no,no,no,telephone,may,wed,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,admin.,married,high.school,no,unknown,unknown,telephone,may,wed,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,wed,824,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,admin.,married,university.degree,no,no,yes,telephone,may,wed,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,488,12,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,self-employed,single,university.degree,no,yes,no,telephone,may,wed,148,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,technician,single,professional.course,unknown,unknown,unknown,telephone,may,wed,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,services,married,high.school,no,no,no,telephone,may,wed,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,452,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,services,married,high.school,no,yes,no,telephone,may,wed,114,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,services,married,high.school,no,yes,no,telephone,may,wed,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,housemaid,married,basic.9y,unknown,yes,yes,telephone,may,wed,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,wed,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+27,admin.,single,high.school,no,yes,no,telephone,may,wed,1328,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+50,admin.,married,university.degree,no,yes,no,telephone,may,wed,686,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+53,services,married,high.school,unknown,yes,no,telephone,may,wed,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,management,married,university.degree,unknown,yes,no,telephone,may,wed,265,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,admin.,married,high.school,no,yes,no,telephone,may,wed,300,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+57,retired,married,university.degree,unknown,no,no,telephone,may,wed,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+47,blue-collar,single,basic.9y,no,no,yes,telephone,may,wed,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,housemaid,married,high.school,no,no,no,telephone,may,wed,534,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,unemployed,single,university.degree,no,no,yes,telephone,may,wed,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,services,single,basic.6y,unknown,yes,no,telephone,may,wed,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,services,married,high.school,unknown,yes,no,telephone,may,wed,127,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,1125,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+36,admin.,married,university.degree,unknown,yes,no,telephone,may,wed,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,158,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,technician,single,unknown,unknown,no,no,telephone,may,wed,267,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,blue-collar,single,high.school,unknown,yes,yes,telephone,may,wed,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+54,management,married,university.degree,unknown,no,no,telephone,may,wed,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,housemaid,divorced,basic.6y,unknown,yes,no,telephone,may,wed,477,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,management,married,professional.course,no,yes,no,telephone,may,wed,456,9,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,unemployed,divorced,basic.9y,no,no,no,telephone,may,wed,1321,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+35,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,298,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,unknown,married,high.school,unknown,no,no,telephone,may,wed,96,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,services,married,high.school,no,no,no,telephone,may,wed,483,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+55,admin.,married,high.school,no,no,yes,telephone,may,wed,213,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,51,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,services,single,high.school,no,yes,no,telephone,may,wed,44,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+49,admin.,divorced,basic.9y,no,yes,no,telephone,may,wed,164,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+54,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+49,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,wed,220,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,services,married,high.school,no,yes,no,telephone,may,wed,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+54,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,452,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,blue-collar,married,high.school,no,no,no,telephone,may,wed,858,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+49,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,entrepreneur,married,university.degree,no,yes,no,telephone,may,wed,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,student,married,university.degree,no,yes,no,telephone,may,wed,629,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+42,blue-collar,divorced,basic.6y,unknown,no,no,telephone,may,wed,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,technician,divorced,professional.course,no,no,no,telephone,may,wed,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,unemployed,married,professional.course,no,no,no,telephone,may,wed,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,retired,married,basic.9y,no,no,no,telephone,may,wed,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,admin.,divorced,basic.9y,no,yes,no,telephone,may,wed,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,admin.,married,high.school,unknown,unknown,unknown,telephone,may,wed,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,services,married,high.school,unknown,no,no,telephone,may,wed,156,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,management,divorced,university.degree,no,unknown,unknown,telephone,may,wed,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,services,married,high.school,unknown,unknown,unknown,telephone,may,wed,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,management,married,university.degree,no,yes,no,telephone,may,wed,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,entrepreneur,married,basic.4y,no,no,no,telephone,may,wed,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,admin.,married,high.school,no,yes,no,telephone,may,wed,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+26,services,single,high.school,no,no,no,telephone,may,wed,461,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,admin.,married,basic.9y,no,yes,no,telephone,may,wed,117,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,wed,546,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,technician,married,basic.9y,no,no,no,telephone,may,wed,351,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+53,services,married,high.school,no,no,no,telephone,may,wed,429,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,admin.,married,basic.4y,no,yes,no,telephone,may,wed,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,technician,married,professional.course,no,no,no,telephone,may,wed,568,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,services,married,professional.course,no,yes,no,telephone,may,wed,299,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,services,divorced,high.school,no,no,no,telephone,may,wed,282,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,housemaid,married,basic.6y,no,no,no,telephone,may,wed,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,283,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,263,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,housemaid,married,basic.6y,no,no,no,telephone,may,wed,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,technician,divorced,professional.course,no,no,no,telephone,may,wed,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,admin.,single,high.school,no,no,no,telephone,may,wed,32,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,347,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,58,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,entrepreneur,married,university.degree,no,no,no,telephone,may,wed,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,services,divorced,high.school,no,no,no,telephone,may,wed,869,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,housemaid,divorced,basic.4y,unknown,no,no,telephone,may,wed,339,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+56,unemployed,divorced,high.school,no,yes,no,telephone,may,wed,267,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,admin.,divorced,high.school,no,yes,no,telephone,may,wed,34,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,admin.,single,university.degree,no,no,no,telephone,may,wed,153,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,28,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,management,married,basic.4y,no,no,no,telephone,may,wed,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,technician,single,professional.course,no,no,no,telephone,may,wed,199,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,admin.,single,university.degree,no,yes,no,telephone,may,wed,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,services,single,high.school,no,no,no,telephone,may,wed,322,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,management,married,university.degree,no,yes,no,telephone,may,wed,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,admin.,married,university.degree,no,no,no,telephone,may,wed,197,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+47,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,224,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,unemployed,married,university.degree,no,no,no,telephone,may,wed,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,wed,833,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,technician,married,professional.course,unknown,yes,no,telephone,may,wed,485,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,57,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+56,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,247,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,unknown,married,basic.9y,no,no,no,telephone,may,wed,89,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,admin.,single,university.degree,no,yes,no,telephone,may,wed,849,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,blue-collar,married,professional.course,no,yes,yes,telephone,may,wed,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,blue-collar,single,basic.9y,no,no,yes,telephone,may,wed,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,blue-collar,married,high.school,no,no,yes,telephone,may,wed,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,admin.,married,high.school,unknown,no,no,telephone,may,wed,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,829,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,blue-collar,married,professional.course,no,yes,no,telephone,may,wed,749,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,admin.,single,high.school,no,yes,yes,telephone,may,wed,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,blue-collar,married,high.school,no,no,no,telephone,may,wed,407,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,technician,divorced,professional.course,unknown,unknown,unknown,telephone,may,wed,182,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,admin.,divorced,high.school,no,yes,no,telephone,may,wed,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,admin.,married,university.degree,no,no,no,telephone,may,wed,438,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,admin.,single,high.school,no,no,no,telephone,may,wed,387,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,admin.,married,high.school,no,no,no,telephone,may,wed,100,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,413,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+47,blue-collar,married,basic.6y,no,no,yes,telephone,may,wed,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,entrepreneur,married,basic.4y,no,no,no,telephone,may,wed,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,management,married,unknown,no,no,no,telephone,may,wed,345,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,blue-collar,married,high.school,no,no,no,telephone,may,wed,1028,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+43,unknown,married,university.degree,no,no,no,telephone,may,wed,566,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,services,married,high.school,no,no,no,telephone,may,wed,38,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+49,services,married,high.school,no,yes,no,telephone,may,wed,214,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,services,married,high.school,unknown,yes,no,telephone,may,wed,248,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+24,student,single,high.school,unknown,no,no,telephone,may,wed,246,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+49,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,170,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,management,married,university.degree,unknown,yes,no,telephone,may,wed,136,8,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,admin.,married,university.degree,no,yes,no,telephone,may,wed,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,services,divorced,high.school,no,yes,no,telephone,may,wed,225,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,technician,married,university.degree,no,no,no,telephone,may,wed,364,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,wed,784,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,wed,93,11,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,admin.,married,university.degree,no,no,no,telephone,may,wed,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,technician,married,professional.course,no,yes,no,telephone,may,wed,160,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,technician,married,basic.9y,no,yes,no,telephone,may,wed,210,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,admin.,single,high.school,no,yes,no,telephone,may,wed,222,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,admin.,single,university.degree,no,no,no,telephone,may,wed,265,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,blue-collar,single,basic.4y,unknown,no,no,telephone,may,wed,21,10,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,technician,married,professional.course,unknown,yes,no,telephone,may,wed,157,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,entrepreneur,married,basic.4y,unknown,yes,no,telephone,may,wed,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,services,single,unknown,no,yes,no,telephone,may,wed,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,entrepreneur,married,basic.4y,unknown,no,no,telephone,may,wed,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,technician,married,professional.course,no,no,no,telephone,may,wed,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+56,management,married,university.degree,no,no,no,telephone,may,wed,350,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+25,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+59,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,entrepreneur,married,basic.4y,unknown,yes,no,telephone,may,wed,565,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+56,services,married,basic.9y,unknown,no,no,telephone,may,wed,44,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,admin.,single,university.degree,no,no,no,telephone,may,wed,337,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,admin.,divorced,high.school,no,yes,no,telephone,may,wed,416,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,technician,married,basic.9y,no,no,no,telephone,may,wed,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,unknown,married,basic.9y,no,no,yes,telephone,may,wed,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+24,services,single,high.school,no,yes,no,telephone,may,wed,977,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,self-employed,single,basic.6y,unknown,no,yes,telephone,may,wed,138,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,technician,divorced,professional.course,no,yes,no,telephone,may,wed,70,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,technician,married,professional.course,no,no,no,telephone,may,wed,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,251,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,management,married,high.school,unknown,yes,no,telephone,may,wed,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,admin.,married,professional.course,no,no,no,telephone,may,wed,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,services,married,high.school,unknown,no,no,telephone,may,wed,48,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,technician,married,professional.course,no,yes,no,telephone,may,wed,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,22,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,admin.,married,university.degree,no,yes,no,telephone,may,wed,174,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,378,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,services,married,basic.6y,no,no,no,telephone,may,wed,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,services,single,high.school,no,no,no,telephone,may,wed,380,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,admin.,married,university.degree,no,yes,no,telephone,may,wed,108,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,927,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+26,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,389,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,management,married,university.degree,no,yes,yes,telephone,may,wed,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,management,married,university.degree,no,no,no,telephone,may,wed,273,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,services,married,high.school,unknown,no,no,telephone,may,wed,48,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,management,married,university.degree,no,yes,no,telephone,may,wed,8,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,management,married,university.degree,no,no,no,telephone,may,wed,90,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,blue-collar,married,unknown,unknown,no,no,telephone,may,wed,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+26,student,single,university.degree,no,yes,no,telephone,may,wed,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+54,housemaid,divorced,basic.4y,unknown,no,no,telephone,may,wed,762,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,technician,married,professional.course,no,no,no,telephone,may,wed,302,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,blue-collar,single,basic.9y,no,yes,yes,telephone,may,wed,411,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+58,admin.,divorced,university.degree,no,no,no,telephone,may,wed,245,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,entrepreneur,married,high.school,no,no,no,telephone,may,wed,746,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,housemaid,married,basic.9y,unknown,no,no,telephone,may,wed,673,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,blue-collar,married,basic.4y,no,yes,yes,telephone,may,wed,220,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,services,married,high.school,no,no,no,telephone,may,wed,232,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,admin.,single,high.school,no,no,no,telephone,may,wed,106,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,unemployed,single,university.degree,no,no,no,telephone,may,wed,115,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,admin.,married,high.school,unknown,no,no,telephone,may,wed,485,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+27,student,single,university.degree,no,yes,no,telephone,may,wed,274,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,services,married,high.school,no,no,no,telephone,may,wed,106,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+23,services,single,high.school,no,no,no,telephone,may,wed,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,admin.,married,high.school,no,yes,yes,telephone,may,wed,1044,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+23,services,single,high.school,no,no,no,telephone,may,wed,354,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,admin.,divorced,university.degree,no,no,no,telephone,may,wed,180,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+60,housemaid,married,high.school,no,unknown,unknown,telephone,may,wed,392,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+26,entrepreneur,single,high.school,no,no,no,telephone,may,wed,331,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,wed,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,admin.,married,university.degree,no,no,no,telephone,may,wed,148,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,services,married,high.school,no,no,no,telephone,may,wed,74,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,267,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,admin.,single,university.degree,no,yes,yes,telephone,may,wed,374,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,entrepreneur,married,basic.9y,no,yes,no,telephone,may,wed,295,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,self-employed,single,professional.course,unknown,yes,no,telephone,may,wed,77,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,admin.,married,university.degree,unknown,no,no,telephone,may,wed,149,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,entrepreneur,married,basic.9y,no,no,no,telephone,may,wed,668,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,technician,divorced,high.school,no,yes,no,telephone,may,wed,95,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,229,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+56,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,286,9,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,242,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,335,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,technician,married,professional.course,unknown,no,no,telephone,may,wed,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,technician,single,professional.course,no,yes,no,telephone,may,wed,343,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,technician,divorced,professional.course,no,no,no,telephone,may,wed,85,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,technician,married,professional.course,unknown,no,no,telephone,may,wed,295,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,360,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,blue-collar,married,high.school,no,yes,no,telephone,may,wed,183,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,admin.,married,high.school,no,no,no,telephone,may,wed,726,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,self-employed,married,basic.9y,no,yes,no,telephone,may,wed,514,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+53,self-employed,married,university.degree,no,yes,no,telephone,may,wed,382,10,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,admin.,single,university.degree,no,no,no,telephone,may,wed,142,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+47,technician,married,professional.course,unknown,no,no,telephone,may,wed,301,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,153,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,admin.,single,basic.9y,no,no,no,telephone,may,wed,264,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,technician,single,basic.9y,no,no,no,telephone,may,wed,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+60,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,admin.,married,high.school,no,no,yes,telephone,may,wed,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,technician,married,university.degree,no,no,no,telephone,may,wed,326,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,183,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+27,blue-collar,single,basic.6y,no,yes,no,telephone,may,wed,634,10,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,339,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+47,services,divorced,high.school,no,no,no,telephone,may,wed,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,admin.,married,high.school,unknown,yes,no,telephone,may,wed,232,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,services,married,high.school,unknown,yes,no,telephone,may,wed,312,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,services,married,high.school,no,no,no,telephone,may,wed,423,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,248,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+59,retired,married,professional.course,unknown,yes,no,telephone,may,wed,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,technician,married,university.degree,unknown,yes,no,telephone,may,wed,234,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,services,married,high.school,no,no,no,telephone,may,wed,17,18,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,technician,married,professional.course,no,no,no,telephone,may,wed,546,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,554,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,blue-collar,married,professional.course,no,yes,no,telephone,may,wed,162,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,entrepreneur,married,high.school,unknown,no,no,telephone,may,wed,436,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,302,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+54,services,divorced,high.school,unknown,no,no,telephone,may,wed,349,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,services,married,high.school,no,yes,yes,telephone,may,wed,174,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,admin.,single,university.degree,no,no,no,telephone,may,wed,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,services,single,high.school,unknown,yes,no,telephone,may,wed,902,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,technician,married,professional.course,no,unknown,unknown,telephone,may,wed,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+26,unemployed,single,basic.9y,no,no,no,telephone,may,wed,282,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,admin.,single,university.degree,no,yes,yes,telephone,may,wed,126,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,technician,married,professional.course,no,no,no,telephone,may,wed,554,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,self-employed,married,basic.9y,no,yes,no,telephone,may,wed,21,11,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,technician,married,professional.course,no,no,no,telephone,may,wed,246,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,141,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,technician,married,professional.course,no,yes,yes,telephone,may,wed,427,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,blue-collar,married,basic.4y,no,yes,yes,telephone,may,wed,97,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,technician,married,professional.course,no,no,no,telephone,may,wed,402,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+54,self-employed,married,professional.course,unknown,no,no,telephone,may,wed,252,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,360,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+26,student,single,high.school,no,no,no,telephone,may,wed,852,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+27,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,blue-collar,divorced,basic.6y,no,no,no,telephone,may,wed,133,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,services,married,unknown,no,no,no,telephone,may,wed,98,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+53,retired,divorced,high.school,no,unknown,unknown,telephone,may,wed,574,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,admin.,married,university.degree,no,no,no,telephone,may,wed,122,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,student,single,unknown,unknown,no,no,telephone,may,wed,166,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,admin.,single,high.school,no,yes,yes,telephone,may,wed,167,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,self-employed,married,basic.4y,unknown,no,yes,telephone,may,wed,91,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+55,admin.,married,high.school,no,yes,no,telephone,may,wed,133,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,admin.,single,high.school,no,no,no,telephone,may,wed,594,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,86,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+49,management,married,university.degree,no,no,no,telephone,may,wed,166,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,blue-collar,divorced,unknown,no,no,no,telephone,may,wed,302,10,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,admin.,married,university.degree,no,yes,no,telephone,may,wed,303,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,services,married,high.school,no,no,no,telephone,may,wed,636,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+59,blue-collar,divorced,basic.4y,no,no,no,telephone,may,wed,341,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,blue-collar,single,high.school,no,no,no,telephone,may,wed,483,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,234,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,services,married,high.school,no,yes,yes,telephone,may,wed,211,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+26,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,738,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,blue-collar,married,basic.6y,no,yes,yes,telephone,may,wed,482,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,technician,single,high.school,no,yes,no,telephone,may,wed,238,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+47,services,divorced,high.school,no,yes,no,telephone,may,wed,370,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,student,married,university.degree,no,no,no,telephone,may,wed,225,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,wed,256,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,housemaid,married,university.degree,unknown,no,no,telephone,may,wed,567,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,147,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,blue-collar,single,basic.4y,unknown,no,yes,telephone,may,wed,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,582,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,self-employed,single,university.degree,no,no,yes,telephone,may,wed,270,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,management,married,high.school,no,no,no,telephone,may,wed,52,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,services,married,unknown,no,yes,no,telephone,may,wed,260,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,admin.,married,high.school,no,no,no,telephone,may,wed,254,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,technician,married,university.degree,no,yes,no,telephone,may,wed,1118,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,76,9,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,admin.,married,high.school,no,yes,no,telephone,may,wed,79,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,blue-collar,married,unknown,no,no,no,telephone,may,wed,837,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+59,retired,married,professional.course,unknown,no,no,telephone,may,wed,208,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,management,married,university.degree,unknown,no,yes,telephone,may,wed,245,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,technician,married,professional.course,unknown,no,yes,telephone,may,wed,187,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,technician,married,professional.course,no,no,no,telephone,may,wed,1423,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+51,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,271,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,services,married,high.school,no,no,yes,telephone,may,wed,166,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+58,retired,married,basic.9y,no,no,no,telephone,may,wed,256,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,entrepreneur,married,high.school,unknown,no,yes,telephone,may,wed,173,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,wed,367,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,wed,227,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,276,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,admin.,single,university.degree,no,no,no,telephone,may,wed,349,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,admin.,married,university.degree,no,no,no,telephone,may,wed,856,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+60,retired,married,high.school,no,no,no,telephone,may,wed,278,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,technician,divorced,basic.9y,no,no,yes,telephone,may,wed,143,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,services,married,high.school,no,yes,no,telephone,may,wed,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,admin.,married,university.degree,no,yes,yes,telephone,may,wed,37,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,admin.,married,high.school,unknown,yes,no,telephone,may,wed,260,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,self-employed,married,basic.4y,unknown,yes,no,telephone,may,wed,323,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,admin.,married,university.degree,no,yes,no,telephone,may,wed,187,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,services,single,high.school,unknown,no,no,telephone,may,wed,364,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,unemployed,single,university.degree,no,no,yes,telephone,may,wed,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,admin.,single,university.degree,no,yes,yes,telephone,may,wed,266,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+55,technician,married,professional.course,unknown,no,no,telephone,may,wed,806,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,self-employed,single,university.degree,no,yes,no,telephone,may,wed,318,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+53,retired,divorced,professional.course,unknown,yes,yes,telephone,may,wed,104,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,technician,married,professional.course,no,yes,no,telephone,may,wed,747,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,services,divorced,basic.4y,unknown,yes,no,telephone,may,thu,95,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,176,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,management,married,university.degree,no,no,no,telephone,may,thu,319,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,blue-collar,married,basic.9y,no,no,yes,telephone,may,thu,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,admin.,married,unknown,no,yes,no,telephone,may,thu,170,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+56,services,divorced,high.school,unknown,no,no,telephone,may,thu,311,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,admin.,single,high.school,no,yes,no,telephone,may,thu,362,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,services,married,high.school,no,no,no,telephone,may,thu,86,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,90,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,admin.,single,basic.9y,unknown,no,no,telephone,may,thu,44,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,admin.,married,basic.6y,no,no,no,telephone,may,thu,1013,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,blue-collar,married,unknown,no,yes,no,telephone,may,thu,76,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,90,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,blue-collar,divorced,high.school,unknown,no,no,telephone,may,thu,155,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,admin.,single,university.degree,no,yes,no,telephone,may,thu,468,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,admin.,married,basic.6y,no,yes,no,telephone,may,thu,226,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,admin.,married,high.school,no,no,yes,telephone,may,thu,349,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,housemaid,married,basic.4y,no,no,no,telephone,may,thu,646,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+58,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,148,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,admin.,married,basic.9y,unknown,no,no,telephone,may,thu,517,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,management,married,basic.6y,unknown,yes,no,telephone,may,thu,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,admin.,single,university.degree,unknown,no,no,telephone,may,thu,391,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,may,thu,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,236,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+60,unknown,married,university.degree,no,no,yes,telephone,may,thu,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,services,married,professional.course,unknown,no,no,telephone,may,thu,125,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,technician,married,university.degree,no,no,no,telephone,may,thu,360,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,admin.,divorced,basic.9y,unknown,no,no,telephone,may,thu,312,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,technician,divorced,professional.course,no,yes,no,telephone,may,thu,366,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,admin.,married,university.degree,no,yes,no,telephone,may,thu,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,entrepreneur,married,university.degree,no,no,no,telephone,may,thu,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,unemployed,married,high.school,no,no,yes,telephone,may,thu,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+56,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,12,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,self-employed,married,basic.9y,no,yes,no,telephone,may,thu,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,admin.,divorced,high.school,no,yes,no,telephone,may,thu,420,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,259,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,technician,divorced,basic.9y,no,no,no,telephone,may,thu,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,entrepreneur,married,university.degree,unknown,no,no,telephone,may,thu,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,technician,divorced,basic.9y,no,no,no,telephone,may,thu,263,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+58,management,divorced,university.degree,no,no,no,telephone,may,thu,415,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,services,married,basic.9y,no,no,no,telephone,may,thu,746,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+26,technician,married,professional.course,no,no,no,telephone,may,thu,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,services,married,basic.9y,unknown,unknown,unknown,telephone,may,thu,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,blue-collar,single,unknown,no,no,no,telephone,may,thu,735,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,services,married,high.school,no,yes,no,telephone,may,thu,183,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+27,admin.,single,high.school,unknown,no,no,telephone,may,thu,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,blue-collar,married,basic.9y,no,yes,yes,telephone,may,thu,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,admin.,single,university.degree,no,no,no,telephone,may,thu,62,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,admin.,married,university.degree,no,yes,no,telephone,may,thu,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,technician,single,professional.course,no,yes,yes,telephone,may,thu,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,housemaid,married,basic.4y,no,no,no,telephone,may,thu,244,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,unknown,married,high.school,unknown,yes,yes,telephone,may,thu,367,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,housemaid,married,basic.4y,no,yes,no,telephone,may,thu,325,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,entrepreneur,single,basic.9y,no,no,no,telephone,may,thu,183,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+51,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,552,11,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,technician,single,professional.course,unknown,yes,no,telephone,may,thu,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,admin.,divorced,professional.course,no,yes,no,telephone,may,thu,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,unemployed,divorced,high.school,unknown,yes,yes,telephone,may,thu,157,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,housemaid,married,basic.6y,unknown,no,no,telephone,may,thu,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,blue-collar,single,unknown,no,no,no,telephone,may,thu,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,services,married,high.school,no,no,no,telephone,may,thu,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,blue-collar,single,high.school,no,yes,no,telephone,may,thu,182,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,admin.,married,high.school,no,no,no,telephone,may,thu,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,644,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,305,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,technician,married,professional.course,unknown,yes,no,telephone,may,thu,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,services,divorced,basic.6y,unknown,yes,no,telephone,may,thu,173,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,technician,married,professional.course,no,yes,no,telephone,may,thu,374,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,admin.,divorced,basic.6y,no,yes,no,telephone,may,thu,240,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,services,married,high.school,no,yes,no,telephone,may,thu,558,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,1088,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,41,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,technician,married,professional.course,no,no,no,telephone,may,thu,436,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,admin.,married,university.degree,no,no,no,telephone,may,thu,463,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,265,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,thu,234,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,blue-collar,single,basic.4y,no,yes,no,telephone,may,thu,113,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,blue-collar,married,high.school,unknown,yes,no,telephone,may,thu,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,housemaid,married,basic.4y,no,yes,no,telephone,may,thu,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,thu,34,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,technician,married,professional.course,no,yes,no,telephone,may,thu,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,technician,married,professional.course,no,no,no,telephone,may,thu,504,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,services,single,high.school,unknown,no,no,telephone,may,thu,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,36,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,unknown,married,high.school,unknown,no,no,telephone,may,thu,303,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,services,divorced,high.school,no,yes,no,telephone,may,thu,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,technician,single,university.degree,unknown,yes,no,telephone,may,thu,90,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,admin.,single,university.degree,no,no,no,telephone,may,thu,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,admin.,single,high.school,no,unknown,unknown,telephone,may,thu,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,blue-collar,divorced,unknown,no,no,yes,telephone,may,thu,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+57,retired,unknown,basic.4y,no,yes,no,telephone,may,thu,171,10,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,management,married,unknown,unknown,no,no,telephone,may,thu,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+55,unknown,married,unknown,unknown,yes,no,telephone,may,thu,285,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+26,admin.,married,high.school,no,no,no,telephone,may,thu,326,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,blue-collar,divorced,unknown,no,yes,no,telephone,may,thu,451,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,technician,married,basic.9y,no,yes,no,telephone,may,thu,347,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,retired,divorced,basic.4y,no,no,no,telephone,may,thu,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,services,divorced,basic.6y,no,yes,no,telephone,may,thu,1074,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+56,technician,married,professional.course,unknown,no,no,telephone,may,thu,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,management,married,high.school,no,no,no,telephone,may,thu,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,1036,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,admin.,married,high.school,no,no,no,telephone,may,thu,303,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,self-employed,married,professional.course,no,yes,no,telephone,may,thu,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,322,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,self-employed,married,university.degree,unknown,yes,no,telephone,may,thu,750,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,admin.,married,high.school,no,yes,no,telephone,may,thu,695,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+49,technician,married,high.school,no,yes,no,telephone,may,thu,435,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,397,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,technician,married,basic.9y,no,yes,no,telephone,may,thu,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,retired,married,basic.4y,unknown,yes,no,telephone,may,thu,163,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,admin.,single,high.school,no,yes,no,telephone,may,thu,168,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,admin.,single,high.school,no,unknown,unknown,telephone,may,thu,161,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,services,married,basic.6y,no,yes,yes,telephone,may,thu,1000,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,blue-collar,married,basic.4y,no,no,yes,telephone,may,thu,599,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,technician,single,university.degree,no,yes,no,telephone,may,thu,30,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,entrepreneur,married,basic.9y,no,no,yes,telephone,may,thu,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,admin.,married,university.degree,no,yes,no,telephone,may,thu,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,thu,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,entrepreneur,divorced,university.degree,no,no,no,telephone,may,thu,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,services,married,basic.9y,no,yes,yes,telephone,may,thu,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+57,blue-collar,married,unknown,unknown,yes,no,telephone,may,thu,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,admin.,married,university.degree,no,unknown,unknown,telephone,may,thu,202,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,services,single,high.school,unknown,no,yes,telephone,may,thu,1257,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+48,admin.,married,high.school,no,no,yes,telephone,may,thu,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,admin.,married,high.school,no,yes,no,telephone,may,thu,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,thu,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,unknown,married,unknown,no,no,yes,telephone,may,thu,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,housemaid,single,university.degree,no,no,no,telephone,may,thu,71,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,admin.,married,high.school,no,no,no,telephone,may,thu,290,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,services,married,basic.6y,unknown,yes,no,telephone,may,thu,1165,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,self-employed,married,university.degree,no,no,no,telephone,may,thu,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,services,married,high.school,no,no,no,telephone,may,thu,295,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,thu,187,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,236,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,651,23,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+45,admin.,married,basic.6y,unknown,yes,no,telephone,may,thu,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,technician,married,professional.course,no,no,no,telephone,may,thu,145,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,blue-collar,single,high.school,no,yes,no,telephone,may,thu,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,self-employed,married,basic.6y,unknown,no,no,telephone,may,thu,734,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+36,services,married,high.school,unknown,no,no,telephone,may,thu,291,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,unemployed,divorced,high.school,no,no,no,telephone,may,thu,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,417,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,technician,married,professional.course,no,no,no,telephone,may,thu,191,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,admin.,married,high.school,unknown,no,no,telephone,may,thu,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+55,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,management,married,university.degree,no,no,no,telephone,may,thu,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,admin.,married,basic.6y,no,yes,no,telephone,may,thu,229,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,admin.,married,high.school,no,no,no,telephone,may,thu,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+55,technician,divorced,professional.course,unknown,yes,yes,telephone,may,thu,72,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,admin.,married,high.school,no,yes,yes,telephone,may,thu,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,blue-collar,married,basic.4y,no,no,yes,telephone,may,thu,23,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,services,married,basic.4y,no,no,no,telephone,may,thu,402,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,unemployed,married,university.degree,unknown,yes,no,telephone,may,thu,37,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,admin.,married,university.degree,no,no,no,telephone,may,thu,68,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,blue-collar,married,basic.6y,no,yes,yes,telephone,may,thu,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,management,married,university.degree,unknown,no,no,telephone,may,thu,587,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,entrepreneur,married,basic.4y,no,no,no,telephone,may,thu,348,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,admin.,single,high.school,unknown,yes,no,telephone,may,thu,51,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,management,single,university.degree,no,unknown,unknown,telephone,may,thu,176,13,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+27,services,single,high.school,unknown,no,no,telephone,may,thu,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,services,married,basic.6y,unknown,yes,no,telephone,may,thu,297,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+55,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,203,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,unknown,divorced,high.school,no,no,no,telephone,may,thu,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,services,single,high.school,unknown,yes,no,telephone,may,thu,334,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,retired,married,basic.4y,unknown,yes,no,telephone,may,thu,217,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,464,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,technician,single,university.degree,no,no,no,telephone,may,thu,738,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,management,married,basic.9y,no,yes,no,telephone,may,thu,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+57,technician,divorced,basic.4y,no,yes,no,telephone,may,thu,452,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,services,married,high.school,unknown,no,no,telephone,may,thu,203,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,married,unknown,unknown,no,no,telephone,may,thu,230,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,187,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,thu,920,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+58,self-employed,married,university.degree,no,no,no,telephone,may,thu,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,unknown,single,basic.6y,unknown,no,no,telephone,may,thu,1244,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,admin.,single,high.school,no,no,no,telephone,may,thu,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,admin.,married,university.degree,no,no,no,telephone,may,thu,431,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,500,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+55,retired,married,professional.course,no,yes,no,telephone,may,thu,301,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,115,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,technician,married,unknown,no,yes,no,telephone,may,thu,30,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,admin.,married,high.school,no,yes,no,telephone,may,thu,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,unknown,married,unknown,unknown,yes,no,telephone,may,thu,270,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,218,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,technician,married,high.school,no,yes,no,telephone,may,thu,355,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,unemployed,divorced,basic.9y,unknown,no,no,telephone,may,thu,215,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,admin.,married,high.school,unknown,yes,no,telephone,may,thu,299,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,unknown,married,unknown,no,no,yes,telephone,may,thu,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+55,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,172,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,management,divorced,university.degree,no,yes,no,telephone,may,thu,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,housemaid,single,basic.4y,no,yes,no,telephone,may,thu,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,admin.,divorced,university.degree,no,yes,no,telephone,may,thu,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,housemaid,single,basic.4y,no,no,no,telephone,may,thu,477,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,blue-collar,single,professional.course,no,yes,no,telephone,may,thu,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,services,married,high.school,unknown,yes,no,telephone,may,thu,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,services,married,high.school,no,no,no,telephone,may,thu,200,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,blue-collar,single,basic.4y,no,yes,no,telephone,may,thu,187,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,thu,236,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,thu,50,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,self-employed,married,professional.course,no,unknown,unknown,telephone,may,thu,104,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,admin.,divorced,high.school,no,no,no,telephone,may,thu,51,10,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,unknown,married,basic.6y,unknown,no,no,telephone,may,thu,51,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,140,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,221,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,98,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,services,married,high.school,no,no,no,telephone,may,thu,253,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,entrepreneur,married,university.degree,no,no,no,telephone,may,thu,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,self-employed,married,basic.9y,no,yes,no,telephone,may,thu,74,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,services,married,professional.course,unknown,yes,no,telephone,may,thu,126,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,housemaid,divorced,basic.6y,no,no,no,telephone,may,thu,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,technician,married,professional.course,no,no,no,telephone,may,thu,173,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+26,admin.,single,high.school,no,yes,no,telephone,may,thu,918,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,544,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,admin.,single,university.degree,no,yes,no,telephone,may,thu,309,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,blue-collar,divorced,basic.4y,no,no,no,telephone,may,thu,138,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,admin.,married,university.degree,no,no,no,telephone,may,thu,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,admin.,married,university.degree,unknown,yes,no,telephone,may,thu,71,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,technician,divorced,professional.course,no,yes,no,telephone,may,thu,193,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,admin.,single,high.school,no,yes,no,telephone,may,thu,243,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,thu,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,admin.,single,university.degree,unknown,no,no,telephone,may,thu,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,housemaid,divorced,university.degree,no,yes,no,telephone,may,thu,105,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+56,admin.,divorced,unknown,unknown,yes,no,telephone,may,thu,719,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,unemployed,divorced,basic.4y,no,yes,no,telephone,may,thu,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,housemaid,married,basic.4y,unknown,no,no,telephone,may,thu,196,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,management,divorced,university.degree,no,yes,no,telephone,may,thu,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,admin.,single,high.school,unknown,no,no,telephone,may,thu,344,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,admin.,single,university.degree,no,no,no,telephone,may,thu,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+24,student,single,high.school,no,no,no,telephone,may,thu,597,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,entrepreneur,married,high.school,no,yes,no,telephone,may,thu,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,entrepreneur,single,university.degree,no,yes,no,telephone,may,thu,43,9,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,525,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,122,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+60,management,married,university.degree,unknown,yes,no,telephone,may,thu,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,admin.,married,basic.9y,unknown,yes,no,telephone,may,thu,111,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,technician,married,university.degree,unknown,yes,no,telephone,may,thu,133,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,retired,divorced,high.school,no,no,yes,telephone,may,thu,504,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,blue-collar,divorced,basic.4y,no,no,no,telephone,may,thu,192,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,services,single,basic.6y,unknown,yes,no,telephone,may,thu,164,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,services,divorced,basic.9y,no,yes,no,telephone,may,thu,51,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,admin.,married,professional.course,no,yes,no,telephone,may,thu,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,admin.,married,university.degree,no,no,no,telephone,may,thu,99,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,married,professional.course,no,yes,yes,telephone,may,thu,224,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,admin.,single,university.degree,no,no,no,telephone,may,thu,236,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,815,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,282,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,admin.,divorced,high.school,no,no,no,telephone,may,thu,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,entrepreneur,single,unknown,unknown,yes,no,telephone,may,thu,318,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,management,married,university.degree,no,yes,no,telephone,may,thu,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,admin.,married,university.degree,no,yes,no,telephone,may,thu,911,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+36,technician,single,professional.course,no,yes,no,telephone,may,thu,238,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,admin.,single,university.degree,no,yes,no,telephone,may,thu,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,management,married,basic.6y,no,yes,no,telephone,may,thu,490,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+51,admin.,married,high.school,no,unknown,unknown,telephone,may,thu,89,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,blue-collar,married,basic.4y,no,no,yes,telephone,may,thu,199,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,technician,divorced,professional.course,no,no,no,telephone,may,thu,644,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,services,married,high.school,no,yes,yes,telephone,may,thu,286,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,blue-collar,divorced,unknown,no,no,no,telephone,may,thu,76,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,176,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,retired,married,professional.course,no,no,no,telephone,may,thu,422,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,admin.,single,university.degree,no,no,no,telephone,may,thu,22,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,unemployed,married,basic.4y,unknown,unknown,unknown,telephone,may,thu,71,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,single,basic.9y,no,no,yes,telephone,may,thu,465,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,services,married,high.school,unknown,yes,no,telephone,may,thu,83,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,admin.,divorced,basic.9y,no,no,no,telephone,may,thu,973,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+25,blue-collar,single,basic.9y,unknown,no,no,telephone,may,thu,56,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,management,married,university.degree,no,yes,no,telephone,may,thu,190,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+25,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,thu,323,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+25,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,thu,113,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,self-employed,married,basic.4y,unknown,yes,no,telephone,may,thu,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,blue-collar,single,basic.9y,unknown,no,yes,telephone,may,thu,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+27,unemployed,married,basic.9y,no,no,no,telephone,may,thu,84,14,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,blue-collar,married,basic.4y,no,no,yes,telephone,may,thu,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,294,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,21,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,210,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+57,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,unknown,married,unknown,no,yes,no,telephone,may,thu,251,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+27,blue-collar,single,basic.6y,unknown,no,no,telephone,may,thu,444,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,blue-collar,married,basic.6y,no,yes,yes,telephone,may,thu,237,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,blue-collar,single,high.school,no,yes,no,telephone,may,thu,399,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,admin.,single,high.school,no,no,no,telephone,may,thu,132,22,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+58,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,thu,334,10,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,admin.,married,unknown,no,no,no,telephone,may,thu,387,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,admin.,married,university.degree,unknown,yes,no,telephone,may,thu,344,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,management,divorced,university.degree,no,no,no,telephone,may,thu,279,9,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,student,single,basic.4y,no,no,no,telephone,may,thu,484,8,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,blue-collar,married,unknown,unknown,yes,yes,telephone,may,thu,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,blue-collar,married,unknown,unknown,yes,no,telephone,may,thu,461,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+58,retired,divorced,university.degree,no,yes,no,telephone,may,thu,30,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,services,single,professional.course,no,yes,no,telephone,may,thu,561,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,services,single,high.school,unknown,yes,no,telephone,may,thu,468,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,technician,married,professional.course,unknown,yes,no,telephone,may,thu,920,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+29,technician,single,professional.course,no,no,no,telephone,may,thu,388,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,technician,single,professional.course,no,no,no,telephone,may,thu,100,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,technician,married,unknown,unknown,no,no,telephone,may,thu,1224,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+32,services,single,professional.course,no,no,no,telephone,may,thu,589,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+26,blue-collar,single,basic.6y,no,no,yes,telephone,may,thu,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+27,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,438,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,technician,married,professional.course,no,yes,no,telephone,may,thu,69,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,blue-collar,married,professional.course,unknown,no,yes,telephone,may,thu,964,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,housemaid,married,high.school,unknown,no,no,telephone,may,thu,384,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,admin.,single,unknown,no,yes,no,telephone,may,thu,103,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,52,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+58,management,married,university.degree,unknown,no,no,telephone,may,thu,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+24,services,single,high.school,no,no,no,telephone,may,thu,486,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+51,management,married,university.degree,unknown,no,yes,telephone,may,thu,1156,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+26,entrepreneur,married,university.degree,no,no,no,telephone,may,thu,73,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,523,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,admin.,married,high.school,unknown,no,no,telephone,may,thu,157,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,186,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,73,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,544,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,194,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,admin.,married,university.degree,no,no,no,telephone,may,thu,420,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,technician,single,professional.course,no,no,no,telephone,may,thu,584,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,thu,192,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,admin.,divorced,high.school,no,no,yes,telephone,may,thu,155,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,thu,1231,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,student,single,university.degree,no,no,no,telephone,may,thu,619,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,management,married,university.degree,no,no,yes,telephone,may,thu,298,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,technician,married,professional.course,no,yes,no,telephone,may,thu,515,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,management,married,basic.9y,no,yes,no,telephone,may,thu,21,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,admin.,married,university.degree,no,yes,no,telephone,may,thu,404,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,admin.,divorced,high.school,no,yes,no,telephone,may,thu,241,23,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,admin.,married,university.degree,no,yes,no,telephone,may,thu,302,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,unemployed,married,professional.course,no,no,no,telephone,may,thu,440,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,admin.,divorced,university.degree,no,yes,yes,telephone,may,thu,172,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,management,married,basic.4y,unknown,no,no,telephone,may,thu,319,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+57,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,1051,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,276,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+57,admin.,married,university.degree,no,yes,no,telephone,may,thu,213,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,technician,married,university.degree,no,no,yes,telephone,may,thu,194,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,thu,276,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+25,technician,single,university.degree,no,yes,no,telephone,may,thu,19,8,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,admin.,married,university.degree,unknown,yes,no,telephone,may,thu,226,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+26,unemployed,single,basic.9y,no,no,yes,telephone,may,thu,546,8,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,admin.,married,university.degree,no,yes,no,telephone,may,thu,419,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,thu,1867,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+37,technician,single,university.degree,no,no,no,telephone,may,thu,156,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,technician,married,university.degree,no,yes,no,telephone,may,thu,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,admin.,married,basic.9y,no,yes,yes,telephone,may,thu,548,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,technician,single,professional.course,no,yes,no,telephone,may,thu,760,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,244,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,328,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,admin.,married,high.school,no,yes,yes,telephone,may,thu,171,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,technician,married,professional.course,unknown,no,no,telephone,may,thu,284,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,services,married,high.school,unknown,yes,no,telephone,may,thu,1263,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+56,management,married,basic.6y,no,no,yes,telephone,may,thu,92,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,unemployed,married,university.degree,no,no,no,telephone,may,thu,17,25,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,422,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,admin.,married,university.degree,unknown,yes,no,telephone,may,thu,17,10,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,self-employed,married,basic.9y,no,no,no,telephone,may,thu,301,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,student,single,unknown,unknown,yes,no,telephone,may,thu,267,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,blue-collar,divorced,basic.9y,no,no,no,telephone,may,thu,475,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,technician,married,university.degree,no,yes,no,telephone,may,thu,770,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,blue-collar,single,basic.4y,unknown,no,no,telephone,may,thu,487,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,services,married,high.school,no,no,no,telephone,may,thu,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,admin.,married,basic.6y,no,no,no,telephone,may,thu,114,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,admin.,divorced,high.school,no,no,no,telephone,may,thu,136,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,admin.,married,university.degree,no,yes,no,telephone,may,thu,196,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,technician,single,university.degree,no,yes,no,telephone,may,thu,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,technician,single,unknown,unknown,no,no,telephone,may,thu,257,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,self-employed,married,university.degree,unknown,yes,yes,telephone,may,thu,365,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,697,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+49,management,married,university.degree,no,no,yes,telephone,may,thu,192,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,self-employed,married,basic.4y,unknown,no,no,telephone,may,thu,244,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,technician,single,professional.course,no,yes,yes,telephone,may,thu,118,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+60,entrepreneur,married,basic.4y,no,unknown,unknown,telephone,may,thu,101,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,entrepreneur,married,high.school,unknown,no,no,telephone,may,thu,56,13,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,admin.,married,university.degree,no,no,no,telephone,may,thu,430,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,retired,divorced,professional.course,no,yes,no,telephone,may,thu,242,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,blue-collar,married,unknown,no,no,no,telephone,may,thu,809,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,admin.,married,high.school,no,yes,no,telephone,may,thu,317,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+26,unemployed,single,professional.course,no,no,no,telephone,may,thu,7,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,admin.,married,university.degree,no,yes,no,telephone,may,thu,493,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,services,single,high.school,unknown,yes,no,telephone,may,thu,381,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,management,married,university.degree,no,no,no,telephone,may,thu,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,admin.,single,high.school,no,no,no,telephone,may,thu,523,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,admin.,divorced,university.degree,no,yes,no,telephone,may,thu,309,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,blue-collar,married,unknown,unknown,no,no,telephone,may,thu,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,technician,divorced,professional.course,no,yes,no,telephone,may,thu,850,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,technician,married,university.degree,no,yes,no,telephone,may,thu,420,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,admin.,married,high.school,unknown,yes,yes,telephone,may,thu,118,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,71,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,314,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,196,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+56,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,management,unknown,high.school,no,no,no,telephone,may,thu,95,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,516,9,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,retired,married,basic.4y,unknown,yes,no,telephone,may,thu,855,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,admin.,single,high.school,no,no,no,telephone,may,thu,78,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,thu,875,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+27,technician,single,professional.course,no,no,no,telephone,may,thu,124,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,technician,married,basic.6y,unknown,no,no,telephone,may,thu,24,16,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+55,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,thu,190,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,admin.,single,university.degree,no,no,no,telephone,may,thu,53,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+57,management,married,university.degree,no,yes,no,telephone,may,thu,278,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+58,retired,married,basic.6y,unknown,no,no,telephone,may,thu,284,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,services,married,high.school,no,unknown,unknown,telephone,may,thu,262,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,391,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,technician,married,university.degree,no,no,no,telephone,may,thu,263,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,services,married,high.school,no,no,no,telephone,may,thu,214,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,admin.,married,university.degree,no,no,no,telephone,may,thu,88,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,technician,married,professional.course,no,no,no,telephone,may,thu,255,12,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,blue-collar,married,high.school,unknown,no,no,telephone,may,thu,202,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+56,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,438,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+25,admin.,single,high.school,no,no,yes,telephone,may,thu,311,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,married,high.school,no,yes,yes,telephone,may,thu,426,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,entrepreneur,married,basic.4y,no,no,yes,telephone,may,thu,302,8,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,student,single,basic.9y,unknown,yes,no,telephone,may,thu,213,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+55,unemployed,married,basic.4y,unknown,no,no,telephone,may,thu,214,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,thu,90,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+57,retired,single,high.school,no,yes,no,telephone,may,thu,448,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,technician,married,high.school,no,no,no,telephone,may,thu,70,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,admin.,single,high.school,no,yes,no,telephone,may,thu,347,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,admin.,single,high.school,no,no,yes,telephone,may,thu,892,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+30,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,320,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,technician,married,professional.course,no,yes,no,telephone,may,thu,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,222,11,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,98,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,management,married,professional.course,no,no,no,telephone,may,thu,734,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,services,married,high.school,unknown,yes,no,telephone,may,thu,177,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,thu,65,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,services,single,high.school,no,yes,no,telephone,may,thu,543,12,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,374,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,admin.,divorced,university.degree,no,no,no,telephone,may,thu,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,blue-collar,single,basic.9y,no,yes,no,telephone,may,thu,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,services,married,high.school,no,unknown,unknown,telephone,may,thu,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,unemployed,single,university.degree,no,no,no,telephone,may,thu,297,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+58,self-employed,divorced,unknown,no,yes,no,telephone,may,thu,491,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,377,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,blue-collar,single,basic.9y,unknown,yes,yes,telephone,may,fri,84,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,self-employed,married,basic.9y,no,yes,yes,telephone,may,fri,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,unemployed,married,high.school,unknown,no,no,telephone,may,fri,135,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,services,married,basic.9y,unknown,no,yes,telephone,may,fri,246,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,fri,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,entrepreneur,married,high.school,no,no,no,telephone,may,fri,248,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,admin.,married,university.degree,no,yes,no,telephone,may,fri,336,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,blue-collar,single,basic.9y,no,no,yes,telephone,may,fri,28,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,technician,married,university.degree,no,yes,no,telephone,may,fri,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+47,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,329,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,blue-collar,divorced,basic.6y,no,yes,no,telephone,may,fri,597,17,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,blue-collar,married,high.school,no,no,yes,telephone,may,fri,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,admin.,married,basic.6y,unknown,yes,no,telephone,may,fri,343,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,blue-collar,single,university.degree,no,yes,yes,telephone,may,fri,266,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,admin.,married,unknown,no,no,no,telephone,may,fri,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,technician,married,professional.course,no,yes,no,telephone,may,fri,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,services,married,high.school,no,no,yes,telephone,may,fri,206,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,unemployed,divorced,high.school,unknown,yes,yes,telephone,may,fri,69,15,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,services,married,high.school,no,yes,no,telephone,may,fri,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,entrepreneur,married,university.degree,no,yes,yes,telephone,may,fri,515,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+30,self-employed,single,high.school,no,yes,no,telephone,may,fri,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+58,management,married,basic.9y,no,no,no,telephone,may,fri,29,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,services,married,high.school,no,yes,no,telephone,may,fri,512,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,admin.,single,high.school,no,no,yes,telephone,may,fri,813,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+32,technician,single,professional.course,no,yes,no,telephone,may,fri,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+25,services,divorced,basic.4y,no,yes,no,telephone,may,fri,601,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+56,technician,married,professional.course,no,no,yes,telephone,may,fri,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,unemployed,married,basic.9y,unknown,yes,no,telephone,may,fri,144,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,admin.,married,university.degree,no,no,no,telephone,may,fri,230,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,services,divorced,high.school,no,no,no,telephone,may,fri,456,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,management,married,university.degree,no,no,no,telephone,may,fri,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+53,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,admin.,single,basic.9y,no,no,no,telephone,may,fri,387,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,technician,divorced,professional.course,unknown,no,yes,telephone,may,fri,286,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,blue-collar,married,high.school,no,no,no,telephone,may,fri,286,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+26,admin.,single,high.school,no,yes,no,telephone,may,fri,448,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,management,married,high.school,unknown,no,yes,telephone,may,fri,223,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,management,married,university.degree,unknown,no,no,telephone,may,fri,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,services,married,basic.4y,unknown,no,no,telephone,may,fri,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,admin.,single,unknown,no,no,no,telephone,may,fri,212,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+53,technician,married,high.school,no,no,no,telephone,may,fri,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+57,management,divorced,university.degree,no,no,no,telephone,may,fri,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,blue-collar,single,high.school,no,yes,no,telephone,may,fri,803,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+35,admin.,married,university.degree,no,yes,no,telephone,may,fri,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,management,single,university.degree,unknown,yes,no,telephone,may,fri,844,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+46,admin.,married,high.school,no,no,no,telephone,may,fri,297,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+57,retired,married,unknown,unknown,yes,no,telephone,may,fri,529,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,admin.,single,university.degree,unknown,no,no,telephone,may,fri,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,may,fri,676,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+27,admin.,single,high.school,no,no,no,telephone,may,fri,656,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+47,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,fri,249,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,admin.,divorced,high.school,no,yes,no,telephone,may,fri,88,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+56,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,fri,1252,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+51,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,228,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,technician,married,university.degree,no,yes,no,telephone,may,fri,1143,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+35,admin.,single,basic.4y,unknown,no,no,telephone,may,fri,283,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+59,retired,divorced,basic.4y,no,yes,no,telephone,may,fri,118,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,self-employed,single,university.degree,no,no,no,telephone,may,fri,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,technician,single,professional.course,no,yes,no,telephone,may,fri,103,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,blue-collar,single,basic.6y,no,no,no,telephone,may,fri,213,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,housemaid,divorced,basic.4y,unknown,no,no,telephone,may,fri,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,admin.,married,university.degree,no,yes,no,telephone,may,fri,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+25,housemaid,single,basic.9y,no,no,no,telephone,may,fri,130,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,management,married,university.degree,no,no,no,telephone,may,fri,627,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,services,single,high.school,no,yes,no,telephone,may,fri,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,admin.,divorced,university.degree,no,no,no,telephone,may,fri,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,admin.,married,high.school,no,no,no,telephone,may,fri,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,admin.,single,university.degree,no,yes,no,telephone,may,fri,250,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,admin.,single,university.degree,no,yes,no,telephone,may,fri,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+59,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+24,student,single,high.school,no,unknown,unknown,telephone,may,fri,86,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+49,admin.,married,unknown,no,yes,no,telephone,may,fri,731,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,admin.,married,university.degree,no,yes,no,telephone,may,fri,37,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,blue-collar,married,high.school,no,no,no,telephone,may,fri,46,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,admin.,married,high.school,no,no,no,telephone,may,fri,356,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,technician,married,professional.course,unknown,yes,no,telephone,may,fri,248,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,242,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,134,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,admin.,divorced,basic.9y,no,yes,no,telephone,may,fri,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,management,divorced,university.degree,no,no,no,telephone,may,fri,355,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,technician,married,professional.course,no,yes,no,telephone,may,fri,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+56,blue-collar,single,basic.6y,no,yes,no,telephone,may,fri,346,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+54,blue-collar,divorced,unknown,unknown,yes,no,telephone,may,fri,370,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+60,entrepreneur,married,basic.4y,no,no,no,telephone,may,fri,261,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,technician,married,professional.course,no,no,yes,telephone,may,fri,63,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+26,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,688,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+39,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,fri,84,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,housemaid,single,high.school,no,no,no,telephone,may,fri,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,technician,married,professional.course,no,yes,no,telephone,may,fri,167,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,housemaid,married,basic.4y,no,no,no,telephone,may,fri,25,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,244,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+47,blue-collar,married,high.school,unknown,no,no,telephone,may,fri,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,blue-collar,single,basic.9y,unknown,no,no,telephone,may,fri,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+24,services,married,high.school,no,no,no,telephone,may,fri,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+53,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+57,retired,married,high.school,unknown,yes,no,telephone,may,fri,42,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+26,student,single,unknown,unknown,no,no,telephone,may,fri,277,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,technician,married,professional.course,no,no,no,telephone,may,fri,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,admin.,married,university.degree,no,no,no,telephone,may,fri,214,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,management,married,high.school,unknown,no,no,telephone,may,fri,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,blue-collar,single,basic.4y,unknown,unknown,unknown,telephone,may,fri,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,technician,single,university.degree,no,no,no,telephone,may,fri,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,technician,divorced,professional.course,no,yes,no,telephone,may,fri,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+26,blue-collar,single,high.school,unknown,no,no,telephone,may,fri,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,entrepreneur,married,university.degree,no,no,no,telephone,may,fri,803,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+44,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,fri,225,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+56,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+57,management,divorced,university.degree,no,yes,no,telephone,may,fri,754,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,services,married,high.school,no,yes,no,telephone,may,fri,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,management,married,professional.course,no,no,no,telephone,may,fri,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,technician,single,high.school,no,yes,no,telephone,may,fri,76,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,technician,single,university.degree,no,yes,no,telephone,may,fri,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,171,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,technician,married,unknown,unknown,no,yes,telephone,may,fri,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,42,8,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,admin.,married,high.school,no,yes,no,telephone,may,fri,343,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,services,married,high.school,unknown,yes,no,telephone,may,fri,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,admin.,married,university.degree,unknown,no,no,telephone,may,fri,268,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,entrepreneur,married,basic.6y,no,no,no,telephone,may,fri,217,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,technician,married,professional.course,unknown,yes,no,telephone,may,fri,360,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,fri,241,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,services,married,high.school,unknown,yes,no,telephone,may,fri,47,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+25,blue-collar,single,basic.4y,no,no,no,telephone,may,fri,196,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,fri,601,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,admin.,married,university.degree,no,no,no,telephone,may,fri,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,services,divorced,unknown,unknown,yes,yes,telephone,may,fri,306,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,self-employed,single,basic.4y,unknown,yes,no,telephone,may,fri,362,22,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,entrepreneur,married,high.school,no,yes,no,telephone,may,fri,410,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,admin.,single,high.school,no,yes,no,telephone,may,fri,265,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,108,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,management,married,university.degree,no,no,no,telephone,may,fri,172,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,services,married,high.school,unknown,no,no,telephone,may,fri,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+59,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,424,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,359,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,management,married,university.degree,no,yes,yes,telephone,may,fri,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+49,admin.,divorced,high.school,no,yes,no,telephone,may,fri,787,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+39,management,married,university.degree,no,no,no,telephone,may,fri,169,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+24,services,married,high.school,no,no,yes,telephone,may,fri,241,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+53,unemployed,married,basic.4y,unknown,no,no,telephone,may,fri,141,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,admin.,single,university.degree,no,yes,no,telephone,may,fri,22,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+26,blue-collar,single,high.school,no,yes,no,telephone,may,fri,326,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+53,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,fri,317,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,admin.,married,high.school,no,yes,yes,telephone,may,fri,196,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,services,married,high.school,no,no,yes,telephone,may,fri,270,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,management,married,university.degree,no,unknown,unknown,telephone,may,fri,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,entrepreneur,married,university.degree,no,no,yes,telephone,may,fri,679,17,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,admin.,married,university.degree,no,yes,no,telephone,may,fri,576,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+27,services,married,high.school,no,yes,no,telephone,may,fri,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,admin.,married,university.degree,no,no,no,telephone,may,fri,161,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,housemaid,married,high.school,no,no,no,telephone,may,fri,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+26,admin.,single,high.school,no,no,no,telephone,may,fri,619,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+40,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,33,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+56,retired,married,professional.course,unknown,no,no,telephone,may,fri,27,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,admin.,married,high.school,no,yes,yes,telephone,may,fri,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+58,admin.,divorced,basic.9y,unknown,yes,no,telephone,may,fri,38,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,admin.,married,university.degree,no,yes,no,telephone,may,fri,322,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,187,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+59,retired,divorced,basic.9y,unknown,yes,no,telephone,may,fri,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,blue-collar,single,basic.9y,unknown,no,no,telephone,may,fri,1230,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+29,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,services,married,professional.course,no,yes,no,telephone,may,fri,379,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+53,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,technician,married,high.school,unknown,yes,no,telephone,may,fri,42,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+56,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,197,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,services,single,basic.9y,no,yes,no,telephone,may,fri,320,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,self-employed,single,professional.course,unknown,no,no,telephone,may,fri,223,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,admin.,single,high.school,no,yes,no,telephone,may,fri,912,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+46,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,489,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,housemaid,married,basic.9y,no,no,no,telephone,may,fri,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,blue-collar,single,university.degree,unknown,no,no,telephone,may,fri,894,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+31,admin.,single,basic.9y,no,yes,no,telephone,may,fri,38,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,323,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,technician,married,professional.course,no,no,yes,telephone,may,fri,335,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,admin.,single,basic.6y,no,yes,no,telephone,may,fri,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,technician,married,university.degree,no,no,no,telephone,may,fri,410,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,admin.,single,university.degree,no,yes,no,telephone,may,fri,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+49,self-employed,married,professional.course,no,no,no,telephone,may,fri,374,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,technician,married,university.degree,no,yes,no,telephone,may,fri,193,8,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,services,married,basic.9y,unknown,no,no,telephone,may,fri,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,865,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+57,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,258,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,blue-collar,single,unknown,no,no,no,telephone,may,fri,299,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,management,married,university.degree,no,no,no,telephone,may,fri,381,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+55,retired,married,basic.4y,unknown,no,no,telephone,may,fri,197,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,management,married,university.degree,no,yes,no,telephone,may,fri,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+24,admin.,married,high.school,no,yes,no,telephone,may,fri,376,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,blue-collar,divorced,basic.4y,unknown,yes,yes,telephone,may,fri,393,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,services,divorced,high.school,no,no,no,telephone,may,fri,56,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+25,student,single,high.school,no,no,no,telephone,may,fri,112,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,155,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,services,single,basic.9y,no,no,no,telephone,may,fri,703,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,admin.,single,university.degree,no,yes,no,telephone,may,fri,141,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,475,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,technician,married,professional.course,no,no,no,telephone,may,fri,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,471,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,admin.,single,university.degree,no,no,yes,telephone,may,fri,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+26,services,single,high.school,no,no,no,telephone,may,fri,177,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,unknown,married,basic.4y,unknown,no,no,telephone,may,fri,344,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+47,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,229,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,admin.,married,university.degree,no,no,no,telephone,may,fri,404,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+54,technician,divorced,basic.9y,unknown,no,no,telephone,may,fri,287,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+26,admin.,single,university.degree,unknown,no,no,telephone,may,fri,329,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,technician,married,basic.9y,no,no,no,telephone,may,fri,433,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+54,services,divorced,high.school,unknown,yes,no,telephone,may,fri,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,services,married,basic.6y,no,no,no,telephone,may,fri,1340,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+28,technician,single,professional.course,no,no,no,telephone,may,fri,323,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,services,married,university.degree,no,no,no,telephone,may,fri,132,11,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,admin.,married,basic.9y,unknown,yes,no,telephone,may,fri,199,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,services,single,high.school,no,yes,no,telephone,may,fri,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,admin.,divorced,university.degree,no,no,no,telephone,may,fri,897,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+38,admin.,married,university.degree,no,yes,no,telephone,may,fri,80,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,123,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,admin.,married,university.degree,no,yes,no,telephone,may,fri,90,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,management,married,university.degree,no,no,no,telephone,may,fri,461,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,admin.,married,high.school,unknown,yes,no,telephone,may,fri,213,14,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,housemaid,married,high.school,no,yes,no,telephone,may,fri,193,11,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,housemaid,divorced,high.school,no,yes,no,telephone,may,fri,428,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,self-employed,married,high.school,no,yes,no,telephone,may,fri,291,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,housemaid,married,high.school,no,no,no,telephone,may,fri,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,services,married,basic.9y,unknown,no,no,telephone,may,fri,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,management,married,university.degree,no,no,no,telephone,may,fri,214,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,239,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,management,married,unknown,no,no,no,telephone,may,fri,718,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,services,married,high.school,unknown,yes,no,telephone,may,fri,323,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,technician,married,university.degree,no,no,no,telephone,may,fri,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,admin.,married,basic.9y,no,no,no,telephone,may,fri,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,management,married,unknown,no,no,no,telephone,may,fri,97,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,admin.,married,university.degree,no,no,no,telephone,may,fri,51,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,unemployed,single,high.school,no,no,no,telephone,may,fri,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,services,divorced,basic.4y,unknown,unknown,unknown,telephone,may,fri,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,housemaid,married,basic.9y,no,no,no,telephone,may,fri,378,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,technician,married,high.school,no,yes,no,telephone,may,fri,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+47,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,fri,1161,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,technician,married,high.school,unknown,no,no,telephone,may,fri,467,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,admin.,single,university.degree,no,no,no,telephone,may,fri,386,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,admin.,divorced,high.school,no,yes,no,telephone,may,fri,290,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,168,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,technician,married,basic.9y,no,no,no,telephone,may,fri,764,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,194,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,management,married,university.degree,no,yes,no,telephone,may,fri,16,23,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,admin.,divorced,professional.course,no,no,no,telephone,may,fri,148,18,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,student,single,high.school,no,no,yes,telephone,may,fri,2680,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+56,management,married,basic.4y,unknown,unknown,unknown,telephone,may,fri,242,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+53,technician,married,high.school,no,no,no,telephone,may,fri,269,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,blue-collar,married,professional.course,no,yes,no,telephone,may,fri,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+54,retired,married,basic.9y,unknown,no,no,telephone,may,fri,370,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,technician,married,professional.course,no,no,no,telephone,may,fri,274,8,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,services,single,high.school,no,no,no,telephone,may,fri,326,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,services,single,basic.9y,no,yes,no,telephone,may,fri,337,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,housemaid,married,university.degree,unknown,no,no,telephone,may,fri,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,blue-collar,married,professional.course,no,no,no,telephone,may,fri,788,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,admin.,married,university.degree,no,no,no,telephone,may,fri,353,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,admin.,single,university.degree,no,yes,no,telephone,may,fri,14,15,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,admin.,married,university.degree,no,yes,no,telephone,may,fri,698,9,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,admin.,married,high.school,no,yes,yes,telephone,may,fri,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,management,single,university.degree,no,yes,no,telephone,may,fri,257,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,admin.,single,university.degree,no,yes,no,telephone,may,fri,467,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,233,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,218,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+25,blue-collar,single,basic.4y,no,yes,no,telephone,may,fri,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,admin.,single,university.degree,no,yes,no,telephone,may,fri,315,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,technician,single,university.degree,unknown,yes,no,telephone,may,fri,40,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,retired,married,basic.9y,unknown,no,no,telephone,may,fri,698,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,technician,divorced,professional.course,no,yes,no,telephone,may,fri,76,17,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,admin.,married,university.degree,no,yes,no,telephone,may,fri,355,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,services,single,high.school,no,no,no,telephone,may,fri,557,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,services,single,basic.9y,no,yes,no,telephone,may,fri,148,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+40,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,130,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,280,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,entrepreneur,married,basic.6y,no,no,no,telephone,may,fri,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+47,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,283,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,services,married,high.school,no,no,no,telephone,may,fri,523,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+55,technician,married,basic.4y,unknown,yes,no,telephone,may,fri,316,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,admin.,single,university.degree,no,yes,no,telephone,may,fri,1128,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,171,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+56,unknown,married,unknown,unknown,yes,no,telephone,may,fri,174,15,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,management,single,university.degree,no,no,yes,telephone,may,fri,71,11,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,84,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,blue-collar,divorced,basic.6y,no,unknown,unknown,telephone,may,fri,234,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+59,entrepreneur,divorced,high.school,unknown,yes,no,telephone,may,fri,138,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+29,services,single,university.degree,no,no,no,telephone,may,fri,339,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,self-employed,married,basic.9y,no,yes,no,telephone,may,fri,509,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,admin.,single,high.school,unknown,yes,no,telephone,may,fri,254,16,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,retired,married,university.degree,no,yes,yes,telephone,may,fri,243,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,344,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,technician,single,professional.course,unknown,yes,yes,telephone,may,fri,131,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,fri,251,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,technician,married,basic.9y,no,yes,no,telephone,may,fri,1135,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,technician,married,university.degree,no,no,no,telephone,may,fri,1106,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,technician,married,professional.course,unknown,yes,no,telephone,may,fri,312,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,self-employed,single,high.school,no,yes,yes,telephone,may,fri,292,8,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+47,admin.,married,high.school,no,no,no,telephone,may,fri,279,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,blue-collar,married,high.school,no,yes,no,telephone,may,fri,293,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+27,services,single,high.school,no,yes,yes,telephone,may,fri,198,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+27,blue-collar,divorced,unknown,no,yes,no,telephone,may,fri,1408,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,blue-collar,divorced,basic.6y,unknown,no,no,telephone,may,fri,827,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,services,married,high.school,no,no,no,telephone,may,fri,303,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,fri,588,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,services,married,high.school,no,no,no,telephone,may,fri,680,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,160,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,21,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,technician,married,high.school,no,no,no,telephone,may,fri,251,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,technician,married,basic.9y,no,no,no,telephone,may,fri,476,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,management,single,university.degree,no,no,no,telephone,may,fri,81,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+25,admin.,married,high.school,no,yes,no,telephone,may,fri,4,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+49,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,283,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,self-employed,single,basic.6y,unknown,yes,no,telephone,may,fri,248,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,fri,541,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,self-employed,single,university.degree,no,yes,no,telephone,may,fri,227,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,admin.,divorced,professional.course,no,yes,no,telephone,may,fri,427,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+42,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,148,9,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,management,married,university.degree,no,yes,no,telephone,may,fri,408,10,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+45,management,married,university.degree,no,no,no,telephone,may,fri,255,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,admin.,married,high.school,no,yes,no,telephone,may,fri,236,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+56,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,428,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+60,retired,married,basic.9y,unknown,yes,no,telephone,may,fri,32,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,admin.,married,high.school,no,no,yes,telephone,may,fri,851,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,entrepreneur,married,basic.9y,no,no,no,telephone,may,fri,522,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,self-employed,married,high.school,unknown,no,no,telephone,may,fri,165,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+57,services,divorced,high.school,no,yes,yes,telephone,may,fri,1193,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+23,services,married,basic.9y,no,no,no,telephone,may,fri,1144,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,admin.,married,high.school,no,yes,no,telephone,may,fri,730,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+48,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,167,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+38,technician,married,university.degree,unknown,yes,no,telephone,may,fri,1023,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,469,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,management,married,high.school,no,no,no,telephone,may,fri,385,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,169,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,management,married,high.school,no,yes,no,telephone,may,fri,409,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+44,admin.,married,university.degree,unknown,no,no,telephone,may,fri,165,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,services,married,high.school,no,no,yes,telephone,may,fri,437,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,admin.,married,basic.9y,no,no,no,telephone,may,fri,89,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+47,technician,married,professional.course,unknown,no,no,telephone,may,fri,261,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,admin.,married,university.degree,no,no,no,telephone,may,fri,294,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+34,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,fri,1245,19,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,admin.,single,high.school,no,no,no,telephone,may,fri,498,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+46,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,134,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+32,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+36,retired,married,high.school,no,no,no,telephone,may,fri,192,20,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+24,student,single,university.degree,no,yes,yes,telephone,may,fri,65,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+35,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,237,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,admin.,single,university.degree,no,no,no,telephone,may,fri,239,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,admin.,divorced,university.degree,unknown,no,no,telephone,may,fri,196,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,admin.,married,university.degree,no,no,no,telephone,may,fri,243,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,services,single,basic.9y,no,yes,no,telephone,may,fri,393,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,blue-collar,married,unknown,unknown,no,no,telephone,may,fri,512,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+43,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,218,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+33,self-employed,married,university.degree,no,yes,no,telephone,may,fri,215,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+31,services,married,basic.9y,no,yes,no,telephone,may,fri,186,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,admin.,married,professional.course,no,no,no,telephone,may,fri,299,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+52,self-employed,married,university.degree,no,yes,no,telephone,may,fri,107,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+24,student,single,high.school,unknown,yes,yes,telephone,may,fri,103,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+30,admin.,single,university.degree,unknown,no,yes,telephone,may,fri,297,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+28,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,1064,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes
+28,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,90,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+41,technician,single,university.degree,unknown,yes,no,telephone,may,fri,59,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+39,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,102,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+37,technician,married,basic.9y,no,no,no,telephone,may,fri,1110,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+51,blue-collar,married,basic.4y,no,no,yes,telephone,may,fri,1187,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no
+50,management,married,university.degree,unknown,unknown,unknown,telephone,may,mon,93,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+53,technician,married,high.school,no,no,yes,telephone,may,mon,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+53,technician,married,unknown,no,yes,no,telephone,may,mon,65,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,blue-collar,married,basic.4y,no,no,yes,telephone,may,mon,79,19,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,services,married,high.school,no,no,no,telephone,may,mon,145,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,self-employed,single,university.degree,no,yes,no,telephone,may,mon,39,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,admin.,divorced,high.school,no,no,no,telephone,may,mon,311,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,self-employed,married,basic.4y,unknown,no,no,telephone,may,mon,179,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,technician,divorced,university.degree,unknown,no,no,telephone,may,mon,62,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+56,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,mon,115,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,admin.,married,university.degree,no,no,yes,telephone,may,mon,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,technician,married,professional.course,no,yes,no,telephone,may,mon,594,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,self-employed,divorced,basic.9y,no,no,yes,telephone,may,mon,55,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,services,married,high.school,no,yes,no,telephone,may,mon,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,management,divorced,high.school,no,yes,no,telephone,may,mon,19,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,housemaid,married,basic.4y,unknown,no,no,telephone,may,mon,501,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,admin.,divorced,high.school,no,yes,no,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,mon,219,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,management,married,high.school,no,no,no,telephone,may,mon,221,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,unknown,single,basic.4y,unknown,yes,yes,telephone,may,mon,374,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+59,retired,married,basic.4y,unknown,yes,no,telephone,may,mon,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,blue-collar,single,professional.course,no,no,no,telephone,may,mon,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,self-employed,single,university.degree,unknown,yes,no,telephone,may,mon,37,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,technician,married,professional.course,no,yes,no,telephone,may,mon,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,blue-collar,married,basic.6y,no,yes,yes,telephone,may,mon,668,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,88,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,services,divorced,high.school,no,yes,no,telephone,may,mon,77,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,admin.,married,high.school,unknown,yes,yes,telephone,may,mon,358,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,services,single,basic.4y,unknown,no,no,telephone,may,mon,312,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,admin.,divorced,university.degree,no,no,no,telephone,may,mon,134,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,admin.,single,unknown,unknown,no,yes,telephone,may,mon,61,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,student,single,university.degree,no,no,no,telephone,may,mon,258,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,self-employed,married,high.school,unknown,no,no,telephone,may,mon,131,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,technician,divorced,professional.course,no,no,no,telephone,may,mon,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,admin.,single,professional.course,no,no,no,telephone,may,mon,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,management,married,basic.4y,unknown,yes,no,telephone,may,mon,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,blue-collar,married,basic.9y,no,yes,yes,telephone,may,mon,468,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,management,single,high.school,no,yes,no,telephone,may,mon,326,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,admin.,single,high.school,no,no,yes,telephone,may,mon,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+53,technician,married,professional.course,unknown,yes,yes,telephone,may,mon,579,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,technician,married,university.degree,no,yes,no,telephone,may,mon,277,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,entrepreneur,married,basic.4y,unknown,no,no,telephone,may,mon,316,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,management,married,basic.4y,unknown,no,no,telephone,may,mon,882,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+44,blue-collar,divorced,basic.6y,no,no,no,telephone,may,mon,380,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,blue-collar,divorced,basic.9y,no,no,no,telephone,may,mon,169,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,admin.,married,high.school,no,yes,no,telephone,may,mon,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,services,married,unknown,unknown,yes,yes,telephone,may,mon,122,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+58,retired,divorced,university.degree,no,yes,no,telephone,may,mon,83,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,services,single,high.school,no,yes,no,telephone,may,mon,318,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,technician,married,professional.course,no,no,no,telephone,may,mon,29,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,admin.,married,high.school,no,yes,no,telephone,may,mon,218,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+41,blue-collar,married,professional.course,no,no,no,telephone,may,mon,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,blue-collar,single,basic.6y,no,yes,no,telephone,may,mon,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,technician,married,unknown,no,yes,no,telephone,may,mon,429,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,management,married,university.degree,no,no,no,telephone,may,mon,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+27,services,single,high.school,no,yes,no,telephone,may,mon,343,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,385,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,admin.,married,professional.course,no,no,no,telephone,may,mon,167,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,technician,married,professional.course,no,unknown,unknown,telephone,may,mon,89,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,admin.,divorced,university.degree,no,no,no,telephone,may,mon,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+51,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+57,retired,married,basic.4y,unknown,yes,no,telephone,may,mon,156,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,services,single,basic.6y,no,yes,yes,telephone,may,mon,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+54,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,mon,351,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,admin.,married,professional.course,no,no,no,telephone,may,mon,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+50,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,services,divorced,high.school,unknown,yes,no,telephone,may,mon,25,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,services,divorced,basic.9y,no,no,no,telephone,may,mon,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,management,married,basic.4y,unknown,no,no,telephone,may,mon,268,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,services,married,basic.9y,no,no,yes,telephone,may,mon,298,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,technician,married,professional.course,no,yes,no,telephone,may,mon,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,241,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,self-employed,single,high.school,no,yes,no,telephone,may,mon,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+41,management,married,university.degree,unknown,yes,no,telephone,may,mon,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,technician,single,university.degree,unknown,yes,yes,telephone,may,mon,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,blue-collar,married,basic.6y,no,yes,yes,telephone,may,mon,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,technician,married,basic.6y,no,yes,no,telephone,may,mon,82,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+51,services,married,high.school,unknown,yes,yes,telephone,may,mon,94,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+41,management,married,university.degree,no,no,no,telephone,may,mon,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,138,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,management,married,basic.9y,no,unknown,unknown,telephone,may,mon,285,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,student,single,high.school,no,no,no,telephone,may,mon,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+57,technician,married,professional.course,no,yes,no,telephone,may,mon,483,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+28,admin.,single,university.degree,no,yes,no,telephone,may,mon,267,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+54,housemaid,divorced,basic.4y,no,no,no,telephone,may,mon,382,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,admin.,single,university.degree,unknown,yes,no,telephone,may,mon,55,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,management,divorced,high.school,no,unknown,unknown,telephone,may,mon,259,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,mon,18,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,student,single,basic.9y,no,no,no,telephone,may,mon,234,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+51,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,792,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,technician,married,university.degree,no,no,no,telephone,may,mon,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,blue-collar,married,unknown,no,yes,yes,telephone,may,mon,943,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+42,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,798,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,84,12,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,mon,100,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+50,services,married,basic.6y,no,yes,no,telephone,may,mon,85,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,services,divorced,high.school,no,no,no,telephone,may,mon,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,unknown,married,basic.6y,no,yes,yes,telephone,may,mon,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,23,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,mon,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,management,married,high.school,unknown,no,no,telephone,may,mon,31,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+56,housemaid,married,basic.4y,no,no,no,telephone,may,mon,182,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,may,mon,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,admin.,married,university.degree,no,no,no,telephone,may,mon,351,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,self-employed,married,university.degree,no,no,yes,telephone,may,mon,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,housemaid,married,university.degree,no,no,no,telephone,may,mon,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,self-employed,married,basic.9y,unknown,no,no,telephone,may,mon,529,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,36,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,management,single,university.degree,no,yes,yes,telephone,may,mon,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+41,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,admin.,married,university.degree,no,yes,yes,telephone,may,mon,67,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,services,married,basic.9y,no,yes,no,telephone,may,mon,238,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,admin.,married,university.degree,no,no,no,telephone,may,mon,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,blue-collar,single,basic.9y,no,no,no,telephone,may,mon,496,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,technician,single,professional.course,no,no,yes,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+41,technician,married,university.degree,no,no,no,telephone,may,mon,156,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+59,retired,married,basic.9y,unknown,no,no,telephone,may,mon,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,unemployed,married,basic.6y,unknown,no,no,telephone,may,mon,265,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,48,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+25,services,married,high.school,unknown,yes,yes,telephone,may,mon,104,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,management,married,unknown,no,no,no,telephone,may,mon,610,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,blue-collar,divorced,basic.9y,no,no,no,telephone,may,mon,287,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,admin.,single,high.school,unknown,yes,no,telephone,may,mon,68,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,self-employed,married,university.degree,no,unknown,unknown,telephone,may,mon,167,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,blue-collar,married,professional.course,no,no,no,telephone,may,mon,336,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,technician,married,professional.course,no,no,no,telephone,may,mon,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,admin.,married,high.school,no,no,no,telephone,may,mon,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,admin.,married,university.degree,no,yes,no,telephone,may,mon,23,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,blue-collar,single,high.school,no,yes,yes,telephone,may,mon,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+51,blue-collar,married,basic.4y,no,yes,yes,telephone,may,mon,387,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,admin.,married,high.school,no,no,no,telephone,may,mon,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+50,unemployed,married,basic.4y,unknown,yes,no,telephone,may,mon,272,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,services,divorced,high.school,unknown,yes,yes,telephone,may,mon,158,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,admin.,married,high.school,unknown,yes,no,telephone,may,mon,35,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,607,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+52,technician,divorced,basic.9y,no,yes,yes,telephone,may,mon,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,blue-collar,single,basic.9y,unknown,no,yes,telephone,may,mon,36,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,blue-collar,single,basic.9y,no,no,no,telephone,may,mon,214,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,admin.,married,university.degree,no,yes,no,telephone,may,mon,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+25,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,mon,260,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,admin.,single,high.school,no,no,no,telephone,may,mon,197,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,self-employed,single,basic.9y,no,no,no,telephone,may,mon,174,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,admin.,married,basic.4y,no,no,no,telephone,may,mon,222,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,services,married,professional.course,no,no,no,telephone,may,mon,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+57,retired,married,basic.4y,no,yes,no,telephone,may,mon,546,12,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,admin.,married,basic.4y,unknown,no,no,telephone,may,mon,49,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,admin.,single,basic.9y,no,yes,yes,telephone,may,mon,335,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+25,self-employed,single,university.degree,no,no,no,telephone,may,mon,105,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,housemaid,single,high.school,no,no,no,telephone,may,mon,1203,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,services,married,high.school,no,no,no,telephone,may,mon,1022,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+41,admin.,divorced,university.degree,unknown,yes,no,telephone,may,mon,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,self-employed,married,professional.course,no,no,no,telephone,may,mon,258,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,admin.,married,high.school,no,no,no,telephone,may,mon,199,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,364,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+59,technician,married,university.degree,unknown,unknown,unknown,telephone,may,mon,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,admin.,married,university.degree,no,no,no,telephone,may,mon,201,14,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,management,married,university.degree,no,unknown,unknown,telephone,may,mon,193,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+58,retired,married,basic.4y,unknown,no,no,telephone,may,mon,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+54,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,166,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+25,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,480,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+24,technician,single,professional.course,unknown,no,no,telephone,may,mon,149,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+53,self-employed,married,university.degree,no,no,no,telephone,may,mon,396,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,admin.,married,university.degree,no,no,no,telephone,may,mon,124,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,housemaid,married,basic.4y,no,no,no,telephone,may,mon,13,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,entrepreneur,married,professional.course,no,no,no,telephone,may,mon,259,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+51,blue-collar,married,basic.4y,no,unknown,unknown,telephone,may,mon,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,housemaid,married,high.school,no,yes,yes,telephone,may,mon,723,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+41,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,89,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,257,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,services,married,professional.course,unknown,yes,yes,telephone,may,mon,361,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+24,services,single,professional.course,no,yes,no,telephone,may,mon,314,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,technician,married,university.degree,no,yes,no,telephone,may,mon,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,services,married,high.school,unknown,yes,yes,telephone,may,mon,115,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+27,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,147,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,admin.,divorced,professional.course,no,no,no,telephone,may,mon,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,admin.,married,university.degree,unknown,yes,yes,telephone,may,mon,183,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,admin.,married,basic.9y,unknown,no,yes,telephone,may,mon,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,admin.,single,high.school,no,yes,yes,telephone,may,mon,19,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+26,admin.,married,high.school,no,no,yes,telephone,may,mon,346,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,admin.,married,university.degree,no,no,no,telephone,may,mon,643,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,services,single,university.degree,unknown,yes,no,telephone,may,mon,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,mon,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,admin.,married,university.degree,no,yes,no,telephone,may,mon,193,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,513,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,services,single,high.school,no,no,yes,telephone,may,mon,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,263,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,admin.,single,basic.9y,unknown,no,no,telephone,may,mon,333,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+27,student,single,university.degree,no,yes,no,telephone,may,mon,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,services,divorced,high.school,no,yes,no,telephone,may,mon,191,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,blue-collar,married,professional.course,unknown,no,no,telephone,may,mon,571,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,housemaid,single,high.school,no,unknown,unknown,telephone,may,mon,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,unemployed,divorced,professional.course,no,unknown,unknown,telephone,may,mon,446,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+26,unemployed,married,high.school,no,yes,no,telephone,may,mon,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,335,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,mon,120,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,blue-collar,married,professional.course,no,no,no,telephone,may,mon,219,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,entrepreneur,married,university.degree,no,no,no,telephone,may,mon,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,blue-collar,divorced,basic.9y,no,yes,yes,telephone,may,mon,400,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,blue-collar,divorced,basic.6y,no,yes,no,telephone,may,mon,503,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,blue-collar,single,basic.9y,unknown,no,no,telephone,may,mon,125,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,blue-collar,married,basic.9y,no,no,yes,telephone,may,mon,329,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,technician,single,basic.9y,no,yes,no,telephone,may,mon,194,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,blue-collar,divorced,high.school,no,yes,no,telephone,may,mon,7,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+41,blue-collar,divorced,basic.9y,no,no,no,telephone,may,mon,53,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,admin.,married,university.degree,unknown,unknown,unknown,telephone,may,mon,261,56,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,blue-collar,divorced,basic.9y,no,unknown,unknown,telephone,may,mon,100,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,technician,single,university.degree,no,unknown,unknown,telephone,may,mon,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,services,married,high.school,no,yes,no,telephone,may,mon,552,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+22,services,single,high.school,no,yes,no,telephone,may,mon,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,263,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,mon,88,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,entrepreneur,married,university.degree,no,no,no,telephone,may,mon,44,39,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,services,divorced,high.school,no,no,yes,telephone,may,mon,207,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+24,services,single,high.school,no,no,no,telephone,may,mon,401,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,admin.,divorced,high.school,unknown,no,yes,telephone,may,mon,178,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,admin.,divorced,university.degree,no,no,no,telephone,may,mon,53,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,admin.,married,university.degree,no,no,no,telephone,may,mon,349,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,entrepreneur,married,basic.9y,no,no,no,telephone,may,mon,34,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,48,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,technician,divorced,professional.course,no,unknown,unknown,telephone,may,mon,182,11,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,technician,single,university.degree,no,unknown,unknown,telephone,may,mon,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,technician,divorced,high.school,no,yes,no,telephone,may,mon,457,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,technician,single,university.degree,no,yes,no,telephone,may,mon,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,technician,married,professional.course,no,no,yes,telephone,may,mon,142,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,technician,single,high.school,no,yes,yes,telephone,may,mon,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,technician,divorced,professional.course,no,no,yes,telephone,may,mon,65,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,technician,single,university.degree,no,yes,no,telephone,may,mon,420,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,blue-collar,married,professional.course,no,yes,no,telephone,may,mon,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,blue-collar,single,basic.4y,no,yes,no,telephone,may,mon,403,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,unemployed,single,high.school,no,yes,yes,telephone,may,mon,229,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,blue-collar,married,basic.4y,no,unknown,unknown,telephone,may,mon,445,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,management,married,basic.9y,unknown,no,no,telephone,may,mon,206,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+27,admin.,single,university.degree,no,yes,no,telephone,may,mon,182,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+26,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,183,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,management,married,university.degree,no,no,no,telephone,may,mon,134,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,management,married,basic.4y,unknown,no,no,telephone,may,mon,88,35,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,admin.,single,university.degree,no,no,no,telephone,may,mon,234,13,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,mon,215,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,194,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+26,services,married,high.school,no,no,no,telephone,may,mon,394,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,services,married,high.school,unknown,no,no,telephone,may,mon,5,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,admin.,married,university.degree,no,no,no,telephone,may,mon,408,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+26,blue-collar,married,basic.4y,no,no,yes,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,blue-collar,married,professional.course,no,yes,no,telephone,may,mon,210,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+24,admin.,single,high.school,no,yes,no,telephone,may,mon,243,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,technician,married,professional.course,no,no,no,telephone,may,mon,180,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+26,admin.,single,high.school,no,no,yes,telephone,may,mon,8,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,admin.,married,high.school,no,no,no,telephone,may,mon,313,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,1622,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+60,admin.,married,professional.course,no,yes,no,telephone,may,mon,324,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,205,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+24,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,194,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,admin.,married,high.school,no,no,no,telephone,may,mon,165,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,entrepreneur,divorced,university.degree,no,yes,yes,telephone,may,mon,86,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,admin.,divorced,high.school,no,no,no,telephone,may,mon,160,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,blue-collar,married,professional.course,no,yes,no,telephone,may,mon,492,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,services,divorced,university.degree,no,no,no,telephone,may,mon,187,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,technician,married,professional.course,unknown,yes,no,telephone,may,mon,197,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,technician,married,professional.course,unknown,yes,no,telephone,may,mon,95,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,services,married,high.school,unknown,yes,no,telephone,may,mon,967,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+36,services,married,high.school,unknown,yes,no,telephone,may,mon,260,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+51,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,services,divorced,high.school,no,no,no,telephone,may,mon,579,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+29,technician,married,professional.course,no,yes,no,telephone,may,mon,124,42,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+51,services,married,professional.course,unknown,no,no,telephone,may,mon,158,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,162,10,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,admin.,married,high.school,no,no,no,telephone,may,mon,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,services,married,basic.9y,unknown,no,no,telephone,may,mon,173,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,management,single,basic.4y,no,no,no,telephone,may,mon,73,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,technician,single,professional.course,no,yes,no,telephone,may,mon,220,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+27,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,management,married,basic.4y,unknown,no,no,telephone,may,mon,99,22,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+56,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,112,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+57,housemaid,married,basic.6y,no,no,yes,telephone,may,mon,168,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+27,services,married,professional.course,no,yes,no,telephone,may,mon,283,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,blue-collar,divorced,basic.4y,no,no,no,telephone,may,mon,235,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,technician,single,professional.course,no,yes,no,telephone,may,mon,138,8,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,technician,single,professional.course,unknown,no,no,telephone,may,mon,374,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,self-employed,married,university.degree,unknown,yes,no,telephone,may,mon,353,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,technician,single,professional.course,no,no,no,telephone,may,mon,147,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,332,10,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,technician,married,basic.9y,unknown,yes,no,telephone,may,mon,179,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,management,married,university.degree,no,yes,no,telephone,may,mon,396,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,blue-collar,single,university.degree,no,yes,no,telephone,may,mon,492,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,360,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+59,housemaid,married,unknown,no,no,no,telephone,may,mon,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,admin.,married,university.degree,no,yes,yes,telephone,may,mon,97,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,blue-collar,single,basic.9y,no,no,no,telephone,may,mon,84,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,blue-collar,single,professional.course,no,yes,no,telephone,may,mon,57,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,entrepreneur,married,university.degree,no,yes,no,telephone,may,mon,105,11,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,886,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,admin.,unknown,high.school,no,no,no,telephone,may,mon,182,8,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+58,blue-collar,divorced,unknown,no,no,no,telephone,may,mon,467,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,21,11,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,admin.,single,university.degree,no,no,no,telephone,may,mon,470,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,services,single,high.school,unknown,yes,no,telephone,may,mon,85,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+51,admin.,single,university.degree,no,no,no,telephone,may,mon,120,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,services,married,high.school,no,no,no,telephone,may,mon,298,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,blue-collar,married,professional.course,no,no,no,telephone,may,mon,87,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,622,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,services,married,high.school,no,yes,no,telephone,may,mon,195,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,services,divorced,high.school,no,no,no,telephone,may,mon,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,self-employed,single,basic.9y,no,no,no,telephone,may,mon,58,10,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,technician,divorced,professional.course,no,no,no,telephone,may,mon,1218,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+54,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,mon,500,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,admin.,married,university.degree,no,yes,yes,telephone,may,mon,66,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+25,services,single,high.school,no,no,no,telephone,may,mon,328,10,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,management,married,basic.6y,unknown,yes,no,telephone,may,mon,3078,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+26,admin.,single,high.school,no,no,no,telephone,may,tue,21,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,technician,married,professional.course,no,no,no,telephone,may,tue,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,technician,single,professional.course,unknown,no,no,telephone,may,tue,148,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,services,married,basic.9y,unknown,no,no,telephone,may,tue,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,admin.,married,university.degree,no,yes,no,telephone,may,tue,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,housemaid,married,high.school,unknown,yes,no,telephone,may,tue,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,management,married,unknown,no,no,no,telephone,may,tue,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+59,admin.,married,basic.6y,no,yes,no,telephone,may,tue,19,15,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,technician,married,professional.course,unknown,yes,no,telephone,may,tue,82,9,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,technician,divorced,professional.course,no,no,no,telephone,may,tue,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,housemaid,married,basic.4y,unknown,no,no,telephone,may,tue,365,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,technician,married,professional.course,no,yes,no,telephone,may,tue,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,admin.,married,high.school,no,no,no,telephone,may,tue,16,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,technician,divorced,professional.course,no,no,no,telephone,may,tue,249,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,services,married,high.school,unknown,yes,no,telephone,may,tue,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,admin.,married,university.degree,no,no,no,telephone,may,tue,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,unemployed,single,professional.course,no,no,no,telephone,may,tue,20,12,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,technician,single,university.degree,unknown,unknown,unknown,telephone,may,tue,686,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,admin.,married,basic.9y,no,no,no,telephone,may,tue,224,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,admin.,married,high.school,no,yes,no,telephone,may,tue,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,entrepreneur,single,university.degree,unknown,yes,no,telephone,may,tue,19,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+25,admin.,married,high.school,no,no,yes,telephone,may,tue,125,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,student,single,university.degree,unknown,yes,no,telephone,may,tue,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,admin.,divorced,university.degree,no,no,no,telephone,may,tue,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,blue-collar,married,high.school,no,no,no,telephone,may,tue,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,admin.,married,professional.course,unknown,yes,no,telephone,may,tue,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,basic.4y,no,yes,yes,telephone,may,tue,409,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,unemployed,married,basic.4y,unknown,yes,no,telephone,may,tue,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,technician,married,unknown,no,yes,yes,telephone,may,tue,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,retired,married,university.degree,no,no,yes,telephone,may,tue,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,technician,married,university.degree,unknown,no,no,telephone,may,tue,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,blue-collar,married,unknown,unknown,yes,no,telephone,may,tue,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,technician,married,high.school,no,no,no,telephone,may,tue,13,12,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,technician,single,professional.course,no,yes,yes,telephone,may,tue,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,services,married,high.school,no,yes,no,telephone,may,tue,656,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,services,single,basic.6y,no,no,yes,telephone,may,tue,1205,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,202,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,tue,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,admin.,married,unknown,no,no,no,telephone,may,tue,79,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,admin.,married,high.school,unknown,yes,yes,telephone,may,tue,196,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+25,management,single,basic.4y,no,no,no,telephone,may,tue,186,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,532,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,management,married,university.degree,no,no,yes,telephone,may,tue,234,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,married,high.school,no,no,no,telephone,may,tue,297,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,single,high.school,no,no,no,telephone,may,tue,1882,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+34,management,single,university.degree,no,no,no,telephone,may,tue,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,services,married,high.school,no,no,no,telephone,may,tue,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,self-employed,married,basic.4y,unknown,yes,no,telephone,may,tue,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,blue-collar,married,unknown,unknown,no,no,telephone,may,tue,1334,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+42,technician,divorced,university.degree,no,no,no,telephone,may,tue,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,admin.,married,high.school,no,no,no,telephone,may,tue,142,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,admin.,married,university.degree,no,yes,no,telephone,may,tue,775,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,services,married,basic.9y,no,no,no,telephone,may,tue,335,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,technician,married,high.school,no,no,no,telephone,may,tue,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,admin.,married,university.degree,no,yes,no,telephone,may,tue,68,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,services,married,university.degree,no,yes,no,telephone,may,tue,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,unemployed,single,basic.9y,no,no,no,telephone,may,tue,294,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,technician,married,professional.course,no,yes,no,telephone,may,tue,57,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,technician,married,professional.course,no,yes,yes,telephone,may,tue,297,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,services,divorced,high.school,no,yes,no,telephone,may,tue,90,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,tue,600,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,blue-collar,married,unknown,no,yes,no,telephone,may,tue,38,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,housemaid,married,high.school,unknown,no,no,telephone,may,tue,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,technician,married,professional.course,no,no,no,telephone,may,tue,26,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,admin.,married,high.school,no,no,no,telephone,may,tue,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,self-employed,married,basic.4y,no,no,no,telephone,may,tue,29,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,technician,married,unknown,unknown,no,no,telephone,may,tue,274,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,admin.,divorced,university.degree,no,no,no,telephone,may,tue,214,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,services,married,high.school,unknown,yes,no,telephone,may,tue,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,services,married,high.school,no,no,yes,telephone,may,tue,793,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,182,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+34,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,services,married,high.school,unknown,yes,yes,telephone,may,tue,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,tue,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,admin.,married,high.school,no,no,no,telephone,may,tue,167,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,technician,married,professional.course,unknown,no,no,telephone,may,tue,37,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,technician,married,professional.course,no,unknown,unknown,telephone,may,tue,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,394,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,blue-collar,married,unknown,unknown,no,no,telephone,may,tue,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,married,unknown,unknown,yes,yes,telephone,may,tue,264,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,technician,married,professional.course,unknown,yes,no,telephone,may,tue,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,services,divorced,basic.9y,no,yes,no,telephone,may,tue,320,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,technician,married,basic.9y,no,no,no,telephone,may,tue,618,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,technician,married,professional.course,no,no,no,telephone,may,tue,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,services,married,high.school,unknown,no,no,telephone,may,tue,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,management,married,unknown,unknown,no,no,telephone,may,tue,121,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,admin.,married,university.degree,unknown,yes,no,telephone,may,tue,265,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,services,married,high.school,unknown,yes,no,telephone,may,tue,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,admin.,married,high.school,unknown,no,no,telephone,may,tue,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,admin.,married,high.school,no,yes,yes,telephone,may,tue,224,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+21,admin.,single,basic.9y,no,yes,yes,telephone,may,tue,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,admin.,married,high.school,no,yes,no,telephone,may,tue,67,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,management,married,university.degree,unknown,yes,no,telephone,may,tue,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,married,basic.6y,no,no,yes,telephone,may,tue,269,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,admin.,divorced,university.degree,unknown,yes,yes,telephone,may,tue,273,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,admin.,single,basic.6y,unknown,no,no,telephone,may,tue,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,entrepreneur,married,unknown,unknown,no,no,telephone,may,tue,434,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,507,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,253,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,100,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,admin.,divorced,high.school,no,yes,yes,telephone,may,tue,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,admin.,married,university.degree,no,yes,no,telephone,may,tue,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,233,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,380,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+25,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,90,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,admin.,married,university.degree,unknown,no,no,telephone,may,tue,258,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,admin.,divorced,professional.course,unknown,no,no,telephone,may,tue,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,admin.,divorced,university.degree,no,no,no,telephone,may,tue,423,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,technician,married,professional.course,no,no,no,telephone,may,tue,215,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,209,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,technician,married,professional.course,no,no,no,telephone,may,tue,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,admin.,divorced,basic.9y,unknown,no,no,telephone,may,tue,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,admin.,married,high.school,no,yes,no,telephone,may,tue,360,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,divorced,unknown,unknown,unknown,unknown,telephone,may,tue,81,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,unknown,unknown,university.degree,no,yes,yes,telephone,may,tue,40,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,technician,married,professional.course,no,yes,no,telephone,may,tue,447,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,services,single,unknown,no,no,no,telephone,may,tue,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,married,high.school,no,no,no,telephone,may,tue,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,admin.,divorced,high.school,no,no,no,telephone,may,tue,138,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,services,married,basic.9y,no,yes,no,telephone,may,tue,207,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,services,married,high.school,unknown,yes,no,telephone,may,tue,309,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,management,married,high.school,unknown,yes,no,telephone,may,tue,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,services,single,basic.4y,no,yes,no,telephone,may,tue,1777,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+30,admin.,married,university.degree,no,no,yes,telephone,may,tue,284,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,services,married,high.school,no,no,no,telephone,may,tue,70,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,774,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,technician,married,basic.9y,unknown,no,no,telephone,may,tue,62,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,admin.,married,basic.4y,no,no,no,telephone,may,tue,247,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,admin.,married,high.school,unknown,no,yes,telephone,may,tue,318,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,unemployed,married,professional.course,no,no,yes,telephone,may,tue,277,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+59,technician,married,university.degree,unknown,no,no,telephone,may,tue,126,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,admin.,single,unknown,no,no,no,telephone,may,tue,411,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+55,retired,divorced,professional.course,no,no,no,telephone,may,tue,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,unknown,married,university.degree,no,no,no,telephone,may,tue,378,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,self-employed,married,high.school,no,no,no,telephone,may,tue,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,admin.,single,university.degree,no,no,no,telephone,may,tue,71,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,management,married,unknown,no,yes,no,telephone,may,tue,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,services,married,high.school,no,yes,no,telephone,may,tue,869,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,blue-collar,single,basic.9y,no,no,yes,telephone,may,tue,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,199,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,tue,47,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,admin.,married,basic.6y,unknown,no,no,telephone,may,tue,253,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,technician,divorced,basic.9y,no,no,no,telephone,may,tue,244,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,management,married,university.degree,unknown,yes,no,telephone,may,tue,311,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,retired,married,university.degree,no,yes,no,telephone,may,tue,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,217,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,single,unknown,no,yes,no,telephone,may,tue,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,admin.,single,university.degree,no,yes,no,telephone,may,tue,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,technician,single,university.degree,no,no,no,telephone,may,tue,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,212,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+59,entrepreneur,divorced,high.school,unknown,no,no,telephone,may,tue,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,blue-collar,married,unknown,unknown,yes,no,telephone,may,tue,473,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,blue-collar,married,high.school,unknown,yes,no,telephone,may,tue,485,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,services,married,high.school,no,no,no,telephone,may,tue,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,single,basic.4y,no,no,no,telephone,may,tue,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,entrepreneur,married,basic.6y,unknown,no,no,telephone,may,tue,77,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+22,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,396,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,management,married,university.degree,unknown,no,no,telephone,may,tue,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,retired,married,high.school,unknown,no,no,telephone,may,tue,88,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,management,married,high.school,no,no,yes,telephone,may,tue,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,professional.course,unknown,no,yes,telephone,may,tue,346,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+60,admin.,single,high.school,no,no,yes,telephone,may,tue,474,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,services,married,high.school,no,no,no,telephone,may,tue,268,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,entrepreneur,married,basic.4y,unknown,yes,yes,telephone,may,tue,222,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,admin.,married,university.degree,unknown,no,yes,telephone,may,tue,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,services,married,high.school,unknown,no,no,telephone,may,tue,1313,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,admin.,married,university.degree,unknown,no,no,telephone,may,tue,72,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,blue-collar,single,high.school,no,yes,no,telephone,may,tue,309,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,divorced,high.school,unknown,yes,no,telephone,may,tue,61,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,entrepreneur,married,basic.9y,unknown,yes,yes,telephone,may,tue,246,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,housemaid,married,high.school,no,no,no,telephone,may,tue,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,single,basic.9y,no,yes,yes,telephone,may,tue,347,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,381,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,entrepreneur,single,university.degree,unknown,yes,no,telephone,may,tue,355,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,services,married,basic.9y,no,yes,no,telephone,may,tue,256,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,blue-collar,divorced,professional.course,no,yes,no,telephone,may,tue,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,services,married,high.school,no,no,no,telephone,may,tue,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,management,married,university.degree,no,no,yes,telephone,may,tue,66,12,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,1452,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,may,tue,487,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,technician,married,basic.9y,no,no,no,telephone,may,tue,610,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,technician,divorced,high.school,no,yes,no,telephone,may,tue,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,464,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,tue,547,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,services,married,high.school,no,yes,no,telephone,may,tue,522,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,services,single,high.school,no,yes,no,telephone,may,tue,227,9,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,housemaid,married,basic.9y,unknown,yes,no,telephone,may,tue,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,admin.,married,university.degree,no,no,no,telephone,may,tue,1376,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,married,unknown,no,yes,no,telephone,may,tue,37,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+60,services,married,unknown,no,no,no,telephone,may,tue,360,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,admin.,single,university.degree,no,yes,no,telephone,may,tue,51,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,housemaid,divorced,university.degree,no,no,no,telephone,may,tue,834,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,195,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,technician,married,high.school,no,yes,no,telephone,may,tue,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,admin.,married,university.degree,no,no,no,telephone,may,tue,194,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,entrepreneur,married,university.degree,no,no,no,telephone,may,tue,535,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,management,married,university.degree,no,yes,no,telephone,may,tue,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,technician,married,professional.course,no,no,no,telephone,may,tue,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,entrepreneur,married,basic.9y,unknown,yes,no,telephone,may,tue,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,services,married,high.school,unknown,no,no,telephone,may,tue,281,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,admin.,married,basic.9y,unknown,yes,no,telephone,may,tue,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,unemployed,married,professional.course,no,no,no,telephone,may,tue,76,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,admin.,married,university.degree,unknown,yes,no,telephone,may,tue,79,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,entrepreneur,married,basic.9y,no,no,no,telephone,may,tue,359,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,self-employed,married,basic.4y,unknown,yes,no,telephone,may,tue,332,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,592,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,retired,married,basic.9y,no,no,no,telephone,may,tue,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,admin.,divorced,university.degree,unknown,no,no,telephone,may,tue,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,self-employed,married,university.degree,unknown,no,no,telephone,may,tue,138,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+51,retired,married,basic.9y,no,yes,no,telephone,may,tue,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,services,married,high.school,no,unknown,unknown,telephone,may,tue,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,services,married,high.school,no,yes,no,telephone,may,tue,261,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,divorced,basic.9y,no,no,yes,telephone,may,tue,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,unemployed,married,university.degree,no,no,no,telephone,may,tue,592,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,technician,married,basic.9y,no,yes,no,telephone,may,tue,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,admin.,married,university.degree,no,yes,no,telephone,may,tue,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,self-employed,married,basic.6y,unknown,yes,yes,telephone,may,tue,324,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,admin.,single,university.degree,no,no,no,telephone,may,tue,266,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,services,married,high.school,unknown,no,yes,telephone,may,tue,335,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,technician,divorced,basic.9y,no,no,no,telephone,may,tue,235,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,admin.,married,high.school,no,yes,yes,telephone,may,tue,697,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,unknown,unknown,unknown,no,no,telephone,may,tue,170,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,technician,married,professional.course,no,unknown,unknown,telephone,may,tue,272,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,student,single,university.degree,no,yes,no,telephone,may,tue,1042,17,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,services,married,high.school,no,unknown,unknown,telephone,may,tue,271,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,management,married,basic.9y,no,yes,no,telephone,may,tue,378,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,student,single,high.school,unknown,yes,no,telephone,may,tue,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,78,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,383,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,technician,married,professional.course,no,no,no,telephone,may,tue,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,management,married,university.degree,no,yes,no,telephone,may,tue,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,services,married,professional.course,no,no,no,telephone,may,tue,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,services,divorced,high.school,no,yes,no,telephone,may,tue,157,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,retired,single,professional.course,no,no,no,telephone,may,tue,249,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,admin.,married,basic.9y,no,yes,yes,telephone,may,tue,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,retired,married,basic.4y,no,yes,no,telephone,may,tue,188,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,technician,married,professional.course,no,yes,no,telephone,may,tue,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,admin.,single,university.degree,no,no,no,telephone,may,tue,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,management,married,basic.9y,no,yes,yes,telephone,may,tue,415,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,admin.,married,high.school,no,yes,no,telephone,may,tue,742,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,retired,married,basic.9y,unknown,no,no,telephone,may,tue,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,37,9,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,management,single,high.school,no,no,no,telephone,may,tue,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,admin.,married,professional.course,no,yes,no,telephone,may,tue,185,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,retired,married,basic.4y,unknown,no,no,telephone,may,tue,1045,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,blue-collar,divorced,professional.course,no,yes,no,telephone,may,tue,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,housemaid,married,professional.course,unknown,no,no,telephone,may,tue,74,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,self-employed,married,professional.course,no,no,no,telephone,may,tue,190,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,management,married,basic.4y,no,no,no,telephone,may,tue,325,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,650,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+41,technician,married,professional.course,no,no,no,telephone,may,tue,148,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,38,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+47,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,625,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,admin.,married,university.degree,no,no,yes,telephone,may,tue,175,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,management,single,basic.9y,unknown,yes,no,telephone,may,tue,134,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,97,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,management,married,professional.course,no,no,no,telephone,may,tue,282,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,retired,married,basic.4y,no,yes,yes,telephone,may,tue,438,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,999,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,divorced,basic.9y,no,no,no,telephone,may,tue,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,self-employed,married,unknown,unknown,no,yes,telephone,may,tue,446,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,blue-collar,married,basic.4y,no,no,yes,telephone,may,tue,289,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,unemployed,married,basic.4y,unknown,no,no,telephone,may,tue,217,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,admin.,single,university.degree,no,yes,no,telephone,may,tue,169,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,blue-collar,married,basic.9y,no,yes,yes,telephone,may,tue,247,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,blue-collar,married,professional.course,no,yes,no,telephone,may,tue,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,retired,divorced,high.school,no,yes,no,telephone,may,tue,60,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,married,basic.6y,no,yes,yes,telephone,may,tue,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,blue-collar,married,high.school,unknown,no,no,telephone,may,tue,26,14,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,technician,married,professional.course,no,no,no,telephone,may,tue,128,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,services,married,professional.course,no,yes,no,telephone,may,tue,215,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,admin.,single,high.school,no,no,no,telephone,may,tue,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,management,married,high.school,no,yes,yes,telephone,may,tue,52,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,services,married,basic.6y,unknown,yes,no,telephone,may,tue,216,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,housemaid,divorced,basic.4y,unknown,yes,yes,telephone,may,tue,292,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,blue-collar,single,basic.4y,no,no,no,telephone,may,tue,129,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,housemaid,married,basic.4y,no,unknown,unknown,telephone,may,tue,201,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,admin.,married,high.school,no,yes,no,telephone,may,tue,210,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,services,married,basic.9y,no,unknown,unknown,telephone,may,tue,114,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,technician,married,professional.course,no,yes,no,telephone,may,tue,657,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,admin.,married,basic.6y,unknown,yes,yes,telephone,may,tue,88,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,technician,divorced,university.degree,unknown,yes,no,telephone,may,tue,147,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,services,married,high.school,no,no,no,telephone,may,tue,443,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+55,technician,married,basic.9y,unknown,yes,yes,telephone,may,tue,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,married,university.degree,no,no,no,telephone,may,tue,127,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,may,tue,1063,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+51,entrepreneur,married,basic.4y,no,no,no,telephone,may,tue,446,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,housemaid,married,high.school,no,no,no,telephone,may,tue,252,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,technician,married,professional.course,no,yes,no,telephone,may,tue,80,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,1446,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+26,blue-collar,married,basic.4y,no,yes,yes,telephone,may,tue,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,admin.,married,basic.9y,unknown,yes,yes,telephone,may,tue,412,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,222,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+52,blue-collar,married,basic.9y,no,yes,yes,telephone,may,tue,29,16,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,admin.,married,high.school,no,no,no,telephone,may,tue,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,blue-collar,married,unknown,no,no,no,telephone,may,tue,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,technician,married,basic.9y,unknown,yes,no,telephone,may,tue,202,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,admin.,married,high.school,no,yes,no,telephone,may,tue,723,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+45,unemployed,married,university.degree,no,no,no,telephone,may,tue,550,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,technician,married,professional.course,no,yes,no,telephone,may,tue,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,married,professional.course,unknown,no,no,telephone,may,tue,192,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+55,admin.,divorced,university.degree,no,no,no,telephone,may,tue,146,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+55,admin.,married,high.school,no,no,no,telephone,may,tue,239,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,technician,single,university.degree,no,yes,no,telephone,may,tue,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,self-employed,single,university.degree,no,unknown,unknown,telephone,may,tue,114,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+24,student,married,university.degree,no,no,no,telephone,may,tue,139,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+36,services,married,high.school,no,no,no,telephone,may,tue,445,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,admin.,married,basic.4y,unknown,yes,yes,telephone,may,tue,139,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,16,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+30,technician,married,university.degree,no,no,no,telephone,may,tue,169,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,self-employed,single,basic.9y,no,no,no,telephone,may,tue,125,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+60,admin.,married,university.degree,unknown,no,no,telephone,may,tue,266,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,technician,single,university.degree,no,yes,no,telephone,may,tue,446,12,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,admin.,married,basic.9y,no,yes,yes,telephone,may,tue,267,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,blue-collar,married,high.school,no,yes,yes,telephone,may,tue,6,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,retired,married,high.school,unknown,no,no,telephone,may,tue,15,13,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+24,admin.,single,high.school,no,no,no,telephone,may,tue,172,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,admin.,divorced,university.degree,no,no,no,telephone,may,tue,94,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+25,admin.,single,high.school,no,no,no,telephone,may,tue,268,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+59,entrepreneur,married,university.degree,unknown,yes,yes,telephone,may,tue,130,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,70,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,admin.,married,basic.9y,no,no,no,telephone,may,tue,91,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,technician,married,unknown,no,yes,no,telephone,may,tue,324,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,entrepreneur,married,basic.6y,no,no,no,telephone,may,tue,465,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+27,blue-collar,married,basic.9y,no,yes,yes,telephone,may,tue,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,management,single,basic.9y,no,no,no,telephone,may,tue,300,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,divorced,professional.course,no,yes,no,telephone,may,tue,191,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,unemployed,married,high.school,no,no,no,telephone,may,tue,56,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,services,married,high.school,no,no,no,telephone,may,tue,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+35,technician,married,university.degree,no,yes,no,telephone,may,tue,236,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+57,technician,divorced,unknown,no,no,no,telephone,may,tue,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,services,married,professional.course,no,yes,no,telephone,may,tue,614,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+49,admin.,single,high.school,no,no,no,telephone,may,tue,363,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,technician,married,basic.6y,no,yes,no,telephone,may,tue,418,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,technician,married,university.degree,unknown,yes,no,telephone,may,tue,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+24,services,single,high.school,no,no,no,telephone,may,tue,119,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,103,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+44,admin.,married,university.degree,no,no,no,telephone,may,tue,10,17,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+37,technician,married,professional.course,no,yes,no,telephone,may,tue,216,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,484,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,admin.,single,professional.course,no,no,no,telephone,may,tue,485,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,404,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,admin.,single,university.degree,no,yes,no,telephone,may,tue,138,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+25,technician,single,professional.course,no,yes,yes,telephone,may,tue,243,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,services,married,high.school,no,no,no,telephone,may,tue,919,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,203,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,admin.,single,high.school,no,no,no,telephone,may,tue,247,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+32,services,married,high.school,unknown,no,yes,telephone,may,tue,89,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,admin.,married,unknown,unknown,no,no,telephone,may,tue,185,12,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+22,blue-collar,married,basic.4y,no,unknown,unknown,telephone,may,tue,777,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,housemaid,married,basic.9y,no,no,no,telephone,may,tue,340,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+29,admin.,single,high.school,no,no,no,telephone,may,tue,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+50,technician,married,professional.course,unknown,yes,no,telephone,may,tue,256,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,housemaid,married,basic.9y,no,no,no,telephone,may,tue,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,housemaid,married,basic.4y,no,yes,no,telephone,may,tue,54,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+55,services,divorced,basic.4y,unknown,yes,no,telephone,may,tue,26,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+43,admin.,married,university.degree,no,no,no,telephone,may,tue,350,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,services,married,high.school,unknown,yes,no,telephone,may,tue,226,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,167,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,technician,single,university.degree,no,no,no,telephone,may,tue,47,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,214,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,446,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,management,married,basic.9y,no,yes,no,telephone,may,tue,153,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,admin.,divorced,high.school,no,yes,no,telephone,may,tue,181,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,blue-collar,divorced,basic.4y,no,no,no,telephone,may,tue,747,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,admin.,single,high.school,no,yes,no,telephone,may,tue,214,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,technician,divorced,basic.4y,no,yes,no,telephone,may,tue,270,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+53,admin.,married,university.degree,no,no,yes,telephone,may,tue,37,13,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,housemaid,married,basic.4y,no,unknown,unknown,telephone,may,tue,129,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+25,services,single,high.school,no,no,no,telephone,may,tue,72,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+42,admin.,married,high.school,no,no,no,telephone,may,tue,1392,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+34,services,married,high.school,unknown,yes,yes,telephone,may,tue,441,9,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,technician,divorced,basic.4y,no,yes,no,telephone,may,tue,725,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+38,admin.,married,high.school,no,no,no,telephone,may,tue,213,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,technician,single,high.school,no,no,yes,telephone,may,tue,177,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+46,services,married,professional.course,no,yes,no,telephone,may,tue,273,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+58,retired,married,university.degree,no,no,no,telephone,may,tue,98,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+39,services,married,high.school,no,no,yes,telephone,may,tue,480,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+54,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+31,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,204,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+40,services,single,high.school,no,yes,yes,telephone,may,tue,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+56,retired,divorced,basic.4y,no,no,no,telephone,may,tue,246,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+41,admin.,married,university.degree,no,no,no,telephone,may,tue,352,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+33,admin.,divorced,high.school,no,no,no,telephone,may,tue,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+55,technician,married,high.school,no,yes,no,telephone,may,tue,719,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes
+33,admin.,divorced,high.school,no,no,no,telephone,may,tue,277,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+48,admin.,divorced,high.school,no,no,no,telephone,may,tue,315,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no
+28,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,unemployed,married,university.degree,no,no,no,telephone,may,wed,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,admin.,single,basic.9y,unknown,no,yes,telephone,may,wed,408,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+60,housemaid,married,high.school,unknown,yes,no,telephone,may,wed,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,technician,married,basic.9y,no,no,no,telephone,may,wed,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,admin.,married,university.degree,no,yes,yes,telephone,may,wed,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,167,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,unemployed,married,basic.9y,no,yes,no,telephone,may,wed,64,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+54,management,divorced,basic.6y,unknown,yes,no,telephone,may,wed,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,housemaid,married,basic.4y,unknown,no,yes,telephone,may,wed,801,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+46,housemaid,married,basic.4y,no,no,no,telephone,may,wed,336,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,management,single,university.degree,no,no,no,telephone,may,wed,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,blue-collar,divorced,basic.4y,no,no,no,telephone,may,wed,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,technician,married,university.degree,no,no,no,telephone,may,wed,86,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,317,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,technician,married,professional.course,no,yes,no,telephone,may,wed,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,388,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,housemaid,married,university.degree,no,no,no,telephone,may,wed,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,admin.,married,high.school,no,yes,no,telephone,may,wed,72,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,services,married,high.school,no,yes,no,telephone,may,wed,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,admin.,married,high.school,no,yes,no,telephone,may,wed,339,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,171,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,18,28,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,admin.,single,university.degree,no,yes,yes,telephone,may,wed,938,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+38,blue-collar,married,high.school,unknown,yes,no,telephone,may,wed,173,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+56,self-employed,married,basic.4y,no,no,no,telephone,may,wed,222,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,admin.,married,high.school,no,yes,yes,telephone,may,wed,692,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,technician,married,professional.course,no,yes,yes,telephone,may,wed,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,admin.,single,high.school,unknown,yes,yes,telephone,may,wed,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+58,management,married,university.degree,unknown,no,no,telephone,may,wed,134,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,self-employed,married,university.degree,no,yes,yes,telephone,may,wed,323,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,management,married,university.degree,no,yes,no,telephone,may,wed,43,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+50,self-employed,married,basic.4y,unknown,no,yes,telephone,may,wed,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,482,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,wed,207,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+26,admin.,married,university.degree,no,yes,yes,telephone,may,wed,56,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,housemaid,single,high.school,unknown,yes,no,telephone,may,wed,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,services,married,high.school,no,yes,yes,telephone,may,wed,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,self-employed,single,university.degree,unknown,no,no,telephone,may,wed,353,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,wed,554,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,432,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,admin.,single,high.school,no,no,no,telephone,may,wed,27,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,services,married,high.school,no,no,no,telephone,may,wed,361,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,admin.,single,professional.course,no,yes,no,telephone,may,wed,565,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+41,technician,married,university.degree,no,no,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,admin.,married,high.school,unknown,no,no,telephone,may,wed,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,services,married,professional.course,no,no,no,telephone,may,wed,287,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,technician,married,professional.course,no,no,no,telephone,may,wed,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+59,retired,married,professional.course,unknown,no,no,telephone,may,wed,905,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+25,services,divorced,high.school,no,yes,yes,telephone,may,wed,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+22,services,single,basic.4y,no,no,no,telephone,may,wed,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,111,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+60,entrepreneur,married,basic.4y,no,yes,no,telephone,may,wed,236,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,admin.,married,university.degree,no,no,no,telephone,may,wed,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,unemployed,married,professional.course,no,yes,no,telephone,may,wed,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,technician,married,university.degree,no,yes,yes,telephone,may,wed,298,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,technician,single,university.degree,no,no,no,telephone,may,wed,86,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,420,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,entrepreneur,married,basic.9y,no,yes,no,telephone,may,wed,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,housemaid,married,basic.9y,no,yes,no,telephone,may,wed,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+56,blue-collar,married,unknown,unknown,yes,no,telephone,may,wed,508,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,services,single,high.school,no,no,no,telephone,may,wed,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,blue-collar,married,professional.course,no,no,no,telephone,may,wed,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,technician,single,university.degree,no,no,no,telephone,may,wed,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+54,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,783,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+53,retired,married,high.school,unknown,no,no,telephone,may,wed,264,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,services,married,basic.9y,no,no,no,telephone,may,wed,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,technician,single,professional.course,unknown,no,no,telephone,may,wed,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,management,married,high.school,unknown,no,no,telephone,may,wed,353,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,technician,single,professional.course,unknown,no,no,telephone,may,wed,1106,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,419,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,admin.,married,university.degree,unknown,yes,yes,telephone,may,wed,603,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,admin.,single,university.degree,unknown,yes,yes,telephone,may,wed,415,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+53,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,872,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,admin.,married,high.school,no,unknown,unknown,telephone,may,wed,52,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,490,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,admin.,married,high.school,no,yes,no,telephone,may,wed,63,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,management,married,university.degree,no,yes,no,telephone,may,wed,27,10,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,services,married,high.school,no,no,yes,telephone,may,wed,425,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+51,admin.,married,professional.course,unknown,no,no,telephone,may,wed,12,11,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,management,single,university.degree,no,yes,no,telephone,may,wed,350,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,technician,divorced,professional.course,no,yes,no,telephone,may,wed,103,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,services,married,high.school,no,no,no,telephone,may,wed,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,services,married,high.school,no,no,no,telephone,may,wed,261,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,115,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,management,married,high.school,unknown,yes,no,telephone,may,wed,641,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,services,married,university.degree,no,yes,no,telephone,may,wed,370,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,technician,married,basic.9y,unknown,yes,no,telephone,may,wed,958,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,wed,628,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+53,self-employed,married,university.degree,no,yes,no,telephone,may,wed,232,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,admin.,married,university.degree,no,no,no,telephone,may,wed,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,management,married,basic.9y,no,yes,no,telephone,may,wed,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,494,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,166,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,self-employed,married,basic.9y,no,yes,no,telephone,may,wed,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,technician,single,university.degree,no,no,no,telephone,may,wed,494,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,530,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,retired,married,professional.course,no,no,no,telephone,may,wed,759,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,technician,married,university.degree,no,no,no,telephone,may,wed,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,445,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+53,entrepreneur,single,basic.9y,no,no,no,telephone,may,wed,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,admin.,single,university.degree,no,no,no,telephone,may,wed,819,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,16,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,32,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,technician,married,university.degree,no,no,no,telephone,may,wed,648,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,management,married,high.school,no,no,no,telephone,may,wed,29,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,services,divorced,high.school,unknown,no,no,telephone,may,wed,220,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+56,retired,married,high.school,unknown,no,no,telephone,may,wed,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,management,married,university.degree,no,yes,no,telephone,may,wed,290,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,blue-collar,married,professional.course,no,yes,yes,telephone,may,wed,634,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,management,married,university.degree,no,no,yes,telephone,may,wed,717,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,management,married,high.school,unknown,yes,no,telephone,may,wed,249,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,housemaid,married,basic.4y,unknown,no,yes,telephone,may,wed,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,entrepreneur,married,professional.course,no,no,no,telephone,may,wed,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,student,single,university.degree,unknown,yes,no,telephone,may,wed,544,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,951,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,technician,single,university.degree,no,yes,no,telephone,may,wed,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+27,admin.,single,basic.9y,no,yes,yes,telephone,may,wed,264,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,technician,divorced,basic.9y,no,no,no,telephone,may,wed,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,technician,married,professional.course,no,yes,yes,telephone,may,wed,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,admin.,married,high.school,no,yes,no,telephone,may,wed,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+57,retired,married,basic.4y,no,no,no,telephone,may,wed,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,blue-collar,single,basic.6y,no,no,no,telephone,may,wed,244,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,management,married,university.degree,no,yes,no,telephone,may,wed,578,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,retired,divorced,high.school,unknown,yes,no,telephone,may,wed,359,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,services,single,high.school,no,yes,no,telephone,may,wed,190,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,487,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,admin.,married,university.degree,no,yes,no,telephone,may,wed,396,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,blue-collar,single,basic.4y,no,no,no,telephone,may,wed,59,8,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+53,retired,divorced,high.school,no,yes,no,telephone,may,wed,111,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,housemaid,single,university.degree,no,no,yes,telephone,may,wed,502,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,blue-collar,married,basic.6y,no,no,yes,telephone,may,wed,795,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+60,technician,divorced,professional.course,unknown,yes,no,telephone,may,wed,202,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+56,management,married,university.degree,no,yes,no,telephone,may,wed,29,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,408,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+56,management,married,university.degree,no,yes,yes,telephone,may,wed,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+60,entrepreneur,married,basic.4y,no,no,yes,telephone,may,wed,141,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+56,management,married,university.degree,no,no,yes,telephone,may,wed,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,229,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,admin.,single,high.school,no,no,no,telephone,may,wed,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+53,admin.,married,basic.9y,no,no,no,telephone,may,wed,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,entrepreneur,married,high.school,unknown,no,no,telephone,may,wed,7,12,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,blue-collar,single,professional.course,no,no,no,telephone,may,wed,51,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,blue-collar,single,basic.4y,no,no,no,telephone,may,wed,17,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,504,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,admin.,married,high.school,no,no,no,telephone,may,wed,726,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,542,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,technician,married,professional.course,no,no,no,telephone,may,wed,257,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,services,married,high.school,unknown,no,no,telephone,may,wed,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,250,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+59,retired,married,high.school,unknown,no,no,telephone,may,wed,294,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,admin.,single,unknown,unknown,yes,yes,telephone,may,wed,303,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,admin.,single,professional.course,no,yes,yes,telephone,may,wed,828,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+41,blue-collar,divorced,basic.6y,no,yes,yes,telephone,may,wed,343,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,services,married,high.school,no,no,no,telephone,may,wed,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,admin.,married,university.degree,no,yes,yes,telephone,may,wed,786,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,services,married,high.school,no,no,no,telephone,may,wed,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,admin.,divorced,professional.course,no,no,no,telephone,may,wed,509,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,blue-collar,married,professional.course,no,yes,no,telephone,may,wed,161,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+57,services,divorced,high.school,no,yes,yes,telephone,may,wed,125,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,admin.,married,high.school,no,yes,yes,telephone,may,wed,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+57,housemaid,married,basic.4y,no,no,yes,telephone,may,wed,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,technician,married,high.school,unknown,no,no,telephone,may,wed,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,blue-collar,single,unknown,unknown,no,no,telephone,may,wed,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,technician,married,university.degree,unknown,no,no,telephone,may,wed,389,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,admin.,single,high.school,no,no,no,telephone,may,wed,240,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,services,single,high.school,unknown,no,no,telephone,may,wed,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+57,management,married,basic.9y,unknown,yes,no,telephone,may,wed,59,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+51,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,39,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,admin.,married,high.school,no,yes,no,telephone,may,wed,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,admin.,single,university.degree,no,yes,no,telephone,may,wed,53,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+41,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,wed,44,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+27,admin.,single,high.school,unknown,yes,no,telephone,may,wed,212,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,management,married,university.degree,unknown,no,no,telephone,may,wed,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,45,13,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,admin.,single,high.school,no,yes,no,telephone,may,wed,738,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,unknown,single,basic.9y,unknown,yes,no,telephone,may,wed,102,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,management,married,basic.9y,no,no,yes,telephone,may,wed,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,services,married,high.school,no,yes,yes,telephone,may,wed,383,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,services,married,high.school,no,yes,yes,telephone,may,wed,184,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,housemaid,married,high.school,no,no,no,telephone,may,wed,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,technician,divorced,professional.course,no,yes,no,telephone,may,wed,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,admin.,married,high.school,no,no,no,telephone,may,wed,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,88,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,418,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,self-employed,married,university.degree,no,no,no,telephone,may,wed,17,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+58,management,single,professional.course,no,no,no,telephone,may,wed,233,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,technician,divorced,professional.course,no,no,no,telephone,may,wed,445,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,admin.,married,university.degree,no,yes,no,telephone,may,wed,623,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+24,services,single,high.school,no,no,no,telephone,may,wed,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,technician,married,professional.course,no,yes,no,telephone,may,wed,316,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,admin.,married,high.school,no,no,no,telephone,may,wed,650,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,housemaid,married,high.school,no,yes,no,telephone,may,wed,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,unemployed,single,basic.4y,unknown,yes,no,telephone,may,wed,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+24,services,single,high.school,no,unknown,unknown,telephone,may,wed,1307,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,technician,married,professional.course,no,yes,no,telephone,may,wed,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,admin.,married,high.school,no,no,no,telephone,may,wed,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+58,management,married,basic.9y,no,yes,no,telephone,may,wed,187,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,748,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,486,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,492,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,retired,divorced,basic.4y,no,yes,yes,telephone,may,wed,485,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,technician,married,university.degree,no,yes,no,telephone,may,wed,197,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,304,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,entrepreneur,married,professional.course,no,yes,no,telephone,may,wed,51,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+58,blue-collar,married,high.school,no,yes,no,telephone,may,wed,836,12,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,394,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+53,unknown,married,high.school,unknown,yes,no,telephone,may,wed,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+57,technician,married,high.school,no,no,no,telephone,may,wed,315,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,housemaid,married,basic.4y,no,no,no,telephone,may,wed,506,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+40,technician,married,professional.course,unknown,no,no,telephone,may,wed,288,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,admin.,divorced,high.school,unknown,yes,yes,telephone,may,wed,354,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,technician,married,professional.course,no,unknown,unknown,telephone,may,wed,154,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,blue-collar,married,high.school,no,yes,yes,telephone,may,wed,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,admin.,married,university.degree,no,yes,no,telephone,may,wed,563,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,technician,married,professional.course,no,no,no,telephone,may,wed,450,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,admin.,married,university.degree,no,yes,no,telephone,may,wed,34,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+26,blue-collar,single,basic.4y,no,yes,yes,telephone,may,wed,371,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,blue-collar,married,professional.course,no,yes,no,telephone,may,wed,518,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,admin.,married,university.degree,no,no,no,telephone,may,wed,111,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,176,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+26,blue-collar,single,basic.4y,no,yes,yes,telephone,may,wed,196,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,blue-collar,married,high.school,no,yes,no,telephone,may,wed,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,91,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,services,divorced,high.school,no,no,no,telephone,may,wed,172,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,252,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,technician,married,professional.course,no,yes,no,telephone,may,wed,265,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,technician,married,university.degree,unknown,no,no,telephone,may,wed,899,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,588,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+27,blue-collar,single,high.school,no,no,no,telephone,may,wed,393,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,technician,single,university.degree,unknown,no,no,telephone,may,wed,857,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+26,services,divorced,basic.6y,no,yes,no,telephone,may,wed,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,admin.,married,high.school,no,unknown,unknown,telephone,may,wed,164,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,management,married,university.degree,no,unknown,unknown,telephone,may,wed,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,technician,single,university.degree,no,no,no,telephone,may,wed,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+50,unemployed,married,high.school,no,no,yes,telephone,may,wed,38,12,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,technician,married,professional.course,no,no,no,telephone,may,wed,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,unknown,single,basic.6y,unknown,yes,no,telephone,may,wed,660,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+25,blue-collar,single,basic.4y,no,yes,no,telephone,may,wed,1681,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+35,technician,married,high.school,no,no,no,telephone,may,wed,208,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,self-employed,married,university.degree,no,no,no,telephone,may,wed,518,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,retired,married,basic.4y,unknown,yes,no,telephone,may,wed,316,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,technician,single,university.degree,no,no,no,telephone,may,wed,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,admin.,single,basic.9y,unknown,no,no,telephone,may,wed,272,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,blue-collar,married,professional.course,no,yes,no,telephone,may,wed,143,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,572,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,admin.,married,university.degree,no,no,no,telephone,may,wed,573,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+58,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,244,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+51,entrepreneur,married,basic.4y,unknown,yes,no,telephone,may,wed,384,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,technician,divorced,professional.course,no,no,no,telephone,may,wed,240,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,unemployed,divorced,high.school,unknown,yes,no,telephone,may,wed,269,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+25,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,488,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,management,single,university.degree,no,yes,no,telephone,may,wed,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,admin.,married,high.school,no,yes,no,telephone,may,wed,100,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,811,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+57,management,married,basic.9y,no,no,no,telephone,may,wed,890,26,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,wed,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,admin.,divorced,university.degree,no,no,no,telephone,may,wed,681,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+36,technician,married,basic.9y,no,no,no,telephone,may,wed,443,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,1162,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+56,entrepreneur,married,university.degree,no,no,yes,telephone,may,wed,1697,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+28,blue-collar,single,basic.6y,no,no,no,telephone,may,wed,244,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,admin.,single,high.school,no,no,no,telephone,may,wed,860,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+49,housemaid,divorced,basic.6y,no,yes,no,telephone,may,wed,295,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,technician,married,high.school,unknown,yes,no,telephone,may,wed,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+60,retired,married,professional.course,unknown,no,no,telephone,may,wed,280,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+26,admin.,married,basic.9y,no,yes,no,telephone,may,wed,86,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,technician,married,professional.course,no,no,no,telephone,may,wed,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+58,technician,married,professional.course,unknown,no,no,telephone,may,wed,113,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,admin.,single,basic.9y,unknown,yes,no,telephone,may,wed,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,technician,divorced,university.degree,unknown,yes,yes,telephone,may,wed,297,8,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,management,married,university.degree,no,unknown,unknown,telephone,may,wed,291,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,self-employed,married,high.school,no,no,yes,telephone,may,wed,394,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,technician,married,university.degree,unknown,yes,no,telephone,may,wed,72,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+27,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+57,services,divorced,high.school,no,yes,no,telephone,may,wed,312,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,technician,single,professional.course,unknown,no,no,telephone,may,wed,474,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,services,married,high.school,no,no,no,telephone,may,wed,91,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,admin.,married,university.degree,unknown,yes,yes,telephone,may,wed,232,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+41,technician,married,professional.course,no,yes,no,telephone,may,wed,446,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,admin.,married,high.school,no,no,no,telephone,may,wed,153,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,services,divorced,high.school,no,no,no,telephone,may,wed,111,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+57,services,divorced,high.school,no,yes,no,telephone,may,wed,72,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+53,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,559,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,services,married,high.school,unknown,yes,no,telephone,may,wed,189,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,management,married,university.degree,no,no,no,telephone,may,wed,237,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,admin.,married,high.school,no,no,no,telephone,may,wed,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+24,unemployed,single,university.degree,no,no,no,telephone,may,wed,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+53,self-employed,married,university.degree,no,yes,no,telephone,may,wed,162,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,services,married,high.school,unknown,yes,no,telephone,may,wed,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,239,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+53,admin.,single,university.degree,unknown,yes,no,telephone,may,wed,222,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,technician,married,high.school,no,yes,no,telephone,may,wed,69,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,services,single,basic.6y,unknown,yes,yes,telephone,may,wed,501,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+56,admin.,married,university.degree,unknown,no,no,telephone,may,wed,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,wed,273,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,281,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,admin.,single,university.degree,no,yes,no,telephone,may,wed,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,admin.,married,high.school,no,no,no,telephone,may,wed,465,11,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+56,technician,married,high.school,no,yes,no,telephone,may,wed,87,14,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,admin.,single,high.school,no,yes,no,telephone,may,wed,292,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,admin.,single,high.school,no,yes,no,telephone,may,wed,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,blue-collar,single,high.school,unknown,yes,no,telephone,may,wed,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,admin.,married,high.school,no,unknown,unknown,telephone,may,wed,23,16,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,technician,married,professional.course,no,unknown,unknown,telephone,may,wed,575,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,may,wed,67,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,admin.,single,university.degree,no,yes,no,telephone,may,wed,248,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,self-employed,married,university.degree,no,no,no,telephone,may,wed,108,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+25,self-employed,single,university.degree,no,yes,no,telephone,may,wed,373,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,services,single,university.degree,no,no,no,telephone,may,wed,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,395,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,services,married,high.school,no,yes,no,telephone,may,wed,229,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,services,married,high.school,unknown,unknown,unknown,telephone,may,wed,54,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,management,married,university.degree,no,yes,no,telephone,may,wed,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,blue-collar,married,high.school,no,no,no,telephone,may,wed,357,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,unemployed,divorced,university.degree,no,yes,no,telephone,may,wed,152,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,blue-collar,married,basic.6y,no,no,yes,telephone,may,wed,36,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,self-employed,married,university.degree,no,yes,no,telephone,may,wed,206,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,self-employed,married,basic.4y,unknown,no,no,telephone,may,wed,389,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,services,single,professional.course,unknown,no,no,telephone,may,wed,314,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+54,admin.,married,high.school,no,no,no,telephone,may,wed,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,admin.,married,university.degree,unknown,yes,no,telephone,may,wed,86,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,technician,married,professional.course,no,no,no,telephone,may,wed,489,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,technician,married,basic.6y,unknown,yes,no,telephone,may,wed,85,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,117,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+50,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,wed,832,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+25,blue-collar,single,basic.4y,no,no,no,telephone,may,wed,149,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+52,management,divorced,university.degree,no,no,no,telephone,may,wed,634,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,self-employed,married,basic.9y,no,no,no,telephone,may,wed,173,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,admin.,married,high.school,no,yes,no,telephone,may,wed,987,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,admin.,single,university.degree,no,yes,no,telephone,may,wed,66,13,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+26,services,divorced,basic.6y,no,no,no,telephone,may,wed,281,15,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+51,services,married,high.school,unknown,no,no,telephone,may,wed,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,services,married,basic.9y,no,yes,yes,telephone,may,wed,369,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,services,divorced,high.school,no,yes,yes,telephone,may,wed,88,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,blue-collar,divorced,unknown,no,yes,yes,telephone,may,wed,799,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+43,blue-collar,married,high.school,unknown,unknown,unknown,telephone,may,wed,671,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,services,married,high.school,unknown,yes,no,telephone,may,wed,397,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+56,services,divorced,high.school,unknown,yes,no,telephone,may,wed,935,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,management,married,university.degree,no,yes,no,telephone,may,wed,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+31,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,wed,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+50,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,21,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,entrepreneur,married,basic.6y,no,unknown,unknown,telephone,may,wed,234,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,admin.,single,university.degree,no,no,no,telephone,may,wed,81,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,admin.,single,high.school,no,yes,no,telephone,may,wed,59,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+50,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,233,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,self-employed,divorced,unknown,no,no,no,telephone,may,wed,1161,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,services,married,high.school,no,no,no,telephone,may,wed,265,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,services,single,high.school,no,no,no,telephone,may,wed,173,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,housemaid,single,high.school,no,yes,no,telephone,may,wed,178,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+38,services,single,basic.9y,unknown,yes,no,telephone,may,wed,203,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,services,single,high.school,no,no,no,telephone,may,wed,45,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,entrepreneur,married,professional.course,no,no,no,telephone,may,wed,86,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,unknown,married,basic.6y,no,no,no,telephone,may,wed,254,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,blue-collar,single,high.school,no,yes,yes,telephone,may,wed,131,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+26,admin.,married,university.degree,no,no,no,telephone,may,wed,239,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,207,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,blue-collar,married,high.school,unknown,no,no,telephone,may,wed,713,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,admin.,single,university.degree,no,no,no,telephone,may,wed,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+50,admin.,married,high.school,no,no,no,telephone,may,wed,260,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,923,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+54,technician,married,professional.course,no,yes,no,telephone,may,wed,150,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,services,married,basic.6y,no,no,no,telephone,may,wed,155,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+46,entrepreneur,married,university.degree,unknown,no,no,telephone,may,wed,433,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+49,admin.,divorced,high.school,no,yes,no,telephone,may,wed,202,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+33,services,married,high.school,unknown,no,no,telephone,may,wed,227,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+55,technician,married,high.school,no,no,no,telephone,may,wed,214,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,admin.,single,unknown,unknown,yes,no,telephone,may,wed,30,12,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+50,blue-collar,divorced,high.school,no,no,no,telephone,may,wed,206,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,admin.,married,university.degree,no,yes,yes,telephone,may,wed,362,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+35,admin.,married,high.school,no,no,no,telephone,may,wed,15,19,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+39,self-employed,married,basic.4y,unknown,yes,no,telephone,may,wed,315,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+44,blue-collar,married,high.school,no,no,no,telephone,may,wed,250,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+30,technician,married,professional.course,no,no,no,telephone,may,wed,700,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+40,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,154,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+29,entrepreneur,married,basic.6y,no,yes,no,telephone,may,wed,190,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,20,8,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+47,blue-collar,married,unknown,unknown,yes,no,telephone,may,wed,191,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+58,admin.,divorced,university.degree,no,yes,yes,telephone,may,wed,363,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+43,blue-collar,single,basic.4y,unknown,no,no,telephone,may,wed,339,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+37,services,married,high.school,no,yes,yes,telephone,may,wed,521,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes
+37,technician,married,professional.course,unknown,no,no,telephone,may,wed,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+34,admin.,single,university.degree,no,no,yes,telephone,may,wed,110,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+36,technician,married,professional.course,no,no,no,telephone,may,wed,142,10,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+48,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,173,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+59,admin.,single,professional.course,no,no,no,telephone,may,wed,291,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+32,technician,married,professional.course,no,no,no,telephone,may,wed,293,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+28,services,married,high.school,unknown,yes,no,telephone,may,wed,322,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+53,unemployed,married,basic.4y,unknown,yes,no,telephone,may,wed,339,10,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+50,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,526,8,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no
+45,technician,married,high.school,no,yes,no,telephone,may,fri,78,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,single,unknown,no,no,yes,telephone,may,fri,219,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,72,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,72,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,42,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,407,14,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,services,married,high.school,unknown,no,no,telephone,may,fri,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,single,high.school,unknown,yes,no,telephone,may,fri,158,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,405,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,technician,single,university.degree,no,yes,no,telephone,may,fri,417,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,single,unknown,unknown,yes,no,telephone,may,fri,48,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,housemaid,married,basic.6y,unknown,yes,no,telephone,may,fri,201,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,admin.,married,university.degree,no,yes,no,telephone,may,fri,101,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,214,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,single,professional.course,no,no,no,telephone,may,fri,350,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,high.school,no,yes,no,telephone,may,fri,433,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,entrepreneur,married,university.degree,no,no,yes,telephone,may,fri,253,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,329,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,628,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+38,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,110,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,high.school,no,yes,no,telephone,may,fri,259,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,no,yes,no,telephone,may,fri,260,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,technician,divorced,professional.course,no,yes,no,telephone,may,fri,363,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,divorced,basic.6y,no,yes,no,telephone,may,fri,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,divorced,basic.6y,no,yes,no,telephone,may,fri,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,services,single,basic.9y,no,no,yes,telephone,may,fri,83,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,management,married,basic.4y,no,no,no,telephone,may,fri,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,divorced,basic.6y,no,no,no,telephone,may,fri,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,management,married,unknown,unknown,yes,yes,telephone,may,fri,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,divorced,high.school,no,no,no,telephone,may,fri,346,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,single,high.school,no,unknown,unknown,telephone,may,fri,271,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,blue-collar,single,high.school,no,no,no,telephone,may,fri,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,management,married,university.degree,no,no,no,telephone,may,fri,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,single,university.degree,no,yes,yes,telephone,may,fri,218,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,621,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,married,high.school,no,no,no,telephone,may,fri,1349,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+53,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,fri,385,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,single,university.degree,unknown,no,no,telephone,may,fri,70,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,single,professional.course,no,no,no,telephone,may,fri,509,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,retired,single,high.school,no,yes,no,telephone,may,fri,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,divorced,high.school,no,no,no,telephone,may,fri,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,high.school,no,no,yes,telephone,may,fri,3,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,blue-collar,single,basic.4y,unknown,yes,no,telephone,may,fri,1171,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,management,married,university.degree,no,no,yes,telephone,may,fri,359,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,technician,married,professional.course,no,no,no,telephone,may,fri,736,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+51,unemployed,married,basic.9y,unknown,no,no,telephone,may,fri,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,admin.,married,basic.9y,no,no,no,telephone,may,fri,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,single,high.school,no,no,yes,telephone,may,fri,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,housemaid,married,basic.4y,no,no,no,telephone,may,fri,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,married,high.school,no,no,no,telephone,may,fri,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,services,married,high.school,unknown,no,no,telephone,may,fri,89,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,412,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,302,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,married,professional.course,unknown,no,no,telephone,may,fri,90,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,admin.,divorced,basic.9y,no,no,no,telephone,may,fri,145,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,self-employed,married,professional.course,no,no,yes,telephone,may,fri,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,single,basic.9y,unknown,no,yes,telephone,may,fri,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,373,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,72,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.4y,no,no,yes,telephone,may,fri,534,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,entrepreneur,married,high.school,no,no,yes,telephone,may,fri,225,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,services,married,high.school,unknown,yes,no,telephone,may,fri,445,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,technician,divorced,university.degree,no,no,no,telephone,may,fri,193,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,blue-collar,single,basic.9y,unknown,no,yes,telephone,may,fri,268,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,single,unknown,no,no,yes,telephone,may,fri,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,technician,married,basic.6y,unknown,no,no,telephone,may,fri,785,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+37,technician,single,basic.9y,no,no,yes,telephone,may,fri,298,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,self-employed,married,university.degree,no,no,no,telephone,may,fri,286,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,divorced,high.school,no,no,yes,telephone,may,fri,442,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,married,high.school,no,no,no,telephone,may,fri,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+22,blue-collar,single,basic.6y,unknown,no,yes,telephone,may,fri,1073,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,299,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,single,university.degree,no,no,no,telephone,may,fri,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,504,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,488,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,management,married,basic.4y,unknown,no,no,telephone,may,fri,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,single,university.degree,no,yes,yes,telephone,may,fri,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,married,university.degree,no,no,no,telephone,may,fri,124,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,admin.,divorced,high.school,no,yes,no,telephone,may,fri,425,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,services,married,high.school,no,yes,no,telephone,may,fri,290,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,technician,married,professional.course,unknown,yes,no,telephone,may,fri,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,management,divorced,university.degree,no,no,yes,telephone,may,fri,164,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,divorced,basic.9y,no,no,yes,telephone,may,fri,322,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,blue-collar,married,professional.course,unknown,yes,no,telephone,may,fri,530,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,retired,divorced,basic.4y,unknown,no,yes,telephone,may,fri,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,technician,married,high.school,no,yes,no,telephone,may,fri,360,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,divorced,basic.4y,no,no,yes,telephone,may,fri,57,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,technician,married,high.school,no,no,no,telephone,may,fri,700,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,technician,married,high.school,no,no,no,telephone,may,fri,601,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,divorced,basic.4y,no,no,no,telephone,may,fri,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,single,university.degree,no,yes,no,telephone,may,fri,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,single,basic.9y,no,no,no,telephone,may,fri,86,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,technician,single,university.degree,no,yes,no,telephone,may,fri,256,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,high.school,unknown,yes,no,telephone,may,fri,106,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,unknown,no,yes,no,telephone,may,fri,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,management,single,university.degree,no,yes,no,telephone,may,fri,415,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,married,university.degree,no,yes,no,telephone,may,fri,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,services,single,basic.9y,no,yes,yes,telephone,may,fri,816,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,technician,married,university.degree,no,no,no,telephone,may,fri,435,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,100,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,university.degree,unknown,yes,yes,telephone,may,fri,297,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,unemployed,married,university.degree,no,no,no,telephone,may,fri,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,58,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,admin.,divorced,unknown,no,unknown,unknown,telephone,may,fri,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,technician,married,high.school,no,no,no,telephone,may,fri,533,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,married,university.degree,no,yes,no,telephone,may,fri,28,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,management,divorced,university.degree,no,no,no,telephone,may,fri,63,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,high.school,no,yes,yes,telephone,may,fri,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,management,divorced,university.degree,no,yes,no,telephone,may,fri,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,240,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,fri,354,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,services,single,university.degree,no,yes,yes,telephone,may,fri,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,housemaid,married,high.school,unknown,no,no,telephone,may,fri,293,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,108,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,divorced,basic.4y,no,no,no,telephone,may,fri,223,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,entrepreneur,divorced,university.degree,unknown,yes,no,telephone,may,fri,275,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,housemaid,married,basic.9y,no,yes,no,telephone,may,fri,263,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,600,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+55,housemaid,married,professional.course,no,yes,yes,telephone,may,fri,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,married,high.school,unknown,no,no,telephone,may,fri,319,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,242,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,single,university.degree,unknown,no,no,telephone,may,fri,128,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,236,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,unknown,unknown,no,no,telephone,may,fri,67,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,divorced,basic.9y,no,yes,yes,telephone,may,fri,246,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,self-employed,married,high.school,unknown,yes,no,telephone,may,fri,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,single,professional.course,no,yes,no,telephone,may,fri,391,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,services,divorced,professional.course,no,yes,no,telephone,may,fri,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,technician,married,professional.course,no,yes,no,telephone,may,fri,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,retired,married,high.school,no,no,no,telephone,may,fri,924,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,334,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,management,married,university.degree,no,yes,no,telephone,may,fri,317,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,admin.,married,university.degree,no,no,no,telephone,may,fri,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,technician,married,professional.course,no,no,yes,telephone,may,fri,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,divorced,basic.4y,no,no,yes,telephone,may,fri,37,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,admin.,married,high.school,no,yes,no,telephone,may,fri,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,services,married,high.school,no,no,no,telephone,may,fri,911,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,married,basic.6y,no,unknown,unknown,telephone,may,fri,379,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,married,university.degree,no,no,no,telephone,may,fri,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,divorced,basic.6y,no,yes,no,telephone,may,fri,160,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,single,high.school,unknown,no,no,telephone,may,fri,156,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,entrepreneur,married,high.school,unknown,yes,no,telephone,may,fri,314,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,unemployed,divorced,university.degree,unknown,yes,no,telephone,may,fri,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,technician,married,professional.course,no,no,no,telephone,may,fri,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,university.degree,no,no,no,telephone,may,fri,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,technician,single,high.school,no,yes,yes,telephone,may,fri,115,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,divorced,high.school,no,yes,no,telephone,may,fri,99,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,married,professional.course,no,yes,yes,telephone,may,fri,14,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,married,unknown,no,no,no,telephone,may,fri,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,438,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,retired,married,university.degree,no,no,no,telephone,may,fri,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,divorced,basic.6y,no,no,no,telephone,may,fri,111,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,management,married,basic.4y,unknown,no,no,telephone,may,fri,463,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,services,divorced,university.degree,no,no,yes,telephone,may,fri,252,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,self-employed,married,university.degree,unknown,unknown,unknown,telephone,may,fri,38,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,services,single,high.school,unknown,yes,yes,telephone,may,fri,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,66,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,housemaid,single,unknown,unknown,yes,yes,telephone,may,fri,234,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,unemployed,married,basic.9y,no,yes,yes,telephone,may,fri,691,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,entrepreneur,married,high.school,no,yes,no,telephone,may,fri,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,services,single,basic.9y,unknown,yes,no,telephone,may,fri,270,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,professional.course,no,yes,yes,telephone,may,fri,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,technician,single,university.degree,unknown,yes,no,telephone,may,fri,390,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,services,single,professional.course,no,yes,yes,telephone,may,fri,249,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,31,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,divorced,university.degree,no,no,yes,telephone,may,fri,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,blue-collar,divorced,unknown,unknown,yes,no,telephone,may,fri,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,admin.,divorced,high.school,no,no,no,telephone,may,fri,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,397,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,technician,single,university.degree,no,yes,no,telephone,may,fri,7,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,married,high.school,no,no,no,telephone,may,fri,465,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,blue-collar,single,basic.9y,unknown,no,yes,telephone,may,fri,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,single,university.degree,no,no,no,telephone,may,fri,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,married,basic.4y,no,yes,no,telephone,may,fri,665,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,management,married,university.degree,no,yes,yes,telephone,may,fri,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,student,single,basic.9y,unknown,yes,yes,telephone,may,fri,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,married,university.degree,no,yes,yes,telephone,may,fri,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,services,married,unknown,unknown,no,no,telephone,may,fri,25,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,technician,single,university.degree,unknown,no,no,telephone,may,fri,187,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,unemployed,married,basic.9y,no,yes,yes,telephone,may,fri,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,fri,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,technician,single,professional.course,no,yes,no,telephone,may,fri,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,technician,divorced,university.degree,no,no,no,telephone,may,fri,281,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,fri,567,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,admin.,married,professional.course,no,no,no,telephone,may,fri,284,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,378,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,management,divorced,basic.6y,unknown,yes,yes,telephone,may,fri,353,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,entrepreneur,married,basic.9y,no,no,no,telephone,may,fri,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,50,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,entrepreneur,married,basic.9y,unknown,yes,no,telephone,may,fri,536,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,unknown,no,no,no,telephone,may,fri,496,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,single,professional.course,no,no,no,telephone,may,fri,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,unknown,no,no,no,telephone,may,fri,122,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,59,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,management,married,university.degree,no,yes,no,telephone,may,fri,258,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,entrepreneur,married,university.degree,no,no,no,telephone,may,fri,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,single,high.school,no,yes,no,telephone,may,fri,466,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,divorced,university.degree,no,no,no,telephone,may,fri,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+23,services,married,basic.9y,no,yes,no,telephone,may,fri,250,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,services,married,high.school,no,yes,no,telephone,may,fri,79,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,563,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,high.school,unknown,yes,no,telephone,may,fri,147,14,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,technician,married,university.degree,no,no,no,telephone,may,fri,125,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,entrepreneur,married,basic.6y,unknown,unknown,unknown,telephone,may,fri,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,housemaid,married,basic.4y,no,no,no,telephone,may,fri,556,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,blue-collar,married,basic.4y,no,no,yes,telephone,may,fri,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,management,married,unknown,unknown,no,no,telephone,may,fri,456,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,services,married,high.school,no,no,yes,telephone,may,fri,268,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,services,single,university.degree,no,no,no,telephone,may,fri,332,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,blue-collar,single,basic.6y,unknown,unknown,unknown,telephone,may,fri,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,single,high.school,no,no,yes,telephone,may,fri,148,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,single,basic.4y,unknown,no,no,telephone,may,fri,448,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,admin.,married,university.degree,no,no,yes,telephone,may,fri,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,technician,married,university.degree,no,yes,no,telephone,may,fri,240,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,fri,115,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,high.school,unknown,no,no,telephone,may,fri,290,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,fri,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,57,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,811,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,university.degree,no,yes,yes,telephone,may,fri,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,entrepreneur,married,basic.6y,no,yes,no,telephone,may,fri,108,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,married,high.school,no,no,no,telephone,may,fri,288,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,technician,married,professional.course,no,yes,no,telephone,may,fri,1003,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,admin.,married,university.degree,no,no,no,telephone,may,fri,542,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,single,high.school,no,yes,no,telephone,may,fri,541,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,admin.,divorced,high.school,no,no,no,telephone,may,fri,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,university.degree,unknown,no,no,telephone,may,fri,302,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,management,married,university.degree,no,yes,no,telephone,may,fri,268,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,retired,married,basic.9y,no,yes,no,telephone,may,fri,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,management,married,university.degree,no,yes,no,telephone,may,fri,66,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,married,professional.course,no,no,no,telephone,may,fri,216,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,technician,married,university.degree,no,yes,no,telephone,may,fri,206,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,management,married,university.degree,no,yes,no,telephone,may,fri,28,18,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,self-employed,married,basic.9y,no,no,no,telephone,may,fri,101,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,technician,married,basic.6y,unknown,yes,yes,telephone,may,fri,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,single,university.degree,no,yes,no,telephone,may,fri,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,management,married,university.degree,unknown,no,no,telephone,may,fri,472,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,technician,divorced,professional.course,no,yes,yes,telephone,may,fri,215,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,418,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,services,single,basic.6y,no,no,no,telephone,may,fri,361,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,926,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,high.school,no,yes,no,telephone,may,fri,116,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,self-employed,married,university.degree,no,yes,no,telephone,may,fri,150,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,services,divorced,high.school,no,yes,no,telephone,may,fri,228,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,married,university.degree,no,yes,no,telephone,may,fri,411,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,divorced,basic.6y,no,no,no,telephone,may,fri,253,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,services,single,high.school,no,no,no,telephone,may,fri,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,248,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,housemaid,married,high.school,no,no,no,telephone,may,fri,138,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,blue-collar,single,basic.4y,unknown,unknown,unknown,telephone,may,fri,824,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,345,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,retired,married,basic.9y,no,yes,no,telephone,may,fri,147,42,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,single,high.school,no,yes,no,telephone,may,fri,773,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,fri,574,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,admin.,divorced,university.degree,no,no,no,telephone,may,fri,122,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,married,basic.6y,no,no,no,telephone,may,fri,193,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,married,high.school,unknown,yes,no,telephone,may,fri,138,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,343,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,single,professional.course,no,no,no,telephone,may,fri,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,management,married,university.degree,no,no,no,telephone,may,fri,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,469,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,professional.course,no,unknown,unknown,telephone,may,fri,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,management,married,university.degree,no,no,no,telephone,may,fri,106,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,165,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,services,married,high.school,unknown,yes,yes,telephone,may,fri,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,364,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,married,high.school,no,yes,no,telephone,may,fri,185,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,technician,married,university.degree,unknown,no,no,telephone,may,fri,224,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,unknown,no,yes,no,telephone,may,fri,187,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,451,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,services,married,professional.course,no,yes,no,telephone,may,fri,226,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,single,professional.course,no,no,no,telephone,may,fri,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,divorced,basic.4y,unknown,yes,yes,telephone,may,fri,301,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,technician,married,basic.9y,no,no,no,telephone,may,fri,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,admin.,divorced,university.degree,no,no,no,telephone,may,fri,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,professional.course,no,yes,no,telephone,may,fri,232,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,technician,married,high.school,no,yes,no,telephone,may,fri,893,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+49,admin.,single,university.degree,no,no,no,telephone,may,fri,201,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,339,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,478,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,fri,13,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,242,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,services,single,high.school,unknown,no,yes,telephone,may,fri,55,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,281,27,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,technician,married,professional.course,no,yes,yes,telephone,may,fri,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,single,high.school,no,yes,no,telephone,may,fri,423,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,married,basic.9y,unknown,no,no,telephone,may,fri,233,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,133,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,housemaid,divorced,basic.4y,unknown,no,yes,telephone,may,fri,209,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,fri,114,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,technician,married,unknown,no,yes,no,telephone,may,fri,319,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,single,university.degree,no,no,no,telephone,may,fri,588,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+25,self-employed,married,university.degree,no,yes,no,telephone,may,fri,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,fri,353,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,married,professional.course,no,yes,no,telephone,may,fri,83,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,single,high.school,no,yes,yes,telephone,may,fri,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,technician,divorced,professional.course,no,no,no,telephone,may,fri,327,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,167,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,fri,89,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,married,high.school,no,no,no,telephone,may,fri,34,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,unknown,no,no,no,telephone,may,fri,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,117,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,housemaid,married,high.school,no,yes,no,telephone,may,fri,82,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,25,14,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,76,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,single,high.school,no,no,no,telephone,may,fri,777,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+37,admin.,single,high.school,no,no,no,telephone,may,fri,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,married,university.degree,unknown,yes,no,telephone,may,fri,124,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,entrepreneur,married,university.degree,unknown,no,yes,telephone,may,fri,199,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,married,professional.course,unknown,yes,no,telephone,may,fri,488,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,management,divorced,university.degree,unknown,yes,no,telephone,may,fri,157,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,technician,single,professional.course,no,no,no,telephone,may,fri,700,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,281,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,services,divorced,unknown,no,no,no,telephone,may,fri,211,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,student,single,high.school,no,yes,no,telephone,may,fri,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,married,university.degree,no,yes,no,telephone,may,fri,138,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,technician,married,unknown,unknown,yes,no,telephone,may,fri,553,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,self-employed,single,university.degree,no,no,no,telephone,may,fri,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,management,married,university.degree,no,yes,no,telephone,may,fri,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,services,married,high.school,unknown,no,no,telephone,may,fri,50,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,services,married,professional.course,no,yes,no,telephone,may,fri,253,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,single,university.degree,no,yes,no,telephone,may,fri,153,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,entrepreneur,married,high.school,no,no,yes,telephone,may,fri,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,services,single,high.school,no,no,no,telephone,may,fri,211,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,self-employed,married,university.degree,no,no,no,telephone,may,fri,493,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,retired,married,high.school,unknown,yes,no,telephone,may,fri,597,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+35,student,single,university.degree,unknown,no,yes,telephone,may,fri,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,technician,married,professional.course,no,yes,no,telephone,may,fri,1438,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,management,married,high.school,no,no,no,telephone,may,fri,172,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,high.school,no,no,no,telephone,may,fri,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,management,divorced,university.degree,no,yes,no,telephone,may,fri,29,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,single,high.school,no,no,no,telephone,may,fri,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,185,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,single,university.degree,no,yes,no,telephone,may,fri,569,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,illiterate,unknown,no,yes,telephone,may,fri,333,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,management,married,university.degree,no,yes,no,telephone,may,fri,95,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,retired,married,basic.4y,unknown,yes,no,telephone,may,fri,557,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,entrepreneur,married,unknown,unknown,yes,no,telephone,may,fri,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,209,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,management,married,unknown,no,yes,no,telephone,may,fri,335,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,services,single,high.school,no,yes,yes,telephone,may,fri,372,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,single,unknown,no,no,no,telephone,may,fri,92,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,blue-collar,single,basic.9y,no,yes,yes,telephone,may,fri,277,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,entrepreneur,married,high.school,no,no,no,telephone,may,fri,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,services,single,high.school,unknown,no,no,telephone,may,fri,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,professional.course,no,no,yes,telephone,may,fri,95,12,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,134,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,single,university.degree,no,yes,yes,telephone,may,fri,138,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,admin.,married,university.degree,no,no,no,telephone,may,fri,63,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,housemaid,married,high.school,unknown,yes,no,telephone,may,fri,67,13,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,no,no,no,telephone,may,fri,77,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,292,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,married,university.degree,unknown,no,no,telephone,may,fri,57,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,housemaid,married,basic.6y,unknown,no,no,telephone,may,fri,38,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,151,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,unknown,unknown,no,no,telephone,may,fri,331,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,1392,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+27,services,married,high.school,unknown,no,yes,telephone,may,fri,100,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,358,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,unemployed,married,professional.course,no,yes,no,telephone,may,fri,298,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,management,married,unknown,no,yes,no,telephone,may,fri,181,16,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,divorced,basic.4y,no,yes,yes,telephone,may,fri,188,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,admin.,married,basic.9y,no,yes,no,telephone,may,fri,368,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,203,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,housemaid,married,high.school,no,yes,no,telephone,may,fri,61,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.6y,no,no,yes,telephone,may,fri,297,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,retired,divorced,professional.course,no,no,no,telephone,may,fri,219,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,admin.,married,high.school,no,no,no,telephone,may,fri,129,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,247,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,university.degree,no,no,no,telephone,may,fri,266,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,559,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,high.school,unknown,yes,no,telephone,may,fri,162,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,technician,married,professional.course,no,yes,no,telephone,may,fri,75,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,married,university.degree,no,yes,no,telephone,may,fri,82,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,no,yes,no,telephone,may,fri,352,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,204,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,technician,single,professional.course,no,no,no,telephone,may,fri,1059,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+42,blue-collar,married,unknown,no,no,yes,telephone,may,fri,248,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,services,divorced,high.school,unknown,no,yes,telephone,may,fri,82,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,management,divorced,basic.4y,unknown,yes,no,telephone,may,fri,259,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,technician,married,professional.course,no,no,yes,telephone,may,fri,703,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,divorced,high.school,no,no,yes,telephone,may,fri,100,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,348,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,services,married,high.school,no,yes,no,telephone,may,fri,430,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+49,technician,married,professional.course,no,no,no,telephone,may,fri,146,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,fri,34,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,admin.,single,high.school,no,yes,yes,telephone,may,fri,297,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,married,professional.course,no,no,yes,telephone,may,fri,22,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,divorced,basic.9y,no,no,no,telephone,may,fri,106,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,divorced,university.degree,no,no,no,telephone,may,fri,465,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,104,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,admin.,married,university.degree,unknown,no,no,telephone,may,fri,213,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,housemaid,married,basic.4y,no,no,yes,telephone,may,fri,74,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,single,university.degree,no,no,no,telephone,may,fri,245,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,unknown,single,basic.9y,unknown,yes,no,telephone,may,fri,252,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,admin.,married,high.school,unknown,yes,no,telephone,may,fri,317,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,management,married,university.degree,no,no,yes,telephone,may,fri,93,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,116,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,single,basic.6y,no,yes,no,telephone,may,fri,386,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,283,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,services,married,high.school,no,unknown,unknown,telephone,may,fri,146,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,technician,married,university.degree,no,no,yes,telephone,may,fri,215,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,services,married,high.school,unknown,no,yes,telephone,may,fri,90,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,high.school,no,yes,yes,telephone,may,fri,260,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,divorced,high.school,no,no,no,telephone,may,fri,267,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,management,married,university.degree,no,yes,yes,telephone,may,fri,107,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,admin.,divorced,university.degree,no,no,yes,telephone,may,fri,164,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,services,married,high.school,no,no,no,telephone,may,fri,427,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,single,basic.6y,unknown,yes,no,telephone,may,fri,1222,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,single,basic.9y,no,no,yes,telephone,may,fri,426,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,technician,married,professional.course,no,yes,yes,telephone,may,fri,456,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,self-employed,married,basic.9y,unknown,yes,no,telephone,may,fri,40,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,single,university.degree,no,no,yes,telephone,may,fri,105,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,98,17,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,technician,married,professional.course,no,no,no,telephone,may,fri,27,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,137,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,self-employed,married,basic.9y,no,no,no,telephone,may,fri,100,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,management,married,university.degree,unknown,yes,no,telephone,may,fri,1034,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,technician,single,professional.course,no,yes,no,telephone,may,fri,320,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,management,married,university.degree,no,no,no,telephone,may,fri,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,single,basic.9y,no,no,no,telephone,may,fri,353,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,single,basic.6y,no,yes,no,telephone,may,fri,331,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,single,high.school,unknown,yes,no,telephone,may,fri,159,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,admin.,married,university.degree,no,no,no,telephone,may,mon,52,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,housemaid,married,professional.course,no,yes,no,telephone,may,mon,117,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,unknown,no,yes,no,telephone,may,mon,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,technician,married,basic.9y,no,yes,no,telephone,may,mon,146,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,admin.,married,university.degree,unknown,no,yes,telephone,may,mon,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,self-employed,married,professional.course,no,no,no,telephone,may,mon,260,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,university.degree,no,yes,no,telephone,may,mon,60,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,high.school,no,yes,no,telephone,may,mon,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,married,professional.course,no,yes,no,telephone,may,mon,373,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,married,university.degree,no,no,no,telephone,may,mon,336,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,high.school,no,yes,no,telephone,may,mon,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,admin.,single,high.school,no,no,no,telephone,may,mon,501,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,admin.,single,university.degree,no,no,no,telephone,may,mon,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,unknown,no,yes,no,telephone,may,mon,299,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,services,single,high.school,no,no,no,telephone,may,mon,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,technician,married,university.degree,no,no,no,telephone,may,mon,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,self-employed,married,high.school,no,no,no,telephone,may,mon,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,self-employed,married,professional.course,no,no,no,telephone,may,mon,185,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,single,high.school,no,no,no,telephone,may,mon,224,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,unknown,no,yes,no,telephone,may,mon,183,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,mon,63,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,services,married,high.school,no,yes,no,telephone,may,mon,312,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,retired,single,professional.course,no,yes,no,telephone,may,mon,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,897,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,divorced,university.degree,no,no,no,telephone,may,mon,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,married,basic.4y,no,no,no,telephone,may,mon,322,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,317,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,basic.9y,no,no,no,telephone,may,mon,511,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,university.degree,no,yes,no,telephone,may,mon,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,161,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,married,high.school,no,yes,no,telephone,may,mon,368,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,entrepreneur,married,university.degree,no,yes,no,telephone,may,mon,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,self-employed,married,basic.9y,unknown,yes,yes,telephone,may,mon,88,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,self-employed,married,basic.9y,unknown,yes,yes,telephone,may,mon,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,self-employed,married,basic.9y,unknown,no,no,telephone,may,mon,31,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,services,divorced,high.school,no,no,no,telephone,may,mon,142,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,entrepreneur,married,high.school,no,no,no,telephone,may,mon,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,single,university.degree,no,yes,no,telephone,may,mon,158,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,single,basic.9y,no,yes,yes,telephone,may,mon,129,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,retired,divorced,professional.course,no,yes,no,telephone,may,mon,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,married,high.school,no,no,no,telephone,may,mon,122,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,120,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,married,basic.9y,no,no,no,telephone,may,mon,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,702,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,services,single,basic.9y,no,yes,no,telephone,may,mon,329,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,entrepreneur,married,basic.6y,no,no,no,telephone,may,mon,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,unemployed,married,university.degree,unknown,no,yes,telephone,may,mon,19,17,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,mon,460,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,admin.,married,high.school,no,yes,yes,telephone,may,mon,437,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,married,professional.course,no,no,no,telephone,may,mon,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,unemployed,married,high.school,unknown,yes,yes,telephone,may,mon,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,single,university.degree,no,yes,no,telephone,may,mon,422,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,entrepreneur,married,high.school,unknown,yes,no,telephone,may,mon,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,technician,married,professional.course,no,yes,no,telephone,may,mon,41,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,581,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,mon,131,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,services,married,unknown,no,no,no,telephone,may,mon,50,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,divorced,university.degree,no,yes,no,telephone,may,mon,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,technician,married,professional.course,unknown,no,no,telephone,may,mon,194,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,management,married,university.degree,no,yes,no,telephone,may,mon,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,unemployed,married,high.school,no,yes,yes,telephone,may,mon,470,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,281,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,services,married,high.school,no,yes,yes,telephone,may,mon,391,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,technician,married,professional.course,unknown,no,yes,telephone,may,mon,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,single,basic.9y,unknown,no,yes,telephone,may,mon,788,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+38,technician,married,professional.course,unknown,yes,no,telephone,may,mon,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,admin.,married,high.school,no,unknown,unknown,telephone,may,mon,367,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,entrepreneur,married,basic.6y,unknown,yes,yes,telephone,may,mon,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,admin.,married,basic.6y,no,no,no,telephone,may,mon,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,admin.,divorced,basic.9y,unknown,yes,no,telephone,may,mon,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.6y,unknown,no,no,telephone,may,mon,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,divorced,university.degree,no,no,no,telephone,may,mon,290,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,management,married,professional.course,no,no,no,telephone,may,mon,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,single,high.school,no,no,no,telephone,may,mon,76,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,single,high.school,no,no,yes,telephone,may,mon,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,single,high.school,no,no,no,telephone,may,mon,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,university.degree,no,yes,no,telephone,may,mon,14,32,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,married,unknown,unknown,no,no,telephone,may,mon,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,married,high.school,no,yes,no,telephone,may,mon,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,married,high.school,no,yes,no,telephone,may,mon,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,housemaid,married,professional.course,unknown,no,no,telephone,may,mon,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,divorced,university.degree,no,yes,no,telephone,may,mon,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,married,high.school,no,yes,yes,telephone,may,mon,483,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,management,divorced,basic.9y,unknown,no,no,telephone,may,mon,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,housemaid,married,basic.4y,no,yes,no,telephone,may,mon,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,technician,married,professional.course,no,no,no,telephone,may,mon,754,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,retired,divorced,professional.course,no,no,no,telephone,may,mon,113,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,housemaid,married,basic.4y,no,yes,no,telephone,may,mon,364,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,single,university.degree,unknown,yes,no,telephone,may,mon,258,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,university.degree,no,no,no,telephone,may,mon,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,266,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,technician,married,professional.course,no,yes,no,telephone,may,mon,232,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,university.degree,no,no,no,telephone,may,mon,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,housemaid,divorced,unknown,no,no,no,telephone,may,mon,167,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,management,married,university.degree,no,no,no,telephone,may,mon,103,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,single,unknown,unknown,no,no,telephone,may,mon,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,297,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,technician,single,unknown,no,unknown,unknown,telephone,may,mon,317,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,single,high.school,no,no,no,telephone,may,mon,388,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,62,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,admin.,married,basic.9y,unknown,no,no,telephone,may,mon,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,services,married,high.school,no,no,no,telephone,may,mon,63,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,admin.,married,university.degree,no,yes,no,telephone,may,mon,212,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,services,married,high.school,no,yes,no,telephone,may,mon,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,services,married,high.school,no,yes,no,telephone,may,mon,161,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,married,university.degree,no,no,yes,telephone,may,mon,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,unknown,single,basic.9y,no,no,yes,telephone,may,mon,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,technician,married,basic.9y,no,yes,no,telephone,may,mon,170,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,admin.,divorced,high.school,no,no,no,telephone,may,mon,974,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,may,mon,167,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,high.school,unknown,no,no,telephone,may,mon,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,university.degree,no,no,no,telephone,may,mon,96,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,unknown,unknown,no,no,telephone,may,mon,223,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,admin.,single,university.degree,no,yes,no,telephone,may,mon,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,396,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,admin.,married,high.school,no,no,yes,telephone,may,mon,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,technician,single,high.school,no,yes,no,telephone,may,mon,252,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,services,married,basic.9y,unknown,no,no,telephone,may,mon,379,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,374,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,married,university.degree,unknown,yes,no,telephone,may,mon,351,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,services,married,basic.9y,no,yes,no,telephone,may,mon,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,married,university.degree,no,no,yes,telephone,may,mon,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,services,married,high.school,no,yes,no,telephone,may,mon,248,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,services,divorced,high.school,unknown,no,no,telephone,may,mon,166,12,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,blue-collar,married,professional.course,no,yes,no,telephone,may,mon,621,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+45,admin.,married,basic.9y,no,no,no,telephone,may,mon,367,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,married,high.school,no,no,yes,telephone,may,mon,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,divorced,university.degree,no,yes,no,telephone,may,mon,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,married,university.degree,unknown,no,yes,telephone,may,mon,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,admin.,single,university.degree,no,no,no,telephone,may,mon,543,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+50,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,single,basic.9y,unknown,no,no,telephone,may,mon,52,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,married,university.degree,unknown,no,no,telephone,may,mon,377,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,services,married,high.school,no,no,no,telephone,may,mon,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,services,single,high.school,no,no,yes,telephone,may,mon,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,married,high.school,unknown,yes,no,telephone,may,mon,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,entrepreneur,married,university.degree,unknown,yes,yes,telephone,may,mon,473,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,technician,married,university.degree,no,yes,no,telephone,may,mon,90,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,services,divorced,high.school,no,no,no,telephone,may,mon,470,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,admin.,married,high.school,no,no,no,telephone,may,mon,302,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,services,divorced,basic.6y,no,no,yes,telephone,may,mon,81,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,single,basic.4y,unknown,yes,no,telephone,may,mon,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,technician,married,unknown,no,yes,no,telephone,may,mon,252,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,divorced,basic.9y,unknown,no,yes,telephone,may,mon,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,technician,married,professional.course,unknown,no,yes,telephone,may,mon,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,management,single,university.degree,unknown,yes,no,telephone,may,mon,745,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+39,technician,single,high.school,no,yes,no,telephone,may,mon,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,student,single,high.school,no,no,yes,telephone,may,mon,630,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+32,admin.,single,professional.course,no,yes,no,telephone,may,mon,16,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,married,high.school,no,no,yes,telephone,may,mon,863,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,131,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,married,high.school,unknown,yes,no,telephone,may,mon,265,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,university.degree,no,no,no,telephone,may,mon,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,80,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,single,high.school,unknown,no,no,telephone,may,mon,90,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,high.school,no,yes,no,telephone,may,mon,592,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,housemaid,married,basic.4y,no,no,no,telephone,may,mon,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,services,married,professional.course,no,yes,no,telephone,may,mon,153,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,technician,married,basic.4y,unknown,yes,yes,telephone,may,mon,207,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,technician,single,unknown,unknown,yes,no,telephone,may,mon,440,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,student,single,high.school,no,yes,yes,telephone,may,mon,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,services,married,high.school,unknown,yes,no,telephone,may,mon,679,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+38,housemaid,divorced,high.school,unknown,yes,no,telephone,may,mon,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,unknown,married,unknown,unknown,yes,no,telephone,may,mon,269,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,single,university.degree,no,yes,yes,telephone,may,mon,190,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,single,unknown,no,yes,no,telephone,may,mon,144,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,single,university.degree,no,no,no,telephone,may,mon,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,services,married,high.school,unknown,yes,no,telephone,may,mon,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,admin.,single,high.school,no,yes,no,telephone,may,mon,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,married,high.school,no,yes,no,telephone,may,mon,167,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,married,high.school,unknown,no,no,telephone,may,mon,314,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,married,high.school,unknown,yes,yes,telephone,may,mon,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,technician,married,professional.course,unknown,no,no,telephone,may,mon,407,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,self-employed,married,university.degree,no,no,no,telephone,may,mon,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,married,high.school,no,no,no,telephone,may,mon,97,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,retired,single,basic.9y,unknown,yes,yes,telephone,may,mon,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,mon,105,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,retired,married,basic.9y,no,no,yes,telephone,may,mon,596,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,management,married,professional.course,no,yes,no,telephone,may,mon,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,admin.,single,university.degree,no,no,no,telephone,may,mon,108,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,mon,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,single,high.school,no,no,yes,telephone,may,mon,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,retired,married,unknown,unknown,no,no,telephone,may,mon,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,management,married,university.degree,no,no,yes,telephone,may,mon,312,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,single,university.degree,no,no,no,telephone,may,mon,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,basic.6y,no,no,no,telephone,may,mon,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,entrepreneur,divorced,high.school,no,no,no,telephone,may,mon,314,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,married,professional.course,no,no,no,telephone,may,mon,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,single,basic.9y,no,yes,no,telephone,may,mon,87,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,123,14,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,married,high.school,unknown,yes,yes,telephone,may,mon,157,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,unknown,married,basic.6y,unknown,no,no,telephone,may,mon,204,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,services,married,basic.6y,unknown,yes,no,telephone,may,mon,150,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,management,divorced,basic.9y,no,yes,yes,telephone,may,mon,240,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,admin.,single,high.school,no,yes,no,telephone,may,mon,109,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,single,university.degree,no,no,no,telephone,may,mon,243,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,unemployed,married,basic.6y,no,yes,yes,telephone,may,mon,536,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,blue-collar,single,basic.9y,no,yes,no,telephone,may,mon,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,technician,married,university.degree,no,no,no,telephone,may,mon,182,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,blue-collar,single,high.school,no,unknown,unknown,telephone,may,mon,70,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,services,single,high.school,unknown,no,no,telephone,may,mon,45,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,university.degree,no,yes,yes,telephone,may,mon,280,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,entrepreneur,married,basic.9y,no,yes,no,telephone,may,mon,215,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,divorced,professional.course,no,yes,no,telephone,may,mon,147,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,management,divorced,university.degree,no,no,no,telephone,may,mon,222,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,blue-collar,single,basic.9y,no,no,no,telephone,may,mon,404,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,admin.,single,university.degree,no,no,no,telephone,may,mon,1234,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+50,blue-collar,single,basic.4y,no,yes,no,telephone,may,mon,306,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,506,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,admin.,single,university.degree,no,yes,no,telephone,may,mon,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,admin.,divorced,university.degree,no,yes,no,telephone,may,mon,252,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,entrepreneur,married,high.school,no,no,yes,telephone,may,mon,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,single,university.degree,no,no,no,telephone,may,mon,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,high.school,no,no,no,telephone,may,mon,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,entrepreneur,married,high.school,no,yes,yes,telephone,may,mon,642,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+43,blue-collar,single,basic.4y,unknown,yes,no,telephone,may,mon,181,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,university.degree,no,yes,no,telephone,may,mon,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,technician,single,high.school,no,no,no,telephone,may,mon,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,single,basic.6y,unknown,no,no,telephone,may,mon,916,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.9y,no,yes,yes,telephone,may,mon,629,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,155,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,technician,married,professional.course,no,no,no,telephone,may,mon,290,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,admin.,married,high.school,no,no,no,telephone,may,mon,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,unemployed,married,university.degree,unknown,no,no,telephone,may,mon,729,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,admin.,married,high.school,no,yes,no,telephone,may,mon,434,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,single,high.school,no,no,no,telephone,may,mon,218,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,entrepreneur,divorced,high.school,unknown,yes,no,telephone,may,mon,250,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,technician,married,university.degree,no,no,no,telephone,may,mon,107,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,technician,single,high.school,no,yes,no,telephone,may,mon,272,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,admin.,married,high.school,no,yes,no,telephone,may,mon,574,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,university.degree,no,yes,no,telephone,may,mon,89,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,divorced,professional.course,no,no,no,telephone,may,mon,133,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,management,single,high.school,no,no,no,telephone,may,mon,114,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,married,university.degree,no,yes,no,telephone,may,mon,175,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,257,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,retired,married,basic.6y,unknown,no,no,telephone,may,mon,268,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,high.school,no,no,yes,telephone,may,mon,208,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,unemployed,married,basic.9y,unknown,yes,yes,telephone,may,mon,895,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+30,blue-collar,single,basic.9y,unknown,yes,yes,telephone,may,mon,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,admin.,married,university.degree,no,no,yes,telephone,may,mon,327,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.6y,no,no,yes,telephone,may,mon,99,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,single,university.degree,no,no,no,telephone,may,mon,293,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,married,professional.course,no,yes,no,telephone,may,mon,68,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,housemaid,married,high.school,no,yes,no,telephone,may,mon,124,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,single,high.school,unknown,yes,no,telephone,may,mon,519,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,high.school,no,no,yes,telephone,may,mon,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,single,basic.9y,no,no,no,telephone,may,mon,504,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,unknown,no,yes,no,telephone,may,mon,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,management,married,university.degree,unknown,yes,no,telephone,may,mon,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,married,high.school,no,no,yes,telephone,may,mon,16,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,management,married,university.degree,no,no,no,telephone,may,mon,100,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,single,high.school,no,no,yes,telephone,may,mon,321,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,mon,239,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,married,professional.course,no,no,no,telephone,may,mon,614,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,mon,248,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,services,single,basic.9y,no,no,no,telephone,may,mon,93,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,single,high.school,no,yes,no,telephone,may,mon,355,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,single,university.degree,no,no,yes,telephone,may,mon,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,university.degree,no,yes,no,telephone,may,mon,245,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,management,married,university.degree,no,yes,no,telephone,may,mon,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,single,high.school,no,yes,no,telephone,may,mon,192,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,divorced,professional.course,no,yes,no,telephone,may,mon,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,married,high.school,no,no,no,telephone,may,mon,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,services,married,high.school,unknown,yes,no,telephone,may,mon,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,services,married,high.school,unknown,yes,no,telephone,may,mon,16,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,unknown,married,basic.6y,no,yes,no,telephone,may,mon,240,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,mon,115,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,management,married,university.degree,no,no,no,telephone,may,mon,349,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,high.school,no,no,yes,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,housemaid,married,basic.9y,no,yes,no,telephone,may,mon,445,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,technician,divorced,professional.course,no,yes,no,telephone,may,mon,144,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,professional.course,no,no,no,telephone,may,mon,341,12,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,self-employed,married,university.degree,no,yes,no,telephone,may,mon,796,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,unknown,unknown,no,yes,telephone,may,mon,76,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,married,basic.4y,no,no,no,telephone,may,mon,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,blue-collar,single,basic.4y,no,yes,no,telephone,may,mon,101,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,91,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,single,high.school,no,no,no,telephone,may,mon,52,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,self-employed,single,university.degree,no,no,no,telephone,may,mon,78,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,single,university.degree,no,no,yes,telephone,may,mon,471,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,retired,married,professional.course,unknown,yes,yes,telephone,may,mon,724,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,retired,married,basic.9y,no,unknown,unknown,telephone,may,mon,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,married,high.school,no,no,no,telephone,may,mon,333,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,married,university.degree,no,no,no,telephone,may,mon,431,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+38,blue-collar,married,basic.6y,unknown,no,no,telephone,may,mon,523,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,self-employed,married,basic.9y,unknown,no,no,telephone,may,mon,470,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,divorced,university.degree,no,no,no,telephone,may,mon,695,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,blue-collar,married,high.school,unknown,yes,yes,telephone,may,mon,741,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+50,blue-collar,married,basic.6y,unknown,no,no,telephone,may,mon,151,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.6y,unknown,no,no,telephone,may,mon,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,married,basic.6y,no,no,no,telephone,may,mon,70,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,unemployed,married,unknown,no,no,no,telephone,may,mon,472,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,technician,married,basic.9y,unknown,no,no,telephone,may,mon,258,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,self-employed,single,professional.course,no,yes,no,telephone,may,mon,113,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,single,basic.9y,no,no,no,telephone,may,mon,372,14,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,single,basic.6y,no,no,no,telephone,may,mon,603,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,single,high.school,no,yes,no,telephone,may,mon,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,high.school,no,no,no,telephone,may,mon,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,single,high.school,unknown,no,no,telephone,may,mon,399,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,management,married,professional.course,unknown,no,no,telephone,may,mon,402,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,services,married,high.school,unknown,yes,yes,telephone,may,mon,129,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,married,basic.9y,no,no,yes,telephone,may,mon,535,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,unemployed,married,high.school,unknown,no,no,telephone,may,mon,181,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,management,married,basic.6y,no,yes,no,telephone,may,mon,48,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,management,married,university.degree,no,yes,no,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,admin.,single,unknown,unknown,no,no,telephone,may,mon,87,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,unemployed,married,professional.course,no,yes,yes,telephone,may,mon,169,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,single,professional.course,no,yes,no,telephone,may,mon,116,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,single,high.school,no,yes,no,telephone,may,mon,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,admin.,married,university.degree,no,no,no,telephone,may,mon,212,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,services,married,high.school,no,yes,no,telephone,may,mon,304,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,student,single,unknown,unknown,yes,no,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,married,high.school,no,no,no,telephone,may,mon,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,self-employed,married,basic.9y,unknown,no,yes,telephone,may,mon,291,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,entrepreneur,divorced,university.degree,unknown,no,yes,telephone,may,mon,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,services,married,high.school,no,no,no,telephone,may,mon,207,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,management,married,basic.6y,no,yes,no,telephone,may,mon,197,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,married,basic.4y,unknown,yes,no,telephone,may,mon,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,unemployed,married,basic.9y,unknown,yes,no,telephone,may,mon,45,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,technician,single,university.degree,no,yes,no,telephone,may,mon,125,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,services,married,high.school,no,yes,yes,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,self-employed,single,university.degree,no,no,no,telephone,may,mon,414,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+35,admin.,single,high.school,no,yes,no,telephone,may,mon,319,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,blue-collar,married,professional.course,unknown,yes,no,telephone,may,mon,346,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,single,basic.9y,no,yes,no,telephone,may,mon,157,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,technician,married,professional.course,no,no,no,telephone,may,mon,160,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,technician,married,basic.9y,no,no,no,telephone,may,mon,83,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,entrepreneur,single,unknown,no,yes,no,telephone,may,mon,97,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,98,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,no,yes,no,telephone,may,mon,133,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,single,university.degree,no,yes,no,telephone,may,mon,451,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,high.school,no,no,no,telephone,may,mon,34,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,married,university.degree,no,no,no,telephone,may,mon,79,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,454,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,technician,single,university.degree,no,no,no,telephone,may,mon,251,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,admin.,divorced,university.degree,no,no,no,telephone,may,mon,122,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,self-employed,married,basic.9y,unknown,no,no,telephone,may,mon,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,816,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,admin.,single,university.degree,no,yes,no,telephone,may,mon,87,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,married,professional.course,unknown,yes,no,telephone,may,mon,81,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,mon,109,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,admin.,divorced,university.degree,no,yes,yes,telephone,may,mon,375,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,admin.,married,professional.course,no,no,no,telephone,may,mon,51,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,housemaid,married,basic.9y,unknown,yes,no,telephone,may,mon,118,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,single,high.school,no,no,no,telephone,may,mon,178,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,high.school,no,no,no,telephone,may,mon,165,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,admin.,married,university.degree,no,no,no,telephone,may,mon,155,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,technician,divorced,professional.course,no,no,no,telephone,may,mon,173,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,self-employed,married,high.school,no,no,no,telephone,may,mon,304,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,university.degree,no,no,no,telephone,may,mon,583,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,university.degree,no,yes,no,telephone,may,mon,138,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,management,married,unknown,unknown,yes,no,telephone,may,mon,250,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,748,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+48,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,mon,14,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,entrepreneur,married,basic.9y,no,no,no,telephone,may,mon,896,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+35,blue-collar,married,high.school,no,yes,yes,telephone,may,mon,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,married,university.degree,no,no,no,telephone,may,mon,543,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,married,university.degree,unknown,yes,yes,telephone,may,mon,398,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,158,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,365,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,304,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,single,basic.4y,no,no,no,telephone,may,mon,118,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,single,professional.course,no,yes,yes,telephone,may,mon,469,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,divorced,high.school,no,no,no,telephone,may,mon,488,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,management,married,high.school,no,no,no,telephone,may,mon,232,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,admin.,married,basic.9y,no,yes,no,telephone,may,mon,764,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+55,management,married,university.degree,no,yes,yes,telephone,may,mon,411,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,blue-collar,single,high.school,unknown,yes,no,telephone,may,mon,149,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,management,divorced,high.school,no,yes,no,telephone,may,mon,63,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,125,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,married,professional.course,no,yes,yes,telephone,may,mon,207,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,divorced,high.school,no,yes,no,telephone,may,mon,84,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,single,professional.course,unknown,no,no,telephone,may,mon,29,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.9y,no,yes,yes,telephone,may,mon,162,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,management,single,high.school,no,yes,no,telephone,may,mon,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,high.school,unknown,yes,no,telephone,may,mon,23,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,married,university.degree,no,yes,yes,telephone,may,mon,147,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,90,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,married,professional.course,no,no,no,telephone,may,mon,409,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,technician,single,university.degree,unknown,yes,yes,telephone,may,mon,118,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,married,high.school,no,yes,no,telephone,may,mon,175,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,services,married,high.school,no,no,no,telephone,may,mon,219,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,services,single,high.school,no,no,no,telephone,may,mon,96,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,technician,married,university.degree,unknown,no,yes,telephone,may,mon,76,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,entrepreneur,married,basic.6y,unknown,no,no,telephone,may,mon,66,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,single,high.school,no,no,no,telephone,may,mon,113,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,single,university.degree,no,yes,yes,telephone,may,mon,232,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,129,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,mon,405,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,services,divorced,high.school,no,no,yes,telephone,may,mon,251,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,128,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,253,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,housemaid,married,basic.4y,unknown,no,no,telephone,may,mon,245,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,technician,single,professional.course,unknown,yes,no,telephone,may,mon,188,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,technician,single,professional.course,no,no,no,telephone,may,mon,118,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,married,university.degree,no,no,no,telephone,may,mon,102,22,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,student,single,university.degree,no,yes,no,telephone,may,mon,763,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,97,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,41,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,unknown,married,high.school,unknown,yes,yes,telephone,may,mon,329,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,51,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,unknown,married,unknown,unknown,no,no,telephone,may,mon,130,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,entrepreneur,married,basic.9y,no,no,no,telephone,may,mon,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,retired,divorced,high.school,no,yes,no,telephone,may,mon,308,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,118,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,management,single,university.degree,no,no,no,telephone,may,mon,14,16,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,services,divorced,high.school,no,yes,yes,telephone,may,mon,125,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,single,high.school,no,yes,no,telephone,may,mon,193,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,technician,married,professional.course,no,yes,no,telephone,may,mon,200,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,married,professional.course,no,yes,no,telephone,may,mon,349,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,admin.,divorced,basic.9y,no,yes,yes,telephone,may,mon,282,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+23,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,633,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,high.school,no,no,no,telephone,may,mon,560,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,technician,married,professional.course,no,yes,no,telephone,may,tue,114,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,high.school,no,yes,yes,telephone,may,tue,172,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,professional.course,no,yes,no,telephone,may,tue,292,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,269,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,services,married,high.school,unknown,yes,yes,telephone,may,tue,220,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,housemaid,divorced,unknown,unknown,yes,no,telephone,may,tue,376,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,single,basic.6y,no,no,yes,telephone,may,tue,73,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,high.school,no,no,yes,telephone,may,tue,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,services,married,high.school,no,yes,no,telephone,may,tue,59,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,management,married,university.degree,no,yes,no,telephone,may,tue,64,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,admin.,married,basic.6y,unknown,yes,no,telephone,may,tue,353,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,entrepreneur,married,university.degree,no,no,no,telephone,may,tue,322,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,tue,67,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,technician,divorced,university.degree,no,no,no,telephone,may,tue,99,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,high.school,unknown,yes,no,telephone,may,tue,27,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,single,professional.course,no,yes,no,telephone,may,tue,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,entrepreneur,married,university.degree,no,yes,no,telephone,may,tue,148,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,admin.,single,basic.6y,no,no,no,telephone,may,tue,222,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,management,married,high.school,no,yes,yes,telephone,may,tue,265,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,entrepreneur,married,university.degree,unknown,no,no,telephone,may,tue,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,admin.,single,university.degree,no,no,no,telephone,may,tue,75,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,management,married,high.school,no,yes,yes,telephone,may,tue,62,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,single,high.school,no,no,no,telephone,may,tue,112,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,220,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,management,married,unknown,unknown,no,no,telephone,may,tue,204,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,professional.course,no,yes,no,telephone,may,tue,160,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,married,high.school,unknown,no,no,telephone,may,tue,233,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,married,high.school,no,yes,no,telephone,may,tue,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,management,married,unknown,no,no,no,telephone,may,tue,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,578,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,divorced,basic.6y,no,no,no,telephone,may,tue,183,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,565,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,admin.,married,basic.9y,no,yes,yes,telephone,may,tue,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,services,divorced,unknown,no,yes,no,telephone,may,tue,1063,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+36,admin.,married,high.school,no,yes,no,telephone,may,tue,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,married,professional.course,no,yes,yes,telephone,may,tue,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,management,married,professional.course,no,no,no,telephone,may,tue,195,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,single,university.degree,unknown,no,no,telephone,may,tue,125,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,single,high.school,no,yes,yes,telephone,may,tue,193,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,housemaid,married,basic.9y,no,no,no,telephone,may,tue,287,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,single,high.school,unknown,yes,yes,telephone,may,tue,277,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,single,professional.course,no,no,no,telephone,may,tue,84,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,married,university.degree,no,yes,no,telephone,may,tue,47,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,services,married,unknown,no,yes,no,telephone,may,tue,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,management,married,high.school,no,no,no,telephone,may,tue,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,955,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,high.school,unknown,yes,yes,telephone,may,tue,236,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,services,married,university.degree,no,yes,no,telephone,may,tue,336,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,unknown,married,basic.4y,no,no,no,telephone,may,tue,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,technician,married,professional.course,no,no,no,telephone,may,tue,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,entrepreneur,married,basic.9y,no,no,no,telephone,may,tue,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,197,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,218,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,married,basic.9y,no,yes,no,telephone,may,tue,34,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,single,high.school,no,yes,no,telephone,may,tue,386,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,student,single,university.degree,no,yes,no,telephone,may,tue,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,entrepreneur,married,basic.9y,no,no,no,telephone,may,tue,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,housemaid,married,basic.4y,no,yes,no,telephone,may,tue,227,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,entrepreneur,married,basic.4y,no,no,no,telephone,may,tue,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,technician,married,professional.course,no,no,no,telephone,may,tue,205,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,services,married,professional.course,no,yes,no,telephone,may,tue,1205,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+36,management,married,university.degree,no,yes,no,telephone,may,tue,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,high.school,no,yes,no,telephone,may,tue,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,229,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,self-employed,single,high.school,no,yes,no,telephone,may,tue,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,retired,married,high.school,unknown,no,no,telephone,may,tue,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,services,single,high.school,no,yes,no,telephone,may,tue,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,services,single,high.school,no,yes,no,telephone,may,tue,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,427,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,unemployed,married,professional.course,no,no,no,telephone,may,tue,171,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,technician,single,high.school,no,yes,no,telephone,may,tue,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,single,university.degree,unknown,yes,no,telephone,may,tue,269,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,156,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,married,university.degree,no,no,no,telephone,may,tue,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,single,basic.9y,no,no,no,telephone,may,tue,674,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,single,high.school,unknown,no,yes,telephone,may,tue,234,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,tue,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,services,married,high.school,no,yes,no,telephone,may,tue,275,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,housemaid,divorced,basic.4y,unknown,no,no,telephone,may,tue,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,technician,single,university.degree,no,yes,no,telephone,may,tue,1051,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+27,admin.,single,university.degree,no,yes,no,telephone,may,tue,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,technician,married,professional.course,no,yes,no,telephone,may,tue,340,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.4y,no,unknown,unknown,telephone,may,tue,47,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,182,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,housemaid,married,university.degree,no,yes,no,telephone,may,tue,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,single,high.school,no,no,no,telephone,may,tue,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,management,married,university.degree,no,yes,no,telephone,may,tue,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,single,basic.6y,no,no,no,telephone,may,tue,472,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,married,professional.course,no,yes,yes,telephone,may,tue,207,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,unemployed,single,high.school,no,yes,no,telephone,may,tue,597,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,married,high.school,no,yes,yes,telephone,may,tue,274,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,420,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,divorced,professional.course,no,unknown,unknown,telephone,may,tue,532,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,professional.course,unknown,yes,no,telephone,may,tue,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,entrepreneur,married,high.school,no,no,no,telephone,may,tue,62,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,services,single,high.school,no,no,no,telephone,may,tue,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,admin.,married,high.school,no,yes,yes,telephone,may,tue,275,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,740,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+34,technician,married,university.degree,no,no,no,telephone,may,tue,111,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,divorced,high.school,no,no,no,telephone,may,tue,271,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,management,married,high.school,no,no,no,telephone,may,tue,776,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,admin.,single,university.degree,no,no,no,telephone,may,tue,90,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,299,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,married,basic.9y,unknown,yes,no,telephone,may,tue,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,330,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,divorced,basic.6y,unknown,no,no,telephone,may,tue,518,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,housemaid,married,basic.4y,no,no,no,telephone,may,tue,243,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,technician,divorced,basic.9y,unknown,no,no,telephone,may,tue,472,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,technician,single,professional.course,no,no,no,telephone,may,tue,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,married,high.school,no,no,no,telephone,may,tue,514,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,technician,divorced,basic.9y,unknown,yes,yes,telephone,may,tue,388,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,management,married,basic.4y,no,yes,no,telephone,may,tue,224,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,unemployed,married,professional.course,no,no,no,telephone,may,tue,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,services,married,basic.9y,no,no,no,telephone,may,tue,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,single,professional.course,no,no,no,telephone,may,tue,70,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,entrepreneur,married,basic.4y,no,yes,no,telephone,may,tue,296,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,550,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,services,divorced,high.school,no,yes,no,telephone,may,tue,313,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,housemaid,married,basic.4y,no,yes,no,telephone,may,tue,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,243,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,single,university.degree,no,yes,no,telephone,may,tue,114,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,73,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,unknown,married,basic.6y,unknown,yes,no,telephone,may,tue,290,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,86,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,technician,single,professional.course,no,no,no,telephone,may,tue,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,entrepreneur,divorced,high.school,no,yes,no,telephone,may,tue,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,single,high.school,no,yes,yes,telephone,may,tue,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,housemaid,married,basic.4y,no,no,no,telephone,may,tue,106,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,admin.,divorced,high.school,no,no,no,telephone,may,tue,45,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,admin.,married,basic.6y,no,yes,yes,telephone,may,tue,25,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,admin.,married,basic.6y,no,yes,no,telephone,may,tue,114,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,tue,82,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,single,university.degree,no,yes,no,telephone,may,tue,33,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,tue,322,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,technician,single,professional.course,no,no,no,telephone,may,tue,446,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,self-employed,married,basic.9y,unknown,yes,yes,telephone,may,tue,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,technician,single,professional.course,no,yes,no,telephone,may,tue,121,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,services,divorced,high.school,no,yes,no,telephone,may,tue,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,70,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,professional.course,no,yes,no,telephone,may,tue,213,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,divorced,university.degree,no,no,no,telephone,may,tue,305,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,management,single,basic.4y,no,no,no,telephone,may,tue,19,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,643,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,single,high.school,no,no,no,telephone,may,tue,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,university.degree,unknown,no,no,telephone,may,tue,363,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,384,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,self-employed,single,university.degree,no,yes,no,telephone,may,tue,492,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,single,basic.4y,unknown,no,no,telephone,may,tue,222,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,entrepreneur,married,high.school,no,no,no,telephone,may,tue,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,426,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,services,married,high.school,no,no,no,telephone,may,tue,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,tue,39,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,single,high.school,no,yes,no,telephone,may,tue,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,divorced,high.school,no,no,no,telephone,may,tue,293,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,high.school,no,no,no,telephone,may,tue,316,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,tue,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,services,married,high.school,unknown,yes,no,telephone,may,tue,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,student,single,basic.9y,unknown,yes,yes,telephone,may,tue,68,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,divorced,basic.6y,no,no,no,telephone,may,tue,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,married,university.degree,no,no,no,telephone,may,tue,173,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,divorced,high.school,unknown,no,no,telephone,may,tue,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,tue,72,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,unknown,married,high.school,unknown,no,no,telephone,may,tue,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,single,basic.9y,unknown,no,no,telephone,may,tue,62,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,professional.course,no,no,no,telephone,may,tue,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,unknown,married,university.degree,no,no,no,telephone,may,tue,310,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,basic.6y,unknown,no,no,telephone,may,tue,195,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,technician,married,university.degree,no,yes,no,telephone,may,tue,470,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,married,high.school,no,no,no,telephone,may,tue,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,divorced,professional.course,no,yes,no,telephone,may,tue,169,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,no,no,no,telephone,may,tue,223,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,single,basic.9y,unknown,no,no,telephone,may,tue,201,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,married,high.school,no,yes,yes,telephone,may,tue,596,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,married,professional.course,no,no,no,telephone,may,tue,253,16,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,management,single,university.degree,no,no,no,telephone,may,tue,600,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,services,married,high.school,no,yes,no,telephone,may,tue,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,unknown,married,high.school,unknown,yes,no,telephone,may,tue,43,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,married,high.school,no,no,no,telephone,may,tue,731,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+31,admin.,single,university.degree,no,yes,no,telephone,may,tue,659,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,married,basic.4y,no,yes,yes,telephone,may,tue,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,entrepreneur,divorced,university.degree,no,no,no,telephone,may,tue,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,self-employed,married,university.degree,unknown,yes,no,telephone,may,tue,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,technician,married,basic.6y,no,no,yes,telephone,may,tue,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,self-employed,married,university.degree,no,no,yes,telephone,may,tue,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,high.school,no,no,no,telephone,may,tue,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,single,basic.4y,no,no,no,telephone,may,tue,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,technician,married,basic.6y,no,no,yes,telephone,may,tue,261,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,self-employed,married,high.school,no,yes,no,telephone,may,tue,103,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,high.school,unknown,yes,no,telephone,may,tue,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,single,unknown,no,no,no,telephone,may,tue,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+22,services,single,basic.9y,no,no,no,telephone,may,tue,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,retired,married,university.degree,no,yes,yes,telephone,may,tue,235,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,technician,married,basic.9y,unknown,no,no,telephone,may,tue,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,single,university.degree,no,no,no,telephone,may,tue,169,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,married,high.school,no,yes,no,telephone,may,tue,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,technician,married,professional.course,unknown,yes,no,telephone,may,tue,272,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,unemployed,married,basic.4y,no,yes,no,telephone,may,tue,265,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,technician,married,professional.course,no,yes,no,telephone,may,tue,233,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,tue,307,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,married,high.school,no,yes,no,telephone,may,tue,246,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,admin.,divorced,high.school,no,no,no,telephone,may,tue,290,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,56,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,basic.9y,no,no,no,telephone,may,tue,259,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,management,married,high.school,unknown,no,no,telephone,may,tue,375,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,entrepreneur,single,professional.course,no,no,no,telephone,may,tue,290,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,self-employed,married,basic.9y,no,no,no,telephone,may,tue,148,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,self-employed,married,basic.6y,unknown,yes,no,telephone,may,tue,32,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,tue,521,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,divorced,basic.4y,no,no,no,telephone,may,tue,537,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,management,married,university.degree,no,yes,no,telephone,may,tue,316,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,services,single,high.school,unknown,no,no,telephone,may,tue,332,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,management,divorced,university.degree,no,no,no,telephone,may,tue,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,935,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+37,technician,single,university.degree,no,yes,yes,telephone,may,tue,173,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,single,university.degree,no,no,no,telephone,may,tue,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,divorced,basic.9y,no,no,no,telephone,may,tue,474,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,395,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,management,divorced,university.degree,no,no,no,telephone,may,tue,313,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,single,university.degree,no,no,no,telephone,may,tue,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,admin.,married,university.degree,unknown,no,no,telephone,may,tue,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,services,married,professional.course,no,no,no,telephone,may,tue,395,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,93,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,single,university.degree,no,no,yes,telephone,may,tue,166,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,single,high.school,no,yes,no,telephone,may,tue,410,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,755,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,technician,married,professional.course,no,no,no,telephone,may,tue,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,married,high.school,no,unknown,unknown,telephone,may,tue,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,married,professional.course,no,no,no,telephone,may,tue,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,retired,divorced,high.school,unknown,yes,no,telephone,may,tue,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,unknown,single,basic.9y,unknown,yes,no,telephone,may,tue,88,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,professional.course,no,no,no,telephone,may,tue,318,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,unemployed,single,basic.9y,unknown,yes,no,telephone,may,tue,405,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,single,university.degree,no,yes,no,telephone,may,tue,751,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+34,admin.,married,high.school,no,yes,no,telephone,may,tue,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,services,married,high.school,no,yes,no,telephone,may,tue,95,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,319,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,272,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,management,married,university.degree,unknown,no,no,telephone,may,tue,142,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,admin.,single,basic.6y,no,yes,no,telephone,may,tue,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,management,single,university.degree,no,no,no,telephone,may,tue,237,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,housemaid,married,basic.4y,no,yes,no,telephone,may,tue,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,management,divorced,university.degree,no,no,yes,telephone,may,tue,116,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,married,professional.course,unknown,no,no,telephone,may,tue,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,professional.course,no,no,yes,telephone,may,tue,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,376,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,services,married,high.school,no,yes,no,telephone,may,tue,485,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,married,university.degree,no,yes,no,telephone,may,tue,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,210,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,married,unknown,no,no,no,telephone,may,tue,277,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,services,married,high.school,unknown,no,no,telephone,may,tue,326,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,services,single,professional.course,no,no,yes,telephone,may,tue,305,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,married,high.school,unknown,yes,yes,telephone,may,tue,320,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,management,married,basic.9y,no,yes,no,telephone,may,tue,298,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,technician,married,professional.course,no,no,no,telephone,may,tue,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,admin.,married,high.school,no,no,no,telephone,may,tue,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,222,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,housemaid,married,basic.4y,no,no,no,telephone,may,tue,513,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,professional.course,no,yes,no,telephone,may,tue,321,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,married,high.school,unknown,no,no,telephone,may,tue,355,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+22,admin.,married,high.school,no,no,no,telephone,may,tue,240,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,entrepreneur,divorced,high.school,no,yes,no,telephone,may,tue,383,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,301,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,self-employed,married,university.degree,no,no,no,telephone,may,tue,367,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,technician,married,professional.course,no,no,no,telephone,may,tue,179,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,single,high.school,no,no,yes,telephone,may,tue,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,married,professional.course,no,yes,no,telephone,may,tue,177,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,married,high.school,no,yes,no,telephone,may,tue,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,services,married,basic.6y,no,no,no,telephone,may,tue,377,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,240,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,no,no,yes,telephone,may,tue,1590,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,125,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,management,single,university.degree,unknown,yes,no,telephone,may,tue,174,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,self-employed,single,university.degree,no,no,no,telephone,may,tue,518,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,single,high.school,no,no,no,telephone,may,tue,280,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,high.school,unknown,no,no,telephone,may,tue,269,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,single,high.school,no,yes,no,telephone,may,tue,394,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,management,married,professional.course,no,yes,yes,telephone,may,tue,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,admin.,married,basic.9y,unknown,no,no,telephone,may,tue,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,312,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,management,married,professional.course,no,yes,no,telephone,may,tue,709,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+45,blue-collar,divorced,basic.4y,no,no,no,telephone,may,tue,78,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,33,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,212,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,tue,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,married,high.school,unknown,yes,yes,telephone,may,tue,299,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,basic.9y,no,yes,no,telephone,may,tue,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,single,university.degree,no,no,no,telephone,may,tue,574,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,self-employed,divorced,high.school,no,no,no,telephone,may,tue,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,unknown,no,no,telephone,may,tue,318,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,management,married,basic.9y,no,yes,no,telephone,may,tue,68,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,tue,217,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,retired,married,university.degree,unknown,yes,no,telephone,may,tue,245,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,single,university.degree,no,no,no,telephone,may,tue,363,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,services,married,high.school,no,yes,no,telephone,may,tue,347,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,services,married,high.school,no,yes,no,telephone,may,tue,392,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,services,married,high.school,no,yes,no,telephone,may,tue,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,single,university.degree,no,yes,no,telephone,may,tue,749,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,services,married,high.school,no,no,no,telephone,may,tue,498,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,services,married,high.school,no,yes,no,telephone,may,tue,570,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,admin.,divorced,high.school,no,yes,no,telephone,may,tue,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,high.school,unknown,no,no,telephone,may,tue,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,married,professional.course,no,no,no,telephone,may,tue,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,unknown,married,basic.4y,unknown,yes,no,telephone,may,tue,267,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,retired,married,professional.course,no,no,no,telephone,may,tue,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,married,high.school,no,yes,no,telephone,may,tue,453,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,technician,single,professional.course,no,yes,no,telephone,may,tue,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,admin.,married,unknown,no,no,no,telephone,may,tue,389,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,technician,married,basic.4y,no,no,no,telephone,may,tue,120,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,married,high.school,unknown,yes,no,telephone,may,tue,146,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,single,university.degree,no,yes,no,telephone,may,tue,40,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,technician,married,professional.course,no,yes,yes,telephone,may,tue,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,technician,single,professional.course,no,yes,no,telephone,may,tue,324,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,management,divorced,high.school,no,no,no,telephone,may,tue,436,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,59,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,single,basic.4y,no,unknown,unknown,telephone,may,tue,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,high.school,no,yes,no,telephone,may,tue,0,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,93,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,single,high.school,no,no,no,telephone,may,tue,364,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,services,married,professional.course,unknown,no,yes,telephone,may,tue,111,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,services,single,high.school,no,yes,yes,telephone,may,tue,466,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,technician,married,professional.course,no,yes,no,telephone,may,tue,345,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,tue,294,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,technician,married,unknown,no,yes,no,telephone,may,tue,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,admin.,divorced,basic.9y,no,no,no,telephone,may,tue,233,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,149,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,high.school,no,yes,no,telephone,may,tue,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,355,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,single,university.degree,no,yes,no,telephone,may,tue,953,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,retired,married,professional.course,unknown,no,no,telephone,may,tue,427,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,unemployed,single,university.degree,no,no,yes,telephone,may,tue,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,services,single,basic.9y,no,yes,yes,telephone,may,tue,22,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,entrepreneur,married,university.degree,unknown,no,no,telephone,may,tue,477,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,30,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,technician,married,professional.course,unknown,yes,no,telephone,may,tue,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,admin.,divorced,university.degree,no,no,no,telephone,may,tue,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,professional.course,no,no,no,telephone,may,tue,305,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,married,high.school,unknown,no,no,telephone,may,tue,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,married,university.degree,no,yes,no,telephone,may,tue,8,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,unemployed,single,basic.4y,unknown,yes,no,telephone,may,tue,267,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,services,married,high.school,unknown,yes,no,telephone,may,tue,399,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,admin.,married,high.school,no,no,yes,telephone,may,tue,315,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,self-employed,married,basic.9y,no,no,no,telephone,may,tue,3094,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+29,technician,married,professional.course,no,no,no,telephone,may,tue,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,single,professional.course,no,no,yes,telephone,may,tue,3,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,management,divorced,university.degree,no,no,no,telephone,may,tue,269,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,management,divorced,university.degree,no,yes,no,telephone,may,tue,159,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,single,high.school,unknown,yes,no,telephone,may,tue,182,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,185,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,single,high.school,no,no,no,telephone,may,tue,359,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.6y,no,no,yes,telephone,may,tue,89,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,married,unknown,no,yes,no,telephone,may,tue,220,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,179,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,self-employed,married,university.degree,no,yes,no,telephone,may,tue,151,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,tue,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,retired,divorced,basic.4y,unknown,yes,no,telephone,may,tue,135,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,married,high.school,no,no,no,telephone,may,tue,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,admin.,married,high.school,no,no,no,telephone,may,tue,132,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,married,university.degree,no,no,no,telephone,may,tue,141,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,management,single,basic.9y,no,yes,no,telephone,may,tue,265,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,87,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,technician,married,basic.6y,no,yes,no,telephone,may,tue,452,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,admin.,divorced,high.school,no,no,no,telephone,may,tue,62,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,married,professional.course,no,no,no,telephone,may,tue,348,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,married,high.school,no,yes,no,telephone,may,tue,354,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,technician,married,professional.course,unknown,yes,no,telephone,may,tue,153,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,single,high.school,no,yes,no,telephone,may,tue,54,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,management,married,basic.6y,unknown,yes,no,telephone,may,tue,89,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,married,professional.course,no,yes,no,telephone,may,tue,132,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,580,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,admin.,married,university.degree,unknown,yes,no,telephone,may,tue,99,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,basic.9y,no,no,no,telephone,may,tue,34,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,divorced,high.school,no,no,no,telephone,may,tue,72,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,management,married,university.degree,no,yes,no,telephone,may,tue,99,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,housemaid,married,basic.6y,no,unknown,unknown,telephone,may,tue,175,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,entrepreneur,married,university.degree,no,yes,no,telephone,may,tue,290,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,retired,married,high.school,no,yes,no,telephone,may,tue,591,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,336,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,divorced,basic.9y,no,no,no,telephone,may,tue,29,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,single,university.degree,no,no,no,telephone,may,tue,266,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,married,unknown,no,no,no,telephone,may,tue,45,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,298,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,married,high.school,no,no,no,telephone,may,tue,1043,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,admin.,married,university.degree,no,yes,no,telephone,may,tue,83,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,282,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,single,high.school,no,no,yes,telephone,may,tue,209,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,106,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,entrepreneur,single,high.school,no,yes,no,telephone,may,tue,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,divorced,university.degree,no,yes,no,telephone,may,tue,197,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,unknown,married,basic.4y,unknown,no,no,telephone,may,tue,257,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,married,university.degree,unknown,no,no,telephone,may,tue,42,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,single,university.degree,no,yes,no,telephone,may,tue,319,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,management,married,university.degree,no,no,no,telephone,may,tue,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,383,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,divorced,high.school,no,yes,no,telephone,may,tue,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,tue,88,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,married,basic.9y,no,no,no,telephone,may,tue,97,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,335,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,married,university.degree,no,no,no,telephone,may,tue,15,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,self-employed,single,basic.9y,no,yes,no,telephone,may,tue,4,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,admin.,married,high.school,unknown,no,no,telephone,may,tue,5,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,admin.,married,high.school,unknown,no,no,telephone,may,tue,178,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,entrepreneur,married,basic.6y,no,yes,no,telephone,may,tue,256,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,married,professional.course,unknown,yes,no,telephone,may,tue,284,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,married,professional.course,unknown,yes,no,telephone,may,tue,264,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,single,high.school,no,yes,no,telephone,may,tue,124,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,university.degree,no,yes,yes,telephone,may,tue,239,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,admin.,married,high.school,no,yes,no,telephone,may,tue,20,19,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,15,13,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,services,single,basic.4y,no,yes,no,telephone,may,tue,98,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,112,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,technician,married,professional.course,no,yes,no,telephone,may,tue,350,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,technician,married,university.degree,unknown,yes,no,telephone,may,tue,240,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,unemployed,single,university.degree,no,yes,no,telephone,may,tue,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,admin.,married,high.school,no,no,no,telephone,may,tue,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,unknown,no,no,no,telephone,may,tue,337,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,housemaid,single,basic.4y,unknown,yes,no,telephone,may,tue,662,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,124,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,admin.,married,basic.9y,no,yes,no,telephone,may,tue,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,services,married,university.degree,no,yes,no,telephone,may,tue,63,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,admin.,single,university.degree,no,no,no,telephone,may,tue,101,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,133,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,services,married,high.school,no,no,no,telephone,may,tue,145,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,admin.,single,high.school,no,no,no,telephone,may,tue,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,858,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+38,unemployed,divorced,high.school,no,no,no,telephone,may,tue,349,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,retired,married,basic.9y,unknown,no,no,telephone,may,tue,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,technician,married,basic.9y,no,yes,no,telephone,may,tue,676,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,married,basic.9y,no,yes,no,telephone,may,tue,197,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,married,university.degree,no,no,no,telephone,may,tue,235,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,retired,married,unknown,unknown,no,no,telephone,may,tue,205,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,technician,single,university.degree,no,yes,no,telephone,may,tue,291,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,services,married,high.school,no,no,no,telephone,may,tue,132,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,housemaid,married,university.degree,no,no,no,telephone,may,tue,165,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,admin.,divorced,high.school,no,yes,no,telephone,may,tue,196,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,services,married,high.school,no,no,no,telephone,may,tue,177,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,547,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,services,single,high.school,unknown,yes,no,telephone,may,tue,62,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,self-employed,unknown,basic.6y,no,no,no,telephone,may,tue,398,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,management,divorced,university.degree,no,yes,no,telephone,may,tue,342,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,married,high.school,unknown,no,no,telephone,may,tue,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,entrepreneur,single,high.school,no,no,no,telephone,may,tue,77,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,university.degree,no,no,no,telephone,may,tue,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,single,professional.course,unknown,yes,no,telephone,may,tue,352,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,unknown,no,yes,no,telephone,may,tue,112,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,self-employed,married,basic.9y,unknown,yes,no,telephone,may,tue,90,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,services,divorced,university.degree,no,yes,no,telephone,may,tue,22,16,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,technician,single,university.degree,no,unknown,unknown,telephone,may,tue,230,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,admin.,divorced,high.school,no,yes,no,telephone,may,tue,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,married,university.degree,no,no,no,telephone,may,tue,143,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,married,high.school,no,yes,no,telephone,may,tue,102,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,224,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,technician,married,professional.course,no,no,no,telephone,may,tue,73,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,admin.,single,high.school,no,yes,no,telephone,may,tue,42,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,high.school,unknown,no,no,telephone,may,tue,43,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,entrepreneur,single,basic.9y,no,no,no,telephone,may,tue,144,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,1224,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,306,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,services,divorced,high.school,no,yes,no,telephone,may,tue,50,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,132,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,high.school,no,no,yes,telephone,may,tue,108,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,admin.,single,professional.course,no,no,no,telephone,may,tue,265,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,retired,married,basic.4y,unknown,no,no,telephone,may,tue,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,retired,divorced,basic.4y,no,no,no,telephone,may,tue,167,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,admin.,married,university.degree,no,no,yes,telephone,may,tue,20,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,admin.,single,basic.6y,unknown,yes,no,telephone,may,tue,141,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,management,married,university.degree,unknown,yes,no,telephone,may,tue,346,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,single,basic.9y,unknown,yes,yes,telephone,may,tue,1168,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,unknown,married,unknown,unknown,no,no,telephone,may,wed,17,13,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,single,high.school,unknown,yes,no,telephone,may,wed,74,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,retired,married,professional.course,no,yes,yes,telephone,may,wed,78,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,housemaid,married,basic.4y,unknown,no,no,telephone,may,wed,125,12,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,technician,married,high.school,no,yes,no,telephone,may,wed,153,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,high.school,unknown,yes,no,telephone,may,wed,61,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,divorced,university.degree,unknown,yes,no,telephone,may,wed,318,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,228,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,services,single,high.school,unknown,no,no,telephone,may,wed,189,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,services,married,high.school,no,yes,no,telephone,may,wed,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,married,high.school,no,no,no,telephone,may,wed,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,management,single,university.degree,no,unknown,unknown,telephone,may,wed,372,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,223,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,services,divorced,high.school,no,no,no,telephone,may,wed,117,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,single,basic.4y,unknown,unknown,unknown,telephone,may,wed,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,services,married,high.school,unknown,no,no,telephone,may,wed,507,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,divorced,high.school,no,no,no,telephone,may,wed,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,married,university.degree,unknown,no,no,telephone,may,wed,91,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,management,married,university.degree,no,yes,no,telephone,may,wed,230,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,unknown,married,high.school,unknown,no,no,telephone,may,wed,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,technician,single,high.school,no,no,no,telephone,may,wed,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,technician,single,university.degree,unknown,no,no,telephone,may,wed,551,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,admin.,married,high.school,no,no,no,telephone,may,wed,215,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,single,high.school,unknown,yes,no,telephone,may,wed,617,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,high.school,no,no,no,telephone,may,wed,332,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,single,basic.9y,unknown,yes,no,telephone,may,wed,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,938,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+47,admin.,married,university.degree,no,yes,no,telephone,may,wed,385,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,married,unknown,no,no,no,telephone,may,wed,181,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,single,high.school,no,yes,no,telephone,may,wed,195,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,management,divorced,basic.6y,no,no,no,telephone,may,wed,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,79,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,single,university.degree,no,no,yes,telephone,may,wed,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,technician,married,basic.6y,no,yes,no,telephone,may,wed,190,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,wed,454,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,management,single,university.degree,no,no,no,telephone,may,wed,231,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,wed,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,housemaid,married,high.school,no,no,no,telephone,may,wed,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,services,divorced,high.school,unknown,yes,no,telephone,may,wed,103,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,technician,single,professional.course,unknown,no,no,telephone,may,wed,114,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,entrepreneur,married,basic.9y,unknown,yes,no,telephone,may,wed,176,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,divorced,basic.4y,no,yes,yes,telephone,may,wed,738,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,admin.,divorced,basic.9y,no,no,no,telephone,may,wed,283,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,management,divorced,high.school,no,yes,no,telephone,may,wed,224,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,divorced,basic.4y,no,no,no,telephone,may,wed,519,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,single,high.school,no,yes,no,telephone,may,wed,593,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,divorced,university.degree,no,unknown,unknown,telephone,may,wed,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,single,professional.course,unknown,no,no,telephone,may,wed,480,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,self-employed,married,basic.4y,unknown,yes,no,telephone,may,wed,177,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,married,high.school,no,no,no,telephone,may,wed,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,services,married,high.school,no,yes,no,telephone,may,wed,49,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,married,basic.4y,no,no,no,telephone,may,wed,88,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,married,university.degree,no,yes,no,telephone,may,wed,199,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,576,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+49,blue-collar,single,basic.4y,no,yes,no,telephone,may,wed,58,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,single,high.school,unknown,no,no,telephone,may,wed,261,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,entrepreneur,single,basic.4y,no,no,no,telephone,may,wed,430,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,single,university.degree,no,no,no,telephone,may,wed,674,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,112,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,technician,married,professional.course,no,yes,no,telephone,may,wed,248,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,married,high.school,no,no,no,telephone,may,wed,350,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,technician,single,university.degree,no,yes,no,telephone,may,wed,252,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,married,high.school,no,no,no,telephone,may,wed,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,141,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,256,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,163,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,wed,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,married,professional.course,no,yes,yes,telephone,may,wed,195,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,39,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,married,basic.9y,unknown,yes,no,telephone,may,wed,861,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,single,high.school,no,yes,no,telephone,may,wed,212,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,services,married,high.school,no,yes,no,telephone,may,wed,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,technician,divorced,professional.course,no,no,no,telephone,may,wed,209,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,married,basic.9y,no,no,no,telephone,may,wed,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,housemaid,married,basic.4y,no,yes,no,telephone,may,wed,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,management,married,professional.course,no,yes,yes,telephone,may,wed,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,technician,divorced,professional.course,unknown,no,no,telephone,may,wed,390,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,management,married,professional.course,no,no,no,telephone,may,wed,373,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,wed,44,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,retired,married,basic.4y,unknown,yes,yes,telephone,may,wed,571,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,self-employed,single,university.degree,no,no,no,telephone,may,wed,199,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,admin.,single,university.degree,no,yes,no,telephone,may,wed,582,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,married,university.degree,no,no,no,telephone,may,wed,222,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,married,university.degree,no,no,yes,telephone,may,wed,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,self-employed,married,university.degree,no,yes,yes,telephone,may,wed,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,married,university.degree,no,yes,no,telephone,may,wed,396,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,technician,single,professional.course,no,no,no,telephone,may,wed,58,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,management,married,high.school,no,no,no,telephone,may,wed,263,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,admin.,single,high.school,no,no,no,telephone,may,wed,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,married,professional.course,unknown,yes,no,telephone,may,wed,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,unknown,married,basic.4y,no,yes,no,telephone,may,wed,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,blue-collar,single,high.school,no,yes,no,telephone,may,wed,418,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,64,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,entrepreneur,divorced,high.school,no,yes,no,telephone,may,wed,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,self-employed,single,university.degree,unknown,yes,no,telephone,may,wed,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,services,married,high.school,unknown,yes,no,telephone,may,wed,171,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,single,professional.course,no,no,no,telephone,may,wed,223,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,single,university.degree,no,no,no,telephone,may,wed,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,technician,married,basic.9y,no,yes,no,telephone,may,wed,52,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,single,high.school,no,yes,no,telephone,may,wed,199,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,single,high.school,no,no,yes,telephone,may,wed,195,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,married,high.school,no,no,yes,telephone,may,wed,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,divorced,university.degree,no,no,no,telephone,may,wed,63,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,543,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+45,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,154,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,married,high.school,no,no,no,telephone,may,wed,226,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,technician,single,university.degree,no,no,no,telephone,may,wed,141,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,single,university.degree,no,yes,yes,telephone,may,wed,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,single,university.degree,no,no,no,telephone,may,wed,156,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,admin.,married,high.school,unknown,yes,no,telephone,may,wed,99,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,services,married,high.school,unknown,no,no,telephone,may,wed,297,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,unemployed,married,basic.9y,no,no,no,telephone,may,wed,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,single,university.degree,unknown,yes,yes,telephone,may,wed,62,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,technician,divorced,basic.9y,no,no,no,telephone,may,wed,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,1479,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+29,technician,married,university.degree,no,no,no,telephone,may,wed,104,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,married,basic.9y,no,yes,no,telephone,may,wed,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,21,21,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,72,18,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,single,high.school,no,yes,no,telephone,may,wed,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,high.school,no,no,no,telephone,may,wed,307,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,married,university.degree,no,yes,yes,telephone,may,wed,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,high.school,no,no,yes,telephone,may,wed,357,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,professional.course,unknown,yes,yes,telephone,may,wed,236,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,single,high.school,no,yes,no,telephone,may,wed,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,high.school,no,no,no,telephone,may,wed,227,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,married,university.degree,no,yes,yes,telephone,may,wed,143,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,married,high.school,no,yes,no,telephone,may,wed,119,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,services,single,high.school,no,yes,no,telephone,may,wed,268,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,admin.,divorced,high.school,no,yes,no,telephone,may,wed,507,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,management,single,university.degree,no,yes,no,telephone,may,wed,126,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,self-employed,married,professional.course,no,yes,yes,telephone,may,wed,268,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,services,single,high.school,no,yes,no,telephone,may,wed,386,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,313,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,married,high.school,no,no,no,telephone,may,wed,63,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,basic.9y,unknown,yes,no,telephone,may,wed,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,89,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,married,professional.course,no,no,yes,telephone,may,wed,96,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,209,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,married,high.school,unknown,no,no,telephone,may,wed,173,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,439,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,self-employed,married,professional.course,no,yes,no,telephone,may,wed,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,single,university.degree,no,yes,no,telephone,may,wed,713,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,technician,single,high.school,no,yes,no,telephone,may,wed,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,professional.course,no,yes,yes,telephone,may,wed,72,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,single,high.school,no,yes,no,telephone,may,wed,78,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,392,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,divorced,basic.9y,no,yes,no,telephone,may,wed,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,unknown,no,no,telephone,may,wed,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,151,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,single,high.school,no,no,no,telephone,may,wed,249,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,technician,married,basic.4y,unknown,no,yes,telephone,may,wed,1210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+20,entrepreneur,single,high.school,no,no,yes,telephone,may,wed,680,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,technician,divorced,university.degree,no,yes,no,telephone,may,wed,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,single,basic.9y,no,no,yes,telephone,may,wed,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,housemaid,married,basic.9y,unknown,unknown,unknown,telephone,may,wed,66,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,married,basic.9y,no,yes,no,telephone,may,wed,821,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,services,divorced,basic.9y,no,yes,no,telephone,may,wed,189,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,technician,divorced,university.degree,no,yes,no,telephone,may,wed,352,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,single,university.degree,no,yes,no,telephone,may,wed,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,single,basic.4y,unknown,no,no,telephone,may,wed,565,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,married,university.degree,no,yes,no,telephone,may,wed,615,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+56,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,167,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,high.school,no,no,no,telephone,may,wed,211,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,single,high.school,no,yes,no,telephone,may,wed,742,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,615,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,single,high.school,no,yes,no,telephone,may,wed,143,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,admin.,married,high.school,no,yes,no,telephone,may,wed,497,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,single,university.degree,no,yes,no,telephone,may,wed,105,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,housemaid,married,basic.4y,unknown,yes,yes,telephone,may,wed,213,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,single,university.degree,no,yes,no,telephone,may,wed,294,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,admin.,married,basic.6y,no,no,no,telephone,may,wed,461,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,married,university.degree,no,no,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,married,university.degree,unknown,no,no,telephone,may,wed,399,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,entrepreneur,married,high.school,no,yes,no,telephone,may,wed,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,married,unknown,no,no,no,telephone,may,wed,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,single,high.school,unknown,yes,no,telephone,may,wed,317,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,services,married,basic.4y,unknown,yes,no,telephone,may,wed,507,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+33,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,1183,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+55,retired,married,high.school,no,no,no,telephone,may,wed,302,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,management,married,basic.9y,no,yes,yes,telephone,may,wed,344,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,entrepreneur,single,university.degree,no,yes,no,telephone,may,wed,8,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,489,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,housemaid,married,basic.4y,unknown,no,no,telephone,may,wed,328,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,technician,married,high.school,no,no,no,telephone,may,wed,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,management,married,university.degree,no,yes,no,telephone,may,wed,117,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,entrepreneur,married,university.degree,no,no,no,telephone,may,wed,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,entrepreneur,married,high.school,no,no,no,telephone,may,wed,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,single,high.school,no,no,no,telephone,may,wed,438,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,management,divorced,university.degree,no,no,no,telephone,may,wed,675,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,123,18,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,257,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,married,university.degree,unknown,no,no,telephone,may,wed,266,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,may,wed,195,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,management,single,university.degree,no,yes,no,telephone,may,wed,145,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,entrepreneur,single,basic.9y,no,no,no,telephone,may,wed,232,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,retired,married,professional.course,no,no,no,telephone,may,wed,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,retired,married,basic.6y,no,yes,no,telephone,may,wed,91,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,management,married,university.degree,no,no,no,telephone,may,wed,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,admin.,married,professional.course,no,no,no,telephone,may,wed,314,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,unemployed,single,high.school,unknown,no,no,telephone,may,wed,694,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+35,blue-collar,married,unknown,no,no,no,telephone,may,wed,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,149,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,admin.,single,unknown,no,yes,no,telephone,may,wed,591,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,housemaid,divorced,basic.4y,unknown,yes,no,telephone,may,wed,288,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,36,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,services,married,high.school,unknown,yes,no,telephone,may,wed,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,unknown,no,no,no,telephone,may,wed,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,71,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,admin.,single,high.school,no,yes,no,telephone,may,wed,275,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,single,university.degree,unknown,no,no,telephone,may,wed,187,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,technician,married,university.degree,no,yes,no,telephone,may,wed,170,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,retired,married,basic.4y,no,no,no,telephone,may,wed,177,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,251,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,married,basic.4y,no,no,no,telephone,may,wed,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,463,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,retired,married,basic.4y,no,no,no,telephone,may,wed,157,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,74,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,single,basic.4y,unknown,no,yes,telephone,may,wed,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,technician,married,professional.course,no,no,no,telephone,may,wed,796,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+38,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,admin.,married,high.school,no,no,no,telephone,may,wed,272,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,technician,married,university.degree,no,no,yes,telephone,may,wed,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,technician,married,high.school,no,no,no,telephone,may,wed,81,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,technician,single,high.school,no,no,no,telephone,may,wed,189,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,597,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,single,basic.9y,no,no,no,telephone,may,wed,53,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,admin.,married,high.school,no,unknown,unknown,telephone,may,wed,45,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,single,high.school,no,yes,no,telephone,may,wed,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,university.degree,no,no,no,telephone,may,wed,664,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+45,services,married,high.school,unknown,no,no,telephone,may,wed,290,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,technician,married,professional.course,unknown,yes,yes,telephone,may,wed,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,unemployed,single,basic.4y,unknown,yes,no,telephone,may,wed,51,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,admin.,married,basic.9y,no,no,no,telephone,may,wed,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,services,married,basic.6y,unknown,yes,no,telephone,may,wed,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,entrepreneur,married,basic.9y,no,no,yes,telephone,may,wed,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,management,single,university.degree,no,no,no,telephone,may,wed,99,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,285,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,professional.course,no,no,no,telephone,may,wed,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,81,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,married,basic.9y,unknown,no,no,telephone,may,wed,244,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,services,married,unknown,unknown,no,no,telephone,may,wed,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,management,divorced,university.degree,unknown,no,yes,telephone,may,wed,289,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,housemaid,married,basic.4y,unknown,no,no,telephone,may,wed,183,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,services,married,high.school,unknown,no,no,telephone,may,wed,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,management,married,basic.6y,no,yes,no,telephone,may,wed,648,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+42,retired,married,basic.9y,unknown,yes,no,telephone,may,wed,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,housemaid,married,university.degree,no,yes,no,telephone,may,wed,536,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,admin.,married,basic.9y,no,yes,no,telephone,may,wed,173,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,divorced,professional.course,unknown,no,no,telephone,may,wed,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,management,married,basic.9y,unknown,no,no,telephone,may,wed,282,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,technician,single,university.degree,no,yes,no,telephone,may,wed,269,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,single,high.school,no,no,yes,telephone,may,wed,176,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,management,married,basic.6y,unknown,no,no,telephone,may,wed,347,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,married,basic.9y,no,yes,no,telephone,may,wed,88,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,279,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,divorced,professional.course,no,yes,yes,telephone,may,wed,294,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,116,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,basic.6y,unknown,no,no,telephone,may,wed,60,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,retired,divorced,professional.course,no,no,yes,telephone,may,wed,217,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,single,professional.course,no,no,no,telephone,may,wed,298,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,technician,married,professional.course,unknown,no,no,telephone,may,wed,864,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+31,admin.,married,high.school,no,no,no,telephone,may,wed,469,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,retired,divorced,basic.9y,unknown,no,yes,telephone,may,wed,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,technician,divorced,unknown,no,no,no,telephone,may,wed,80,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,high.school,no,yes,no,telephone,may,wed,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,technician,married,professional.course,no,no,no,telephone,may,wed,89,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,divorced,university.degree,unknown,no,no,telephone,may,wed,346,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,47,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,single,university.degree,no,no,no,telephone,may,wed,244,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,single,university.degree,no,no,no,telephone,may,wed,110,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,divorced,basic.4y,no,yes,yes,telephone,may,wed,433,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,services,married,high.school,no,yes,no,telephone,may,wed,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,unemployed,married,basic.4y,unknown,yes,no,telephone,may,wed,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,89,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,services,married,high.school,no,yes,no,telephone,may,wed,54,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,services,single,high.school,no,no,no,telephone,may,wed,72,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,technician,married,professional.course,unknown,yes,yes,telephone,may,wed,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,blue-collar,single,basic.4y,no,unknown,unknown,telephone,may,wed,489,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,married,high.school,no,no,no,telephone,may,wed,357,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,admin.,single,high.school,no,no,no,telephone,may,wed,84,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,services,married,high.school,no,no,no,telephone,may,wed,239,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,466,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,management,married,university.degree,no,yes,no,telephone,may,wed,383,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,management,single,university.degree,no,no,yes,telephone,may,wed,413,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,services,single,basic.6y,unknown,yes,no,telephone,may,wed,101,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,344,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,unemployed,married,basic.9y,unknown,yes,no,telephone,may,wed,360,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,79,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+58,retired,divorced,university.degree,no,yes,no,telephone,may,wed,314,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,divorced,university.degree,no,no,no,telephone,may,wed,315,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,technician,married,professional.course,unknown,yes,yes,telephone,may,wed,117,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,divorced,basic.6y,no,no,no,telephone,may,wed,229,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,retired,married,basic.4y,no,no,no,telephone,may,wed,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,services,married,unknown,no,yes,yes,telephone,may,wed,83,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,admin.,married,university.degree,no,yes,yes,telephone,may,wed,338,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,single,high.school,unknown,no,no,telephone,may,wed,491,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,167,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,258,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+54,retired,married,basic.4y,unknown,no,no,telephone,may,wed,1730,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+31,unemployed,single,professional.course,no,no,no,telephone,may,wed,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,193,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,admin.,married,high.school,no,no,no,telephone,may,wed,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,high.school,no,no,no,telephone,may,wed,629,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,married,professional.course,unknown,yes,no,telephone,may,wed,260,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,blue-collar,single,basic.9y,no,no,yes,telephone,may,wed,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,blue-collar,married,high.school,no,no,no,telephone,may,wed,471,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,self-employed,single,university.degree,no,no,no,telephone,may,wed,217,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,services,married,basic.9y,unknown,no,no,telephone,may,wed,300,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,services,married,basic.9y,no,yes,no,telephone,may,wed,94,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,services,single,high.school,no,no,no,telephone,may,wed,397,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,entrepreneur,married,high.school,no,no,no,telephone,may,wed,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,housemaid,married,basic.4y,no,yes,no,telephone,may,wed,238,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,389,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,wed,667,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,management,single,university.degree,no,no,no,telephone,may,wed,376,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,technician,single,university.degree,no,no,no,telephone,may,wed,23,16,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,services,married,high.school,unknown,yes,no,telephone,may,wed,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,services,married,basic.9y,no,yes,no,telephone,may,wed,251,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,divorced,professional.course,no,unknown,unknown,telephone,may,wed,209,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,services,single,basic.9y,unknown,yes,yes,telephone,may,wed,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,admin.,married,university.degree,unknown,no,no,telephone,may,wed,96,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,management,single,university.degree,no,no,yes,telephone,may,wed,691,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+38,housemaid,married,basic.6y,unknown,yes,yes,telephone,may,wed,87,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,entrepreneur,married,unknown,no,yes,no,telephone,may,wed,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,259,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,330,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,married,university.degree,no,no,no,telephone,may,wed,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,entrepreneur,married,basic.9y,no,yes,yes,telephone,may,wed,429,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,545,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,high.school,unknown,yes,no,telephone,may,wed,44,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,admin.,single,unknown,no,yes,no,telephone,may,wed,279,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,married,high.school,unknown,no,no,telephone,may,wed,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+55,technician,married,professional.course,unknown,no,no,telephone,may,wed,48,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,wed,449,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,admin.,single,university.degree,no,no,no,telephone,may,wed,362,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,single,basic.9y,no,yes,no,telephone,may,wed,99,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,technician,single,professional.course,no,yes,no,telephone,may,wed,207,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,married,university.degree,no,no,no,telephone,may,wed,297,14,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,housemaid,married,basic.4y,unknown,yes,no,telephone,may,wed,158,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,wed,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,410,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,entrepreneur,married,high.school,no,yes,no,telephone,may,wed,57,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,admin.,single,university.degree,no,no,yes,telephone,may,wed,424,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,admin.,single,university.degree,unknown,no,yes,telephone,may,wed,74,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,96,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+21,technician,single,professional.course,no,no,yes,telephone,may,wed,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,entrepreneur,divorced,high.school,no,no,no,telephone,may,wed,52,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,blue-collar,single,professional.course,no,no,no,telephone,may,wed,26,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+57,retired,married,basic.9y,unknown,no,no,telephone,may,wed,506,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,admin.,married,high.school,unknown,no,no,telephone,may,wed,173,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,admin.,married,high.school,no,no,no,telephone,may,wed,643,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,technician,married,professional.course,no,yes,no,telephone,may,wed,77,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,management,single,university.degree,no,no,yes,telephone,may,wed,95,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,463,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,admin.,married,high.school,no,yes,no,telephone,may,wed,25,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,technician,single,professional.course,no,yes,no,telephone,may,wed,104,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,267,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,wed,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,340,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,divorced,university.degree,no,no,no,telephone,may,wed,325,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+53,management,married,basic.4y,unknown,no,no,telephone,may,wed,528,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,1277,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,entrepreneur,married,university.degree,no,no,yes,telephone,may,wed,363,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,411,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,245,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,admin.,divorced,university.degree,no,unknown,unknown,telephone,may,wed,160,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,blue-collar,single,high.school,no,no,no,telephone,may,wed,313,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,140,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+30,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,25,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,157,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,married,university.degree,no,no,yes,telephone,may,wed,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,entrepreneur,married,university.degree,no,no,no,telephone,may,wed,386,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,technician,married,basic.9y,no,no,no,telephone,may,wed,593,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,services,divorced,high.school,no,no,yes,telephone,may,wed,176,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,blue-collar,single,basic.4y,unknown,no,no,telephone,may,wed,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,unemployed,married,university.degree,unknown,unknown,unknown,telephone,may,wed,302,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,married,university.degree,unknown,yes,no,telephone,may,wed,165,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,48,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,management,married,university.degree,no,yes,no,telephone,may,wed,51,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,blue-collar,married,basic.4y,no,no,yes,telephone,may,wed,99,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,services,married,high.school,no,yes,no,telephone,may,wed,452,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,management,married,university.degree,no,no,yes,telephone,may,wed,187,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,wed,335,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,services,married,high.school,no,no,no,telephone,may,wed,110,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,blue-collar,single,unknown,unknown,no,no,telephone,may,wed,299,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,self-employed,married,professional.course,no,yes,yes,telephone,may,wed,85,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,234,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,admin.,married,high.school,no,no,no,telephone,may,wed,264,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,divorced,high.school,no,yes,yes,telephone,may,wed,233,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+50,technician,married,professional.course,unknown,no,no,telephone,may,wed,239,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,blue-collar,married,professional.course,no,no,yes,telephone,may,wed,611,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,single,professional.course,no,no,yes,telephone,may,wed,600,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,retired,divorced,basic.4y,unknown,no,no,telephone,may,wed,478,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,92,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,self-employed,single,university.degree,no,yes,no,telephone,may,wed,158,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,single,professional.course,unknown,no,no,telephone,may,wed,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+37,management,single,high.school,no,no,no,telephone,may,wed,438,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,management,married,university.degree,no,yes,no,telephone,may,wed,205,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,342,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+49,services,married,high.school,no,no,no,telephone,may,wed,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,75,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,services,single,professional.course,unknown,no,no,telephone,may,wed,225,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+48,entrepreneur,married,high.school,unknown,yes,no,telephone,may,wed,88,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+28,self-employed,single,university.degree,no,no,no,telephone,may,wed,314,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,management,married,university.degree,no,no,no,telephone,may,wed,109,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+42,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,456,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,admin.,married,university.degree,no,no,no,telephone,may,wed,92,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,married,professional.course,no,no,no,telephone,may,wed,223,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,technician,married,professional.course,no,no,no,telephone,may,wed,148,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,technician,married,professional.course,no,yes,no,telephone,may,wed,205,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,high.school,no,no,no,telephone,may,wed,80,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,357,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+41,self-employed,single,university.degree,no,yes,yes,telephone,may,wed,23,17,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+39,admin.,married,university.degree,no,unknown,unknown,telephone,may,wed,513,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,admin.,single,high.school,no,no,yes,telephone,may,wed,171,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,admin.,single,university.degree,no,no,no,telephone,may,wed,90,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+35,blue-collar,married,high.school,no,no,no,telephone,may,wed,55,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,technician,married,professional.course,no,no,yes,telephone,may,wed,51,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+59,retired,married,professional.course,no,no,no,telephone,may,wed,560,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes
+27,admin.,single,university.degree,no,no,no,telephone,may,wed,245,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,admin.,married,high.school,no,yes,no,telephone,may,wed,318,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,management,married,university.degree,no,no,no,telephone,may,wed,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+51,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,wed,261,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+60,retired,divorced,high.school,unknown,yes,no,telephone,may,wed,398,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+45,admin.,married,basic.6y,unknown,yes,no,telephone,may,wed,200,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+52,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,wed,267,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+27,admin.,married,university.degree,no,no,no,telephone,may,wed,191,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,technician,single,professional.course,no,yes,no,telephone,may,wed,300,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,82,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+32,unemployed,single,high.school,no,no,no,telephone,may,wed,153,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+24,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,504,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+46,admin.,single,high.school,unknown,yes,no,telephone,may,wed,104,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,admin.,single,high.school,no,no,no,telephone,may,wed,194,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+44,services,married,high.school,no,yes,yes,telephone,may,wed,212,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,wed,122,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+31,services,married,high.school,no,no,no,telephone,may,wed,185,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+38,unknown,divorced,high.school,unknown,yes,no,telephone,may,wed,107,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+26,admin.,single,high.school,no,no,no,telephone,may,wed,87,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+40,admin.,married,basic.9y,no,no,yes,telephone,may,wed,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+47,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,wed,30,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+43,unemployed,married,high.school,no,yes,no,telephone,may,wed,585,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+25,blue-collar,single,basic.6y,unknown,no,yes,telephone,may,wed,90,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+36,technician,married,university.degree,no,no,no,telephone,may,wed,146,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+34,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+29,admin.,married,basic.6y,no,no,yes,telephone,may,wed,376,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+33,technician,married,university.degree,unknown,no,yes,telephone,may,wed,619,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no
+22,blue-collar,single,basic.9y,no,yes,no,telephone,may,thu,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,entrepreneur,divorced,basic.4y,no,no,no,telephone,may,thu,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,admin.,single,basic.9y,unknown,no,no,telephone,may,thu,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,retired,married,university.degree,no,no,no,telephone,may,thu,334,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,blue-collar,married,basic.9y,no,no,yes,telephone,may,thu,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+56,management,married,university.degree,no,no,no,telephone,may,thu,750,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,332,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,333,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+56,management,divorced,university.degree,no,yes,no,telephone,may,thu,118,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,620,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,admin.,single,high.school,no,yes,no,telephone,may,thu,193,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,retired,married,basic.4y,no,yes,no,telephone,may,thu,138,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,admin.,married,university.degree,no,yes,no,telephone,may,thu,543,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+35,student,single,university.degree,unknown,no,no,telephone,may,thu,297,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,services,single,high.school,unknown,no,no,telephone,may,thu,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,admin.,married,university.degree,no,no,yes,telephone,may,thu,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,admin.,married,professional.course,no,yes,yes,telephone,may,thu,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,admin.,single,basic.9y,unknown,no,no,telephone,may,thu,42,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,management,married,university.degree,no,yes,no,telephone,may,thu,127,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,self-employed,single,basic.4y,unknown,yes,no,telephone,may,thu,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,services,married,high.school,unknown,no,no,telephone,may,thu,267,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+55,admin.,married,basic.9y,unknown,no,yes,telephone,may,thu,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,housemaid,married,basic.4y,unknown,no,yes,telephone,may,thu,205,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,blue-collar,single,basic.9y,no,yes,no,telephone,may,thu,54,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+26,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,132,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,thu,275,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,technician,married,basic.9y,no,yes,no,telephone,may,thu,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,student,single,basic.4y,unknown,no,no,telephone,may,thu,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,admin.,single,unknown,unknown,yes,no,telephone,may,thu,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+51,technician,married,unknown,no,yes,no,telephone,may,thu,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,128,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+58,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,services,married,high.school,unknown,no,yes,telephone,may,thu,284,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,services,married,basic.6y,no,yes,no,telephone,may,thu,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,self-employed,single,university.degree,no,yes,no,telephone,may,thu,244,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,admin.,single,high.school,no,no,no,telephone,may,thu,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,140,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,self-employed,married,university.degree,no,yes,no,telephone,may,thu,217,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,blue-collar,married,illiterate,unknown,no,no,telephone,may,thu,1196,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,admin.,married,professional.course,no,yes,no,telephone,may,thu,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,admin.,married,high.school,no,yes,no,telephone,may,thu,52,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,admin.,married,high.school,no,yes,no,telephone,may,thu,41,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,unemployed,married,high.school,no,yes,no,telephone,may,thu,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+56,admin.,divorced,unknown,unknown,yes,no,telephone,may,thu,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+26,technician,single,professional.course,no,no,no,telephone,may,thu,14,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,blue-collar,single,professional.course,no,yes,no,telephone,may,thu,182,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,technician,married,basic.9y,unknown,yes,no,telephone,may,thu,539,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+41,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,37,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,admin.,married,university.degree,no,yes,no,telephone,may,thu,162,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,413,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,entrepreneur,divorced,unknown,no,no,no,telephone,may,thu,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,services,married,high.school,no,no,no,telephone,may,thu,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,blue-collar,married,unknown,unknown,no,no,telephone,may,thu,361,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,technician,married,basic.9y,no,yes,no,telephone,may,thu,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,thu,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,admin.,married,university.degree,no,yes,no,telephone,may,thu,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,technician,single,high.school,no,no,no,telephone,may,thu,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,admin.,married,high.school,unknown,yes,no,telephone,may,thu,37,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,blue-collar,single,high.school,no,unknown,unknown,telephone,may,thu,230,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,thu,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,services,married,high.school,no,no,no,telephone,may,thu,283,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,technician,married,professional.course,no,no,yes,telephone,may,thu,44,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,self-employed,married,professional.course,no,no,no,telephone,may,thu,205,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,291,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,blue-collar,divorced,basic.9y,no,no,no,telephone,may,thu,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,admin.,married,basic.4y,no,no,no,telephone,may,thu,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+58,technician,married,professional.course,no,yes,no,telephone,may,thu,57,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,entrepreneur,married,basic.9y,unknown,yes,no,telephone,may,thu,733,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+38,services,single,basic.9y,no,yes,no,telephone,may,thu,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,admin.,married,university.degree,no,yes,no,telephone,may,thu,744,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,management,single,basic.9y,no,yes,no,telephone,may,thu,84,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,admin.,married,basic.9y,no,yes,yes,telephone,may,thu,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,admin.,married,university.degree,no,yes,no,telephone,may,thu,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,self-employed,married,basic.4y,unknown,no,no,telephone,may,thu,23,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,thu,578,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,technician,divorced,professional.course,no,yes,no,telephone,may,thu,1093,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+36,technician,married,professional.course,no,yes,no,telephone,may,thu,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,114,9,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,admin.,divorced,high.school,no,yes,no,telephone,may,thu,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,management,married,university.degree,no,yes,no,telephone,may,thu,619,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,technician,married,basic.9y,no,no,no,telephone,may,thu,514,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+51,technician,married,professional.course,unknown,no,no,telephone,may,thu,337,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,services,divorced,high.school,unknown,yes,no,telephone,may,thu,561,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,technician,married,high.school,no,no,no,telephone,may,thu,418,8,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,admin.,divorced,basic.9y,no,yes,no,telephone,may,thu,56,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,unemployed,married,university.degree,unknown,no,no,telephone,may,thu,456,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,admin.,married,university.degree,no,yes,no,telephone,may,thu,413,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+56,retired,divorced,basic.4y,unknown,yes,no,telephone,may,thu,278,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,services,married,high.school,no,no,no,telephone,may,thu,791,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+59,entrepreneur,married,university.degree,unknown,no,no,telephone,may,thu,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,unemployed,married,unknown,unknown,no,no,telephone,may,thu,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,services,married,university.degree,no,unknown,unknown,telephone,may,thu,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+57,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,technician,married,basic.9y,no,yes,no,telephone,may,thu,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,entrepreneur,married,basic.4y,no,yes,no,telephone,may,thu,199,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,unknown,married,unknown,no,no,no,telephone,may,thu,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,admin.,married,high.school,no,yes,no,telephone,may,thu,471,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+25,student,single,high.school,no,unknown,unknown,telephone,may,thu,360,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,management,single,university.degree,no,unknown,unknown,telephone,may,thu,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+56,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,thu,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,admin.,married,high.school,no,no,yes,telephone,may,thu,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,admin.,divorced,high.school,no,no,no,telephone,may,thu,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,services,married,professional.course,no,no,no,telephone,may,thu,103,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,admin.,single,university.degree,unknown,yes,yes,telephone,may,thu,656,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,358,10,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,management,single,basic.4y,no,yes,no,telephone,may,thu,514,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,technician,married,professional.course,no,no,no,telephone,may,thu,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,544,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,346,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,services,married,high.school,no,no,no,telephone,may,thu,134,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,admin.,married,high.school,no,no,no,telephone,may,thu,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,admin.,single,unknown,no,no,no,telephone,may,thu,633,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,technician,married,university.degree,unknown,no,no,telephone,may,thu,48,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,admin.,married,university.degree,no,yes,no,telephone,may,thu,359,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,technician,married,professional.course,unknown,yes,no,telephone,may,thu,105,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,unemployed,married,professional.course,unknown,no,no,telephone,may,thu,746,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+37,technician,single,professional.course,no,no,no,telephone,may,thu,322,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,unknown,married,unknown,unknown,yes,no,telephone,may,thu,56,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,management,single,university.degree,no,unknown,unknown,telephone,may,thu,315,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,thu,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+57,technician,married,basic.4y,unknown,no,no,telephone,may,thu,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,management,married,university.degree,no,yes,no,telephone,may,thu,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,admin.,married,university.degree,no,yes,no,telephone,may,thu,445,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,technician,married,professional.course,no,no,no,telephone,may,thu,356,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,self-employed,married,high.school,unknown,yes,no,telephone,may,thu,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,admin.,married,university.degree,no,yes,no,telephone,may,thu,102,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,management,married,university.degree,no,no,no,telephone,may,thu,187,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,management,married,university.degree,unknown,no,no,telephone,may,thu,329,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,retired,divorced,basic.4y,unknown,yes,no,telephone,may,thu,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,admin.,married,basic.6y,no,yes,no,telephone,may,thu,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,services,divorced,basic.9y,no,yes,no,telephone,may,thu,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,technician,single,professional.course,unknown,no,no,telephone,may,thu,223,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,services,divorced,basic.9y,no,no,no,telephone,may,thu,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,services,married,high.school,unknown,no,yes,telephone,may,thu,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,blue-collar,single,basic.4y,no,yes,no,telephone,may,thu,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,admin.,married,basic.9y,no,yes,no,telephone,may,thu,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,404,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,entrepreneur,married,university.degree,no,yes,no,telephone,may,thu,413,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,admin.,single,high.school,no,yes,no,telephone,may,thu,177,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,self-employed,married,unknown,no,yes,no,telephone,may,thu,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,services,divorced,high.school,no,yes,no,telephone,may,thu,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,609,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,technician,married,professional.course,no,no,no,telephone,may,thu,251,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,unemployed,single,university.degree,no,yes,yes,telephone,may,thu,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,services,married,basic.6y,no,yes,no,telephone,may,thu,473,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,entrepreneur,divorced,basic.9y,no,yes,no,telephone,may,thu,596,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+55,admin.,divorced,university.degree,no,no,no,telephone,may,thu,370,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+24,student,married,university.degree,no,no,no,telephone,may,thu,691,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,services,single,high.school,no,no,no,telephone,may,thu,70,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,entrepreneur,single,basic.6y,no,yes,no,telephone,may,thu,77,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,technician,married,high.school,no,yes,no,telephone,may,thu,212,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,technician,single,professional.course,no,yes,no,telephone,may,thu,245,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,544,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,services,married,high.school,no,no,yes,telephone,may,thu,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,410,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,513,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,management,single,university.degree,no,no,no,telephone,may,thu,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,services,married,high.school,no,yes,no,telephone,may,thu,896,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,technician,divorced,professional.course,unknown,yes,no,telephone,may,thu,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,self-employed,single,university.degree,no,no,no,telephone,may,thu,365,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,admin.,divorced,high.school,no,no,no,telephone,may,thu,1207,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+41,services,married,university.degree,no,no,no,telephone,may,thu,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,technician,married,professional.course,no,yes,no,telephone,may,thu,82,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+57,services,married,high.school,unknown,yes,no,telephone,may,thu,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+56,admin.,divorced,basic.9y,unknown,yes,no,telephone,may,thu,42,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,technician,divorced,high.school,no,yes,no,telephone,may,thu,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+51,self-employed,married,basic.9y,no,yes,no,telephone,may,thu,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,management,married,unknown,no,yes,no,telephone,may,thu,347,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,married,unknown,unknown,no,no,telephone,may,thu,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,services,married,university.degree,no,yes,yes,telephone,may,thu,936,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+56,admin.,married,high.school,no,no,no,telephone,may,thu,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+26,admin.,married,high.school,no,yes,no,telephone,may,thu,344,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,services,divorced,high.school,no,no,no,telephone,may,thu,71,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,services,married,basic.6y,no,yes,no,telephone,may,thu,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,technician,single,university.degree,no,no,no,telephone,may,thu,52,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,self-employed,single,university.degree,no,yes,no,telephone,may,thu,409,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,technician,single,university.degree,no,no,no,telephone,may,thu,272,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,technician,divorced,professional.course,no,no,no,telephone,may,thu,87,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,admin.,single,unknown,unknown,no,no,telephone,may,thu,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,management,married,high.school,unknown,yes,no,telephone,may,thu,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,services,married,high.school,unknown,yes,no,telephone,may,thu,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,441,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,admin.,married,basic.4y,no,no,no,telephone,may,thu,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,single,high.school,no,no,no,telephone,may,thu,164,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,services,married,basic.9y,unknown,no,no,telephone,may,thu,80,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,932,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+26,self-employed,married,university.degree,no,no,no,telephone,may,thu,13,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,services,married,high.school,no,no,no,telephone,may,thu,139,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,management,married,high.school,unknown,no,no,telephone,may,thu,879,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,admin.,married,high.school,no,no,no,telephone,may,thu,263,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,blue-collar,married,high.school,unknown,yes,no,telephone,may,thu,64,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,440,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,unemployed,married,university.degree,unknown,no,no,telephone,may,thu,76,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,admin.,married,high.school,no,yes,no,telephone,may,thu,26,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,technician,married,professional.course,no,no,no,telephone,may,thu,455,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,unemployed,divorced,basic.9y,no,yes,no,telephone,may,thu,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,management,married,university.degree,no,no,no,telephone,may,thu,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,535,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+46,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,thu,313,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+58,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,services,married,high.school,unknown,no,no,telephone,may,thu,473,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,self-employed,divorced,university.degree,no,yes,yes,telephone,may,thu,1026,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,admin.,single,university.degree,no,no,yes,telephone,may,thu,364,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,technician,married,basic.4y,no,yes,no,telephone,may,thu,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,services,divorced,professional.course,unknown,yes,no,telephone,may,thu,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,unemployed,divorced,professional.course,no,yes,no,telephone,may,thu,617,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,admin.,married,university.degree,no,no,no,telephone,may,thu,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,services,divorced,basic.4y,unknown,yes,yes,telephone,may,thu,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,admin.,married,university.degree,no,no,no,telephone,may,thu,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,277,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,entrepreneur,married,basic.9y,no,no,no,telephone,may,thu,200,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+51,admin.,married,high.school,no,yes,no,telephone,may,thu,431,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,technician,married,professional.course,no,no,no,telephone,may,thu,417,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,480,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,blue-collar,single,basic.4y,unknown,yes,yes,telephone,may,thu,331,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,services,married,high.school,no,no,no,telephone,may,thu,359,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,technician,single,basic.6y,no,unknown,unknown,telephone,may,thu,332,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,technician,married,university.degree,unknown,no,no,telephone,may,thu,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,admin.,married,university.degree,no,yes,yes,telephone,may,thu,535,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,entrepreneur,married,university.degree,unknown,no,no,telephone,may,thu,147,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,13,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,services,single,high.school,no,no,no,telephone,may,thu,689,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+56,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,242,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,housemaid,married,university.degree,no,no,no,telephone,may,thu,665,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+47,services,divorced,high.school,no,yes,no,telephone,may,thu,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,services,married,high.school,unknown,yes,no,telephone,may,thu,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,admin.,married,basic.9y,no,no,no,telephone,may,thu,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,services,married,high.school,unknown,no,no,telephone,may,thu,376,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,housemaid,married,high.school,no,no,no,telephone,may,thu,480,10,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+60,admin.,single,high.school,no,yes,no,telephone,may,thu,609,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,self-employed,married,university.degree,no,no,no,telephone,may,thu,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,management,married,professional.course,unknown,no,no,telephone,may,thu,484,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,retired,married,basic.9y,no,yes,no,telephone,may,thu,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,admin.,married,basic.9y,no,no,no,telephone,may,thu,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,726,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+51,services,single,high.school,unknown,yes,no,telephone,may,thu,148,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,admin.,single,high.school,no,yes,no,telephone,may,thu,1047,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+38,blue-collar,divorced,unknown,no,no,no,telephone,may,thu,362,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,admin.,married,university.degree,no,yes,no,telephone,may,thu,1059,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+37,technician,single,high.school,unknown,yes,no,telephone,may,thu,54,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,admin.,married,university.degree,no,no,yes,telephone,may,thu,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,entrepreneur,married,university.degree,unknown,yes,yes,telephone,may,thu,253,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,services,married,unknown,no,no,no,telephone,may,thu,114,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,services,divorced,basic.9y,no,yes,yes,telephone,may,thu,293,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,blue-collar,married,unknown,unknown,no,no,telephone,may,thu,246,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,self-employed,married,basic.6y,no,yes,yes,telephone,may,thu,195,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,unknown,unknown,university.degree,no,yes,yes,telephone,may,thu,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+55,technician,married,professional.course,no,yes,no,telephone,may,thu,166,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,technician,single,university.degree,unknown,no,yes,telephone,may,thu,385,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,entrepreneur,married,basic.9y,no,no,no,telephone,may,thu,85,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,173,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,technician,divorced,basic.9y,no,no,yes,telephone,may,thu,48,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+51,management,married,university.degree,no,yes,no,telephone,may,thu,410,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,management,married,university.degree,unknown,yes,no,telephone,may,thu,311,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,40,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+57,management,divorced,university.degree,no,yes,no,telephone,may,thu,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,blue-collar,married,university.degree,no,no,no,telephone,may,thu,558,13,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,technician,married,university.degree,unknown,no,no,telephone,may,thu,109,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,retired,divorced,basic.4y,no,yes,no,telephone,may,thu,77,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+24,services,single,high.school,no,yes,no,telephone,may,thu,70,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,self-employed,divorced,university.degree,no,yes,no,telephone,may,thu,229,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,housemaid,married,professional.course,no,no,no,telephone,may,thu,565,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,blue-collar,divorced,unknown,unknown,no,yes,telephone,may,thu,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,admin.,single,university.degree,no,no,no,telephone,may,thu,792,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+31,admin.,married,high.school,unknown,yes,no,telephone,may,thu,199,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,management,married,university.degree,unknown,yes,no,telephone,may,thu,488,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+51,services,married,basic.6y,no,yes,no,telephone,may,thu,176,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,housemaid,divorced,basic.4y,unknown,yes,yes,telephone,may,thu,123,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+51,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,thu,88,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,technician,married,professional.course,unknown,yes,no,telephone,may,thu,768,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,blue-collar,single,professional.course,no,yes,no,telephone,may,thu,105,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,101,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,retired,married,basic.4y,no,no,no,telephone,may,thu,225,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,admin.,single,unknown,unknown,yes,no,telephone,may,thu,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,may,thu,52,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,self-employed,single,university.degree,unknown,yes,no,telephone,may,thu,150,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,technician,married,university.degree,unknown,yes,no,telephone,may,thu,399,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,58,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,admin.,married,high.school,no,no,no,telephone,may,thu,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,technician,single,university.degree,no,yes,no,telephone,may,thu,199,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,unknown,married,basic.9y,no,no,no,telephone,may,thu,241,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,399,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,management,married,basic.4y,no,yes,no,telephone,may,thu,637,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,self-employed,married,basic.4y,no,no,no,telephone,may,thu,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,admin.,single,university.degree,no,yes,no,telephone,may,thu,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,admin.,single,university.degree,unknown,yes,no,telephone,may,thu,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+55,housemaid,single,basic.9y,no,no,no,telephone,may,thu,553,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+27,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,310,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,admin.,single,university.degree,no,yes,no,telephone,may,thu,206,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,admin.,married,high.school,no,yes,no,telephone,may,thu,764,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,admin.,married,basic.6y,unknown,no,yes,telephone,may,thu,29,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,services,married,basic.4y,no,no,no,telephone,may,thu,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+25,admin.,married,university.degree,no,yes,no,telephone,may,thu,251,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,self-employed,married,university.degree,no,no,yes,telephone,may,thu,188,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,unemployed,married,professional.course,no,no,no,telephone,may,thu,368,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,technician,married,professional.course,no,no,no,telephone,may,thu,414,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,128,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,services,single,high.school,no,yes,no,telephone,may,thu,685,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,self-employed,single,university.degree,unknown,yes,no,telephone,may,thu,512,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,services,single,high.school,unknown,yes,no,telephone,may,thu,102,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,admin.,married,basic.9y,no,yes,no,telephone,may,thu,1611,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,technician,single,university.degree,unknown,yes,no,telephone,may,thu,44,15,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,203,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,74,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,self-employed,married,university.degree,no,no,no,telephone,may,thu,118,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,blue-collar,single,unknown,no,no,no,telephone,may,thu,725,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,100,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+56,technician,married,professional.course,unknown,yes,no,telephone,may,thu,124,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,admin.,married,basic.9y,no,no,no,telephone,may,thu,752,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+25,self-employed,single,university.degree,no,no,no,telephone,may,thu,241,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,services,single,high.school,no,yes,no,telephone,may,thu,430,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,thu,219,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,self-employed,single,university.degree,no,yes,no,telephone,may,thu,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,technician,single,professional.course,no,yes,no,telephone,may,thu,294,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+44,blue-collar,divorced,basic.6y,unknown,yes,no,telephone,may,thu,318,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,student,single,basic.4y,unknown,yes,no,telephone,may,thu,1185,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,admin.,single,basic.9y,no,no,yes,telephone,may,thu,110,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,services,married,high.school,no,yes,no,telephone,may,thu,58,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,386,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,unemployed,married,high.school,unknown,no,no,telephone,may,thu,218,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,technician,married,high.school,no,no,no,telephone,may,thu,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+43,technician,married,university.degree,unknown,no,no,telephone,may,thu,84,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+25,services,single,high.school,no,no,no,telephone,may,thu,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,services,married,high.school,unknown,no,no,telephone,may,thu,113,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,744,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,admin.,married,high.school,no,yes,no,telephone,may,thu,76,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,entrepreneur,married,professional.course,unknown,yes,no,telephone,may,thu,187,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+57,self-employed,single,high.school,unknown,no,no,telephone,may,thu,587,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,technician,married,university.degree,no,yes,no,telephone,may,thu,336,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,management,married,university.degree,no,yes,no,telephone,may,thu,59,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,admin.,married,university.degree,no,yes,no,telephone,may,thu,72,12,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,technician,married,professional.course,no,no,no,telephone,may,thu,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,admin.,married,unknown,unknown,yes,no,telephone,may,thu,352,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,technician,married,high.school,no,yes,no,telephone,may,thu,347,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,286,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,668,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,admin.,married,university.degree,no,yes,yes,telephone,may,thu,29,9,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,211,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+25,services,single,unknown,no,yes,yes,telephone,may,thu,175,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,55,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+58,housemaid,married,basic.4y,unknown,no,no,telephone,may,thu,324,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,admin.,married,high.school,no,yes,no,telephone,may,thu,228,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,blue-collar,single,university.degree,no,yes,no,telephone,may,thu,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+27,student,single,high.school,unknown,yes,no,telephone,may,thu,38,9,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,technician,married,university.degree,no,no,no,telephone,may,thu,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,18,16,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,admin.,divorced,university.degree,no,yes,no,telephone,may,thu,147,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,admin.,single,university.degree,no,yes,no,telephone,may,thu,900,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+53,management,married,university.degree,unknown,unknown,unknown,telephone,may,thu,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,admin.,married,university.degree,no,yes,no,telephone,may,thu,56,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,39,22,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,144,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+51,unemployed,married,basic.4y,unknown,yes,no,telephone,may,thu,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,286,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,384,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,183,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,technician,married,university.degree,no,yes,no,telephone,may,thu,240,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,admin.,married,university.degree,no,yes,yes,telephone,may,thu,238,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,225,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+33,services,single,high.school,no,no,no,telephone,may,thu,194,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,admin.,married,university.degree,no,no,no,telephone,may,thu,273,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,431,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+55,retired,married,university.degree,unknown,yes,no,telephone,may,thu,720,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+42,admin.,single,university.degree,unknown,yes,no,telephone,may,thu,814,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+48,services,married,high.school,no,yes,no,telephone,may,thu,859,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,services,married,high.school,unknown,yes,yes,telephone,may,thu,184,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+56,management,divorced,basic.9y,unknown,yes,no,telephone,may,thu,313,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,technician,married,professional.course,unknown,no,no,telephone,may,thu,142,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+40,technician,married,basic.9y,unknown,no,yes,telephone,may,thu,171,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,technician,single,university.degree,no,yes,yes,telephone,may,thu,245,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+38,blue-collar,single,basic.6y,no,no,no,telephone,may,thu,238,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,blue-collar,married,professional.course,no,no,no,telephone,may,thu,53,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,management,married,basic.6y,no,yes,no,telephone,may,thu,364,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,admin.,married,basic.9y,unknown,no,yes,telephone,may,thu,191,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+46,self-employed,married,basic.4y,unknown,no,no,telephone,may,thu,35,24,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,blue-collar,married,university.degree,no,no,yes,telephone,may,thu,106,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+29,services,single,basic.4y,no,yes,no,telephone,may,thu,382,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+51,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,191,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+41,entrepreneur,married,basic.9y,no,yes,no,telephone,may,thu,483,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,253,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,admin.,divorced,university.degree,no,yes,yes,telephone,may,thu,328,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,admin.,married,university.degree,unknown,no,yes,telephone,may,thu,82,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+54,technician,divorced,university.degree,no,no,yes,telephone,may,thu,155,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,admin.,divorced,high.school,no,yes,no,telephone,may,thu,233,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+31,self-employed,married,university.degree,no,no,yes,telephone,may,thu,66,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,technician,single,university.degree,unknown,yes,no,telephone,may,thu,1109,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+58,retired,married,basic.9y,unknown,yes,no,telephone,may,thu,828,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes
+55,admin.,married,high.school,no,no,yes,telephone,may,thu,134,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,blue-collar,single,basic.9y,unknown,no,no,telephone,may,thu,96,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+55,technician,married,university.degree,no,yes,no,telephone,may,thu,197,9,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,blue-collar,married,basic.9y,no,yes,yes,telephone,may,thu,645,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+39,blue-collar,married,basic.4y,no,yes,yes,telephone,may,thu,81,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+27,services,single,professional.course,no,no,no,telephone,may,thu,201,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,248,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,services,married,high.school,unknown,no,no,telephone,may,thu,2260,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+52,retired,married,basic.9y,unknown,no,no,telephone,may,thu,91,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+51,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,thu,660,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+49,technician,married,basic.9y,no,yes,no,telephone,may,thu,182,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,management,married,basic.9y,no,no,no,telephone,may,thu,30,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,retired,married,basic.4y,no,no,no,telephone,may,thu,101,23,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+53,housemaid,single,basic.4y,unknown,no,no,telephone,may,thu,54,15,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,management,married,basic.4y,unknown,yes,no,telephone,may,thu,374,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+55,technician,divorced,university.degree,unknown,no,no,telephone,may,thu,216,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,76,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,services,married,high.school,unknown,yes,yes,telephone,may,thu,73,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,unknown,married,unknown,no,no,yes,telephone,may,thu,62,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+50,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,services,married,high.school,no,no,no,telephone,may,thu,86,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+28,services,single,high.school,no,no,no,telephone,may,thu,95,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+36,entrepreneur,married,university.degree,no,yes,no,telephone,may,thu,23,15,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+37,housemaid,married,university.degree,unknown,yes,no,telephone,may,thu,25,11,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,services,single,high.school,no,yes,yes,telephone,may,thu,151,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+26,technician,single,professional.course,no,no,no,telephone,may,thu,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,services,married,high.school,no,yes,no,telephone,may,thu,52,8,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+32,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,52,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,admin.,single,university.degree,no,yes,yes,telephone,may,thu,421,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+45,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,322,11,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+30,services,single,high.school,no,yes,no,telephone,may,thu,52,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+27,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,340,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+48,admin.,divorced,high.school,no,yes,no,telephone,may,thu,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+59,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,763,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no
+35,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,288,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,blue-collar,single,university.degree,no,yes,yes,telephone,may,fri,231,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,120,17,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,blue-collar,married,high.school,unknown,yes,no,telephone,may,fri,203,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+39,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,67,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+42,blue-collar,married,unknown,unknown,unknown,unknown,telephone,may,fri,311,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+57,technician,married,university.degree,no,no,no,telephone,may,fri,50,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+42,housemaid,single,basic.4y,no,yes,no,telephone,may,fri,86,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+25,blue-collar,single,high.school,no,yes,no,telephone,may,fri,139,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+54,self-employed,married,professional.course,unknown,no,no,telephone,may,fri,235,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+46,management,married,basic.9y,no,no,no,telephone,may,fri,43,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,entrepreneur,married,basic.4y,no,yes,no,telephone,may,fri,233,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+44,blue-collar,married,high.school,no,yes,no,telephone,may,fri,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+42,services,married,professional.course,no,no,no,telephone,may,fri,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+42,services,married,professional.course,no,yes,no,telephone,may,fri,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+58,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,fri,422,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,management,single,high.school,no,yes,no,telephone,may,fri,324,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+48,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,287,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,blue-collar,single,basic.9y,no,yes,yes,telephone,may,fri,58,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+58,services,married,basic.4y,no,no,no,telephone,may,fri,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+42,admin.,single,basic.9y,unknown,no,no,telephone,may,fri,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+52,self-employed,married,university.degree,no,no,no,telephone,may,fri,151,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+31,technician,single,university.degree,no,yes,no,telephone,may,fri,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+39,admin.,single,university.degree,unknown,no,no,telephone,may,fri,31,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,118,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+28,services,married,high.school,no,yes,no,telephone,may,fri,133,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+32,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,technician,single,university.degree,no,no,no,telephone,may,fri,62,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,blue-collar,single,basic.9y,unknown,no,no,telephone,may,fri,45,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+51,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,91,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,admin.,married,high.school,no,no,no,telephone,may,fri,172,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+40,admin.,married,high.school,no,yes,yes,telephone,may,fri,498,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+47,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,85,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,admin.,married,university.degree,no,yes,no,telephone,may,fri,224,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,housemaid,divorced,high.school,no,no,no,telephone,may,fri,553,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+30,admin.,married,university.degree,no,yes,no,telephone,may,fri,242,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,blue-collar,divorced,basic.9y,no,no,yes,telephone,may,fri,192,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+45,technician,married,professional.course,unknown,no,no,telephone,may,fri,207,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+52,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,711,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+26,admin.,single,high.school,no,yes,no,telephone,may,fri,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,admin.,single,university.degree,no,no,no,telephone,may,fri,147,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+42,admin.,single,university.degree,no,yes,no,telephone,may,fri,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,admin.,married,high.school,no,no,no,telephone,may,fri,199,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,blue-collar,unknown,basic.6y,unknown,no,yes,telephone,may,fri,34,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,65,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,57,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,admin.,single,university.degree,no,no,no,telephone,may,fri,234,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+28,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,521,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,admin.,married,university.degree,no,yes,no,telephone,may,fri,555,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+39,admin.,married,university.degree,no,yes,no,telephone,may,fri,86,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+26,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,204,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,housemaid,married,high.school,no,no,no,telephone,may,fri,222,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,admin.,single,high.school,no,no,no,telephone,may,fri,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,self-employed,married,basic.6y,no,no,no,telephone,may,fri,648,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,services,married,high.school,no,no,yes,telephone,may,fri,659,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+27,student,single,university.degree,unknown,no,no,telephone,may,fri,867,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,admin.,single,high.school,no,no,yes,telephone,may,fri,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+25,admin.,married,university.degree,no,no,no,telephone,may,fri,56,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,unemployed,married,unknown,no,yes,no,telephone,may,fri,54,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+50,admin.,married,university.degree,no,yes,no,telephone,may,fri,152,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+25,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,25,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+26,admin.,married,high.school,unknown,no,no,telephone,may,fri,120,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,self-employed,divorced,university.degree,no,yes,no,telephone,may,fri,491,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+49,entrepreneur,married,university.degree,unknown,no,no,telephone,may,fri,379,17,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,343,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+32,unemployed,single,high.school,unknown,yes,yes,telephone,may,fri,289,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+50,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,574,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+51,services,married,high.school,unknown,yes,no,telephone,may,fri,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+55,unknown,married,unknown,unknown,no,no,telephone,may,fri,319,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+49,services,married,high.school,no,yes,yes,telephone,may,fri,108,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+40,services,married,high.school,no,no,yes,telephone,may,fri,762,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+52,blue-collar,single,unknown,unknown,no,no,telephone,may,fri,80,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+55,unknown,married,unknown,unknown,yes,no,telephone,may,fri,449,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,admin.,single,university.degree,no,yes,no,telephone,may,fri,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+52,self-employed,married,university.degree,no,yes,no,telephone,may,fri,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,services,married,high.school,no,yes,no,telephone,may,fri,69,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+44,admin.,divorced,university.degree,unknown,yes,no,telephone,may,fri,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+48,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,290,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+26,technician,married,basic.6y,no,yes,no,telephone,may,fri,138,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+28,services,married,unknown,no,no,yes,telephone,may,fri,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+31,entrepreneur,married,basic.9y,unknown,yes,no,telephone,may,fri,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+58,housemaid,married,basic.4y,unknown,yes,no,telephone,may,fri,652,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,self-employed,married,basic.9y,no,no,no,telephone,may,fri,327,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,housemaid,married,basic.4y,unknown,no,no,telephone,may,fri,246,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,technician,single,university.degree,no,yes,no,telephone,may,fri,295,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,technician,single,university.degree,no,no,no,telephone,may,fri,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,services,single,high.school,no,yes,no,telephone,may,fri,523,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,blue-collar,single,basic.4y,unknown,no,no,telephone,may,fri,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,services,married,high.school,no,no,no,telephone,may,fri,103,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,services,married,high.school,unknown,no,no,telephone,may,fri,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,technician,married,professional.course,unknown,unknown,unknown,telephone,may,fri,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,blue-collar,married,high.school,no,yes,no,telephone,may,fri,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,admin.,married,university.degree,no,no,no,telephone,may,fri,864,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+25,technician,single,professional.course,no,yes,no,telephone,may,fri,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,admin.,divorced,high.school,no,no,no,telephone,may,fri,556,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+25,student,single,high.school,no,no,no,telephone,may,fri,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+26,technician,married,professional.course,no,no,no,telephone,may,fri,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,admin.,married,university.degree,no,no,no,telephone,may,fri,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+44,management,divorced,basic.9y,unknown,no,no,telephone,may,fri,70,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+39,technician,married,professional.course,no,yes,no,telephone,may,fri,435,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+49,admin.,divorced,high.school,no,no,no,telephone,may,fri,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,admin.,married,high.school,no,no,no,telephone,may,fri,312,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,admin.,married,high.school,no,no,no,telephone,may,fri,283,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,admin.,married,university.degree,no,yes,yes,telephone,may,fri,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,blue-collar,single,unknown,unknown,no,no,telephone,may,fri,379,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,management,married,basic.9y,unknown,no,no,telephone,may,fri,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,management,single,unknown,no,no,no,telephone,may,fri,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,housemaid,married,basic.4y,no,no,no,telephone,may,fri,91,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+45,blue-collar,divorced,basic.9y,no,unknown,unknown,telephone,may,fri,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+40,technician,married,university.degree,no,no,no,telephone,may,fri,417,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,fri,618,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+39,technician,married,university.degree,unknown,yes,no,telephone,may,fri,407,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+32,technician,single,university.degree,no,yes,no,telephone,may,fri,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+45,blue-collar,divorced,basic.9y,no,no,no,telephone,may,fri,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+29,technician,married,professional.course,no,no,no,telephone,may,fri,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,housemaid,married,high.school,no,yes,yes,telephone,may,fri,135,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,461,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+25,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,763,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+27,admin.,single,high.school,unknown,no,no,telephone,may,fri,682,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+40,admin.,married,high.school,no,no,no,telephone,may,fri,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+46,housemaid,married,basic.4y,no,no,no,telephone,may,fri,68,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,services,single,professional.course,no,yes,no,telephone,may,fri,120,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+52,blue-collar,single,unknown,unknown,no,no,telephone,may,fri,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,admin.,married,high.school,no,no,no,telephone,may,fri,381,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+32,blue-collar,married,professional.course,no,no,no,telephone,may,fri,278,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,fri,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+26,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+56,technician,married,basic.4y,unknown,no,no,telephone,may,fri,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,197,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,38,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+40,management,divorced,university.degree,unknown,yes,yes,telephone,may,fri,201,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,176,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+26,admin.,married,high.school,no,yes,no,telephone,may,fri,61,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+42,unemployed,divorced,high.school,no,no,no,telephone,may,fri,275,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+32,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,201,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,admin.,married,university.degree,no,no,no,telephone,may,fri,724,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+42,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,143,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,admin.,married,university.degree,no,no,no,telephone,may,fri,197,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+26,admin.,single,high.school,no,no,yes,telephone,may,fri,143,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,153,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+39,technician,married,professional.course,no,no,no,telephone,may,fri,197,12,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+26,services,single,unknown,no,yes,no,telephone,may,fri,536,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+48,blue-collar,married,professional.course,no,no,no,telephone,may,fri,120,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+47,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,604,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+41,admin.,married,university.degree,no,no,no,telephone,may,fri,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,blue-collar,single,basic.9y,unknown,no,no,telephone,may,fri,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+60,admin.,married,high.school,no,yes,no,telephone,may,fri,118,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+24,technician,single,professional.course,unknown,yes,yes,telephone,may,fri,447,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+52,services,married,high.school,unknown,unknown,unknown,telephone,may,fri,854,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+44,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,services,married,high.school,no,yes,yes,telephone,may,fri,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+50,technician,married,professional.course,no,yes,no,telephone,may,fri,855,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+30,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,services,married,high.school,no,no,no,telephone,may,fri,274,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,blue-collar,married,unknown,no,no,no,telephone,may,fri,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+27,services,single,high.school,no,no,no,telephone,may,fri,156,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+53,technician,married,professional.course,unknown,yes,no,telephone,may,fri,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+53,technician,married,professional.course,unknown,yes,no,telephone,may,fri,264,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+57,services,divorced,high.school,no,no,no,telephone,may,fri,251,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+31,services,married,high.school,no,no,no,telephone,may,fri,1269,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+25,admin.,single,unknown,no,no,no,telephone,may,fri,48,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+44,technician,married,professional.course,unknown,no,no,telephone,may,fri,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+47,admin.,single,university.degree,no,no,no,telephone,may,fri,104,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+28,technician,single,professional.course,no,yes,no,telephone,may,fri,65,13,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+44,technician,married,high.school,no,no,no,telephone,may,fri,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+46,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,fri,157,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,fri,565,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+29,admin.,married,university.degree,no,no,no,telephone,may,fri,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+46,unemployed,divorced,basic.9y,no,no,no,telephone,may,fri,314,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,admin.,divorced,high.school,no,yes,no,telephone,may,fri,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+25,admin.,single,unknown,no,no,no,telephone,may,fri,60,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+24,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,385,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,admin.,married,unknown,no,yes,no,telephone,may,fri,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,admin.,married,high.school,no,no,no,telephone,may,fri,868,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+60,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,technician,married,professional.course,no,no,no,telephone,may,fri,448,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,admin.,married,unknown,no,unknown,unknown,telephone,may,fri,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+47,admin.,married,university.degree,unknown,yes,no,telephone,may,fri,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+45,unknown,married,unknown,no,no,no,telephone,may,fri,633,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+55,technician,married,university.degree,no,no,no,telephone,may,fri,58,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,admin.,divorced,high.school,unknown,no,no,telephone,may,fri,99,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+46,technician,married,university.degree,no,yes,no,telephone,may,fri,170,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+39,admin.,married,university.degree,no,no,no,telephone,may,fri,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,blue-collar,married,unknown,unknown,yes,yes,telephone,may,fri,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+46,management,married,basic.9y,no,no,no,telephone,may,fri,134,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,admin.,married,university.degree,no,no,no,telephone,may,fri,129,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+28,technician,single,high.school,no,no,no,telephone,may,fri,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+53,self-employed,married,university.degree,no,no,no,telephone,may,fri,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+54,services,married,unknown,no,no,no,telephone,may,fri,270,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+28,services,single,high.school,no,no,no,telephone,may,fri,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,technician,married,high.school,no,yes,no,telephone,may,fri,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,unemployed,married,basic.9y,no,no,no,telephone,may,fri,363,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,blue-collar,married,unknown,no,yes,no,telephone,may,fri,63,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+59,entrepreneur,divorced,high.school,no,no,no,telephone,may,fri,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,blue-collar,single,basic.6y,no,yes,no,telephone,may,fri,56,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,226,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+49,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,fri,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,298,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+47,self-employed,married,unknown,unknown,yes,no,telephone,may,fri,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+32,admin.,single,university.degree,no,no,no,telephone,may,fri,47,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+49,self-employed,single,basic.9y,no,yes,yes,telephone,may,fri,827,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,admin.,married,university.degree,no,no,no,telephone,may,fri,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,admin.,single,university.degree,no,no,yes,telephone,may,fri,570,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,admin.,married,professional.course,unknown,yes,no,telephone,may,fri,72,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+23,services,single,high.school,no,no,no,telephone,may,fri,557,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+26,technician,married,professional.course,no,no,no,telephone,may,fri,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+54,admin.,married,basic.4y,unknown,unknown,unknown,telephone,may,fri,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+46,admin.,married,university.degree,unknown,no,no,telephone,may,fri,38,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+31,admin.,married,high.school,no,no,no,telephone,may,fri,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,admin.,married,high.school,no,yes,no,telephone,may,fri,422,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+53,admin.,single,university.degree,unknown,unknown,unknown,telephone,may,fri,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+54,housemaid,divorced,basic.4y,unknown,yes,no,telephone,may,fri,141,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+31,services,single,high.school,no,no,no,telephone,may,fri,76,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,691,10,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+30,admin.,married,university.degree,no,yes,no,telephone,may,fri,238,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,1097,15,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+33,services,single,high.school,no,yes,no,telephone,may,fri,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,admin.,married,high.school,no,no,yes,telephone,may,fri,84,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,admin.,married,university.degree,no,no,no,telephone,may,fri,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,admin.,married,university.degree,no,yes,no,telephone,may,fri,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+39,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,1500,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+30,services,married,high.school,no,yes,no,telephone,may,fri,265,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+55,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,567,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+28,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,254,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+59,technician,married,unknown,no,no,no,telephone,may,fri,464,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,blue-collar,married,high.school,no,no,no,telephone,may,fri,1236,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+33,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,33,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,technician,single,professional.course,unknown,yes,no,telephone,may,fri,613,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+25,blue-collar,single,high.school,no,no,no,telephone,may,fri,1212,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+32,admin.,single,university.degree,unknown,no,no,telephone,may,fri,96,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+48,self-employed,married,high.school,unknown,yes,no,telephone,may,fri,171,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,technician,married,professional.course,unknown,yes,no,telephone,may,fri,53,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,blue-collar,single,basic.9y,unknown,no,no,telephone,may,fri,91,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+42,technician,married,professional.course,unknown,yes,no,telephone,may,fri,185,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,technician,divorced,professional.course,no,yes,no,telephone,may,fri,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,technician,single,university.degree,unknown,no,yes,telephone,may,fri,169,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+46,admin.,married,high.school,no,no,no,telephone,may,fri,515,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+44,technician,married,professional.course,unknown,yes,no,telephone,may,fri,388,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+53,housemaid,divorced,basic.4y,no,yes,no,telephone,may,fri,422,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+29,services,married,high.school,no,no,no,telephone,may,fri,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+29,technician,married,professional.course,no,no,no,telephone,may,fri,886,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+51,retired,divorced,basic.9y,no,no,no,telephone,may,fri,296,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,technician,unknown,professional.course,unknown,yes,no,telephone,may,fri,378,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,technician,single,professional.course,no,unknown,unknown,telephone,may,fri,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,services,married,basic.4y,no,no,no,telephone,may,fri,58,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,admin.,married,university.degree,no,no,no,telephone,may,fri,60,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+56,blue-collar,married,professional.course,no,unknown,unknown,telephone,may,fri,340,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,522,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+39,management,married,basic.9y,no,yes,no,telephone,may,fri,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+25,admin.,single,high.school,no,no,no,telephone,may,fri,113,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+26,services,single,high.school,no,yes,no,telephone,may,fri,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,306,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+40,admin.,married,professional.course,no,no,yes,telephone,may,fri,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+32,technician,married,professional.course,no,yes,no,telephone,may,fri,322,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+59,retired,single,high.school,no,no,no,telephone,may,fri,475,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,admin.,divorced,high.school,no,yes,no,telephone,may,fri,224,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,88,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+48,entrepreneur,married,unknown,unknown,no,no,telephone,may,fri,509,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+49,blue-collar,divorced,high.school,no,no,no,telephone,may,fri,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+47,unknown,married,unknown,unknown,no,no,telephone,may,fri,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,management,married,university.degree,no,yes,no,telephone,may,fri,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+39,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,113,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+31,admin.,married,basic.9y,no,yes,no,telephone,may,fri,465,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+31,admin.,married,university.degree,no,no,no,telephone,may,fri,294,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+48,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,224,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,services,married,high.school,unknown,yes,no,telephone,may,fri,58,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+29,services,married,unknown,no,yes,no,telephone,may,fri,137,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+49,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,142,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+31,blue-collar,single,basic.9y,unknown,no,no,telephone,may,fri,312,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+48,admin.,married,professional.course,unknown,yes,no,telephone,may,fri,34,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,services,divorced,basic.6y,no,no,no,telephone,may,fri,825,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+46,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,116,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,self-employed,married,basic.9y,no,yes,no,telephone,may,fri,103,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,management,married,unknown,no,no,no,telephone,may,fri,38,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+53,admin.,married,basic.9y,unknown,yes,no,telephone,may,fri,168,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,31,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,management,married,university.degree,no,no,no,telephone,may,fri,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,512,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,technician,single,university.degree,no,unknown,unknown,telephone,may,fri,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+49,entrepreneur,married,university.degree,unknown,yes,yes,telephone,may,fri,65,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,admin.,married,high.school,no,no,no,telephone,may,fri,80,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+49,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,1980,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+36,services,married,high.school,unknown,no,no,telephone,may,fri,358,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+54,management,married,basic.9y,no,yes,no,telephone,may,fri,398,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+29,blue-collar,married,high.school,no,yes,yes,telephone,may,fri,62,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,technician,married,professional.course,no,no,no,telephone,may,fri,265,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+52,self-employed,married,university.degree,unknown,no,no,telephone,may,fri,618,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+31,management,single,professional.course,no,yes,no,telephone,may,fri,256,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+48,technician,single,unknown,no,yes,no,telephone,may,fri,722,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+39,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,199,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,services,married,high.school,no,no,no,telephone,may,fri,510,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,admin.,single,university.degree,no,yes,no,telephone,may,fri,355,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+47,technician,married,basic.9y,no,no,no,telephone,may,fri,150,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+39,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,159,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+29,management,single,university.degree,no,no,no,telephone,may,fri,170,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,housemaid,divorced,basic.6y,no,no,no,telephone,may,fri,243,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+52,self-employed,single,university.degree,unknown,yes,yes,telephone,may,fri,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+29,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,267,14,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,blue-collar,married,unknown,unknown,yes,no,telephone,may,fri,219,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+54,blue-collar,married,unknown,unknown,no,no,telephone,may,fri,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,technician,unknown,professional.course,unknown,no,no,telephone,may,fri,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+47,admin.,married,university.degree,unknown,no,no,telephone,may,fri,216,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+59,blue-collar,divorced,basic.4y,no,no,no,telephone,may,fri,167,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,technician,divorced,professional.course,no,yes,yes,telephone,may,fri,78,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,222,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,technician,single,professional.course,no,no,no,telephone,may,fri,363,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+44,services,married,basic.9y,no,yes,no,telephone,may,fri,109,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+32,services,single,high.school,no,no,no,telephone,may,fri,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+55,technician,married,university.degree,no,no,no,telephone,may,fri,41,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+47,technician,divorced,high.school,no,no,no,telephone,may,fri,156,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+32,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,108,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+27,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,408,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,blue-collar,married,high.school,no,yes,yes,telephone,may,fri,272,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+59,technician,married,basic.9y,no,no,no,telephone,may,fri,135,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,technician,married,basic.6y,no,no,no,telephone,may,fri,107,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,self-employed,single,basic.4y,no,yes,no,telephone,may,fri,742,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,fri,376,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+56,admin.,married,high.school,no,yes,no,telephone,may,fri,138,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,blue-collar,single,basic.9y,unknown,no,no,telephone,may,fri,16,18,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+42,services,married,high.school,no,no,no,telephone,may,fri,984,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+44,technician,married,high.school,no,yes,no,telephone,may,fri,363,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,management,married,university.degree,no,yes,no,telephone,may,fri,339,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+29,housemaid,married,high.school,no,no,no,telephone,may,fri,161,12,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+40,admin.,single,university.degree,no,yes,no,telephone,may,fri,28,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+49,management,divorced,university.degree,no,no,no,telephone,may,fri,170,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,admin.,single,high.school,no,yes,no,telephone,may,fri,66,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,housemaid,married,university.degree,unknown,no,no,telephone,may,fri,199,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+27,services,single,high.school,no,yes,no,telephone,may,fri,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+45,services,divorced,high.school,no,no,no,telephone,may,fri,136,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,housemaid,single,university.degree,no,no,no,telephone,may,fri,62,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,technician,single,university.degree,no,no,no,telephone,may,fri,58,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+45,unknown,single,basic.4y,no,yes,no,telephone,may,fri,189,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,self-employed,married,basic.9y,no,yes,yes,telephone,may,fri,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,319,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+47,admin.,married,high.school,no,yes,no,telephone,may,fri,352,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+27,technician,single,professional.course,no,no,no,telephone,may,fri,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+22,blue-collar,single,basic.6y,unknown,no,no,telephone,may,fri,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,42,11,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+54,technician,married,professional.course,no,no,no,telephone,may,fri,171,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+51,admin.,married,university.degree,unknown,yes,no,telephone,may,fri,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+50,admin.,married,basic.6y,no,no,no,telephone,may,fri,66,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+44,admin.,married,high.school,no,no,no,telephone,may,fri,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+52,entrepreneur,married,basic.9y,no,yes,yes,telephone,may,fri,390,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,management,single,university.degree,no,no,no,telephone,may,fri,101,16,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+51,admin.,married,professional.course,no,yes,no,telephone,may,fri,78,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,admin.,single,high.school,no,yes,no,telephone,may,fri,100,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,self-employed,divorced,basic.4y,no,no,no,telephone,may,fri,212,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+42,blue-collar,divorced,basic.4y,no,no,no,telephone,may,fri,181,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,blue-collar,single,basic.6y,no,yes,no,telephone,may,fri,72,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+23,admin.,married,high.school,no,yes,no,telephone,may,fri,390,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+44,services,married,high.school,no,no,no,telephone,may,fri,324,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+28,admin.,single,university.degree,no,yes,yes,telephone,may,fri,163,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+39,services,married,high.school,no,no,no,telephone,may,fri,110,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+57,retired,married,high.school,unknown,no,no,telephone,may,fri,72,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,blue-collar,married,unknown,no,no,no,telephone,may,fri,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+52,unknown,married,basic.6y,no,no,no,telephone,may,fri,54,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+27,admin.,married,basic.9y,no,yes,no,telephone,may,fri,231,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,self-employed,married,high.school,no,no,no,telephone,may,fri,833,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+44,technician,married,professional.course,no,no,no,telephone,may,fri,124,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,technician,divorced,professional.course,no,no,no,telephone,may,fri,57,10,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,115,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,self-employed,married,professional.course,unknown,yes,no,telephone,may,fri,78,13,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+44,admin.,married,high.school,no,yes,no,telephone,may,fri,43,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+39,entrepreneur,married,high.school,no,no,yes,telephone,may,fri,229,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+50,blue-collar,married,unknown,unknown,yes,no,telephone,may,fri,81,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+53,services,married,basic.4y,no,no,no,telephone,may,fri,86,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+31,blue-collar,single,unknown,no,yes,no,telephone,may,fri,273,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+28,admin.,married,high.school,no,no,yes,telephone,may,fri,30,18,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+57,services,divorced,high.school,no,yes,no,telephone,may,fri,288,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+42,services,married,high.school,unknown,yes,no,telephone,may,fri,247,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,admin.,married,university.degree,no,no,no,telephone,may,fri,85,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+48,admin.,married,university.degree,no,no,no,telephone,may,fri,76,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+47,admin.,married,basic.6y,unknown,yes,no,telephone,may,fri,85,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,management,married,university.degree,no,yes,no,telephone,may,fri,170,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+28,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,428,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+31,admin.,married,university.degree,no,no,no,telephone,may,fri,370,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,137,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,services,married,high.school,unknown,no,no,telephone,may,fri,293,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+57,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,153,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+45,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,281,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+42,technician,divorced,university.degree,no,yes,no,telephone,may,fri,46,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+31,admin.,single,high.school,no,yes,no,telephone,may,fri,26,25,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,technician,married,university.degree,no,yes,no,telephone,may,fri,104,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,housemaid,married,high.school,no,yes,yes,telephone,may,fri,205,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+32,admin.,single,high.school,no,yes,no,telephone,may,fri,891,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+41,technician,married,professional.course,no,no,no,telephone,may,fri,34,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,745,12,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+34,entrepreneur,married,professional.course,no,yes,no,telephone,may,fri,292,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+47,technician,married,professional.course,no,no,no,telephone,may,fri,135,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+40,management,married,high.school,unknown,no,no,telephone,may,fri,45,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+43,services,married,high.school,unknown,yes,no,telephone,may,fri,99,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+48,blue-collar,single,basic.6y,unknown,no,no,telephone,may,fri,148,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+40,admin.,divorced,professional.course,no,yes,no,telephone,may,fri,539,12,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+38,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,84,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,unemployed,married,professional.course,no,yes,no,telephone,may,fri,3631,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+55,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,435,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+42,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,29,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,self-employed,single,university.degree,no,no,no,telephone,may,fri,510,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+31,services,single,basic.9y,no,no,no,telephone,may,fri,1044,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes
+57,management,married,university.degree,unknown,no,yes,telephone,may,fri,59,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+47,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,fri,96,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+38,technician,married,professional.course,no,yes,no,telephone,may,fri,122,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+40,admin.,married,high.school,unknown,no,yes,telephone,may,fri,84,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+60,unknown,single,unknown,unknown,no,no,telephone,may,fri,33,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+50,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,43,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+44,admin.,married,high.school,no,yes,no,telephone,may,fri,223,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+40,services,married,high.school,no,yes,no,telephone,may,fri,288,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+34,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,fri,306,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+46,technician,married,basic.9y,unknown,no,no,telephone,may,fri,81,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,admin.,married,high.school,no,yes,no,telephone,may,fri,53,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+51,blue-collar,married,unknown,unknown,yes,no,telephone,may,fri,436,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+37,unemployed,married,professional.course,no,no,no,telephone,may,fri,41,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+30,services,married,high.school,no,no,no,telephone,may,fri,147,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+56,housemaid,married,basic.4y,no,yes,no,telephone,may,fri,81,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,232,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+39,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,fri,97,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+40,self-employed,married,basic.4y,unknown,yes,no,telephone,may,fri,82,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+36,housemaid,married,basic.6y,no,yes,no,telephone,may,fri,60,16,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+40,services,married,high.school,no,yes,yes,telephone,may,fri,141,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+41,self-employed,married,high.school,no,yes,no,telephone,may,fri,206,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+42,unemployed,married,basic.4y,no,yes,no,telephone,may,fri,170,19,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+47,management,married,basic.4y,unknown,no,yes,telephone,may,fri,251,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+51,admin.,married,basic.9y,no,no,no,telephone,may,fri,25,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,technician,married,professional.course,no,no,no,telephone,may,fri,120,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+35,admin.,single,university.degree,no,no,no,telephone,may,fri,123,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+48,unemployed,married,basic.6y,no,no,yes,telephone,may,fri,58,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+46,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,fri,28,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+24,entrepreneur,married,university.degree,unknown,no,no,telephone,may,fri,1193,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+27,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,fri,127,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+33,technician,married,professional.course,no,no,no,telephone,may,fri,395,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no
+26,management,single,university.degree,no,no,no,telephone,jun,mon,72,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+42,technician,married,professional.course,unknown,no,no,telephone,jun,mon,119,9,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+30,admin.,married,university.degree,no,no,no,telephone,jun,mon,100,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+55,technician,married,basic.9y,no,no,no,telephone,jun,mon,80,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,132,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+47,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,mon,140,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+42,admin.,married,university.degree,no,no,no,telephone,jun,mon,130,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+53,housemaid,married,professional.course,unknown,yes,no,telephone,jun,mon,251,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+45,services,married,basic.9y,no,no,no,telephone,jun,mon,71,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+54,technician,married,professional.course,unknown,yes,no,telephone,jun,mon,52,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,unemployed,married,university.degree,no,yes,no,telephone,jun,mon,108,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+52,technician,married,professional.course,no,yes,no,telephone,jun,mon,150,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,services,married,high.school,unknown,yes,no,telephone,jun,mon,25,7,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+58,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,90,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+37,technician,single,professional.course,unknown,unknown,unknown,telephone,jun,mon,51,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+29,services,divorced,high.school,no,no,yes,telephone,jun,mon,361,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+59,retired,married,unknown,no,no,yes,telephone,jun,mon,88,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+36,self-employed,divorced,university.degree,no,yes,yes,telephone,jun,mon,372,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+30,services,married,high.school,no,no,no,telephone,jun,mon,360,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+46,technician,married,professional.course,no,no,yes,telephone,jun,mon,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+46,retired,married,basic.4y,no,yes,no,telephone,jun,mon,550,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,unknown,divorced,high.school,unknown,yes,no,telephone,jun,mon,133,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+57,blue-collar,divorced,unknown,unknown,no,no,telephone,jun,mon,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+25,admin.,single,high.school,no,no,no,telephone,jun,mon,175,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+49,management,married,university.degree,no,no,no,telephone,jun,mon,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,blue-collar,married,high.school,no,yes,yes,telephone,jun,mon,192,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+59,retired,married,university.degree,unknown,yes,no,telephone,jun,mon,484,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+32,technician,single,professional.course,no,unknown,unknown,telephone,jun,mon,230,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+37,entrepreneur,married,university.degree,no,yes,no,telephone,jun,mon,403,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+34,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,mon,178,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+46,admin.,married,university.degree,no,yes,no,telephone,jun,mon,502,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes
+47,self-employed,married,professional.course,no,yes,no,telephone,jun,mon,338,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+26,services,single,basic.9y,no,yes,no,telephone,jun,mon,205,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,technician,single,high.school,no,yes,no,telephone,jun,mon,92,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+42,blue-collar,married,unknown,unknown,no,no,telephone,jun,mon,268,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+48,technician,married,high.school,no,no,no,telephone,jun,mon,185,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+42,management,divorced,high.school,no,no,no,telephone,jun,mon,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+55,technician,married,basic.9y,unknown,no,no,telephone,jun,mon,362,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,admin.,single,university.degree,no,no,no,telephone,jun,mon,367,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+46,admin.,married,university.degree,unknown,no,no,telephone,jun,mon,230,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+44,technician,married,basic.4y,no,no,no,telephone,jun,mon,26,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,admin.,married,basic.9y,unknown,no,no,telephone,jun,mon,63,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+30,admin.,married,university.degree,no,no,no,telephone,jun,mon,493,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+54,services,divorced,high.school,no,no,no,telephone,jun,mon,113,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+48,entrepreneur,married,basic.4y,no,no,yes,telephone,jun,mon,215,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,unemployed,married,basic.6y,no,no,no,telephone,jun,mon,947,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes
+33,services,single,basic.6y,no,yes,no,telephone,jun,mon,177,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+44,self-employed,divorced,high.school,no,yes,no,telephone,jun,mon,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,admin.,single,university.degree,no,yes,yes,telephone,jun,mon,1075,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+40,technician,married,professional.course,unknown,no,no,telephone,jun,mon,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+43,unemployed,married,university.degree,unknown,no,no,telephone,jun,mon,114,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+60,management,married,university.degree,no,no,no,telephone,jun,mon,526,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes
+56,retired,divorced,basic.4y,no,no,no,telephone,jun,mon,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+46,entrepreneur,married,basic.9y,no,no,no,telephone,jun,mon,245,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+30,services,divorced,basic.9y,no,no,no,telephone,jun,mon,394,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes
+38,technician,single,university.degree,no,no,no,telephone,jun,mon,258,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+28,services,married,high.school,no,no,no,telephone,jun,mon,659,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes
+40,admin.,married,university.degree,unknown,yes,no,telephone,jun,mon,417,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+34,services,single,professional.course,unknown,yes,no,telephone,jun,mon,40,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+40,admin.,married,university.degree,unknown,yes,no,telephone,jun,mon,527,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,services,single,basic.4y,no,no,no,telephone,jun,mon,651,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+43,retired,married,basic.4y,unknown,yes,no,telephone,jun,mon,129,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+51,management,married,university.degree,no,yes,yes,telephone,jun,mon,409,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,blue-collar,married,high.school,no,no,no,telephone,jun,mon,283,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,admin.,divorced,university.degree,no,yes,no,telephone,jun,mon,144,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+25,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,97,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+50,services,divorced,basic.4y,unknown,yes,no,telephone,jun,mon,168,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+34,blue-collar,single,basic.4y,unknown,yes,no,telephone,jun,mon,101,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+47,technician,single,university.degree,no,no,yes,telephone,jun,mon,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,blue-collar,married,basic.6y,no,yes,yes,telephone,jun,mon,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,admin.,single,basic.4y,unknown,yes,no,telephone,jun,mon,143,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,entrepreneur,married,basic.9y,unknown,yes,no,telephone,jun,mon,70,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+42,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,1036,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes
+42,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,384,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+43,blue-collar,divorced,unknown,no,yes,no,telephone,jun,mon,172,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+48,technician,married,professional.course,unknown,no,no,telephone,jun,mon,105,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+25,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,mon,60,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+32,blue-collar,married,professional.course,no,yes,no,telephone,jun,mon,26,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+47,self-employed,divorced,professional.course,unknown,yes,no,telephone,jun,mon,364,13,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+47,technician,single,professional.course,unknown,yes,yes,telephone,jun,mon,227,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+30,services,married,high.school,no,no,no,telephone,jun,mon,151,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+31,self-employed,married,university.degree,no,yes,yes,telephone,jun,mon,464,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,management,single,university.degree,no,yes,no,telephone,jun,mon,68,21,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,464,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,389,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+45,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,185,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+40,blue-collar,single,basic.9y,no,yes,no,telephone,jun,mon,128,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+30,services,married,high.school,no,no,no,telephone,jun,mon,88,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+48,blue-collar,married,unknown,unknown,no,no,telephone,jun,mon,136,7,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+58,unemployed,married,basic.9y,no,no,no,telephone,jun,mon,266,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,466,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+58,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,80,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,admin.,married,university.degree,no,yes,no,telephone,jun,mon,490,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,232,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+40,management,married,university.degree,no,unknown,unknown,telephone,jun,mon,61,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+49,admin.,divorced,high.school,no,yes,no,telephone,jun,mon,537,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+34,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,197,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+49,unemployed,divorced,professional.course,no,no,no,telephone,jun,mon,464,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,447,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+44,admin.,single,high.school,no,no,no,telephone,jun,mon,164,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,blue-collar,married,high.school,no,no,no,telephone,jun,mon,184,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,technician,single,professional.course,unknown,yes,no,telephone,jun,mon,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,373,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,technician,single,university.degree,no,yes,no,telephone,jun,mon,42,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+30,services,single,high.school,no,no,no,telephone,jun,mon,132,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+55,entrepreneur,divorced,university.degree,no,yes,yes,telephone,jun,mon,579,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+47,entrepreneur,married,university.degree,no,no,yes,telephone,jun,mon,180,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+51,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,159,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+40,entrepreneur,married,professional.course,unknown,no,no,telephone,jun,mon,66,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+44,blue-collar,married,professional.course,no,no,no,telephone,jun,mon,239,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,95,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+32,blue-collar,single,basic.4y,no,yes,yes,telephone,jun,mon,156,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+40,services,single,high.school,unknown,yes,no,telephone,jun,mon,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,self-employed,married,basic.4y,no,no,no,telephone,jun,mon,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,technician,married,basic.9y,no,no,no,telephone,jun,mon,59,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+29,technician,single,unknown,no,no,no,telephone,jun,mon,193,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+32,admin.,single,university.degree,no,unknown,unknown,telephone,jun,mon,215,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,services,single,high.school,unknown,yes,yes,telephone,jun,mon,563,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes
+41,services,divorced,high.school,no,yes,yes,telephone,jun,mon,273,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,self-employed,married,basic.4y,unknown,yes,yes,telephone,jun,mon,258,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+25,admin.,single,high.school,no,no,no,telephone,jun,mon,223,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,technician,married,basic.9y,no,no,no,telephone,jun,mon,76,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+24,services,single,high.school,no,yes,no,telephone,jun,mon,920,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+36,housemaid,married,basic.4y,no,no,no,telephone,jun,mon,152,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,jun,mon,130,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+40,blue-collar,married,basic.6y,unknown,yes,yes,telephone,jun,mon,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+26,admin.,married,high.school,unknown,no,no,telephone,jun,mon,118,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+40,technician,divorced,university.degree,no,yes,no,telephone,jun,mon,113,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+45,management,married,university.degree,no,no,no,telephone,jun,mon,369,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,entrepreneur,married,high.school,no,unknown,unknown,telephone,jun,mon,122,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+26,admin.,single,high.school,no,no,yes,telephone,jun,mon,445,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,technician,single,university.degree,unknown,no,no,telephone,jun,mon,47,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+48,housemaid,married,basic.6y,unknown,yes,no,telephone,jun,mon,425,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+32,admin.,married,high.school,no,no,no,telephone,jun,mon,142,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+47,admin.,married,professional.course,no,no,no,telephone,jun,mon,317,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+51,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,mon,184,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+55,blue-collar,married,professional.course,unknown,yes,yes,telephone,jun,mon,354,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+37,admin.,divorced,university.degree,no,yes,no,telephone,jun,mon,82,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+52,services,married,high.school,unknown,yes,no,telephone,jun,mon,105,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+47,management,divorced,university.degree,no,yes,yes,telephone,jun,mon,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,209,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+53,admin.,divorced,university.degree,unknown,no,no,telephone,jun,mon,53,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+57,housemaid,married,basic.4y,no,yes,no,telephone,jun,mon,210,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+53,services,married,high.school,unknown,yes,no,telephone,jun,mon,381,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+25,admin.,married,unknown,no,no,no,telephone,jun,mon,112,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+26,admin.,single,high.school,no,no,no,telephone,jun,mon,278,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+46,management,married,university.degree,unknown,no,no,telephone,jun,mon,183,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+58,retired,married,high.school,unknown,no,no,telephone,jun,mon,389,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+56,technician,married,university.degree,no,no,yes,telephone,jun,mon,69,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+52,technician,married,high.school,no,unknown,unknown,telephone,jun,mon,24,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+43,technician,married,professional.course,no,no,no,telephone,jun,mon,143,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+36,technician,married,professional.course,no,yes,no,telephone,jun,mon,302,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+45,blue-collar,single,high.school,unknown,no,no,telephone,jun,mon,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+36,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,183,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+55,admin.,divorced,unknown,unknown,yes,no,telephone,jun,mon,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+29,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,148,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+48,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,481,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+42,services,divorced,high.school,unknown,yes,no,telephone,jun,mon,45,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+47,admin.,married,university.degree,no,no,no,telephone,jun,mon,121,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+45,technician,single,professional.course,no,no,no,telephone,jun,mon,180,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+25,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,283,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,services,divorced,basic.9y,no,yes,no,telephone,jun,mon,312,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+51,technician,married,professional.course,no,no,yes,telephone,jun,mon,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,technician,single,university.degree,unknown,yes,no,telephone,jun,mon,178,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+40,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,154,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,services,single,high.school,no,no,no,telephone,jun,mon,326,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+28,admin.,single,university.degree,no,no,no,telephone,jun,mon,362,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+27,admin.,married,basic.9y,no,yes,no,telephone,jun,mon,72,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+25,admin.,married,university.degree,no,no,no,telephone,jun,mon,121,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+45,admin.,married,unknown,no,yes,no,telephone,jun,mon,1068,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes
+55,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,101,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+49,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,210,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,admin.,single,unknown,no,yes,no,telephone,jun,mon,163,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+53,management,divorced,university.degree,no,no,no,telephone,jun,mon,306,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+53,unknown,married,high.school,unknown,no,no,telephone,jun,mon,313,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,94,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,admin.,single,university.degree,unknown,no,no,telephone,jun,mon,658,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+55,admin.,married,high.school,no,no,yes,telephone,jun,mon,250,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,493,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+32,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,mon,23,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+34,blue-collar,married,high.school,no,yes,no,telephone,jun,mon,562,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+54,admin.,married,high.school,unknown,yes,no,telephone,jun,mon,490,12,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+54,management,married,university.degree,unknown,no,yes,telephone,jun,mon,140,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+47,management,divorced,university.degree,no,no,yes,telephone,jun,mon,302,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+29,services,single,high.school,no,yes,yes,telephone,jun,mon,46,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+36,admin.,married,university.degree,no,yes,no,telephone,jun,mon,149,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+37,services,married,high.school,no,no,no,telephone,jun,mon,88,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,admin.,married,high.school,unknown,no,no,telephone,jun,mon,118,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+26,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,230,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes
+25,self-employed,single,university.degree,no,no,no,telephone,jun,mon,426,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+60,management,married,university.degree,unknown,no,no,telephone,jun,mon,403,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+40,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,mon,169,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+40,technician,single,professional.course,no,yes,no,telephone,jun,mon,123,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+36,management,married,university.degree,no,no,no,telephone,jun,mon,221,7,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,admin.,married,high.school,no,yes,no,telephone,jun,mon,169,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+28,blue-collar,single,high.school,no,yes,no,telephone,jun,mon,102,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+25,technician,divorced,university.degree,no,yes,no,telephone,jun,mon,214,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+45,management,divorced,university.degree,no,no,no,telephone,jun,mon,572,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+44,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+51,management,married,unknown,unknown,yes,yes,telephone,jun,mon,124,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,admin.,married,university.degree,no,no,no,telephone,jun,mon,105,11,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,self-employed,single,university.degree,no,yes,no,telephone,jun,mon,171,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+49,unknown,married,unknown,unknown,yes,no,telephone,jun,mon,498,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+36,blue-collar,single,basic.4y,no,yes,no,telephone,jun,mon,50,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,self-employed,married,university.degree,no,yes,yes,telephone,jun,mon,31,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+55,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,mon,266,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+48,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,jun,mon,163,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,admin.,single,university.degree,no,yes,yes,telephone,jun,mon,304,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+58,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,469,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+36,housemaid,married,basic.6y,no,yes,no,telephone,jun,mon,45,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+28,admin.,married,university.degree,no,no,no,telephone,jun,mon,249,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+37,admin.,married,university.degree,no,no,no,telephone,jun,mon,85,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+45,technician,married,university.degree,no,no,no,telephone,jun,mon,79,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+43,technician,single,professional.course,no,yes,no,telephone,jun,mon,70,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+30,blue-collar,married,professional.course,no,no,no,telephone,jun,mon,758,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+34,services,divorced,professional.course,unknown,no,no,telephone,jun,mon,466,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,200,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,admin.,single,university.degree,no,yes,no,telephone,jun,mon,87,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,admin.,married,high.school,no,yes,no,telephone,jun,mon,966,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,services,single,university.degree,unknown,no,no,telephone,jun,mon,747,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes
+37,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,430,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,services,divorced,high.school,unknown,yes,no,telephone,jun,mon,241,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+49,technician,married,professional.course,no,no,no,telephone,jun,mon,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,131,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+37,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,mon,541,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+45,admin.,married,university.degree,no,no,no,telephone,jun,mon,281,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+40,services,divorced,high.school,no,no,no,telephone,jun,mon,158,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+52,admin.,divorced,university.degree,no,no,no,telephone,jun,mon,201,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,admin.,married,high.school,no,no,no,telephone,jun,mon,56,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+43,admin.,married,high.school,unknown,yes,no,telephone,jun,mon,91,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+30,blue-collar,single,basic.4y,no,no,no,telephone,jun,mon,187,9,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+34,unemployed,single,university.degree,no,no,no,telephone,jun,mon,409,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,services,married,basic.9y,no,yes,no,telephone,jun,mon,269,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+45,admin.,married,high.school,no,yes,no,telephone,jun,mon,221,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+36,services,single,basic.6y,unknown,no,no,telephone,jun,mon,255,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,blue-collar,single,basic.9y,unknown,yes,no,telephone,jun,mon,71,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+55,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,184,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+42,retired,married,basic.9y,unknown,no,no,telephone,jun,mon,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+42,services,married,high.school,no,no,no,telephone,jun,mon,276,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+44,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,mon,41,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+36,services,married,high.school,unknown,no,no,telephone,jun,mon,145,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,blue-collar,married,unknown,no,no,no,telephone,jun,mon,424,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,unknown,married,basic.9y,no,no,no,telephone,jun,mon,612,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+58,admin.,divorced,university.degree,no,yes,no,telephone,jun,mon,282,7,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+58,retired,married,basic.9y,no,yes,no,telephone,jun,mon,198,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+52,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,mon,76,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+32,admin.,married,university.degree,no,yes,no,telephone,jun,mon,102,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,technician,married,high.school,no,no,yes,telephone,jun,mon,60,9,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+56,management,divorced,university.degree,no,no,no,telephone,jun,mon,252,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+37,admin.,married,university.degree,no,yes,no,telephone,jun,mon,23,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+55,technician,married,professional.course,no,yes,no,telephone,jun,mon,555,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes
+35,technician,married,professional.course,no,no,no,telephone,jun,mon,200,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+24,admin.,married,high.school,no,no,yes,telephone,jun,mon,1330,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+54,retired,divorced,basic.4y,no,no,no,telephone,jun,mon,157,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+42,admin.,married,high.school,no,no,yes,telephone,jun,mon,218,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+47,services,married,high.school,no,no,no,telephone,jun,mon,548,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+27,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,176,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,admin.,single,university.degree,no,no,no,telephone,jun,mon,335,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+34,technician,married,professional.course,no,yes,no,telephone,jun,mon,142,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+51,services,married,high.school,no,no,yes,telephone,jun,mon,267,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+30,management,single,university.degree,no,no,no,telephone,jun,mon,86,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+58,admin.,married,university.degree,no,no,yes,telephone,jun,mon,129,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+31,management,married,high.school,no,yes,no,telephone,jun,mon,322,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,admin.,married,high.school,no,yes,no,telephone,jun,mon,111,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+47,housemaid,married,basic.4y,no,yes,yes,telephone,jun,mon,106,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,blue-collar,single,unknown,no,no,no,telephone,jun,mon,136,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+55,retired,divorced,basic.6y,unknown,no,no,telephone,jun,mon,228,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+45,admin.,divorced,university.degree,unknown,no,no,telephone,jun,mon,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+32,services,married,high.school,no,yes,no,telephone,jun,mon,29,32,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+30,technician,married,university.degree,no,no,yes,telephone,jun,mon,150,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,admin.,married,high.school,unknown,yes,no,telephone,jun,mon,252,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+53,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,518,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+47,entrepreneur,single,university.degree,unknown,yes,no,telephone,jun,mon,42,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+52,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,140,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,144,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+37,admin.,divorced,basic.9y,unknown,yes,no,telephone,jun,mon,303,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+36,housemaid,married,high.school,no,yes,no,telephone,jun,mon,171,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+47,housemaid,married,professional.course,no,yes,yes,telephone,jun,mon,132,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+28,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,mon,288,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+44,blue-collar,divorced,unknown,no,no,yes,telephone,jun,mon,73,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+34,admin.,married,university.degree,no,no,no,telephone,jun,mon,230,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,685,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+30,technician,married,professional.course,no,yes,yes,telephone,jun,mon,82,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,345,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+57,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,75,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+60,retired,married,basic.4y,unknown,no,no,telephone,jun,mon,223,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+34,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,479,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,management,married,basic.6y,unknown,no,no,telephone,jun,mon,156,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+36,admin.,married,university.degree,no,yes,no,telephone,jun,mon,80,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+48,technician,divorced,professional.course,no,no,no,telephone,jun,mon,204,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+44,technician,married,high.school,no,no,no,telephone,jun,mon,360,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+34,technician,married,professional.course,no,yes,yes,telephone,jun,mon,126,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+42,technician,married,university.degree,no,yes,no,telephone,jun,mon,148,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+28,admin.,married,high.school,no,yes,no,telephone,jun,mon,267,10,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+30,technician,married,professional.course,no,yes,no,telephone,jun,mon,290,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+40,admin.,single,high.school,no,yes,no,telephone,jun,mon,136,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,technician,single,university.degree,no,no,no,telephone,jun,mon,127,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+52,technician,divorced,professional.course,unknown,yes,no,telephone,jun,mon,56,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+52,blue-collar,married,high.school,unknown,no,no,telephone,jun,mon,777,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes
+36,admin.,single,high.school,no,yes,no,telephone,jun,mon,32,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+27,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,mon,235,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+53,services,divorced,basic.4y,unknown,no,no,telephone,jun,mon,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,admin.,single,university.degree,unknown,no,no,telephone,jun,mon,198,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,technician,married,professional.course,no,no,no,telephone,jun,mon,164,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+47,blue-collar,married,unknown,unknown,yes,no,telephone,jun,mon,98,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,admin.,married,high.school,no,yes,yes,telephone,jun,mon,92,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+54,blue-collar,married,high.school,no,no,no,telephone,jun,mon,53,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,technician,single,professional.course,no,no,no,telephone,jun,mon,349,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,admin.,married,university.degree,no,no,no,telephone,jun,mon,178,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,blue-collar,single,basic.4y,no,no,no,telephone,jun,mon,532,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+29,technician,married,basic.9y,no,yes,yes,telephone,jun,mon,164,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+50,retired,married,basic.4y,no,yes,no,telephone,jun,mon,35,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+32,entrepreneur,single,professional.course,no,no,no,telephone,jun,mon,20,20,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+31,blue-collar,married,basic.6y,no,no,yes,telephone,jun,mon,154,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+29,entrepreneur,married,professional.course,no,yes,no,telephone,jun,mon,930,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+44,unemployed,married,professional.course,no,no,no,telephone,jun,mon,392,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,213,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+30,housemaid,married,high.school,unknown,yes,yes,telephone,jun,mon,18,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,services,married,high.school,unknown,yes,no,telephone,jun,mon,393,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+56,services,married,basic.4y,unknown,no,no,telephone,jun,mon,746,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+26,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,jun,mon,351,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,174,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+40,admin.,single,high.school,unknown,yes,no,telephone,jun,mon,142,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+51,services,married,high.school,unknown,yes,no,telephone,jun,mon,229,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+48,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,261,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+47,technician,divorced,high.school,no,yes,no,telephone,jun,mon,289,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,227,15,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+36,admin.,married,university.degree,no,yes,no,telephone,jun,mon,115,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+43,services,married,high.school,unknown,no,no,telephone,jun,mon,178,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+56,entrepreneur,married,unknown,unknown,no,no,telephone,jun,mon,41,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,housemaid,divorced,basic.9y,no,yes,no,telephone,jun,mon,154,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+43,technician,single,university.degree,no,yes,no,telephone,jun,mon,100,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,admin.,married,university.degree,no,no,no,telephone,jun,mon,61,7,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+59,management,married,basic.6y,unknown,yes,no,telephone,jun,mon,181,16,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+50,admin.,married,high.school,no,no,no,telephone,jun,mon,205,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+24,services,single,high.school,no,yes,no,telephone,jun,mon,468,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,blue-collar,married,high.school,no,no,no,telephone,jun,mon,358,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,technician,married,professional.course,unknown,yes,no,telephone,jun,mon,442,11,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+34,blue-collar,married,basic.6y,no,no,yes,telephone,jun,mon,1576,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+48,unemployed,single,basic.4y,no,yes,no,telephone,jun,mon,83,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,admin.,married,university.degree,unknown,yes,no,telephone,jun,mon,134,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+54,entrepreneur,divorced,university.degree,no,yes,yes,telephone,jun,mon,28,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+31,services,married,basic.6y,no,no,no,telephone,jun,mon,92,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+42,services,married,high.school,no,no,no,telephone,jun,mon,217,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+45,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,134,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+24,services,single,basic.9y,unknown,no,yes,telephone,jun,mon,222,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+37,management,married,university.degree,unknown,no,yes,telephone,jun,mon,179,7,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+57,housemaid,married,professional.course,no,no,yes,telephone,jun,mon,110,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,student,single,university.degree,unknown,yes,yes,telephone,jun,mon,444,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes
+41,admin.,married,high.school,no,unknown,unknown,telephone,jun,mon,548,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,unemployed,single,university.degree,no,no,yes,telephone,jun,mon,16,13,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+42,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,213,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+35,technician,single,professional.course,no,yes,yes,telephone,jun,mon,402,9,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+44,technician,married,professional.course,unknown,no,no,telephone,jun,mon,312,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+36,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,mon,280,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+28,services,single,high.school,no,no,no,telephone,jun,mon,689,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+57,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,mon,716,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,management,divorced,university.degree,no,no,no,telephone,jun,mon,43,12,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+41,blue-collar,divorced,professional.course,no,no,no,telephone,jun,mon,39,10,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+36,technician,divorced,professional.course,unknown,no,no,telephone,jun,mon,90,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+38,student,single,university.degree,no,no,no,telephone,jun,mon,194,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+48,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,984,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+48,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,153,9,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,technician,married,professional.course,no,yes,no,telephone,jun,mon,59,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,admin.,married,university.degree,no,yes,no,telephone,jun,mon,20,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+52,services,married,high.school,no,no,yes,telephone,jun,mon,359,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+59,retired,divorced,university.degree,no,no,no,telephone,jun,mon,605,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes
+42,self-employed,married,university.degree,no,no,no,telephone,jun,mon,180,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+57,management,married,basic.9y,unknown,yes,no,telephone,jun,mon,30,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+33,services,married,high.school,no,no,no,telephone,jun,mon,94,14,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,entrepreneur,married,high.school,no,no,no,telephone,jun,mon,232,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no
+39,technician,single,professional.course,unknown,no,no,telephone,jun,mon,432,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes
+28,services,married,high.school,no,no,no,telephone,jun,tue,152,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+60,unknown,married,basic.6y,unknown,no,no,telephone,jun,tue,104,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+44,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,154,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,services,single,basic.9y,no,no,no,telephone,jun,tue,70,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,admin.,married,high.school,no,no,no,telephone,jun,tue,48,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,admin.,married,high.school,no,no,no,telephone,jun,tue,201,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+48,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,182,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,tue,150,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+43,blue-collar,single,professional.course,no,yes,no,telephone,jun,tue,209,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+49,services,married,high.school,unknown,yes,no,telephone,jun,tue,86,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,technician,married,professional.course,no,yes,no,telephone,jun,tue,67,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+56,management,married,basic.4y,unknown,yes,no,telephone,jun,tue,197,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+48,housemaid,married,high.school,no,no,no,telephone,jun,tue,87,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+44,entrepreneur,married,basic.6y,unknown,no,yes,telephone,jun,tue,75,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+57,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,450,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,technician,single,university.degree,no,no,no,telephone,jun,tue,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,180,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,technician,married,university.degree,no,no,no,telephone,jun,tue,20,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,unemployed,married,basic.6y,unknown,yes,no,telephone,jun,tue,179,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,services,married,high.school,no,yes,no,telephone,jun,tue,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+48,admin.,married,professional.course,unknown,no,no,telephone,jun,tue,55,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,222,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,technician,single,university.degree,no,yes,no,telephone,jun,tue,267,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+43,entrepreneur,married,basic.4y,no,yes,no,telephone,jun,tue,69,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,management,married,unknown,unknown,no,no,telephone,jun,tue,200,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,services,single,basic.6y,unknown,no,no,telephone,jun,tue,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+48,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,jun,tue,332,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+52,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,542,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+43,entrepreneur,married,basic.9y,no,no,no,telephone,jun,tue,301,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,207,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+55,blue-collar,divorced,basic.4y,unknown,no,yes,telephone,jun,tue,115,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+44,blue-collar,single,basic.4y,no,yes,no,telephone,jun,tue,159,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+24,services,single,high.school,no,yes,no,telephone,jun,tue,117,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+58,retired,married,basic.4y,no,yes,no,telephone,jun,tue,159,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,unemployed,married,university.degree,unknown,no,no,telephone,jun,tue,238,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,management,single,university.degree,no,no,no,telephone,jun,tue,161,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,technician,single,university.degree,no,no,no,telephone,jun,tue,1173,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+32,management,married,high.school,no,no,no,telephone,jun,tue,206,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,438,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,tue,250,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,technician,married,professional.course,no,no,yes,telephone,jun,tue,46,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,admin.,married,high.school,no,no,no,telephone,jun,tue,147,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,blue-collar,single,high.school,no,no,no,telephone,jun,tue,275,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,blue-collar,married,unknown,no,no,no,telephone,jun,tue,26,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,963,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+41,blue-collar,married,basic.6y,no,unknown,unknown,telephone,jun,tue,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,50,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,housemaid,married,basic.9y,no,no,no,telephone,jun,tue,236,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,technician,married,university.degree,unknown,yes,no,telephone,jun,tue,272,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+43,technician,married,professional.course,no,yes,no,telephone,jun,tue,112,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+47,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,384,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,admin.,married,high.school,no,yes,no,telephone,jun,tue,361,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,tue,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,services,single,high.school,no,yes,no,telephone,jun,tue,953,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,admin.,married,university.degree,no,yes,no,telephone,jun,tue,148,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,blue-collar,married,basic.6y,no,yes,no,telephone,jun,tue,233,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,409,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,technician,married,university.degree,unknown,no,no,telephone,jun,tue,194,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+59,retired,single,high.school,no,no,yes,telephone,jun,tue,103,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,admin.,single,high.school,no,no,no,telephone,jun,tue,579,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,blue-collar,single,high.school,no,no,no,telephone,jun,tue,956,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+48,admin.,married,high.school,no,no,yes,telephone,jun,tue,183,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,technician,married,professional.course,no,no,no,telephone,jun,tue,117,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,unemployed,divorced,high.school,no,no,no,telephone,jun,tue,175,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,admin.,married,high.school,no,yes,no,telephone,jun,tue,186,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,student,single,university.degree,no,unknown,unknown,telephone,jun,tue,23,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,blue-collar,single,basic.4y,unknown,yes,no,telephone,jun,tue,256,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,unemployed,married,professional.course,no,no,no,telephone,jun,tue,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,self-employed,married,university.degree,no,yes,no,telephone,jun,tue,157,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,services,married,high.school,unknown,yes,no,telephone,jun,tue,132,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,131,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+52,management,divorced,university.degree,unknown,no,no,telephone,jun,tue,43,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,tue,479,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,unknown,single,unknown,unknown,yes,no,telephone,jun,tue,363,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,entrepreneur,married,university.degree,no,yes,no,telephone,jun,tue,56,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,201,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,housemaid,single,unknown,no,no,yes,telephone,jun,tue,517,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,technician,married,basic.9y,no,yes,no,telephone,jun,tue,447,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+51,retired,divorced,university.degree,no,yes,yes,telephone,jun,tue,342,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,services,married,high.school,unknown,no,yes,telephone,jun,tue,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,119,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+55,management,married,university.degree,no,yes,no,telephone,jun,tue,22,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+58,technician,married,professional.course,no,yes,yes,telephone,jun,tue,150,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,blue-collar,married,basic.4y,no,no,yes,telephone,jun,tue,110,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,management,single,university.degree,no,no,no,telephone,jun,tue,166,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,management,married,university.degree,unknown,no,no,telephone,jun,tue,65,13,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,blue-collar,married,basic.4y,no,no,no,telephone,jun,tue,404,13,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,blue-collar,single,basic.9y,unknown,yes,no,telephone,jun,tue,280,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,services,married,high.school,unknown,no,no,telephone,jun,tue,157,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,170,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+49,technician,married,high.school,no,yes,no,telephone,jun,tue,80,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+58,retired,married,basic.4y,no,no,no,telephone,jun,tue,164,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+51,self-employed,married,university.degree,unknown,yes,no,telephone,jun,tue,34,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,tue,258,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+48,blue-collar,married,basic.4y,no,no,yes,telephone,jun,tue,291,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,126,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+49,technician,married,basic.6y,unknown,no,no,telephone,jun,tue,88,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+56,management,married,basic.9y,no,yes,no,telephone,jun,tue,941,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+35,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,349,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+60,retired,divorced,basic.4y,unknown,yes,no,telephone,jun,tue,131,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,admin.,single,high.school,no,yes,no,telephone,jun,tue,384,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,blue-collar,single,high.school,no,yes,yes,telephone,jun,tue,440,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+44,admin.,single,university.degree,no,no,yes,telephone,jun,tue,143,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,admin.,single,university.degree,no,yes,no,telephone,jun,tue,284,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,161,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,self-employed,married,professional.course,no,yes,no,telephone,jun,tue,123,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,student,single,basic.9y,no,yes,no,telephone,jun,tue,771,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,tue,103,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+28,admin.,single,high.school,no,no,no,telephone,jun,tue,132,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,services,married,high.school,unknown,yes,no,telephone,jun,tue,235,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+48,management,married,university.degree,no,yes,yes,telephone,jun,tue,1025,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+57,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,tue,45,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+56,entrepreneur,married,university.degree,no,no,no,telephone,jun,tue,21,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+56,entrepreneur,married,unknown,unknown,yes,no,telephone,jun,tue,536,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,admin.,married,basic.9y,no,yes,no,telephone,jun,tue,243,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+49,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,tue,131,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+52,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,316,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,192,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,technician,married,professional.course,no,no,yes,telephone,jun,tue,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,tue,288,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,admin.,single,basic.9y,unknown,no,yes,telephone,jun,tue,569,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,23,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,admin.,married,high.school,no,yes,no,telephone,jun,tue,406,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,self-employed,married,basic.9y,unknown,yes,no,telephone,jun,tue,106,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,services,married,high.school,no,no,no,telephone,jun,tue,393,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+57,blue-collar,married,high.school,unknown,no,no,telephone,jun,tue,171,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,admin.,single,university.degree,no,yes,no,telephone,jun,tue,116,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,admin.,single,high.school,no,no,yes,telephone,jun,tue,25,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,blue-collar,married,unknown,no,no,yes,telephone,jun,tue,118,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+43,blue-collar,married,basic.9y,no,no,yes,telephone,jun,tue,75,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,blue-collar,married,high.school,no,yes,no,telephone,jun,tue,54,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,services,single,university.degree,unknown,no,yes,telephone,jun,tue,235,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,admin.,married,basic.9y,no,no,yes,telephone,jun,tue,404,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,blue-collar,married,basic.6y,no,no,yes,telephone,jun,tue,179,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+47,technician,single,professional.course,unknown,no,no,telephone,jun,tue,126,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,admin.,married,university.degree,no,no,no,telephone,jun,tue,102,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,blue-collar,married,basic.4y,no,no,no,telephone,jun,tue,110,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,self-employed,married,basic.9y,no,no,yes,telephone,jun,tue,227,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,self-employed,married,university.degree,unknown,yes,no,telephone,jun,tue,123,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+57,technician,married,professional.course,no,yes,no,telephone,jun,tue,194,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,admin.,single,university.degree,unknown,yes,no,telephone,jun,tue,992,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+47,management,married,basic.4y,unknown,yes,no,telephone,jun,tue,100,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,management,married,university.degree,no,no,no,telephone,jun,tue,303,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,blue-collar,married,basic.6y,no,yes,no,telephone,jun,tue,732,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+41,services,married,high.school,no,no,no,telephone,jun,tue,366,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,technician,married,university.degree,unknown,no,no,telephone,jun,tue,228,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,14,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,admin.,single,university.degree,unknown,no,no,telephone,jun,tue,193,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,blue-collar,single,basic.9y,unknown,yes,no,telephone,jun,tue,409,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,technician,married,professional.course,no,yes,no,telephone,jun,tue,220,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,unemployed,divorced,basic.9y,no,yes,no,telephone,jun,tue,231,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+59,entrepreneur,married,unknown,no,no,no,telephone,jun,tue,242,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+55,unknown,married,basic.4y,unknown,yes,no,telephone,jun,tue,216,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+53,self-employed,married,university.degree,no,yes,no,telephone,jun,tue,119,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+43,unemployed,married,professional.course,no,no,no,telephone,jun,tue,41,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+49,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,tue,495,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,128,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,blue-collar,single,high.school,no,no,no,telephone,jun,tue,185,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,technician,single,university.degree,unknown,no,no,telephone,jun,tue,722,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,240,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+43,retired,married,basic.9y,unknown,no,no,telephone,jun,tue,455,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+53,admin.,married,high.school,no,no,no,telephone,jun,tue,138,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+25,admin.,married,university.degree,unknown,yes,no,telephone,jun,tue,361,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+48,admin.,divorced,university.degree,no,no,no,telephone,jun,tue,418,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,208,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+53,admin.,married,high.school,no,no,no,telephone,jun,tue,177,26,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+44,self-employed,married,basic.9y,no,yes,no,telephone,jun,tue,249,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+54,management,married,university.degree,no,no,no,telephone,jun,tue,84,15,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,338,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,admin.,married,university.degree,no,yes,yes,telephone,jun,tue,299,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,entrepreneur,married,high.school,unknown,yes,no,telephone,jun,tue,284,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+43,admin.,married,high.school,no,yes,no,telephone,jun,tue,282,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+43,management,married,university.degree,no,yes,yes,telephone,jun,tue,435,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,services,married,high.school,unknown,yes,no,telephone,jun,tue,120,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,tue,825,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,services,married,high.school,no,no,no,telephone,jun,tue,51,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,services,married,high.school,unknown,no,no,telephone,jun,tue,253,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+53,housemaid,married,basic.4y,no,unknown,unknown,telephone,jun,tue,259,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+57,technician,divorced,unknown,no,yes,yes,telephone,jun,tue,237,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,1045,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,110,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+49,blue-collar,married,basic.4y,no,no,no,telephone,jun,tue,188,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,technician,married,unknown,unknown,yes,no,telephone,jun,tue,320,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,admin.,married,university.degree,no,yes,no,telephone,jun,tue,231,12,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,services,married,high.school,unknown,yes,no,telephone,jun,tue,170,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,admin.,married,high.school,no,no,no,telephone,jun,tue,58,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,admin.,married,high.school,no,yes,no,telephone,jun,tue,615,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,tue,676,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+49,management,divorced,university.degree,unknown,yes,no,telephone,jun,tue,165,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,admin.,married,university.degree,no,no,no,telephone,jun,tue,192,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+47,blue-collar,divorced,basic.9y,unknown,no,yes,telephone,jun,tue,258,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+43,admin.,divorced,high.school,no,no,no,telephone,jun,tue,319,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,admin.,divorced,professional.course,no,yes,no,telephone,jun,tue,860,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,housemaid,married,high.school,no,no,no,telephone,jun,tue,680,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,entrepreneur,married,basic.6y,no,no,yes,telephone,jun,tue,165,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+43,admin.,divorced,university.degree,no,no,no,telephone,jun,tue,356,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,admin.,single,high.school,no,yes,no,telephone,jun,tue,235,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,admin.,married,high.school,no,yes,yes,telephone,jun,tue,173,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+54,technician,married,university.degree,unknown,no,no,telephone,jun,tue,294,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,management,single,university.degree,no,yes,no,telephone,jun,tue,216,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+57,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,tue,177,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,services,married,high.school,no,no,yes,telephone,jun,tue,220,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,admin.,single,high.school,unknown,no,no,telephone,jun,tue,641,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+43,unemployed,married,basic.9y,no,no,no,telephone,jun,tue,633,28,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,admin.,single,university.degree,no,no,no,telephone,jun,tue,94,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,admin.,single,university.degree,no,no,no,telephone,jun,tue,35,32,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+44,blue-collar,single,unknown,unknown,yes,no,telephone,jun,tue,828,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,unemployed,married,basic.6y,no,yes,no,telephone,jun,tue,35,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,admin.,married,basic.9y,no,no,no,telephone,jun,tue,263,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+51,self-employed,married,university.degree,unknown,no,no,telephone,jun,tue,143,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+58,technician,married,university.degree,no,yes,no,telephone,jun,tue,108,12,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,164,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+52,admin.,divorced,university.degree,no,no,no,telephone,jun,tue,245,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+57,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,43,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+24,admin.,single,high.school,no,no,no,telephone,jun,tue,768,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+27,unemployed,married,high.school,no,no,no,telephone,jun,tue,327,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,admin.,married,university.degree,unknown,yes,no,telephone,jun,tue,215,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,services,married,university.degree,unknown,yes,no,telephone,jun,tue,200,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+28,blue-collar,single,basic.4y,no,no,no,telephone,jun,tue,320,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,unemployed,divorced,basic.4y,no,yes,no,telephone,jun,tue,801,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+32,blue-collar,married,basic.6y,no,unknown,unknown,telephone,jun,tue,31,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,blue-collar,single,basic.9y,unknown,yes,no,telephone,jun,tue,114,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,management,married,university.degree,no,no,no,telephone,jun,tue,236,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,blue-collar,single,high.school,no,yes,no,telephone,jun,tue,201,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,tue,482,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+34,admin.,married,university.degree,unknown,no,no,telephone,jun,tue,133,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,blue-collar,married,basic.9y,no,no,yes,telephone,jun,tue,2456,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+28,student,single,university.degree,unknown,no,no,telephone,jun,tue,171,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,services,single,high.school,no,no,no,telephone,jun,tue,443,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,263,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,94,18,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,self-employed,married,university.degree,no,yes,no,telephone,jun,tue,59,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+60,admin.,married,university.degree,unknown,no,no,telephone,jun,tue,111,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+51,technician,married,professional.course,no,no,yes,telephone,jun,tue,72,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,services,divorced,professional.course,no,no,no,telephone,jun,tue,199,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,technician,married,professional.course,no,yes,no,telephone,jun,tue,589,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,self-employed,married,university.degree,no,no,no,telephone,jun,tue,199,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,blue-collar,single,high.school,no,yes,no,telephone,jun,tue,113,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,tue,179,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,unemployed,married,basic.6y,unknown,no,no,telephone,jun,tue,215,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,technician,married,professional.course,no,no,no,telephone,jun,tue,61,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,admin.,married,high.school,no,no,no,telephone,jun,tue,107,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,admin.,married,unknown,no,no,no,telephone,jun,tue,242,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,1340,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,13,13,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,admin.,married,professional.course,no,yes,no,telephone,jun,tue,129,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+57,blue-collar,divorced,unknown,unknown,no,no,telephone,jun,tue,50,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,406,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,services,divorced,basic.6y,no,no,no,telephone,jun,tue,239,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,admin.,married,university.degree,no,yes,yes,telephone,jun,tue,178,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+51,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,81,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,327,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+57,admin.,divorced,unknown,unknown,no,no,telephone,jun,tue,604,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,tue,137,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,technician,single,professional.course,no,no,yes,telephone,jun,tue,246,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,admin.,married,university.degree,no,yes,no,telephone,jun,tue,199,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,technician,married,high.school,no,no,no,telephone,jun,tue,372,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,blue-collar,single,high.school,no,yes,no,telephone,jun,tue,167,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,admin.,married,high.school,no,no,no,telephone,jun,tue,30,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,tue,189,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,admin.,married,high.school,no,no,yes,telephone,jun,tue,277,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+59,admin.,married,university.degree,no,yes,yes,telephone,jun,tue,215,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,admin.,married,university.degree,no,no,no,telephone,jun,tue,133,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+58,blue-collar,married,high.school,no,yes,no,telephone,jun,tue,183,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,tue,134,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,admin.,single,university.degree,unknown,yes,no,telephone,jun,tue,211,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,services,divorced,basic.4y,unknown,no,no,telephone,jun,tue,80,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+43,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,220,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,management,married,basic.9y,unknown,yes,no,telephone,jun,tue,495,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+28,admin.,married,high.school,no,no,no,telephone,jun,tue,157,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,services,married,high.school,no,no,no,telephone,jun,tue,81,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,services,married,high.school,unknown,no,no,telephone,jun,tue,559,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,441,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,admin.,married,unknown,unknown,no,no,telephone,jun,tue,14,21,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,technician,single,professional.course,no,no,no,telephone,jun,tue,662,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+53,services,married,high.school,unknown,no,no,telephone,jun,tue,76,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,housemaid,married,university.degree,no,no,yes,telephone,jun,tue,230,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,services,single,high.school,no,no,no,telephone,jun,tue,323,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,117,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,admin.,single,university.degree,unknown,yes,no,telephone,jun,tue,176,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,blue-collar,divorced,basic.9y,unknown,no,yes,telephone,jun,tue,1259,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+58,self-employed,married,university.degree,no,no,no,telephone,jun,tue,380,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,management,single,university.degree,no,yes,no,telephone,jun,tue,214,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+60,retired,single,high.school,no,no,no,telephone,jun,tue,136,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,350,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,blue-collar,single,high.school,no,yes,no,telephone,jun,tue,56,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+59,technician,married,unknown,no,no,no,telephone,jun,tue,131,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,tue,113,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,services,married,unknown,no,yes,no,telephone,jun,tue,71,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+58,retired,married,basic.4y,unknown,yes,no,telephone,jun,tue,137,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,497,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+54,services,married,high.school,no,yes,no,telephone,jun,tue,184,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,tue,276,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,services,married,high.school,no,no,no,telephone,jun,tue,68,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,tue,11,18,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,313,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,397,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,164,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,admin.,divorced,basic.9y,no,no,no,telephone,jun,tue,1363,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+29,admin.,single,university.degree,unknown,no,yes,telephone,jun,tue,816,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,blue-collar,married,basic.4y,no,no,no,telephone,jun,tue,1030,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,admin.,married,high.school,no,yes,no,telephone,jun,tue,266,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,admin.,single,university.degree,unknown,no,no,telephone,jun,tue,56,12,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,housemaid,divorced,basic.6y,no,yes,no,telephone,jun,tue,143,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,admin.,single,high.school,no,yes,no,telephone,jun,tue,229,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,management,single,university.degree,no,no,no,telephone,jun,tue,342,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,entrepreneur,married,high.school,no,no,yes,telephone,jun,tue,340,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,housemaid,married,basic.4y,no,yes,no,telephone,jun,tue,59,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+47,self-employed,married,basic.4y,unknown,unknown,unknown,telephone,jun,tue,72,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,599,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+59,retired,married,professional.course,no,yes,no,telephone,jun,tue,77,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,technician,divorced,professional.course,no,yes,no,telephone,jun,tue,157,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,self-employed,single,professional.course,no,no,no,telephone,jun,tue,199,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,blue-collar,single,high.school,unknown,yes,no,telephone,jun,tue,187,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,239,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+48,services,single,high.school,unknown,no,yes,telephone,jun,tue,246,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,self-employed,married,high.school,unknown,yes,no,telephone,jun,tue,238,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,services,married,high.school,no,yes,no,telephone,jun,tue,118,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,self-employed,divorced,university.degree,no,no,yes,telephone,jun,tue,254,21,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,281,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,blue-collar,married,high.school,unknown,yes,no,telephone,jun,tue,94,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,services,divorced,basic.6y,no,no,no,telephone,jun,tue,269,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+47,admin.,married,university.degree,no,yes,no,telephone,jun,tue,203,9,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,management,married,university.degree,no,no,no,telephone,jun,tue,140,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,blue-collar,married,basic.4y,no,no,no,telephone,jun,tue,148,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+43,management,married,high.school,no,yes,no,telephone,jun,tue,583,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,services,single,high.school,no,no,no,telephone,jun,tue,172,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,60,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+52,unemployed,married,high.school,unknown,yes,no,telephone,jun,tue,70,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+48,blue-collar,married,professional.course,no,no,no,telephone,jun,tue,68,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,technician,married,high.school,no,yes,no,telephone,jun,tue,267,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,88,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+47,technician,married,professional.course,no,no,no,telephone,jun,tue,19,20,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,admin.,married,high.school,unknown,no,no,telephone,jun,tue,490,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,admin.,married,university.degree,no,no,no,telephone,jun,tue,604,14,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+28,services,single,high.school,no,no,no,telephone,jun,tue,290,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,admin.,single,university.degree,no,yes,yes,telephone,jun,tue,78,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+49,admin.,married,university.degree,no,no,no,telephone,jun,tue,88,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,admin.,married,high.school,unknown,yes,no,telephone,jun,tue,113,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+28,blue-collar,single,basic.9y,no,no,no,telephone,jun,tue,550,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,entrepreneur,married,university.degree,no,no,no,telephone,jun,tue,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+56,unemployed,married,high.school,unknown,no,no,telephone,jun,tue,197,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,235,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,159,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,admin.,married,university.degree,no,yes,no,telephone,jun,tue,120,11,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,entrepreneur,married,high.school,no,no,no,telephone,jun,tue,1516,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+57,admin.,divorced,unknown,unknown,no,no,telephone,jun,tue,28,19,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,unemployed,married,basic.9y,unknown,no,no,telephone,jun,tue,87,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+28,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,151,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,226,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,services,married,high.school,unknown,no,no,telephone,jun,tue,113,11,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,admin.,single,high.school,no,yes,no,telephone,jun,tue,281,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,technician,married,university.degree,unknown,no,yes,telephone,jun,tue,1336,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+35,services,married,high.school,unknown,no,no,telephone,jun,wed,173,14,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,83,11,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,180,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,technician,single,high.school,no,yes,no,telephone,jun,wed,457,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+44,admin.,married,university.degree,no,yes,no,telephone,jun,wed,25,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+48,retired,married,basic.4y,unknown,no,no,telephone,jun,wed,145,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,admin.,single,high.school,no,yes,yes,telephone,jun,wed,622,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,services,divorced,basic.9y,no,no,no,telephone,jun,wed,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+56,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,99,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,admin.,married,university.degree,no,yes,no,telephone,jun,wed,407,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,entrepreneur,married,basic.4y,no,yes,no,telephone,jun,wed,250,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+52,retired,married,basic.4y,no,no,no,telephone,jun,wed,633,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+58,admin.,single,university.degree,no,no,yes,telephone,jun,wed,111,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,technician,married,professional.course,no,no,no,telephone,jun,wed,462,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+43,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,28,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,blue-collar,married,professional.course,unknown,no,no,telephone,jun,wed,1138,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,107,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,admin.,married,high.school,unknown,yes,yes,telephone,jun,wed,135,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,services,married,high.school,unknown,yes,no,telephone,jun,wed,96,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,technician,married,professional.course,no,yes,no,telephone,jun,wed,131,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,management,married,university.degree,unknown,no,yes,telephone,jun,wed,46,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,blue-collar,married,basic.6y,no,yes,no,telephone,jun,wed,267,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,213,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,student,single,high.school,no,no,no,telephone,jun,wed,1242,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+37,technician,single,high.school,no,unknown,unknown,telephone,jun,wed,109,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,unknown,married,basic.6y,no,no,no,telephone,jun,wed,75,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,admin.,married,university.degree,no,no,no,telephone,jun,wed,129,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+48,admin.,divorced,high.school,no,no,no,telephone,jun,wed,89,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,wed,103,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,self-employed,married,basic.4y,no,yes,no,telephone,jun,wed,105,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+57,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,71,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,blue-collar,married,basic.6y,no,yes,no,telephone,jun,wed,406,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,unknown,single,unknown,unknown,yes,yes,telephone,jun,wed,66,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+54,admin.,divorced,unknown,unknown,no,no,telephone,jun,wed,38,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,blue-collar,single,basic.4y,no,no,no,telephone,jun,wed,166,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,blue-collar,married,professional.course,no,yes,no,telephone,jun,wed,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+47,admin.,divorced,university.degree,no,no,no,telephone,jun,wed,121,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,unknown,single,high.school,unknown,yes,yes,telephone,jun,wed,524,15,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+39,admin.,married,high.school,no,yes,no,telephone,jun,wed,1141,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+36,entrepreneur,married,basic.6y,unknown,no,no,telephone,jun,wed,125,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,blue-collar,single,basic.6y,no,no,no,telephone,jun,wed,18,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,blue-collar,single,university.degree,no,no,no,telephone,jun,wed,355,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,unemployed,married,high.school,unknown,no,no,telephone,jun,wed,237,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,admin.,married,university.degree,no,yes,no,telephone,jun,wed,299,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,admin.,single,university.degree,no,no,yes,telephone,jun,wed,578,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+25,admin.,single,high.school,no,yes,yes,telephone,jun,wed,109,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,admin.,married,university.degree,no,no,no,telephone,jun,wed,142,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,technician,married,basic.9y,unknown,no,no,telephone,jun,wed,102,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,233,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,admin.,married,high.school,no,yes,no,telephone,jun,wed,194,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,admin.,married,basic.6y,no,yes,yes,telephone,jun,wed,365,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,admin.,single,high.school,no,no,no,telephone,jun,wed,984,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+60,admin.,married,high.school,no,no,yes,telephone,jun,wed,16,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+48,admin.,married,high.school,no,yes,yes,telephone,jun,wed,105,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+58,blue-collar,divorced,unknown,no,yes,no,telephone,jun,wed,215,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,admin.,married,high.school,no,yes,yes,telephone,jun,wed,148,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,services,single,professional.course,no,no,no,telephone,jun,wed,386,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,wed,91,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,admin.,single,university.degree,no,no,no,telephone,jun,wed,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,admin.,divorced,university.degree,no,no,no,telephone,jun,wed,193,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+24,student,single,high.school,no,no,no,telephone,jun,wed,132,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+58,services,married,basic.4y,no,yes,no,telephone,jun,wed,279,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+59,retired,married,professional.course,no,yes,no,telephone,jun,wed,109,9,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,entrepreneur,married,university.degree,no,yes,no,telephone,jun,wed,1045,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+28,management,single,university.degree,no,no,no,telephone,jun,wed,361,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,204,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+23,blue-collar,single,basic.9y,no,yes,no,telephone,jun,wed,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,technician,divorced,basic.9y,no,no,no,telephone,jun,wed,105,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,admin.,married,high.school,no,yes,yes,telephone,jun,wed,73,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,technician,married,professional.course,unknown,yes,no,telephone,jun,wed,77,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+25,blue-collar,married,high.school,no,no,yes,telephone,jun,wed,29,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,admin.,married,university.degree,no,yes,no,telephone,jun,wed,355,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,technician,single,professional.course,no,yes,no,telephone,jun,wed,153,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,admin.,single,university.degree,no,yes,yes,telephone,jun,wed,87,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,admin.,single,university.degree,no,no,no,telephone,jun,wed,178,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,admin.,single,university.degree,no,no,yes,telephone,jun,wed,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,technician,single,professional.course,no,yes,no,telephone,jun,wed,605,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,admin.,married,high.school,no,no,no,telephone,jun,wed,638,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+31,services,single,high.school,no,yes,no,telephone,jun,wed,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,management,married,university.degree,no,no,no,telephone,jun,wed,121,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,services,single,high.school,no,yes,yes,telephone,jun,wed,216,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,blue-collar,single,basic.6y,no,no,no,telephone,jun,wed,83,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,wed,317,9,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,management,single,basic.9y,no,yes,no,telephone,jun,wed,184,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,self-employed,single,university.degree,no,yes,yes,telephone,jun,wed,161,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,blue-collar,married,high.school,no,no,no,telephone,jun,wed,301,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,admin.,married,high.school,no,no,no,telephone,jun,wed,276,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+55,retired,divorced,professional.course,no,no,no,telephone,jun,wed,182,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,self-employed,married,basic.9y,unknown,no,no,telephone,jun,wed,139,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+52,retired,married,basic.4y,no,no,yes,telephone,jun,wed,87,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,377,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,admin.,single,high.school,no,no,no,telephone,jun,wed,211,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,357,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,admin.,married,high.school,no,yes,yes,telephone,jun,wed,119,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+25,admin.,married,high.school,no,yes,no,telephone,jun,wed,264,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,self-employed,single,high.school,no,no,no,telephone,jun,wed,165,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+28,blue-collar,single,high.school,no,yes,yes,telephone,jun,wed,148,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,blue-collar,divorced,basic.9y,no,yes,yes,telephone,jun,wed,121,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,student,single,university.degree,unknown,yes,no,telephone,jun,wed,235,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,services,married,high.school,no,no,no,telephone,jun,wed,90,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+57,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,wed,367,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,blue-collar,single,basic.6y,no,yes,yes,telephone,jun,wed,444,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,blue-collar,married,basic.6y,no,yes,yes,telephone,jun,wed,141,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,technician,married,professional.course,unknown,yes,yes,telephone,jun,wed,31,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,admin.,single,high.school,no,no,no,telephone,jun,wed,283,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,767,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+25,services,single,high.school,no,no,no,telephone,jun,wed,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,wed,236,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,blue-collar,single,high.school,unknown,yes,no,telephone,jun,wed,936,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+49,housemaid,divorced,basic.6y,no,yes,no,telephone,jun,wed,85,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+53,technician,married,professional.course,unknown,yes,no,telephone,jun,wed,104,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,student,single,high.school,no,no,no,telephone,jun,wed,71,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,admin.,married,university.degree,no,no,no,telephone,jun,wed,525,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+30,services,single,high.school,unknown,no,no,telephone,jun,wed,324,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+28,blue-collar,single,basic.9y,no,yes,no,telephone,jun,wed,525,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,admin.,single,university.degree,no,yes,yes,telephone,jun,wed,238,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,unemployed,married,basic.9y,no,no,no,telephone,jun,wed,563,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+25,admin.,single,high.school,no,yes,yes,telephone,jun,wed,217,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+25,student,single,high.school,no,no,yes,telephone,jun,wed,433,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,housemaid,married,university.degree,no,yes,no,telephone,jun,wed,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+25,admin.,married,university.degree,no,yes,no,telephone,jun,wed,149,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,admin.,single,university.degree,no,yes,no,telephone,jun,wed,357,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,admin.,divorced,university.degree,no,no,no,telephone,jun,wed,140,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,management,married,unknown,unknown,yes,no,telephone,jun,wed,171,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+52,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,154,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,student,single,high.school,no,no,no,telephone,jun,wed,219,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,housemaid,divorced,high.school,no,no,no,telephone,jun,wed,1449,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+29,admin.,single,university.degree,no,no,yes,telephone,jun,wed,251,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,blue-collar,married,high.school,no,no,no,telephone,jun,wed,544,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+53,management,married,university.degree,no,unknown,unknown,telephone,jun,wed,232,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,blue-collar,married,basic.9y,no,no,yes,telephone,jun,wed,920,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+56,admin.,married,university.degree,no,no,no,telephone,jun,wed,79,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,103,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,services,married,high.school,unknown,yes,no,telephone,jun,wed,833,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,technician,single,university.degree,no,no,yes,telephone,jun,wed,97,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,admin.,single,high.school,no,no,no,telephone,jun,wed,205,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,admin.,married,high.school,no,unknown,unknown,telephone,jun,wed,360,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,blue-collar,married,high.school,no,no,no,telephone,jun,wed,344,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+56,housemaid,married,basic.4y,no,no,no,telephone,jun,wed,204,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,technician,divorced,basic.9y,no,no,no,telephone,jun,wed,156,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,admin.,single,high.school,no,no,no,telephone,jun,wed,213,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,admin.,married,university.degree,no,yes,no,telephone,jun,wed,153,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+49,admin.,married,university.degree,no,no,no,telephone,jun,wed,29,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,services,married,basic.9y,no,no,no,telephone,jun,wed,15,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,38,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,654,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,1254,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,admin.,single,high.school,no,no,no,telephone,jun,wed,139,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,81,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+53,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,597,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,228,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,housemaid,divorced,high.school,unknown,yes,no,telephone,jun,wed,763,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+25,unknown,single,university.degree,no,no,no,telephone,jun,wed,2203,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes
+45,management,married,unknown,unknown,yes,no,telephone,jun,wed,61,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+61,retired,married,high.school,no,unknown,unknown,telephone,jun,wed,99,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+51,unemployed,married,basic.4y,no,no,yes,telephone,jun,wed,85,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,admin.,single,high.school,no,no,no,telephone,jun,wed,187,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+25,admin.,single,university.degree,no,no,no,telephone,jun,wed,188,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+23,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,298,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,admin.,married,high.school,no,no,no,telephone,jun,wed,113,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,unemployed,single,university.degree,no,yes,no,telephone,jun,wed,201,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,264,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,admin.,single,high.school,no,yes,no,telephone,jun,wed,23,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,unemployed,married,professional.course,unknown,no,no,telephone,jun,wed,42,16,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,admin.,married,high.school,no,no,no,telephone,jun,wed,180,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,entrepreneur,married,basic.4y,no,yes,no,telephone,jun,wed,95,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,69,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,admin.,single,high.school,no,no,no,telephone,jun,wed,324,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,admin.,married,high.school,unknown,no,no,telephone,jun,wed,144,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,298,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,blue-collar,single,basic.9y,no,unknown,unknown,telephone,jun,wed,1224,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,services,married,basic.6y,no,unknown,unknown,telephone,jun,wed,173,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,technician,single,professional.course,no,yes,no,telephone,jun,wed,134,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,services,single,high.school,no,no,no,telephone,jun,wed,245,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,admin.,married,basic.9y,no,no,no,telephone,jun,wed,121,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,admin.,married,high.school,no,no,no,telephone,jun,wed,606,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,489,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,admin.,single,high.school,no,yes,no,telephone,jun,wed,184,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,self-employed,married,university.degree,no,yes,no,telephone,jun,wed,106,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,91,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,technician,married,professional.course,no,no,no,telephone,jun,wed,249,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,92,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,unemployed,single,university.degree,no,no,no,telephone,jun,wed,404,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,admin.,married,university.degree,no,no,no,telephone,jun,wed,135,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+48,admin.,divorced,professional.course,no,yes,no,telephone,jun,wed,37,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,141,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+32,technician,married,professional.course,no,no,no,telephone,jun,wed,117,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+23,services,single,high.school,no,no,no,telephone,jun,wed,174,9,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,unemployed,married,basic.9y,unknown,unknown,unknown,telephone,jun,wed,60,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+59,retired,married,basic.6y,unknown,no,no,telephone,jun,wed,235,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,wed,285,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+53,admin.,divorced,university.degree,no,yes,no,telephone,jun,wed,112,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+50,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,99,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+41,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,132,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+52,management,divorced,university.degree,no,no,no,telephone,jun,wed,208,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,entrepreneur,married,university.degree,no,yes,yes,telephone,jun,wed,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,services,single,high.school,no,yes,no,telephone,jun,wed,179,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,admin.,single,university.degree,no,yes,no,telephone,jun,wed,126,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+25,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,wed,329,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,blue-collar,single,university.degree,no,no,no,telephone,jun,wed,126,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+51,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+29,services,married,high.school,no,no,no,telephone,jun,wed,209,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,admin.,single,high.school,no,no,no,telephone,jun,wed,192,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+56,admin.,single,basic.9y,no,yes,no,telephone,jun,wed,341,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+47,blue-collar,married,unknown,unknown,no,yes,telephone,jun,wed,17,13,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+28,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,167,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,blue-collar,married,basic.6y,no,yes,no,telephone,jun,wed,52,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+53,management,married,basic.6y,unknown,yes,no,telephone,jun,wed,152,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+28,admin.,married,high.school,no,no,no,telephone,jun,wed,84,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,blue-collar,married,high.school,no,no,no,telephone,jun,wed,341,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,244,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,423,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+47,blue-collar,married,basic.9y,no,no,yes,telephone,jun,wed,65,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,admin.,divorced,basic.6y,unknown,no,yes,telephone,jun,wed,170,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+31,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,87,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,technician,single,basic.9y,unknown,yes,no,telephone,jun,wed,227,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+44,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,wed,34,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+24,technician,single,high.school,no,yes,no,telephone,jun,wed,169,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+45,entrepreneur,married,unknown,no,no,no,telephone,jun,wed,46,16,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+54,entrepreneur,married,university.degree,no,yes,no,telephone,jun,wed,39,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+35,blue-collar,single,basic.4y,unknown,yes,no,telephone,jun,wed,282,15,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+49,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,112,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,technician,married,university.degree,unknown,no,no,telephone,jun,wed,36,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+55,retired,divorced,professional.course,no,yes,no,telephone,jun,wed,69,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,technician,married,professional.course,no,yes,yes,telephone,jun,wed,299,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+54,technician,married,professional.course,no,yes,no,telephone,jun,wed,80,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+25,services,single,high.school,no,no,yes,telephone,jun,wed,729,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,technician,married,professional.course,no,no,no,telephone,jun,wed,389,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+40,management,married,basic.6y,unknown,yes,no,telephone,jun,wed,229,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+47,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,624,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,admin.,divorced,university.degree,no,yes,no,telephone,jun,wed,165,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+46,blue-collar,married,high.school,no,yes,no,telephone,jun,wed,216,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+52,technician,married,high.school,unknown,yes,no,telephone,jun,wed,122,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+30,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,201,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+39,admin.,single,high.school,no,no,no,telephone,jun,wed,172,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+54,admin.,married,university.degree,unknown,yes,no,telephone,jun,wed,79,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+36,technician,married,basic.9y,no,yes,yes,telephone,jun,wed,702,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,wed,112,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,blue-collar,single,unknown,no,no,no,telephone,jun,wed,65,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+59,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,361,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+37,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,140,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,blue-collar,married,basic.6y,no,yes,no,telephone,jun,wed,382,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+33,technician,divorced,professional.course,no,no,no,telephone,jun,wed,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+34,services,married,university.degree,no,no,no,telephone,jun,wed,175,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+38,technician,married,professional.course,no,no,no,telephone,jun,wed,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+42,blue-collar,married,basic.6y,no,no,yes,telephone,jun,wed,292,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+27,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,235,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+22,services,single,high.school,no,no,no,telephone,jun,wed,156,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+26,services,married,high.school,no,no,yes,telephone,jun,wed,570,11,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no
+51,technician,divorced,professional.course,no,no,no,telephone,jun,thu,399,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+51,admin.,married,high.school,no,no,yes,telephone,jun,thu,222,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+40,unemployed,divorced,high.school,no,no,yes,telephone,jun,thu,243,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+35,services,divorced,high.school,no,yes,no,telephone,jun,thu,74,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+54,admin.,married,high.school,no,yes,no,telephone,jun,thu,243,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+43,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,88,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+36,technician,married,professional.course,no,no,no,telephone,jun,thu,38,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,services,married,high.school,unknown,no,no,telephone,jun,thu,379,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+32,self-employed,married,university.degree,no,no,no,telephone,jun,thu,178,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+39,blue-collar,married,professional.course,unknown,yes,no,telephone,jun,thu,27,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+36,admin.,divorced,high.school,no,no,no,telephone,jun,thu,80,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+44,entrepreneur,single,university.degree,no,no,no,telephone,jun,thu,75,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,blue-collar,married,professional.course,no,yes,no,telephone,jun,thu,65,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,blue-collar,married,professional.course,no,yes,no,telephone,jun,thu,168,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+36,blue-collar,married,unknown,no,no,no,telephone,jun,thu,179,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+46,self-employed,married,basic.9y,unknown,no,no,telephone,jun,thu,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+58,blue-collar,married,professional.course,unknown,no,yes,telephone,jun,thu,25,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+34,management,married,university.degree,no,no,no,telephone,jun,thu,221,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,unknown,married,unknown,no,no,no,telephone,jun,thu,484,8,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+43,technician,married,professional.course,no,no,no,telephone,jun,thu,119,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+34,management,married,university.degree,no,yes,no,telephone,jun,thu,773,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+23,services,single,professional.course,unknown,no,no,telephone,jun,thu,169,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+33,admin.,single,professional.course,no,no,no,telephone,jun,thu,104,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,self-employed,married,university.degree,no,yes,no,telephone,jun,thu,870,11,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+26,self-employed,married,university.degree,no,yes,no,telephone,jun,thu,400,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+52,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,112,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+34,admin.,married,university.degree,no,no,no,telephone,jun,thu,283,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,services,single,professional.course,no,no,no,telephone,jun,thu,56,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,services,single,professional.course,no,no,no,telephone,jun,thu,224,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+54,admin.,divorced,university.degree,no,no,no,telephone,jun,thu,172,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+35,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,636,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+53,technician,married,unknown,no,no,no,telephone,jun,thu,40,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,admin.,married,university.degree,no,no,no,telephone,jun,thu,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+34,services,married,high.school,unknown,yes,no,telephone,jun,thu,396,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+49,admin.,divorced,university.degree,no,no,no,telephone,jun,thu,487,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+55,housemaid,divorced,university.degree,no,yes,no,telephone,jun,thu,221,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+30,blue-collar,single,unknown,no,no,no,telephone,jun,thu,116,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+30,blue-collar,single,unknown,no,yes,no,telephone,jun,thu,400,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,222,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+35,blue-collar,married,unknown,no,no,yes,telephone,jun,thu,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,92,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+52,retired,married,high.school,no,no,no,telephone,jun,thu,48,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+35,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,thu,97,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+58,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,69,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+48,admin.,single,university.degree,no,yes,no,telephone,jun,thu,333,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+28,admin.,single,university.degree,no,yes,no,telephone,jun,thu,78,6,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+24,admin.,single,high.school,no,no,no,telephone,jun,thu,131,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+32,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,155,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+40,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,thu,397,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,housemaid,married,high.school,no,yes,no,telephone,jun,thu,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+46,admin.,married,university.degree,unknown,no,no,telephone,jun,thu,93,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+29,services,single,high.school,no,yes,no,telephone,jun,thu,133,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+46,admin.,single,university.degree,no,no,no,telephone,jun,thu,57,6,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+36,technician,married,professional.course,no,yes,no,telephone,jun,thu,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+32,admin.,married,university.degree,no,no,no,telephone,jun,thu,47,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+48,admin.,married,high.school,no,yes,yes,telephone,jun,thu,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,services,divorced,basic.9y,no,yes,no,telephone,jun,thu,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+50,housemaid,married,unknown,no,yes,no,telephone,jun,thu,86,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,142,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+28,technician,single,professional.course,unknown,no,no,telephone,jun,thu,492,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,blue-collar,married,basic.9y,no,no,yes,telephone,jun,thu,327,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+30,technician,married,university.degree,unknown,no,no,telephone,jun,thu,189,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+42,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,812,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes
+52,management,divorced,university.degree,no,yes,yes,telephone,jun,thu,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+46,admin.,married,high.school,no,no,no,telephone,jun,thu,428,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,technician,married,basic.6y,no,no,no,telephone,jun,thu,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+23,services,single,professional.course,unknown,no,no,telephone,jun,thu,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+28,unknown,single,unknown,unknown,yes,no,telephone,jun,thu,169,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+33,self-employed,married,university.degree,no,yes,no,telephone,jun,thu,271,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,232,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+38,services,married,high.school,unknown,no,no,telephone,jun,thu,305,5,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+44,management,married,university.degree,no,no,no,telephone,jun,thu,175,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+30,technician,single,professional.course,no,unknown,unknown,telephone,jun,thu,67,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+26,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,thu,81,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+57,retired,single,professional.course,no,no,no,telephone,jun,thu,647,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+52,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,thu,910,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes
+30,blue-collar,single,unknown,no,no,no,telephone,jun,thu,65,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+35,admin.,married,university.degree,no,yes,yes,telephone,jun,thu,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+58,admin.,married,unknown,unknown,no,no,telephone,jun,thu,292,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+46,blue-collar,married,professional.course,no,no,no,telephone,jun,thu,1446,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes
+26,admin.,single,high.school,no,no,no,telephone,jun,thu,463,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+52,self-employed,married,basic.4y,unknown,no,no,telephone,jun,thu,60,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+48,management,married,university.degree,no,yes,no,telephone,jun,thu,141,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,admin.,married,basic.9y,unknown,yes,no,telephone,jun,thu,60,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+49,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,1149,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes
+58,retired,married,basic.4y,unknown,yes,no,telephone,jun,thu,179,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,thu,166,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,technician,married,professional.course,no,no,no,telephone,jun,thu,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+27,admin.,single,university.degree,no,no,yes,telephone,jun,thu,263,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+43,blue-collar,single,professional.course,no,no,no,telephone,jun,thu,133,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+33,services,married,high.school,no,yes,no,telephone,jun,thu,124,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+40,entrepreneur,married,basic.9y,no,no,no,telephone,jun,thu,331,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+36,self-employed,divorced,basic.4y,no,yes,no,telephone,jun,thu,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+58,housemaid,married,basic.4y,no,yes,no,telephone,jun,thu,190,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+43,unemployed,married,university.degree,unknown,yes,no,telephone,jun,thu,409,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,admin.,married,basic.9y,no,no,no,telephone,jun,thu,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+32,services,single,basic.9y,no,no,yes,telephone,jun,thu,139,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+59,technician,married,unknown,unknown,unknown,unknown,telephone,jun,thu,247,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+38,services,married,basic.4y,no,no,yes,telephone,jun,thu,90,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+40,admin.,divorced,high.school,no,no,no,telephone,jun,thu,170,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+46,admin.,married,basic.9y,unknown,yes,no,telephone,jun,thu,70,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,47,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,management,married,university.degree,no,yes,no,telephone,jun,thu,52,8,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+39,services,divorced,high.school,no,no,no,telephone,jun,thu,81,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+30,self-employed,single,university.degree,no,no,no,telephone,jun,thu,39,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+49,blue-collar,married,unknown,no,no,no,telephone,jun,thu,225,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+56,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,thu,36,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+43,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,287,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+53,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,627,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+29,blue-collar,single,basic.6y,no,yes,no,telephone,jun,thu,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,services,married,high.school,unknown,no,no,telephone,jun,thu,106,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+52,technician,married,basic.9y,no,yes,no,telephone,jun,thu,166,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,blue-collar,married,unknown,unknown,no,no,telephone,jun,thu,264,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+57,technician,divorced,basic.9y,no,no,no,telephone,jun,thu,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+57,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,452,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+36,management,married,university.degree,no,no,no,telephone,jun,thu,22,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+36,blue-collar,married,high.school,no,no,no,telephone,jun,thu,272,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+50,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,152,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+40,entrepreneur,married,basic.6y,unknown,no,no,telephone,jun,thu,85,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+39,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,247,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+28,technician,single,professional.course,no,no,no,telephone,jun,thu,508,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes
+40,management,married,university.degree,no,unknown,unknown,telephone,jun,thu,315,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+28,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,thu,109,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+39,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,414,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+32,entrepreneur,married,high.school,unknown,yes,no,telephone,jun,thu,107,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,technician,married,high.school,unknown,yes,no,telephone,jun,thu,218,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+49,entrepreneur,married,basic.4y,unknown,no,no,telephone,jun,thu,285,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+49,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,290,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+40,unemployed,divorced,high.school,no,no,yes,telephone,jun,thu,257,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+57,services,married,high.school,unknown,no,yes,telephone,jun,thu,267,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+42,housemaid,divorced,basic.4y,unknown,yes,no,telephone,jun,thu,150,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,management,married,university.degree,no,no,no,telephone,jun,thu,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+53,services,married,high.school,unknown,yes,no,telephone,jun,thu,108,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+44,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,153,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+47,technician,married,professional.course,no,no,no,telephone,jun,thu,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+56,retired,married,basic.9y,unknown,yes,no,telephone,jun,thu,60,20,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+40,services,divorced,high.school,no,no,no,telephone,jun,thu,265,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,blue-collar,single,basic.4y,no,no,no,telephone,jun,thu,590,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes
+45,housemaid,married,professional.course,unknown,yes,no,telephone,jun,thu,126,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+56,technician,married,professional.course,unknown,no,no,telephone,jun,thu,48,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+49,admin.,divorced,university.degree,no,yes,no,telephone,jun,thu,234,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+29,entrepreneur,divorced,basic.9y,no,yes,no,telephone,jun,thu,53,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+39,admin.,married,university.degree,no,no,no,telephone,jun,thu,370,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+38,services,married,high.school,unknown,no,no,telephone,jun,thu,419,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+58,retired,married,high.school,no,no,no,telephone,jun,thu,355,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,blue-collar,married,high.school,no,no,no,telephone,jun,thu,280,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+50,blue-collar,married,basic.4y,no,unknown,unknown,telephone,jun,thu,80,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+59,retired,married,high.school,unknown,no,yes,telephone,jun,thu,222,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+59,retired,married,high.school,unknown,yes,no,telephone,jun,thu,251,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+35,admin.,single,basic.4y,unknown,no,no,telephone,jun,thu,117,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,admin.,single,university.degree,no,yes,no,telephone,jun,thu,237,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,management,married,unknown,unknown,no,yes,telephone,jun,thu,636,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes
+55,retired,married,professional.course,no,yes,no,telephone,jun,thu,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,blue-collar,single,basic.4y,no,no,no,telephone,jun,thu,83,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+42,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,164,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+47,blue-collar,married,basic.6y,no,no,no,telephone,jun,thu,103,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+42,blue-collar,married,unknown,unknown,yes,no,telephone,jun,thu,280,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+28,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,118,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+54,admin.,married,university.degree,no,yes,yes,telephone,jun,thu,80,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+32,technician,single,high.school,no,yes,no,telephone,jun,thu,127,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+59,unknown,married,unknown,unknown,no,no,telephone,jun,thu,701,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes
+35,technician,married,professional.course,no,yes,no,telephone,jun,thu,160,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,housemaid,divorced,high.school,no,no,no,telephone,jun,thu,57,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+39,services,married,high.school,no,no,no,telephone,jun,thu,227,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,admin.,married,university.degree,no,no,no,telephone,jun,thu,115,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+36,blue-collar,married,high.school,no,yes,no,telephone,jun,thu,267,11,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,761,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes
+39,entrepreneur,single,basic.6y,no,no,no,telephone,jun,thu,1053,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes
+54,technician,single,university.degree,unknown,no,no,telephone,jun,thu,594,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+44,blue-collar,married,basic.4y,no,unknown,unknown,telephone,jun,thu,471,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+44,services,married,high.school,no,no,no,telephone,jun,thu,227,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+44,technician,single,basic.9y,no,yes,no,telephone,jun,thu,113,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,services,married,high.school,unknown,no,no,telephone,jun,thu,447,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+56,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,thu,215,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,admin.,married,high.school,unknown,no,no,telephone,jun,thu,185,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+33,self-employed,single,university.degree,no,unknown,unknown,telephone,jun,thu,169,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+44,admin.,married,university.degree,unknown,yes,no,telephone,jun,thu,18,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+47,admin.,divorced,high.school,no,no,no,telephone,jun,thu,23,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,blue-collar,single,basic.6y,unknown,no,no,telephone,jun,thu,27,8,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,348,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+27,admin.,single,university.degree,no,no,no,telephone,jun,thu,64,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,57,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+46,housemaid,married,basic.4y,no,yes,no,telephone,jun,thu,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+42,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,168,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,admin.,married,high.school,no,yes,no,telephone,jun,thu,581,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+46,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,346,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+46,self-employed,married,basic.9y,unknown,no,no,telephone,jun,thu,99,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,237,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,services,married,high.school,no,yes,no,telephone,jun,thu,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,27,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+34,services,married,high.school,no,no,no,telephone,jun,thu,511,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,services,married,high.school,no,no,no,telephone,jun,thu,201,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+29,services,single,high.school,no,yes,no,telephone,jun,thu,170,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+26,blue-collar,single,basic.9y,no,yes,no,telephone,jun,thu,61,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,admin.,married,university.degree,no,no,no,telephone,jun,thu,256,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+50,technician,married,professional.course,unknown,yes,no,telephone,jun,thu,87,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+55,admin.,married,basic.4y,no,no,no,telephone,jun,thu,137,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+40,technician,married,basic.9y,unknown,yes,no,telephone,jun,thu,245,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+50,management,married,unknown,no,yes,no,telephone,jun,thu,1005,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+52,management,divorced,university.degree,no,no,no,telephone,jun,thu,20,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+39,services,married,high.school,no,no,no,telephone,jun,thu,387,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,management,single,university.degree,unknown,no,yes,telephone,jun,thu,690,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+39,admin.,married,high.school,unknown,yes,no,telephone,jun,thu,1084,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+38,blue-collar,married,high.school,no,no,no,telephone,jun,thu,140,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+38,services,married,basic.4y,no,yes,no,telephone,jun,thu,400,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+60,retired,married,professional.course,no,yes,no,telephone,jun,thu,190,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+34,technician,single,professional.course,no,no,no,telephone,jun,thu,432,8,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,technician,married,university.degree,no,no,no,telephone,jun,thu,82,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+32,housemaid,married,basic.6y,unknown,no,no,telephone,jun,thu,19,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+48,management,married,university.degree,no,no,yes,telephone,jun,thu,94,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+42,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,34,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+29,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,thu,586,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,technician,married,university.degree,no,no,no,telephone,jun,thu,983,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes
+40,admin.,married,high.school,no,no,no,telephone,jun,thu,221,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+40,admin.,single,unknown,unknown,no,no,telephone,jun,thu,563,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,technician,married,university.degree,no,no,no,telephone,jun,thu,741,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+58,entrepreneur,divorced,university.degree,no,no,no,telephone,jun,thu,40,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+40,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,thu,85,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+48,blue-collar,married,basic.6y,no,no,no,telephone,jun,thu,313,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+34,admin.,single,university.degree,no,no,no,telephone,jun,thu,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+36,blue-collar,single,basic.9y,no,yes,no,telephone,jun,thu,21,10,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,17,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,entrepreneur,married,university.degree,no,unknown,unknown,telephone,jun,thu,59,7,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+33,admin.,married,university.degree,no,unknown,unknown,telephone,jun,thu,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+38,housemaid,married,basic.9y,unknown,unknown,unknown,telephone,jun,thu,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+38,admin.,married,university.degree,no,yes,no,telephone,jun,thu,197,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+36,admin.,married,basic.9y,no,yes,no,telephone,jun,thu,622,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+34,services,divorced,professional.course,unknown,yes,no,telephone,jun,thu,339,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,unknown,married,unknown,unknown,no,yes,telephone,jun,thu,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+43,admin.,married,university.degree,no,no,no,telephone,jun,thu,175,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,technician,single,university.degree,unknown,yes,no,telephone,jun,thu,817,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes
+52,management,married,university.degree,no,no,no,telephone,jun,thu,423,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+35,blue-collar,married,professional.course,no,yes,no,telephone,jun,thu,181,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+47,admin.,married,university.degree,unknown,no,no,telephone,jun,thu,49,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+26,housemaid,married,university.degree,no,no,no,telephone,jun,thu,181,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+35,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,thu,77,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+57,self-employed,married,university.degree,unknown,yes,no,telephone,jun,thu,318,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+50,technician,married,professional.course,no,no,no,telephone,jun,thu,158,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+43,admin.,married,unknown,no,yes,no,telephone,jun,thu,189,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,blue-collar,divorced,professional.course,no,unknown,unknown,telephone,jun,thu,127,6,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+47,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,86,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+48,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,jun,thu,63,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,technician,married,professional.course,no,no,no,telephone,jun,thu,517,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+30,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,thu,420,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,333,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+34,entrepreneur,married,basic.4y,no,no,no,telephone,jun,thu,26,24,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+56,admin.,divorced,unknown,no,no,no,telephone,jun,thu,57,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+36,admin.,married,high.school,no,no,no,telephone,jun,thu,127,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,272,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,admin.,single,basic.9y,no,no,no,telephone,jun,thu,105,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+40,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,101,11,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,admin.,married,high.school,no,no,no,telephone,jun,thu,152,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+32,services,married,high.school,unknown,no,no,telephone,jun,thu,97,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+52,housemaid,married,basic.4y,unknown,no,no,telephone,jun,thu,92,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+39,admin.,married,high.school,no,yes,no,telephone,jun,thu,337,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+47,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,955,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+29,services,single,high.school,no,yes,no,telephone,jun,thu,1018,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes
+46,management,married,basic.6y,unknown,no,no,telephone,jun,thu,90,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+34,services,single,high.school,no,no,no,telephone,jun,thu,729,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+35,technician,single,high.school,no,yes,no,telephone,jun,thu,159,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+30,technician,divorced,professional.course,no,yes,no,telephone,jun,thu,330,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,entrepreneur,married,university.degree,no,yes,no,telephone,jun,thu,130,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,thu,94,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+40,admin.,married,high.school,no,no,no,telephone,jun,thu,314,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+47,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,74,5,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+43,admin.,married,professional.course,no,yes,no,telephone,jun,thu,193,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+30,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,53,29,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,services,married,high.school,no,no,no,telephone,jun,thu,231,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+46,admin.,divorced,university.degree,no,no,no,telephone,jun,thu,353,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+32,technician,married,professional.course,no,no,no,telephone,jun,thu,805,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+47,entrepreneur,married,professional.course,unknown,unknown,unknown,telephone,jun,thu,19,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+32,services,single,basic.6y,no,unknown,unknown,telephone,jun,thu,131,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,entrepreneur,married,basic.9y,no,yes,yes,telephone,jun,thu,102,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+27,blue-collar,single,basic.9y,no,no,yes,telephone,jun,thu,869,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+39,admin.,married,university.degree,no,yes,no,telephone,jun,thu,65,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+56,technician,married,professional.course,unknown,yes,no,telephone,jun,thu,150,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+39,management,divorced,university.degree,unknown,no,no,telephone,jun,thu,91,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+35,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,144,7,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+36,management,divorced,professional.course,no,no,no,telephone,jun,thu,115,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+49,technician,married,university.degree,no,yes,yes,telephone,jun,thu,460,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+40,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,thu,561,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+34,blue-collar,divorced,professional.course,no,no,no,telephone,jun,thu,884,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes
+51,unemployed,married,high.school,no,no,no,telephone,jun,thu,93,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+38,entrepreneur,married,university.degree,no,no,no,telephone,jun,thu,989,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,admin.,married,basic.9y,no,yes,no,telephone,jun,thu,209,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+51,admin.,married,university.degree,no,no,no,telephone,jun,thu,295,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+34,admin.,single,basic.9y,unknown,yes,no,telephone,jun,thu,319,6,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+47,admin.,married,unknown,unknown,yes,yes,telephone,jun,thu,323,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+38,management,married,high.school,unknown,no,yes,telephone,jun,thu,70,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+43,services,married,basic.9y,no,no,no,telephone,jun,thu,110,17,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+46,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,162,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+38,admin.,single,high.school,unknown,yes,no,telephone,jun,thu,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+25,services,single,professional.course,no,yes,no,telephone,jun,thu,18,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,technician,married,professional.course,no,no,no,telephone,jun,thu,221,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+46,admin.,divorced,university.degree,no,no,no,telephone,jun,thu,138,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+52,blue-collar,married,unknown,unknown,yes,no,telephone,jun,thu,60,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+34,admin.,single,university.degree,unknown,no,no,telephone,jun,thu,17,16,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,technician,married,professional.course,no,no,no,telephone,jun,thu,214,5,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+40,admin.,married,university.degree,unknown,no,no,telephone,jun,thu,650,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+27,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,75,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+43,technician,married,basic.9y,unknown,no,no,telephone,jun,thu,246,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+29,blue-collar,married,high.school,no,no,no,telephone,jun,thu,718,13,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,self-employed,married,university.degree,unknown,no,no,telephone,jun,thu,108,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+36,services,married,high.school,no,yes,no,telephone,jun,thu,394,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+30,management,single,university.degree,no,no,no,telephone,jun,thu,27,7,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+48,admin.,divorced,high.school,no,yes,yes,telephone,jun,thu,1011,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,admin.,married,high.school,no,yes,yes,telephone,jun,thu,204,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+42,admin.,married,university.degree,unknown,yes,no,telephone,jun,thu,160,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+37,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,222,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+48,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,240,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+38,unemployed,married,basic.4y,unknown,no,no,telephone,jun,thu,54,26,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,technician,married,university.degree,no,unknown,unknown,telephone,jun,thu,131,10,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+35,technician,married,professional.course,no,yes,no,telephone,jun,thu,18,31,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+39,blue-collar,married,basic.6y,no,no,no,telephone,jun,thu,31,5,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,services,divorced,unknown,no,no,no,telephone,jun,thu,474,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+23,blue-collar,married,high.school,no,no,yes,telephone,jun,thu,173,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+42,unemployed,married,basic.6y,unknown,no,no,telephone,jun,thu,87,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+31,services,married,high.school,unknown,yes,no,telephone,jun,thu,67,12,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+43,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,246,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+25,technician,single,university.degree,no,yes,yes,telephone,jun,thu,128,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+36,admin.,married,high.school,no,yes,no,telephone,jun,thu,285,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+46,technician,married,professional.course,unknown,yes,no,telephone,jun,thu,69,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+57,technician,single,professional.course,no,yes,no,telephone,jun,thu,451,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+41,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,96,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+44,services,married,high.school,no,yes,no,telephone,jun,thu,172,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+53,technician,married,professional.course,unknown,yes,no,telephone,jun,thu,939,6,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+46,management,married,university.degree,no,yes,no,telephone,jun,thu,234,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+29,services,single,high.school,no,no,no,telephone,jun,thu,240,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+45,housemaid,married,professional.course,unknown,no,no,telephone,jun,thu,210,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+42,blue-collar,divorced,high.school,no,no,yes,telephone,jun,thu,175,7,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+50,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,182,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+44,housemaid,married,basic.4y,unknown,no,no,telephone,jun,thu,124,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+32,housemaid,married,high.school,no,no,no,telephone,jun,thu,372,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+32,housemaid,single,high.school,no,no,no,telephone,jun,thu,406,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no
+35,admin.,married,university.degree,no,yes,no,telephone,jun,fri,463,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+30,services,married,high.school,unknown,no,no,telephone,jun,fri,24,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+30,services,married,high.school,unknown,unknown,unknown,telephone,jun,fri,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+30,services,married,high.school,unknown,no,yes,telephone,jun,fri,105,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+31,services,married,high.school,no,yes,no,telephone,jun,fri,130,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+50,entrepreneur,married,unknown,no,no,no,telephone,jun,fri,42,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+36,blue-collar,married,high.school,no,yes,no,telephone,jun,fri,178,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+48,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,94,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+36,blue-collar,married,high.school,no,no,no,telephone,jun,fri,82,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,fri,144,15,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+47,entrepreneur,married,unknown,unknown,no,no,telephone,jun,fri,1072,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+54,retired,married,professional.course,no,yes,no,telephone,jun,fri,40,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,admin.,single,university.degree,no,no,yes,telephone,jun,fri,164,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,management,married,high.school,no,unknown,unknown,telephone,jun,fri,190,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,services,married,high.school,no,yes,no,telephone,jun,fri,582,11,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,blue-collar,single,basic.9y,unknown,yes,no,telephone,jun,fri,261,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+44,management,single,university.degree,unknown,no,no,telephone,jun,fri,215,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,blue-collar,divorced,unknown,no,no,no,telephone,jun,fri,278,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+46,blue-collar,married,high.school,unknown,no,no,telephone,jun,fri,116,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,blue-collar,married,basic.9y,no,no,yes,telephone,jun,fri,188,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,services,married,high.school,no,yes,no,telephone,jun,fri,554,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes
+33,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,432,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+60,admin.,single,high.school,no,no,no,telephone,jun,fri,118,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+36,technician,married,professional.course,no,no,no,telephone,jun,fri,193,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+54,technician,married,basic.9y,no,no,no,telephone,jun,fri,63,9,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,technician,married,university.degree,no,yes,no,telephone,jun,fri,246,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+32,management,married,high.school,no,no,no,telephone,jun,fri,143,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+30,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,fri,361,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,services,married,high.school,unknown,no,no,telephone,jun,fri,453,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+54,entrepreneur,married,basic.9y,no,no,yes,telephone,jun,fri,249,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+50,admin.,married,high.school,no,no,yes,telephone,jun,fri,219,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,housemaid,married,basic.6y,unknown,no,no,telephone,jun,fri,126,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+54,management,married,high.school,unknown,no,no,telephone,jun,fri,552,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+44,technician,married,basic.9y,no,yes,no,telephone,jun,fri,447,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+31,blue-collar,married,unknown,no,no,no,telephone,jun,fri,339,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,technician,married,professional.course,no,yes,no,telephone,jun,fri,220,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+53,services,married,high.school,unknown,no,no,telephone,jun,fri,373,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+37,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,26,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+49,technician,married,professional.course,no,yes,no,telephone,jun,fri,79,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+45,self-employed,married,basic.4y,unknown,no,no,telephone,jun,fri,339,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,technician,married,professional.course,no,no,no,telephone,jun,fri,18,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,513,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+56,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,84,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+43,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,404,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,admin.,married,university.degree,no,yes,no,telephone,jun,fri,186,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+54,technician,married,university.degree,unknown,yes,yes,telephone,jun,fri,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+57,management,divorced,university.degree,no,yes,no,telephone,jun,fri,351,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+58,technician,married,unknown,no,yes,no,telephone,jun,fri,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+54,technician,married,university.degree,unknown,no,no,telephone,jun,fri,399,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,blue-collar,married,basic.6y,no,yes,no,telephone,jun,fri,60,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+47,technician,married,basic.9y,no,no,no,telephone,jun,fri,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+31,admin.,single,university.degree,no,no,no,telephone,jun,fri,19,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+48,unemployed,married,high.school,unknown,yes,no,telephone,jun,fri,334,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+36,management,married,university.degree,no,no,yes,telephone,jun,fri,49,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,50,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+27,services,single,professional.course,no,no,no,telephone,jun,fri,106,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,admin.,married,professional.course,no,yes,yes,telephone,jun,fri,248,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+30,self-employed,married,professional.course,no,no,no,telephone,jun,fri,101,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+50,management,married,university.degree,no,no,no,telephone,jun,fri,114,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+50,self-employed,married,university.degree,no,no,no,telephone,jun,fri,414,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,admin.,single,high.school,no,yes,no,telephone,jun,fri,266,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+26,services,single,high.school,no,no,no,telephone,jun,fri,363,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+51,services,married,high.school,unknown,yes,no,telephone,jun,fri,246,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+32,admin.,single,university.degree,no,yes,yes,telephone,jun,fri,431,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+44,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,fri,110,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+44,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,technician,married,unknown,no,no,no,telephone,jun,fri,237,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+56,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,1276,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes
+35,blue-collar,single,unknown,no,no,yes,telephone,jun,fri,1114,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,admin.,divorced,basic.9y,no,no,no,telephone,jun,fri,161,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,189,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+29,technician,married,professional.course,no,no,no,telephone,jun,fri,29,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+48,services,married,high.school,unknown,yes,no,telephone,jun,fri,329,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,420,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+31,blue-collar,single,high.school,no,no,no,telephone,jun,fri,672,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+52,self-employed,married,basic.4y,unknown,no,yes,telephone,jun,fri,381,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes
+58,technician,divorced,basic.9y,no,no,no,telephone,jun,fri,80,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+45,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,194,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,technician,married,professional.course,no,no,no,telephone,jun,fri,1994,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,183,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+32,technician,single,high.school,no,no,no,telephone,jun,fri,250,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+50,services,married,unknown,unknown,no,no,telephone,jun,fri,81,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+53,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,223,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+45,admin.,single,basic.9y,unknown,yes,no,telephone,jun,fri,172,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+36,services,married,high.school,no,no,no,telephone,jun,fri,100,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+52,technician,married,basic.9y,no,no,no,telephone,jun,fri,188,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,blue-collar,married,high.school,unknown,no,yes,telephone,jun,fri,320,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+50,technician,married,professional.course,no,no,yes,telephone,jun,fri,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+57,retired,married,basic.4y,no,no,no,telephone,jun,fri,83,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,admin.,single,high.school,no,yes,no,telephone,jun,fri,122,16,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+30,services,married,high.school,no,yes,no,telephone,jun,fri,51,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,self-employed,married,basic.9y,no,no,no,telephone,jun,fri,330,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+53,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,fri,164,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,unemployed,married,university.degree,no,yes,yes,telephone,jun,fri,272,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,120,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,technician,married,basic.9y,no,yes,no,telephone,jun,fri,307,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,admin.,married,high.school,unknown,yes,no,telephone,jun,fri,377,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+55,services,married,high.school,unknown,yes,no,telephone,jun,fri,315,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,services,married,professional.course,no,no,no,telephone,jun,fri,24,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,services,divorced,basic.6y,no,no,yes,telephone,jun,fri,386,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+30,services,divorced,high.school,no,yes,no,telephone,jun,fri,56,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+56,blue-collar,married,high.school,unknown,yes,no,telephone,jun,fri,79,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,management,married,unknown,no,yes,no,telephone,jun,fri,30,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+32,blue-collar,married,high.school,unknown,no,no,telephone,jun,fri,182,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,admin.,single,university.degree,no,yes,no,telephone,jun,fri,358,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,retired,married,basic.9y,unknown,no,no,telephone,jun,fri,42,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+28,admin.,single,university.degree,no,no,no,telephone,jun,fri,227,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+52,unknown,married,basic.4y,no,yes,no,telephone,jun,fri,29,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,admin.,married,university.degree,no,no,no,telephone,jun,fri,52,13,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,unemployed,married,university.degree,no,no,no,telephone,jun,fri,360,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+58,services,married,high.school,unknown,yes,yes,telephone,jun,fri,136,13,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,entrepreneur,divorced,high.school,no,no,no,telephone,jun,fri,106,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,admin.,single,high.school,no,yes,no,telephone,jun,fri,141,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+37,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,28,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,blue-collar,married,professional.course,no,yes,no,telephone,jun,fri,862,11,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes
+40,admin.,single,high.school,no,no,no,telephone,jun,fri,97,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,blue-collar,married,high.school,no,no,no,telephone,jun,fri,107,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,94,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+26,entrepreneur,married,university.degree,no,yes,no,telephone,jun,fri,168,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+47,blue-collar,single,basic.4y,unknown,yes,no,telephone,jun,fri,44,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+28,admin.,married,high.school,no,no,yes,telephone,jun,fri,260,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,admin.,married,university.degree,no,no,no,telephone,jun,fri,460,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes
+35,management,single,unknown,no,no,no,telephone,jun,fri,712,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes
+36,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,1567,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,technician,single,university.degree,no,no,no,telephone,jun,fri,78,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+28,entrepreneur,married,basic.9y,no,yes,yes,telephone,jun,fri,262,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+43,management,married,university.degree,no,no,no,telephone,jun,fri,84,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,housemaid,married,basic.9y,no,yes,yes,telephone,jun,fri,173,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+44,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jun,fri,175,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,technician,single,professional.course,unknown,no,no,telephone,jun,fri,29,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,968,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+32,unemployed,single,high.school,unknown,yes,no,telephone,jun,fri,219,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,unknown,married,basic.6y,no,no,yes,telephone,jun,fri,220,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+32,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,642,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes
+30,admin.,married,university.degree,no,no,yes,telephone,jun,fri,71,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,admin.,married,high.school,unknown,no,no,telephone,jun,fri,238,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+52,entrepreneur,married,university.degree,unknown,no,yes,telephone,jun,fri,60,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+48,blue-collar,married,basic.4y,no,unknown,unknown,telephone,jun,fri,165,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,retired,single,basic.6y,unknown,yes,no,telephone,jun,fri,133,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+44,technician,married,professional.course,unknown,no,no,telephone,jun,fri,45,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,admin.,single,university.degree,no,yes,no,telephone,jun,fri,136,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+47,admin.,married,high.school,unknown,unknown,unknown,telephone,jun,fri,136,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+30,admin.,divorced,university.degree,unknown,yes,no,telephone,jun,fri,40,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+47,admin.,married,high.school,unknown,no,yes,telephone,jun,fri,383,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+46,self-employed,single,high.school,no,no,no,telephone,jun,fri,464,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+43,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,fri,37,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+54,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,jun,fri,189,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,services,married,high.school,unknown,no,no,telephone,jun,fri,78,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,blue-collar,married,basic.9y,no,no,yes,telephone,jun,fri,176,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,fri,181,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+46,admin.,married,university.degree,no,yes,no,telephone,jun,fri,193,7,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+31,admin.,married,high.school,no,yes,yes,telephone,jun,fri,118,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+36,entrepreneur,married,university.degree,unknown,unknown,unknown,telephone,jun,fri,217,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+46,entrepreneur,married,unknown,unknown,yes,no,telephone,jun,fri,86,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+48,blue-collar,married,basic.6y,no,unknown,unknown,telephone,jun,fri,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,185,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+50,management,married,university.degree,unknown,no,no,telephone,jun,fri,442,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,blue-collar,married,professional.course,unknown,no,no,telephone,jun,fri,554,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes
+58,services,married,basic.4y,no,no,no,telephone,jun,fri,247,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+58,services,married,basic.4y,no,unknown,unknown,telephone,jun,fri,250,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+48,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,800,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+43,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,216,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+27,self-employed,single,university.degree,no,no,no,telephone,jun,fri,46,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+51,admin.,married,basic.9y,no,no,yes,telephone,jun,fri,434,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,250,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,admin.,married,university.degree,no,no,no,telephone,jun,fri,230,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,516,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+58,housemaid,married,high.school,unknown,unknown,unknown,telephone,jun,fri,153,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,78,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+44,self-employed,divorced,high.school,no,yes,no,telephone,jun,fri,1041,13,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,admin.,married,university.degree,no,yes,no,telephone,jun,fri,66,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+51,technician,married,basic.6y,unknown,no,no,telephone,jun,fri,527,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,technician,married,basic.9y,no,no,no,telephone,jun,fri,100,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+51,admin.,married,high.school,no,no,no,telephone,jun,fri,308,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+48,self-employed,married,university.degree,no,no,no,telephone,jun,fri,467,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes
+47,services,married,high.school,no,no,no,telephone,jun,fri,341,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+46,technician,divorced,university.degree,no,no,no,telephone,jun,fri,1288,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,admin.,married,university.degree,no,no,no,telephone,jun,fri,178,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+31,technician,married,professional.course,no,no,no,telephone,jun,fri,163,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+37,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,172,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+58,management,married,basic.4y,unknown,no,no,telephone,jun,fri,301,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+37,technician,married,professional.course,no,no,no,telephone,jun,fri,140,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,311,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,unemployed,married,university.degree,no,no,no,telephone,jun,fri,212,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+45,unemployed,married,basic.4y,no,yes,yes,telephone,jun,fri,264,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,326,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+29,admin.,married,high.school,no,no,no,telephone,jun,fri,319,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,technician,married,university.degree,no,yes,no,telephone,jun,fri,186,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+46,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,473,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,blue-collar,single,unknown,no,no,yes,telephone,jun,fri,274,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,unemployed,married,basic.6y,unknown,no,yes,telephone,jun,fri,152,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+51,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,fri,18,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+45,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,fri,13,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,technician,divorced,basic.4y,no,no,no,telephone,jun,fri,639,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+47,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,2653,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes
+31,housemaid,single,university.degree,no,no,yes,telephone,jun,fri,129,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,fri,426,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+57,management,single,basic.9y,no,no,no,telephone,jun,fri,229,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+37,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,fri,460,8,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+36,blue-collar,married,basic.6y,no,unknown,unknown,telephone,jun,fri,154,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+47,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,252,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+32,housemaid,married,high.school,no,yes,yes,telephone,jun,fri,292,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+43,admin.,married,high.school,no,yes,no,telephone,jun,fri,44,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+48,management,married,basic.9y,no,yes,no,telephone,jun,fri,384,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+31,admin.,single,university.degree,no,no,no,telephone,jun,fri,213,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,admin.,married,university.degree,no,no,no,telephone,jun,fri,94,7,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+31,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,72,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+44,admin.,married,high.school,no,no,no,telephone,jun,fri,36,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+37,entrepreneur,married,university.degree,no,yes,no,telephone,jun,fri,316,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+49,retired,married,basic.9y,no,no,no,telephone,jun,fri,217,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+32,admin.,single,high.school,no,no,yes,telephone,jun,fri,180,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+32,technician,married,university.degree,no,yes,no,telephone,jun,fri,562,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+31,management,married,university.degree,no,yes,no,telephone,jun,fri,422,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,blue-collar,single,basic.6y,unknown,no,yes,telephone,jun,fri,198,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+29,admin.,single,high.school,no,yes,no,telephone,jun,fri,17,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+46,self-employed,married,professional.course,no,yes,no,telephone,jun,fri,174,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+55,unemployed,married,basic.4y,unknown,yes,yes,telephone,jun,fri,95,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+45,admin.,divorced,basic.9y,no,yes,no,telephone,jun,fri,261,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,fri,144,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+53,admin.,married,basic.9y,no,no,no,telephone,jun,fri,122,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,technician,single,professional.course,no,unknown,unknown,telephone,jun,fri,59,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+29,services,single,high.school,unknown,yes,no,telephone,jun,fri,334,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+30,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,fri,49,8,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,services,married,high.school,no,yes,yes,telephone,jun,fri,165,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+57,retired,married,university.degree,no,yes,no,telephone,jun,fri,59,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+29,services,divorced,high.school,no,no,no,telephone,jun,fri,103,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+49,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,fri,190,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+27,blue-collar,single,basic.6y,no,yes,yes,telephone,jun,fri,187,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+46,blue-collar,married,professional.course,no,no,no,telephone,jun,fri,286,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+28,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,167,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+36,technician,married,high.school,no,no,no,telephone,jun,fri,52,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+46,technician,married,professional.course,no,no,yes,telephone,jun,fri,197,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+37,housemaid,married,university.degree,no,yes,no,telephone,jun,fri,262,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+56,technician,married,professional.course,unknown,no,yes,telephone,jun,fri,168,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,jun,fri,430,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,technician,married,professional.course,no,no,no,telephone,jun,fri,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,48,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,technician,married,professional.course,no,yes,no,telephone,jun,fri,350,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,management,married,university.degree,no,yes,no,telephone,jun,fri,30,24,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,blue-collar,married,basic.9y,no,no,yes,telephone,jun,fri,213,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+44,technician,married,professional.course,unknown,yes,no,telephone,jun,fri,371,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+43,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,207,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+32,blue-collar,married,professional.course,no,no,no,telephone,jun,fri,24,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,204,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,technician,married,professional.course,no,no,no,telephone,jun,fri,36,24,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+37,unemployed,married,basic.9y,no,no,no,telephone,jun,fri,139,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+55,admin.,married,high.school,no,unknown,unknown,telephone,jun,fri,92,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,housemaid,single,basic.4y,no,no,no,telephone,jun,fri,322,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,self-employed,married,basic.4y,unknown,no,no,telephone,jun,fri,420,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,admin.,married,university.degree,unknown,unknown,unknown,telephone,jun,fri,65,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+56,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,143,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,blue-collar,married,high.school,unknown,unknown,unknown,telephone,jun,fri,102,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,blue-collar,married,high.school,unknown,no,no,telephone,jun,fri,58,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+44,admin.,married,university.degree,unknown,yes,yes,telephone,jun,fri,545,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+37,technician,single,high.school,no,yes,yes,telephone,jun,fri,190,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,admin.,married,high.school,unknown,yes,no,telephone,jun,fri,85,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,1085,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes
+38,admin.,married,basic.9y,unknown,yes,no,telephone,jun,fri,514,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+27,student,single,high.school,unknown,no,no,telephone,jun,fri,471,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,unknown,single,unknown,unknown,yes,no,telephone,jun,fri,94,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,admin.,single,university.degree,no,no,yes,telephone,jun,fri,159,9,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,management,married,basic.6y,unknown,yes,no,telephone,jun,fri,38,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,technician,married,university.degree,no,no,no,telephone,jun,fri,191,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,blue-collar,divorced,professional.course,no,no,no,telephone,jun,fri,10,23,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+53,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,1330,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+45,admin.,married,high.school,no,no,no,telephone,jun,fri,48,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,technician,single,high.school,no,no,no,telephone,jun,fri,236,7,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+47,technician,married,basic.9y,no,yes,no,telephone,jun,fri,503,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+31,services,married,high.school,no,no,yes,telephone,jun,fri,108,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,management,married,university.degree,no,no,no,telephone,jun,fri,47,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,blue-collar,single,basic.6y,no,no,no,telephone,jun,fri,319,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+37,blue-collar,single,professional.course,no,yes,no,telephone,jun,fri,42,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,management,married,unknown,no,yes,no,telephone,jun,fri,143,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,services,married,high.school,unknown,unknown,unknown,telephone,jun,fri,82,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,admin.,single,basic.4y,unknown,unknown,unknown,telephone,jun,fri,248,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+43,technician,single,basic.9y,no,yes,no,telephone,jun,fri,461,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+50,self-employed,married,basic.4y,unknown,yes,no,telephone,jun,fri,313,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+36,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,86,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,management,married,university.degree,no,no,no,telephone,jun,fri,197,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+53,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,80,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+28,admin.,married,high.school,no,no,no,telephone,jun,fri,113,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,admin.,single,basic.6y,no,yes,yes,telephone,jun,fri,613,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,201,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,technician,married,professional.course,no,no,no,telephone,jun,fri,1271,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+37,admin.,married,university.degree,no,no,no,telephone,jun,fri,155,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,admin.,married,university.degree,no,no,no,telephone,jun,fri,466,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+31,unemployed,married,university.degree,no,no,no,telephone,jun,fri,298,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+51,technician,married,professional.course,unknown,yes,no,telephone,jun,fri,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+51,admin.,married,basic.9y,unknown,yes,no,telephone,jun,fri,114,7,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+50,self-employed,married,university.degree,no,yes,no,telephone,jun,fri,306,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+60,self-employed,married,professional.course,unknown,no,no,telephone,jun,fri,162,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+28,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,fri,419,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,entrepreneur,single,professional.course,no,no,yes,telephone,jun,fri,85,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+52,self-employed,single,university.degree,unknown,yes,no,telephone,jun,fri,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+56,technician,married,unknown,no,no,no,telephone,jun,fri,49,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,admin.,single,university.degree,no,no,no,telephone,jun,fri,298,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,250,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,blue-collar,divorced,basic.9y,no,unknown,unknown,telephone,jun,fri,92,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+47,admin.,married,university.degree,no,no,no,telephone,jun,fri,143,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,151,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+56,admin.,married,high.school,no,yes,no,telephone,jun,fri,21,20,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+46,admin.,married,high.school,no,no,no,telephone,jun,fri,354,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+53,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,fri,63,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,unemployed,married,basic.9y,no,no,no,telephone,jun,fri,56,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+36,admin.,divorced,high.school,no,yes,yes,telephone,jun,fri,354,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,jun,fri,161,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,fri,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,fri,176,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+54,technician,married,university.degree,unknown,no,no,telephone,jun,fri,431,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+47,retired,married,basic.4y,unknown,no,no,telephone,jun,fri,63,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+36,blue-collar,married,high.school,no,no,yes,telephone,jun,fri,164,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,blue-collar,divorced,basic.6y,unknown,no,no,telephone,jun,fri,81,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,unemployed,married,professional.course,no,yes,no,telephone,jun,fri,136,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+31,services,married,high.school,no,yes,no,telephone,jun,fri,303,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+30,services,divorced,basic.9y,no,no,no,telephone,jun,fri,158,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,fri,651,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,technician,married,professional.course,no,yes,no,telephone,jun,fri,118,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,unemployed,married,unknown,no,no,no,telephone,jun,fri,280,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,technician,married,university.degree,no,no,yes,telephone,jun,fri,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+29,admin.,married,university.degree,no,no,no,telephone,jun,fri,39,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+50,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,fri,82,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+36,admin.,married,high.school,no,no,no,telephone,jun,fri,355,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+43,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,151,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+31,technician,married,university.degree,no,yes,no,telephone,jun,fri,59,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,technician,married,professional.course,unknown,yes,no,telephone,jun,fri,34,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,190,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+45,technician,married,professional.course,unknown,no,no,telephone,jun,fri,124,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,admin.,single,university.degree,no,yes,no,telephone,jun,fri,342,10,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,72,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,services,single,high.school,no,no,no,telephone,jun,fri,207,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,technician,divorced,basic.4y,no,yes,no,telephone,jun,fri,128,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+43,management,married,high.school,no,yes,yes,telephone,jun,fri,304,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,blue-collar,married,high.school,no,no,no,telephone,jun,fri,42,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,technician,married,basic.9y,no,no,no,telephone,jun,fri,27,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,blue-collar,single,basic.4y,no,no,yes,telephone,jun,fri,396,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,admin.,single,university.degree,no,yes,no,telephone,jun,fri,520,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,admin.,single,university.degree,unknown,yes,no,telephone,jun,fri,188,7,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,93,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+43,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,70,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,technician,married,professional.course,no,yes,no,telephone,jun,fri,95,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,technician,single,professional.course,no,no,no,telephone,jun,fri,392,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+44,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,25,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+48,self-employed,married,basic.9y,unknown,no,no,telephone,jun,fri,246,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,technician,married,university.degree,no,no,no,telephone,jun,fri,94,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,technician,married,basic.9y,no,yes,no,telephone,jun,fri,197,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+25,blue-collar,single,high.school,no,yes,no,telephone,jun,fri,446,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+51,self-employed,married,university.degree,unknown,no,no,telephone,jun,fri,145,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+31,entrepreneur,married,high.school,no,yes,no,telephone,jun,fri,100,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+29,technician,married,university.degree,no,no,yes,telephone,jun,fri,252,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+27,self-employed,single,university.degree,no,no,yes,telephone,jun,fri,100,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+55,admin.,married,basic.4y,unknown,no,no,telephone,jun,fri,1469,9,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes
+47,retired,married,basic.4y,unknown,no,yes,telephone,jun,fri,37,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+27,technician,single,professional.course,no,no,no,telephone,jun,fri,112,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+41,housemaid,married,university.degree,unknown,no,no,telephone,jun,fri,235,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+54,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,28,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+54,admin.,married,unknown,unknown,no,no,telephone,jun,fri,34,16,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+32,admin.,single,university.degree,no,unknown,unknown,telephone,jun,fri,121,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+29,technician,married,professional.course,no,no,no,telephone,jun,fri,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,61,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+32,technician,married,basic.9y,no,no,no,telephone,jun,fri,82,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+47,technician,single,professional.course,unknown,no,no,telephone,jun,fri,61,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+25,housemaid,married,basic.9y,no,no,no,telephone,jun,fri,152,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,admin.,married,university.degree,no,yes,no,telephone,jun,fri,606,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+34,technician,married,university.degree,no,no,no,telephone,jun,fri,288,12,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+33,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+40,services,divorced,high.school,no,yes,no,telephone,jun,fri,685,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes
+37,entrepreneur,married,basic.9y,no,no,no,telephone,jun,fri,50,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+37,unemployed,married,professional.course,no,no,no,telephone,jun,fri,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+52,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,160,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,management,married,university.degree,no,yes,no,telephone,jun,fri,23,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+43,blue-collar,divorced,basic.9y,unknown,no,yes,telephone,jun,fri,222,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,admin.,single,university.degree,unknown,no,no,telephone,jun,fri,122,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+30,admin.,married,university.degree,no,no,no,telephone,jun,fri,75,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+35,services,married,professional.course,unknown,no,no,telephone,jun,fri,103,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+39,management,married,university.degree,no,yes,yes,telephone,jun,fri,383,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,technician,single,professional.course,unknown,yes,no,telephone,jun,fri,111,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,services,married,high.school,no,yes,yes,telephone,jun,fri,26,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,services,married,high.school,no,yes,no,telephone,jun,fri,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,183,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+36,blue-collar,single,high.school,no,yes,no,telephone,jun,fri,61,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,self-employed,married,university.degree,no,yes,no,telephone,jun,fri,59,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+58,retired,married,basic.9y,no,no,no,telephone,jun,fri,33,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+38,services,married,basic.9y,no,no,no,telephone,jun,fri,31,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+25,admin.,married,university.degree,no,yes,no,telephone,jun,fri,109,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+32,unemployed,divorced,basic.4y,no,no,yes,telephone,jun,fri,19,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+49,admin.,single,high.school,no,yes,no,telephone,jun,fri,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+46,entrepreneur,married,professional.course,unknown,no,no,telephone,jun,fri,243,7,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+42,entrepreneur,single,university.degree,no,yes,no,telephone,jun,fri,491,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+59,blue-collar,married,basic.6y,no,yes,no,telephone,jun,fri,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+32,housemaid,married,university.degree,no,yes,no,telephone,jun,fri,1291,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no
+29,self-employed,single,university.degree,no,no,no,telephone,jun,mon,221,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,214,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,housemaid,single,basic.4y,no,yes,yes,telephone,jun,mon,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,services,single,high.school,no,no,yes,telephone,jun,mon,74,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,entrepreneur,married,university.degree,no,yes,no,telephone,jun,mon,82,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,admin.,single,university.degree,no,yes,no,telephone,jun,mon,164,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,services,single,high.school,no,yes,no,telephone,jun,mon,256,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,86,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,technician,married,professional.course,no,yes,no,telephone,jun,mon,358,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,349,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,self-employed,married,basic.9y,no,yes,no,telephone,jun,mon,107,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,mon,238,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,blue-collar,married,professional.course,no,yes,no,telephone,jun,mon,38,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,services,single,high.school,unknown,no,no,telephone,jun,mon,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,blue-collar,unknown,basic.6y,unknown,no,no,telephone,jun,mon,832,18,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,self-employed,married,university.degree,unknown,yes,yes,telephone,jun,mon,106,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,housemaid,single,basic.9y,no,yes,no,telephone,jun,mon,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,self-employed,married,university.degree,no,yes,no,telephone,jun,mon,529,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,admin.,divorced,university.degree,no,yes,no,telephone,jun,mon,464,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,61,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,blue-collar,single,basic.4y,no,yes,no,telephone,jun,mon,108,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,services,single,high.school,unknown,yes,no,telephone,jun,mon,332,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+51,services,married,high.school,unknown,yes,no,telephone,jun,mon,81,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+60,unknown,married,university.degree,no,yes,no,telephone,jun,mon,112,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,blue-collar,married,high.school,no,no,no,telephone,jun,mon,181,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,mon,108,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,married,basic.9y,no,no,no,telephone,jun,mon,226,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+51,entrepreneur,divorced,university.degree,unknown,no,no,telephone,jun,mon,60,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,technician,married,professional.course,no,yes,no,telephone,jun,mon,85,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,202,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,admin.,single,university.degree,no,yes,no,telephone,jun,mon,540,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,technician,married,university.degree,no,yes,no,telephone,jun,mon,196,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,services,married,basic.6y,unknown,yes,no,telephone,jun,mon,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,management,married,basic.4y,no,no,yes,telephone,jun,mon,74,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,299,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,single,high.school,no,unknown,unknown,telephone,jun,mon,311,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,technician,married,basic.6y,no,no,no,telephone,jun,mon,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,admin.,married,university.degree,no,no,yes,telephone,jun,mon,232,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,mon,65,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,jun,mon,65,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,157,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,admin.,married,university.degree,no,yes,no,telephone,jun,mon,216,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,mon,79,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,technician,married,professional.course,no,no,no,telephone,jun,mon,220,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,admin.,single,unknown,no,no,yes,telephone,jun,mon,152,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,management,married,university.degree,no,no,no,telephone,jun,mon,140,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,blue-collar,single,unknown,no,yes,no,telephone,jun,mon,400,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,technician,divorced,basic.9y,no,yes,no,telephone,jun,mon,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,entrepreneur,divorced,high.school,no,yes,no,telephone,jun,mon,77,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+56,retired,married,basic.6y,no,unknown,unknown,telephone,jun,mon,356,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,jun,mon,117,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,admin.,single,university.degree,no,no,no,telephone,jun,mon,1055,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+56,retired,married,basic.4y,no,yes,no,telephone,jun,mon,772,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,admin.,married,basic.9y,unknown,yes,no,telephone,jun,mon,306,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+60,technician,married,professional.course,unknown,yes,no,telephone,jun,mon,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+56,services,married,basic.4y,unknown,yes,no,telephone,jun,mon,139,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,self-employed,married,university.degree,no,no,yes,telephone,jun,mon,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,services,married,basic.6y,unknown,no,no,telephone,jun,mon,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+56,services,married,basic.4y,unknown,yes,yes,telephone,jun,mon,287,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,blue-collar,single,basic.4y,unknown,no,yes,telephone,jun,mon,136,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,mon,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,admin.,married,high.school,no,no,yes,telephone,jun,mon,422,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,unknown,single,basic.6y,unknown,no,yes,telephone,jun,mon,125,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+27,admin.,single,high.school,unknown,yes,no,telephone,jun,mon,114,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,technician,divorced,professional.course,no,yes,no,telephone,jun,mon,99,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,married,professional.course,unknown,yes,no,telephone,jun,mon,218,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,services,married,high.school,no,yes,no,telephone,jun,mon,174,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,married,professional.course,unknown,no,yes,telephone,jun,mon,168,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+24,admin.,single,professional.course,no,yes,yes,telephone,jun,mon,233,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+59,retired,married,basic.4y,no,yes,yes,telephone,jun,mon,322,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,technician,single,university.degree,no,no,no,telephone,jun,mon,443,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,admin.,married,unknown,no,yes,yes,telephone,jun,mon,76,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,technician,married,professional.course,no,yes,no,telephone,jun,mon,217,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+27,services,married,high.school,no,no,no,telephone,jun,mon,257,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,blue-collar,single,basic.4y,unknown,no,no,telephone,jun,mon,882,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+48,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,254,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,admin.,divorced,university.degree,no,no,no,telephone,jun,mon,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,213,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,admin.,married,basic.9y,no,yes,no,telephone,jun,mon,252,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,blue-collar,divorced,basic.6y,no,yes,no,telephone,jun,mon,36,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,admin.,married,high.school,no,no,no,telephone,jun,mon,540,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,280,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,admin.,divorced,university.degree,no,yes,no,telephone,jun,mon,683,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,services,married,high.school,no,no,yes,telephone,jun,mon,230,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,technician,married,professional.course,no,yes,no,telephone,jun,mon,452,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,services,married,high.school,no,yes,yes,telephone,jun,mon,149,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,admin.,married,high.school,no,yes,yes,telephone,jun,mon,172,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,unemployed,divorced,high.school,unknown,yes,no,telephone,jun,mon,51,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,blue-collar,married,basic.6y,unknown,no,yes,telephone,jun,mon,35,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,technician,single,basic.9y,unknown,no,no,telephone,jun,mon,626,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,admin.,divorced,high.school,no,yes,no,telephone,jun,mon,122,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+53,admin.,single,basic.6y,no,yes,no,telephone,jun,mon,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,admin.,married,high.school,no,no,no,telephone,jun,mon,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,70,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,admin.,married,high.school,no,no,no,telephone,jun,mon,255,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,self-employed,divorced,basic.9y,no,yes,no,telephone,jun,mon,217,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+58,management,married,unknown,unknown,yes,no,telephone,jun,mon,1098,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,admin.,single,university.degree,no,yes,yes,telephone,jun,mon,176,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,331,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,student,single,high.school,no,no,no,telephone,jun,mon,901,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+56,technician,divorced,professional.course,unknown,yes,no,telephone,jun,mon,123,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,blue-collar,married,professional.course,unknown,yes,no,telephone,jun,mon,77,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,blue-collar,married,professional.course,no,no,no,telephone,jun,mon,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,technician,divorced,professional.course,no,yes,no,telephone,jun,mon,173,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,blue-collar,single,basic.4y,no,no,no,telephone,jun,mon,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,blue-collar,single,basic.4y,no,yes,no,telephone,jun,mon,76,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,411,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,married,professional.course,no,yes,no,telephone,jun,mon,179,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,self-employed,married,university.degree,no,no,no,telephone,jun,mon,139,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jun,mon,75,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+58,retired,divorced,professional.course,unknown,no,no,telephone,jun,mon,210,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+24,services,single,high.school,no,no,no,telephone,jun,mon,700,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+35,technician,married,professional.course,no,yes,yes,telephone,jun,mon,329,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,admin.,divorced,high.school,no,yes,no,telephone,jun,mon,225,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,technician,married,professional.course,unknown,no,no,telephone,jun,mon,96,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,166,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,technician,single,basic.9y,no,no,no,telephone,jun,mon,186,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,technician,married,professional.course,unknown,yes,no,telephone,jun,mon,92,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,management,divorced,university.degree,no,yes,no,telephone,jun,mon,80,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,blue-collar,single,basic.6y,unknown,yes,no,telephone,jun,mon,67,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,blue-collar,married,professional.course,no,yes,yes,telephone,jun,mon,190,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,admin.,single,university.degree,no,no,no,telephone,jun,mon,104,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,admin.,single,high.school,no,yes,no,telephone,jun,mon,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,technician,married,professional.course,no,yes,yes,telephone,jun,mon,37,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,student,single,high.school,no,no,no,telephone,jun,mon,589,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,technician,married,professional.course,no,no,no,telephone,jun,mon,183,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,technician,married,professional.course,no,no,no,telephone,jun,mon,151,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,housemaid,single,university.degree,no,yes,no,telephone,jun,mon,29,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,admin.,single,university.degree,unknown,yes,no,telephone,jun,mon,186,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,entrepreneur,married,professional.course,unknown,no,no,telephone,jun,mon,88,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+27,technician,single,professional.course,no,yes,yes,telephone,jun,mon,522,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,entrepreneur,married,high.school,no,yes,no,telephone,jun,mon,112,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,management,married,high.school,unknown,no,no,telephone,jun,mon,65,17,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,149,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,admin.,married,university.degree,no,yes,no,telephone,jun,mon,206,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,123,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,technician,single,university.degree,unknown,yes,yes,telephone,jun,mon,378,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,housemaid,married,high.school,unknown,yes,no,telephone,jun,mon,100,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,blue-collar,single,basic.4y,no,yes,yes,telephone,jun,mon,81,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,admin.,married,university.degree,unknown,yes,no,telephone,jun,mon,175,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,admin.,married,high.school,no,no,no,telephone,jun,mon,250,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,self-employed,married,basic.9y,unknown,no,no,telephone,jun,mon,156,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,self-employed,divorced,university.degree,no,yes,yes,telephone,jun,mon,173,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,technician,married,professional.course,no,yes,no,telephone,jun,mon,127,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+51,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,324,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,technician,single,high.school,no,no,no,telephone,jun,mon,198,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,self-employed,married,basic.4y,unknown,no,no,telephone,jun,mon,87,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+56,entrepreneur,divorced,university.degree,no,no,yes,telephone,jun,mon,311,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jun,mon,313,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+57,retired,married,basic.4y,unknown,no,yes,telephone,jun,mon,302,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,unemployed,single,basic.6y,no,yes,yes,telephone,jun,mon,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,blue-collar,single,basic.4y,no,no,no,telephone,jun,mon,47,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,technician,married,professional.course,no,no,no,telephone,jun,mon,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,management,married,high.school,no,no,yes,telephone,jun,mon,117,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,unemployed,single,high.school,no,yes,no,telephone,jun,mon,142,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+24,services,single,high.school,no,yes,yes,telephone,jun,mon,183,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,technician,single,high.school,no,yes,yes,telephone,jun,mon,249,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,services,married,basic.9y,no,yes,no,telephone,jun,mon,274,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,unemployed,single,basic.9y,no,yes,no,telephone,jun,mon,144,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,management,married,university.degree,no,yes,no,telephone,jun,mon,23,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,technician,single,professional.course,no,no,no,telephone,jun,mon,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,admin.,married,high.school,no,yes,no,telephone,jun,mon,491,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+25,services,single,high.school,no,yes,no,telephone,jun,mon,162,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,admin.,single,professional.course,no,no,yes,telephone,jun,mon,213,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,blue-collar,married,basic.4y,no,no,yes,telephone,jun,mon,164,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+59,housemaid,married,basic.4y,no,no,yes,telephone,jun,mon,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,self-employed,married,basic.9y,unknown,no,no,telephone,jun,mon,79,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,technician,married,university.degree,no,no,no,telephone,jun,mon,114,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,technician,married,basic.9y,no,no,no,telephone,jun,mon,136,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,technician,single,professional.course,no,yes,no,telephone,jun,mon,97,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+60,management,married,unknown,unknown,no,no,telephone,jun,mon,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,technician,married,basic.6y,unknown,yes,no,telephone,jun,mon,160,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,mon,240,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,technician,married,university.degree,no,yes,no,telephone,jun,mon,78,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,services,married,university.degree,unknown,no,yes,telephone,jun,mon,87,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,technician,married,high.school,no,no,no,telephone,jun,mon,940,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+53,blue-collar,married,basic.4y,no,no,yes,telephone,jun,mon,340,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,unemployed,married,high.school,no,yes,no,telephone,jun,mon,196,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,unemployed,married,basic.9y,no,yes,no,telephone,jun,mon,85,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,admin.,married,university.degree,no,no,no,telephone,jun,mon,199,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,160,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,admin.,single,basic.9y,no,no,no,telephone,jun,mon,166,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,271,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+58,technician,married,basic.4y,no,no,no,telephone,jun,mon,317,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,admin.,single,high.school,no,no,no,telephone,jun,mon,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,admin.,single,high.school,no,yes,yes,telephone,jun,mon,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,technician,married,university.degree,no,no,no,telephone,jun,mon,321,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,admin.,married,university.degree,unknown,no,no,telephone,jun,mon,78,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,services,divorced,high.school,no,yes,no,telephone,jun,mon,73,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,327,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,mon,411,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,admin.,single,high.school,no,no,no,telephone,jun,mon,198,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,services,married,unknown,no,no,no,telephone,jun,mon,98,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,admin.,single,university.degree,no,yes,no,telephone,jun,mon,24,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,technician,married,professional.course,no,no,yes,telephone,jun,mon,352,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,mon,245,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,559,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,management,married,high.school,no,yes,no,telephone,jun,mon,440,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,mon,242,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,technician,married,high.school,no,no,no,telephone,jun,mon,479,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,services,single,basic.4y,no,no,no,telephone,jun,mon,514,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+53,blue-collar,single,basic.9y,no,yes,no,telephone,jun,mon,91,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,admin.,married,university.degree,no,yes,no,telephone,jun,mon,78,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,management,married,basic.4y,no,yes,no,telephone,jun,mon,318,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,services,single,high.school,no,no,no,telephone,jun,mon,295,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,blue-collar,married,high.school,no,yes,no,telephone,jun,mon,83,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,admin.,married,high.school,no,no,no,telephone,jun,mon,346,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,self-employed,married,high.school,no,no,no,telephone,jun,mon,238,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,entrepreneur,married,basic.9y,unknown,no,no,telephone,jun,mon,291,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+58,unknown,married,basic.4y,no,yes,no,telephone,jun,mon,149,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,200,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,admin.,married,high.school,no,no,no,telephone,jun,mon,290,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,technician,married,high.school,no,yes,no,telephone,jun,mon,222,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,married,high.school,no,yes,no,telephone,jun,mon,90,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,entrepreneur,married,university.degree,no,no,no,telephone,jun,mon,171,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,technician,married,professional.course,no,no,no,telephone,jun,mon,170,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,493,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,188,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,blue-collar,single,basic.4y,no,no,no,telephone,jun,mon,17,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+60,management,married,university.degree,no,no,no,telephone,jun,mon,316,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,admin.,single,university.degree,unknown,yes,no,telephone,jun,mon,398,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,blue-collar,married,basic.9y,no,no,yes,telephone,jun,mon,782,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,admin.,single,high.school,no,no,no,telephone,jun,mon,137,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,entrepreneur,single,high.school,no,yes,no,telephone,jun,mon,419,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,admin.,married,high.school,unknown,yes,no,telephone,jun,mon,65,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,admin.,married,high.school,unknown,yes,no,telephone,jun,mon,96,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,admin.,single,high.school,no,yes,no,telephone,jun,mon,223,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,mon,70,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,unknown,married,basic.4y,no,no,yes,telephone,jun,mon,150,17,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,blue-collar,single,high.school,unknown,no,no,telephone,jun,mon,559,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,technician,married,professional.course,no,yes,no,telephone,jun,mon,952,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+42,services,divorced,basic.6y,no,no,no,telephone,jun,mon,71,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,admin.,married,university.degree,no,yes,no,telephone,jun,mon,152,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+27,entrepreneur,single,university.degree,no,yes,no,telephone,jun,mon,486,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+47,blue-collar,married,high.school,unknown,yes,no,telephone,jun,mon,224,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,housemaid,married,professional.course,no,yes,no,telephone,jun,mon,152,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,blue-collar,single,basic.9y,no,yes,no,telephone,jun,mon,22,17,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,130,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,self-employed,married,university.degree,no,no,no,telephone,jun,mon,135,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,unknown,basic.6y,unknown,no,no,telephone,jun,mon,199,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,blue-collar,divorced,basic.9y,no,unknown,unknown,telephone,jun,mon,185,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,management,single,high.school,no,yes,no,telephone,jun,mon,220,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,mon,85,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,258,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,blue-collar,single,high.school,unknown,no,no,telephone,jun,mon,108,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,admin.,single,university.degree,unknown,yes,no,telephone,jun,mon,244,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+60,retired,divorced,basic.4y,unknown,yes,no,telephone,jun,mon,253,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,306,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,blue-collar,married,high.school,unknown,no,no,telephone,jun,mon,134,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,admin.,married,high.school,unknown,yes,no,telephone,jun,mon,69,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,175,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,admin.,single,university.degree,no,yes,no,telephone,jun,mon,436,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,technician,single,university.degree,no,no,no,telephone,jun,mon,92,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,admin.,married,high.school,no,no,no,telephone,jun,mon,155,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,technician,single,professional.course,no,yes,no,telephone,jun,mon,371,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,216,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,blue-collar,single,basic.9y,no,yes,no,telephone,jun,mon,243,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,admin.,married,university.degree,unknown,yes,no,telephone,jun,mon,718,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,technician,married,basic.9y,no,yes,no,telephone,jun,mon,442,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+35,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,184,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,admin.,married,unknown,no,no,no,telephone,jun,mon,189,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,self-employed,married,basic.4y,unknown,yes,no,telephone,jun,mon,164,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,management,married,basic.6y,unknown,yes,no,telephone,jun,mon,166,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,entrepreneur,married,basic.9y,unknown,yes,no,telephone,jun,mon,699,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,self-employed,married,basic.9y,no,yes,no,telephone,jun,mon,178,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,553,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,services,married,high.school,unknown,no,no,telephone,jun,mon,1137,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+38,housemaid,married,university.degree,no,no,no,telephone,jun,mon,100,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+53,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,445,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,divorced,basic.9y,no,yes,yes,telephone,jun,mon,332,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,61,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,90,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,services,married,high.school,unknown,yes,no,telephone,jun,mon,174,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,services,single,high.school,no,yes,no,telephone,jun,mon,204,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,admin.,married,basic.9y,no,no,yes,telephone,jun,mon,271,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,management,married,university.degree,no,no,no,telephone,jun,mon,87,13,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,self-employed,married,professional.course,unknown,yes,yes,telephone,jun,mon,330,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,259,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,admin.,married,university.degree,no,no,no,telephone,jun,mon,237,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,blue-collar,married,high.school,unknown,yes,yes,telephone,jun,mon,116,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,388,12,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,services,married,basic.4y,no,yes,yes,telephone,jun,mon,59,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+51,services,single,high.school,unknown,no,no,telephone,jun,mon,329,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,753,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,services,married,unknown,unknown,yes,no,telephone,jun,mon,99,26,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,technician,married,high.school,no,no,no,telephone,jun,mon,42,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,blue-collar,married,basic.9y,no,no,yes,telephone,jun,mon,182,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,admin.,married,high.school,no,no,no,telephone,jun,mon,250,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,services,married,basic.6y,unknown,no,yes,telephone,jun,mon,511,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,retired,married,university.degree,unknown,no,no,telephone,jun,mon,26,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,technician,married,basic.6y,unknown,no,no,telephone,jun,mon,478,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,579,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,self-employed,married,university.degree,unknown,no,no,telephone,jun,mon,96,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,single,high.school,no,yes,no,telephone,jun,mon,95,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,housemaid,single,university.degree,no,no,no,telephone,jun,mon,126,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+56,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,52,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,mon,138,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,technician,single,high.school,no,no,no,telephone,jun,mon,94,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,299,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+59,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,mon,69,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,housemaid,married,basic.4y,no,yes,no,telephone,jun,mon,44,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,admin.,married,university.degree,no,no,no,telephone,jun,mon,135,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+53,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,154,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,unemployed,married,basic.9y,unknown,yes,no,telephone,jun,mon,80,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,115,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,services,married,basic.6y,no,no,no,telephone,jun,wed,107,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,admin.,married,high.school,no,yes,no,telephone,jun,wed,308,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+54,housemaid,divorced,basic.4y,no,yes,no,telephone,jun,wed,129,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,33,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,wed,296,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+26,blue-collar,married,high.school,no,yes,no,telephone,jun,wed,126,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+26,admin.,married,high.school,unknown,yes,no,telephone,jun,wed,198,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,technician,married,high.school,no,yes,no,telephone,jun,wed,73,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,technician,single,unknown,no,yes,no,telephone,jun,wed,180,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,services,divorced,university.degree,no,no,no,telephone,jun,wed,69,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,management,single,university.degree,no,no,no,telephone,jun,wed,76,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+51,admin.,divorced,high.school,unknown,no,no,telephone,jun,wed,40,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,unknown,single,basic.6y,unknown,no,no,telephone,jun,wed,878,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+21,technician,single,professional.course,no,no,no,telephone,jun,wed,54,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,management,married,university.degree,no,no,no,telephone,jun,wed,129,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,480,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,admin.,married,professional.course,no,yes,no,telephone,jun,wed,583,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+45,services,divorced,high.school,no,no,no,telephone,jun,wed,101,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,wed,339,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,admin.,single,university.degree,no,yes,no,telephone,jun,wed,27,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+25,admin.,married,unknown,no,no,no,telephone,jun,wed,490,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,81,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,services,married,basic.9y,unknown,no,no,telephone,jun,wed,399,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,blue-collar,married,high.school,no,yes,no,telephone,jun,wed,42,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,technician,divorced,professional.course,no,no,no,telephone,jun,wed,29,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,services,married,high.school,unknown,yes,no,telephone,jun,wed,75,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,technician,married,professional.course,no,yes,no,telephone,jun,wed,47,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,unknown,single,basic.6y,no,yes,no,telephone,jun,wed,62,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,housemaid,married,high.school,unknown,no,no,telephone,jun,wed,484,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,admin.,married,university.degree,no,yes,no,telephone,jun,wed,305,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,admin.,married,high.school,no,yes,no,telephone,jun,wed,95,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,management,married,university.degree,no,no,no,telephone,jun,wed,893,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+57,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,62,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,admin.,married,professional.course,no,no,no,telephone,jun,wed,103,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,wed,204,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,453,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,services,divorced,basic.4y,unknown,yes,no,telephone,jun,wed,91,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,services,married,unknown,no,no,no,telephone,jun,wed,360,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+28,admin.,single,unknown,no,no,no,telephone,jun,wed,643,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,admin.,single,high.school,no,no,no,telephone,jun,wed,29,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,services,married,high.school,unknown,yes,no,telephone,jun,wed,327,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+55,unemployed,married,basic.4y,unknown,yes,no,telephone,jun,wed,175,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,109,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,services,divorced,high.school,no,no,no,telephone,jun,wed,240,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,admin.,married,high.school,no,no,no,telephone,jun,wed,916,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,363,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,unemployed,married,professional.course,no,yes,no,telephone,jun,wed,281,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,admin.,single,university.degree,no,no,no,telephone,jun,wed,442,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,196,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,blue-collar,divorced,high.school,no,no,no,telephone,jun,wed,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,management,married,university.degree,no,yes,no,telephone,jun,wed,181,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,admin.,single,university.degree,no,yes,yes,telephone,jun,wed,88,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,wed,305,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,management,married,university.degree,no,no,no,telephone,jun,wed,197,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,blue-collar,divorced,high.school,no,yes,no,telephone,jun,wed,133,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,wed,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,entrepreneur,married,high.school,no,no,no,telephone,jun,wed,439,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,services,married,high.school,no,yes,no,telephone,jun,wed,232,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,63,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,admin.,married,university.degree,no,no,no,telephone,jun,wed,867,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+30,self-employed,single,university.degree,no,no,no,telephone,jun,wed,587,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+56,technician,married,basic.4y,unknown,no,no,telephone,jun,wed,458,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+28,admin.,married,university.degree,no,no,no,telephone,jun,wed,191,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,management,married,high.school,no,yes,yes,telephone,jun,wed,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+28,admin.,married,university.degree,no,no,no,telephone,jun,wed,354,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,admin.,married,university.degree,no,no,no,telephone,jun,wed,300,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,105,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,services,single,high.school,unknown,no,yes,telephone,jun,wed,328,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,self-employed,married,professional.course,no,no,yes,telephone,jun,wed,339,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+22,technician,married,basic.9y,unknown,no,no,telephone,jun,wed,561,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,wed,116,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,wed,706,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+32,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,261,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,admin.,divorced,high.school,no,no,no,telephone,jun,wed,314,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,admin.,divorced,basic.6y,no,yes,no,telephone,jun,wed,219,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,139,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,blue-collar,married,basic.6y,no,yes,no,telephone,jun,wed,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,admin.,single,university.degree,no,yes,no,telephone,jun,wed,694,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,services,married,high.school,no,yes,no,telephone,jun,wed,68,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,165,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,entrepreneur,married,high.school,no,yes,no,telephone,jun,wed,275,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,153,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,technician,single,professional.course,no,yes,no,telephone,jun,wed,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,admin.,single,university.degree,no,yes,no,telephone,jun,wed,76,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,management,married,basic.4y,unknown,no,no,telephone,jun,wed,79,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+27,admin.,married,basic.9y,no,no,no,telephone,jun,wed,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,199,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,158,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,wed,316,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,117,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+54,admin.,married,university.degree,no,no,no,telephone,jun,wed,288,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,technician,married,high.school,no,yes,no,telephone,jun,wed,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,technician,married,professional.course,no,yes,no,telephone,jun,wed,26,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,blue-collar,single,basic.6y,unknown,yes,no,telephone,jun,wed,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,admin.,married,high.school,no,yes,no,telephone,jun,wed,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,technician,married,high.school,no,no,no,telephone,jun,wed,241,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,95,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,blue-collar,married,basic.6y,no,yes,no,telephone,jun,wed,362,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,125,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,unknown,married,unknown,unknown,yes,no,telephone,jun,wed,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,services,married,high.school,no,unknown,unknown,telephone,jun,wed,187,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,technician,married,university.degree,unknown,no,no,telephone,jun,wed,420,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,technician,married,professional.course,unknown,no,no,telephone,jun,wed,115,16,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+57,technician,single,professional.course,unknown,yes,no,telephone,jun,wed,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+24,self-employed,single,university.degree,no,yes,no,telephone,jun,wed,40,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,admin.,single,university.degree,no,yes,no,telephone,jun,wed,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,housemaid,married,university.degree,no,no,no,telephone,jun,wed,68,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,55,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,62,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,services,married,basic.9y,no,yes,no,telephone,jun,wed,886,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,admin.,single,high.school,no,no,no,telephone,jun,wed,61,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,admin.,single,high.school,no,yes,no,telephone,jun,wed,1199,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+51,admin.,married,basic.6y,unknown,yes,no,telephone,jun,wed,140,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,admin.,married,university.degree,no,no,no,telephone,jun,wed,436,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+60,technician,divorced,professional.course,unknown,no,no,telephone,jun,wed,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+25,services,single,high.school,no,no,no,telephone,jun,wed,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,blue-collar,married,basic.6y,unknown,yes,yes,telephone,jun,wed,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,admin.,single,university.degree,no,yes,yes,telephone,jun,wed,553,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,admin.,married,university.degree,unknown,yes,no,telephone,jun,wed,320,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,wed,935,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+57,retired,married,basic.4y,unknown,no,no,telephone,jun,wed,74,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,management,married,university.degree,no,yes,no,telephone,jun,wed,81,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,wed,586,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+41,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,950,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,wed,159,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,838,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+31,technician,single,unknown,no,no,no,telephone,jun,wed,46,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+55,technician,married,high.school,unknown,no,no,telephone,jun,wed,473,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,admin.,divorced,high.school,no,yes,yes,telephone,jun,wed,967,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+44,unemployed,single,basic.4y,no,no,no,telephone,jun,wed,33,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,admin.,single,university.degree,no,yes,no,telephone,jun,wed,148,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+57,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,651,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+39,blue-collar,married,professional.course,no,no,no,telephone,jun,wed,437,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,blue-collar,divorced,high.school,no,no,no,telephone,jun,wed,134,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,services,single,unknown,no,yes,yes,telephone,jun,wed,116,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,self-employed,married,high.school,no,unknown,unknown,telephone,jun,wed,143,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,unemployed,married,university.degree,unknown,yes,no,telephone,jun,wed,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,entrepreneur,married,university.degree,no,yes,no,telephone,jun,wed,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,blue-collar,divorced,high.school,no,yes,no,telephone,jun,wed,340,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,wed,103,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,technician,divorced,unknown,no,no,no,telephone,jun,wed,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,admin.,divorced,high.school,no,yes,yes,telephone,jun,wed,247,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,114,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,housemaid,married,basic.4y,unknown,no,no,telephone,jun,wed,327,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,unemployed,married,unknown,no,yes,no,telephone,jun,wed,110,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,management,single,university.degree,no,no,no,telephone,jun,wed,257,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,admin.,married,university.degree,no,yes,yes,telephone,jun,wed,59,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,unknown,married,unknown,unknown,no,no,telephone,jun,wed,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+51,entrepreneur,married,professional.course,no,no,no,telephone,jun,wed,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,technician,married,professional.course,no,no,no,telephone,jun,wed,183,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,technician,married,university.degree,no,no,no,telephone,jun,wed,142,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,services,married,high.school,no,no,no,telephone,jun,wed,678,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,services,single,unknown,unknown,yes,no,telephone,jun,wed,86,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,blue-collar,married,unknown,no,no,no,telephone,jun,wed,96,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,admin.,married,professional.course,no,no,no,telephone,jun,wed,211,17,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,wed,201,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,admin.,married,professional.course,no,no,no,telephone,jun,wed,105,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,admin.,married,university.degree,no,yes,no,telephone,jun,wed,100,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,blue-collar,single,basic.4y,unknown,no,no,telephone,jun,wed,952,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,admin.,married,university.degree,no,no,no,telephone,jun,wed,181,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,technician,married,basic.9y,no,no,no,telephone,jun,wed,389,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+26,admin.,single,high.school,no,no,no,telephone,jun,wed,203,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,blue-collar,divorced,basic.4y,no,no,yes,telephone,jun,wed,450,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,housemaid,married,basic.4y,unknown,no,no,telephone,jun,wed,105,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,services,married,high.school,no,yes,no,telephone,jun,wed,85,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,203,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,74,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,222,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,wed,30,22,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,admin.,married,basic.9y,no,no,no,telephone,jun,wed,268,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+55,admin.,divorced,high.school,no,no,no,telephone,jun,wed,148,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,wed,427,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,admin.,single,university.degree,no,no,yes,telephone,jun,wed,90,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,entrepreneur,married,high.school,no,yes,no,telephone,jun,wed,177,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,admin.,single,high.school,no,no,no,telephone,jun,wed,328,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,133,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,services,married,university.degree,no,yes,yes,telephone,jun,wed,516,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+51,unemployed,married,high.school,unknown,yes,no,telephone,jun,wed,204,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,184,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,wed,157,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,management,divorced,high.school,unknown,no,no,telephone,jun,wed,319,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,self-employed,married,university.degree,unknown,yes,no,telephone,jun,wed,199,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,wed,147,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+25,self-employed,married,professional.course,no,yes,no,telephone,jun,wed,394,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,wed,81,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,157,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,admin.,married,high.school,no,yes,no,telephone,jun,wed,375,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,technician,single,professional.course,no,yes,no,telephone,jun,wed,184,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+57,self-employed,married,basic.4y,no,no,no,telephone,jun,wed,162,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,47,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,entrepreneur,married,basic.6y,no,no,no,telephone,jun,wed,215,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,230,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,105,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,unemployed,single,university.degree,no,yes,no,telephone,jun,wed,150,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,213,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,entrepreneur,married,high.school,no,yes,no,telephone,jun,wed,126,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,admin.,married,university.degree,no,yes,no,telephone,jun,wed,70,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,admin.,divorced,university.degree,no,no,no,telephone,jun,wed,141,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,111,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,287,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,services,married,high.school,no,yes,no,telephone,jun,wed,83,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,admin.,single,university.degree,no,yes,yes,telephone,jun,wed,124,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,technician,married,professional.course,no,yes,no,telephone,jun,wed,67,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,admin.,single,high.school,no,unknown,unknown,telephone,jun,wed,104,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+57,retired,single,high.school,no,no,no,telephone,jun,wed,904,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,services,married,unknown,no,yes,no,telephone,jun,wed,597,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+28,services,married,high.school,no,no,no,telephone,jun,wed,274,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,blue-collar,single,unknown,no,no,no,telephone,jun,wed,124,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+28,technician,single,university.degree,unknown,no,no,telephone,jun,wed,354,17,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,152,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,wed,328,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+59,retired,married,professional.course,unknown,yes,no,telephone,jun,wed,59,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,125,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,technician,married,high.school,no,yes,no,telephone,jun,wed,158,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,services,single,basic.6y,no,unknown,unknown,telephone,jun,wed,179,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,technician,married,professional.course,unknown,yes,no,telephone,jun,wed,649,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+40,services,divorced,unknown,no,yes,yes,telephone,jun,wed,26,29,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+28,admin.,single,university.degree,no,no,no,telephone,jun,wed,203,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,services,married,high.school,no,yes,no,telephone,jun,wed,138,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+25,blue-collar,single,basic.4y,no,no,no,telephone,jun,wed,107,19,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,409,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,admin.,single,university.degree,no,no,yes,telephone,jun,wed,48,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,admin.,married,university.degree,unknown,yes,no,telephone,jun,wed,83,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,199,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,wed,122,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,218,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,admin.,single,high.school,unknown,yes,no,telephone,jun,wed,93,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,wed,222,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,wed,378,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,wed,93,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,management,single,unknown,no,unknown,unknown,telephone,jun,wed,514,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,unknown,married,high.school,unknown,no,no,telephone,jun,wed,89,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,self-employed,single,university.degree,no,no,no,telephone,jun,wed,58,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,entrepreneur,married,high.school,unknown,no,no,telephone,jun,wed,850,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,307,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+40,admin.,married,high.school,unknown,no,no,telephone,jun,thu,89,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+38,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,71,12,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+54,housemaid,divorced,unknown,no,yes,no,telephone,jun,thu,52,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+59,technician,married,university.degree,no,no,no,telephone,jun,thu,136,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+45,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,thu,542,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+40,admin.,married,university.degree,no,no,no,telephone,jun,thu,265,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+27,student,single,high.school,no,yes,no,telephone,jun,thu,84,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+55,retired,divorced,high.school,no,no,no,telephone,jun,thu,410,16,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+37,admin.,single,university.degree,no,yes,no,telephone,jun,thu,93,8,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+53,technician,married,unknown,no,yes,no,telephone,jun,thu,134,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+56,management,married,university.degree,no,no,no,telephone,jun,thu,403,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+39,admin.,married,university.degree,no,yes,no,telephone,jun,thu,36,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+29,services,married,high.school,no,yes,no,telephone,jun,thu,109,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+30,student,single,basic.9y,no,no,no,telephone,jun,thu,90,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+31,entrepreneur,married,high.school,no,yes,no,telephone,jun,thu,305,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+42,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,thu,135,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+36,blue-collar,married,basic.6y,no,yes,no,telephone,jun,thu,614,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+38,admin.,married,university.degree,no,no,no,telephone,jun,thu,781,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+43,technician,married,professional.course,no,no,no,telephone,jun,thu,112,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,337,22,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+32,admin.,married,high.school,no,yes,no,telephone,jun,thu,423,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+44,technician,married,professional.course,no,no,no,telephone,jun,thu,171,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+39,admin.,single,high.school,no,no,no,telephone,jun,thu,110,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+39,admin.,married,university.degree,no,yes,no,telephone,jun,thu,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+40,technician,married,high.school,no,yes,no,telephone,jun,thu,126,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+27,student,single,university.degree,no,no,yes,telephone,jun,thu,137,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+56,retired,married,basic.4y,no,yes,no,telephone,jun,thu,125,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+51,admin.,single,basic.6y,no,no,no,telephone,jun,thu,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+43,technician,single,professional.course,no,no,no,telephone,jun,thu,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+48,admin.,married,professional.course,unknown,yes,no,telephone,jun,thu,49,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+39,admin.,divorced,professional.course,no,yes,yes,telephone,jun,thu,106,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+55,technician,divorced,professional.course,unknown,no,no,telephone,jun,thu,885,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+44,technician,divorced,professional.course,no,no,no,telephone,jun,thu,112,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+42,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,236,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+46,blue-collar,married,professional.course,unknown,no,no,telephone,jun,thu,187,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+35,technician,married,professional.course,no,yes,no,telephone,jun,thu,108,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+48,blue-collar,divorced,basic.4y,unknown,unknown,unknown,telephone,jun,thu,583,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+56,entrepreneur,married,unknown,unknown,no,yes,telephone,jun,thu,192,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,149,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+28,admin.,single,university.degree,no,no,no,telephone,jun,thu,151,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+42,admin.,married,basic.6y,no,no,no,telephone,jun,thu,165,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+30,admin.,married,high.school,no,no,no,telephone,jun,thu,92,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+36,entrepreneur,married,high.school,no,no,yes,telephone,jun,thu,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+54,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,2025,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+53,technician,married,unknown,no,no,no,telephone,jun,thu,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+35,services,married,high.school,unknown,yes,no,telephone,jun,thu,107,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+38,admin.,single,basic.9y,no,no,no,telephone,jun,thu,406,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+32,management,single,university.degree,no,yes,no,telephone,jun,thu,12,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+45,self-employed,married,professional.course,no,no,yes,telephone,jun,thu,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+55,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,146,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+35,housemaid,single,unknown,no,yes,no,telephone,jun,thu,66,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,278,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+41,services,divorced,basic.9y,no,no,no,telephone,jun,thu,753,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+39,admin.,married,high.school,unknown,no,no,telephone,jun,thu,120,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+49,technician,divorced,unknown,no,no,no,telephone,jun,thu,167,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+30,admin.,single,university.degree,no,no,no,telephone,jun,thu,48,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+41,services,married,basic.9y,no,yes,no,telephone,jun,thu,385,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+40,admin.,married,high.school,no,no,no,telephone,jun,thu,97,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+28,management,single,university.degree,no,no,no,telephone,jun,thu,651,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+47,technician,married,professional.course,no,no,no,telephone,jun,thu,223,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+59,services,married,high.school,no,no,no,telephone,jun,thu,309,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+33,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,thu,155,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+44,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+38,technician,married,professional.course,no,yes,yes,telephone,jun,thu,46,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+38,services,married,high.school,no,no,no,telephone,jun,thu,252,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+45,services,divorced,high.school,unknown,no,no,telephone,jun,thu,691,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+39,admin.,married,university.degree,no,no,no,telephone,jun,thu,93,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+56,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,thu,315,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+53,entrepreneur,divorced,unknown,no,yes,no,telephone,jun,thu,154,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+35,technician,married,basic.6y,no,yes,yes,telephone,jun,thu,344,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+38,technician,divorced,professional.course,no,no,no,telephone,jun,thu,128,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+55,self-employed,married,unknown,unknown,yes,yes,telephone,jun,thu,278,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+30,technician,married,high.school,no,yes,no,telephone,jun,thu,436,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+48,technician,married,unknown,no,no,no,telephone,jun,thu,189,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+32,admin.,single,university.degree,no,yes,no,telephone,jun,thu,186,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+50,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,84,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+32,housemaid,married,high.school,no,no,no,telephone,jun,thu,264,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+43,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,237,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+38,technician,single,university.degree,no,no,no,telephone,jun,thu,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+50,admin.,married,university.degree,no,no,no,telephone,jun,thu,77,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+49,services,married,high.school,unknown,no,no,telephone,jun,thu,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+58,entrepreneur,married,university.degree,unknown,yes,yes,telephone,jun,thu,43,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+35,blue-collar,married,basic.6y,no,yes,no,telephone,jun,thu,64,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+44,admin.,married,university.degree,no,yes,no,telephone,jun,thu,351,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+41,services,married,unknown,no,no,no,telephone,jun,thu,139,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+50,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,thu,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+54,technician,married,university.degree,no,yes,no,telephone,jun,thu,394,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+42,blue-collar,married,basic.6y,no,yes,no,telephone,jun,thu,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+31,services,married,high.school,unknown,no,yes,telephone,jun,thu,62,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+43,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,349,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+58,admin.,single,university.degree,no,no,no,telephone,jun,thu,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+35,housemaid,married,high.school,no,no,no,telephone,jun,thu,56,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+59,services,divorced,high.school,no,no,no,telephone,jun,thu,133,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+40,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,134,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+48,admin.,married,basic.9y,unknown,no,no,telephone,jun,thu,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+49,admin.,married,university.degree,no,yes,yes,telephone,jun,thu,185,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+59,housemaid,married,high.school,unknown,no,no,telephone,jun,thu,331,12,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+24,blue-collar,married,basic.9y,no,no,yes,telephone,jun,thu,167,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+43,management,married,high.school,no,yes,no,telephone,jun,thu,30,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+36,services,married,high.school,no,yes,yes,telephone,jun,thu,77,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+56,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,136,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+34,technician,married,professional.course,no,no,no,telephone,jun,thu,320,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+27,admin.,divorced,high.school,no,no,no,telephone,jun,thu,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+34,technician,married,professional.course,unknown,no,no,telephone,jun,thu,10,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+58,services,married,basic.4y,no,no,no,telephone,jun,thu,75,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+39,unemployed,married,university.degree,no,yes,no,telephone,jun,thu,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+46,technician,married,university.degree,unknown,no,yes,telephone,jun,thu,993,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+40,blue-collar,single,basic.4y,no,yes,no,telephone,jun,thu,160,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+49,technician,married,professional.course,no,no,yes,telephone,jun,thu,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+42,admin.,single,university.degree,no,no,yes,telephone,jun,thu,122,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+42,blue-collar,married,basic.6y,no,no,no,telephone,jun,thu,919,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+32,technician,married,basic.9y,unknown,no,no,telephone,jun,thu,52,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+44,admin.,single,university.degree,unknown,no,no,telephone,jun,thu,80,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+52,blue-collar,single,basic.4y,no,yes,no,telephone,jun,thu,558,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+40,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,124,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+43,admin.,single,high.school,no,no,no,telephone,jun,thu,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+35,blue-collar,married,high.school,no,no,no,telephone,jun,thu,992,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+54,housemaid,married,basic.4y,unknown,no,no,telephone,jun,thu,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+35,services,married,basic.9y,no,no,yes,telephone,jun,thu,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+34,services,married,high.school,no,no,no,telephone,jun,thu,54,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+22,services,single,basic.4y,no,no,yes,telephone,jun,thu,58,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+42,technician,married,professional.course,unknown,no,no,telephone,jun,thu,81,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+33,management,single,university.degree,no,yes,no,telephone,jun,thu,118,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+39,management,married,university.degree,no,no,yes,telephone,jun,thu,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+47,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,309,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+56,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,871,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+49,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,577,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+39,entrepreneur,married,high.school,no,yes,no,telephone,jun,thu,582,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+29,services,married,professional.course,unknown,no,no,telephone,jun,thu,46,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+55,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,thu,270,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+34,technician,married,professional.course,no,no,no,telephone,jun,thu,317,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+32,technician,married,university.degree,no,no,no,telephone,jun,thu,281,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+46,entrepreneur,married,professional.course,no,yes,no,telephone,jun,thu,410,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,186,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+54,technician,married,university.degree,unknown,no,no,telephone,jun,thu,322,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+44,management,divorced,university.degree,no,yes,yes,telephone,jun,thu,37,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+52,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,283,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+49,technician,married,professional.course,no,yes,yes,telephone,jun,thu,88,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+35,technician,divorced,professional.course,no,yes,no,telephone,jun,thu,312,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+43,entrepreneur,married,high.school,no,no,no,telephone,jun,thu,1141,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+59,entrepreneur,divorced,high.school,unknown,yes,no,telephone,jun,thu,1268,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+36,services,married,high.school,no,yes,yes,telephone,jun,thu,602,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+39,services,single,high.school,no,yes,no,telephone,jun,thu,1178,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+36,self-employed,divorced,university.degree,no,yes,no,telephone,jun,thu,130,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+44,admin.,single,university.degree,no,yes,no,telephone,jun,thu,541,17,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+44,management,married,high.school,no,yes,no,telephone,jun,thu,226,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+37,blue-collar,married,basic.4y,no,no,yes,telephone,jun,thu,640,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+41,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,340,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+41,management,married,university.degree,unknown,yes,no,telephone,jun,thu,230,7,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+52,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,159,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+45,blue-collar,single,basic.6y,no,no,no,telephone,jun,thu,138,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+30,technician,single,professional.course,no,unknown,unknown,telephone,jun,thu,773,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+48,management,married,university.degree,no,yes,no,telephone,jun,thu,298,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+43,blue-collar,married,basic.4y,no,unknown,unknown,telephone,jun,thu,1618,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+48,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,361,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+40,blue-collar,married,unknown,no,no,no,telephone,jun,thu,100,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+29,blue-collar,married,high.school,unknown,no,no,telephone,jun,thu,124,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+50,admin.,married,university.degree,unknown,yes,no,telephone,jun,thu,153,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,67,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+44,services,married,high.school,no,yes,no,telephone,jun,thu,462,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+49,technician,married,professional.course,no,yes,no,telephone,jun,thu,320,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+38,management,single,university.degree,no,yes,no,telephone,jun,thu,69,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+39,admin.,married,high.school,unknown,yes,no,telephone,jun,thu,71,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+43,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,thu,190,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+30,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,thu,204,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+41,admin.,married,basic.9y,unknown,yes,no,telephone,jun,thu,85,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+25,admin.,single,high.school,no,yes,no,telephone,jun,thu,1243,7,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+47,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,130,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+54,blue-collar,divorced,unknown,unknown,yes,no,telephone,jun,thu,339,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+36,services,married,high.school,no,no,no,telephone,jun,thu,316,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+33,entrepreneur,married,university.degree,no,no,yes,telephone,jun,thu,166,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+34,technician,married,professional.course,no,no,no,telephone,jun,thu,168,8,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+36,technician,married,professional.course,no,no,yes,telephone,jun,thu,247,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+57,technician,married,basic.4y,unknown,no,no,telephone,jun,thu,243,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+37,technician,single,high.school,unknown,unknown,unknown,telephone,jun,thu,227,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+38,admin.,married,university.degree,no,yes,no,telephone,jun,thu,153,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+41,admin.,married,professional.course,unknown,yes,no,telephone,jun,thu,122,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+53,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,232,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+39,unemployed,single,basic.6y,no,no,no,telephone,jun,thu,238,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+47,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,211,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+33,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,111,8,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+34,admin.,single,high.school,no,yes,no,telephone,jun,thu,161,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+32,admin.,single,university.degree,unknown,no,no,telephone,jun,thu,188,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+33,technician,married,university.degree,unknown,no,no,telephone,jun,thu,67,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+38,admin.,married,university.degree,no,no,no,telephone,jun,thu,361,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+48,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,454,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+48,blue-collar,married,high.school,no,yes,no,telephone,jun,thu,700,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+30,services,married,university.degree,no,yes,no,telephone,jun,mon,83,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+36,admin.,single,university.degree,no,yes,no,telephone,jun,mon,247,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+45,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,252,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+60,admin.,married,university.degree,unknown,yes,no,telephone,jun,mon,62,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+32,self-employed,divorced,university.degree,no,no,no,telephone,jun,mon,559,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+33,admin.,married,university.degree,no,no,no,telephone,jun,mon,190,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+35,admin.,single,high.school,no,no,no,telephone,jun,mon,10,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+48,admin.,married,high.school,unknown,no,no,telephone,jun,mon,189,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+29,admin.,single,university.degree,no,no,no,telephone,jun,mon,109,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+46,admin.,married,high.school,unknown,unknown,unknown,telephone,jun,mon,148,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+45,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,107,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+35,unemployed,married,university.degree,no,yes,no,telephone,jun,mon,82,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+30,technician,single,university.degree,unknown,yes,no,telephone,jun,mon,405,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+44,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,103,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+32,unemployed,married,basic.9y,no,no,no,telephone,jun,mon,143,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+27,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,61,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+46,admin.,married,professional.course,no,no,no,telephone,jun,mon,424,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+29,blue-collar,married,high.school,no,no,no,telephone,jun,mon,140,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+39,management,married,university.degree,no,yes,no,telephone,jun,mon,157,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,157,29,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,110,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+39,admin.,married,university.degree,no,no,no,telephone,jun,mon,69,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+35,entrepreneur,married,university.degree,no,no,no,telephone,jun,mon,513,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes
+50,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,mon,241,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+38,admin.,married,university.degree,no,no,no,telephone,jun,mon,757,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+32,technician,single,high.school,no,no,no,telephone,jun,mon,68,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+32,technician,married,professional.course,no,no,no,telephone,jun,mon,171,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+38,blue-collar,married,professional.course,no,no,no,telephone,jun,mon,182,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+49,admin.,married,basic.9y,no,no,no,telephone,jun,mon,270,15,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+38,technician,married,basic.6y,unknown,no,yes,telephone,jun,mon,172,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+28,admin.,single,unknown,no,yes,no,telephone,jun,mon,177,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+33,technician,married,high.school,unknown,yes,no,telephone,jun,mon,119,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+37,technician,single,professional.course,unknown,no,yes,telephone,jun,mon,75,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+41,services,divorced,basic.9y,no,yes,no,telephone,jun,mon,192,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+41,admin.,divorced,high.school,no,no,no,telephone,jun,mon,686,11,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes
+40,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,104,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+31,blue-collar,single,high.school,no,yes,yes,telephone,jun,mon,325,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+41,services,married,high.school,unknown,no,no,telephone,jun,mon,33,21,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,entrepreneur,single,professional.course,no,yes,no,telephone,jun,mon,144,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+48,services,married,high.school,no,yes,no,telephone,jun,mon,57,8,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+52,technician,divorced,university.degree,no,no,no,telephone,jun,mon,184,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+47,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,109,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+50,housemaid,single,unknown,no,no,no,telephone,jun,mon,741,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes
+40,admin.,single,high.school,unknown,no,no,telephone,jun,mon,349,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+38,admin.,divorced,high.school,no,no,no,telephone,jun,mon,100,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+47,services,married,high.school,unknown,yes,no,telephone,jun,mon,87,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,95,8,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+35,entrepreneur,married,basic.6y,no,no,no,telephone,jun,mon,114,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+33,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,109,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+37,management,married,university.degree,no,no,no,telephone,jun,mon,1323,9,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes
+52,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,186,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+29,admin.,divorced,university.degree,no,no,no,telephone,jun,mon,187,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+47,entrepreneur,married,university.degree,no,yes,no,telephone,jun,mon,580,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+39,services,divorced,high.school,no,yes,no,telephone,jun,mon,81,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+52,unknown,married,basic.4y,no,no,no,telephone,jun,mon,253,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+41,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,mon,75,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+39,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,jun,mon,144,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+35,blue-collar,divorced,basic.9y,no,unknown,unknown,telephone,jun,mon,276,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+49,retired,married,basic.4y,no,no,no,telephone,jun,mon,93,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+32,admin.,divorced,university.degree,no,no,no,telephone,jun,mon,106,10,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+47,technician,single,professional.course,unknown,no,no,telephone,jun,mon,90,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+28,admin.,single,university.degree,no,no,no,telephone,jun,mon,78,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+40,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,55,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+59,admin.,married,high.school,no,no,no,telephone,jun,mon,204,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+50,technician,divorced,professional.course,no,no,no,telephone,jun,mon,408,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+32,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,147,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+38,admin.,single,high.school,unknown,yes,no,telephone,jun,mon,287,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,management,married,university.degree,unknown,no,no,telephone,jun,mon,84,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+41,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,119,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+51,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,mon,133,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,195,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+28,admin.,married,high.school,no,no,no,telephone,jun,mon,108,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+40,technician,married,professional.course,no,no,no,telephone,jun,mon,92,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+50,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,mon,264,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+56,housemaid,divorced,basic.4y,unknown,no,no,telephone,jun,mon,123,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+45,admin.,married,basic.9y,unknown,no,no,telephone,jun,mon,73,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,admin.,married,university.degree,no,no,no,telephone,jun,mon,146,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,206,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+54,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,mon,100,17,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+32,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,mon,452,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+36,blue-collar,single,basic.6y,no,yes,yes,telephone,jun,mon,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+40,blue-collar,married,unknown,unknown,yes,no,telephone,jun,mon,69,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+25,technician,single,university.degree,no,yes,yes,telephone,jun,mon,35,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+52,blue-collar,married,unknown,unknown,no,no,telephone,jun,mon,215,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+44,management,divorced,university.degree,no,yes,no,telephone,jun,mon,96,8,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+52,services,married,university.degree,no,no,no,telephone,jun,mon,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,entrepreneur,married,university.degree,no,yes,yes,telephone,jun,mon,265,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+40,technician,married,professional.course,unknown,no,no,telephone,jun,mon,60,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,179,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+45,entrepreneur,single,university.degree,no,no,no,telephone,jun,mon,162,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+46,management,married,basic.4y,unknown,yes,no,telephone,jun,mon,227,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+33,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+36,technician,married,university.degree,no,no,no,telephone,jun,mon,1093,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes
+40,admin.,single,university.degree,unknown,no,yes,telephone,jun,mon,270,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+43,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,1395,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes
+35,student,single,university.degree,unknown,yes,no,telephone,jun,mon,178,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+32,services,single,high.school,no,no,no,telephone,jun,mon,223,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+56,blue-collar,single,basic.6y,unknown,no,no,telephone,jun,mon,35,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+28,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,mon,210,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+43,admin.,married,high.school,no,no,no,telephone,jun,mon,193,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+38,entrepreneur,married,basic.4y,no,no,no,telephone,jun,mon,822,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+41,unemployed,divorced,high.school,no,no,no,telephone,jun,mon,163,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+53,entrepreneur,married,basic.4y,no,no,no,telephone,jun,mon,339,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+32,blue-collar,married,high.school,no,no,yes,telephone,jun,mon,140,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+30,technician,married,university.degree,no,unknown,unknown,telephone,jun,mon,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+40,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,1238,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+47,services,married,unknown,unknown,no,no,telephone,jun,mon,32,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+52,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,116,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+59,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+33,admin.,married,university.degree,no,no,yes,telephone,jun,mon,77,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+29,admin.,single,university.degree,no,no,no,telephone,jun,mon,73,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+56,services,divorced,basic.4y,no,no,no,telephone,jun,mon,42,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+52,admin.,divorced,high.school,no,no,no,telephone,jun,mon,24,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+46,unknown,married,basic.4y,unknown,yes,no,telephone,jun,mon,25,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+37,admin.,divorced,university.degree,no,no,no,telephone,jun,mon,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+33,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+57,services,divorced,high.school,unknown,yes,no,telephone,jun,mon,80,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+60,management,married,unknown,unknown,yes,no,telephone,jun,mon,35,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+36,admin.,married,university.degree,no,yes,no,telephone,jun,mon,141,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,263,8,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+38,admin.,married,high.school,no,no,no,telephone,jun,mon,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,208,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+25,student,single,high.school,no,yes,yes,telephone,jun,mon,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+42,technician,married,university.degree,unknown,yes,no,telephone,jun,mon,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+29,admin.,single,basic.9y,unknown,no,no,telephone,jun,mon,1298,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+41,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,644,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+44,technician,divorced,professional.course,no,yes,no,telephone,jun,mon,289,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+43,self-employed,married,basic.9y,no,no,no,telephone,jun,mon,1089,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes
+51,management,married,basic.4y,no,yes,no,telephone,jun,mon,124,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+29,admin.,single,university.degree,no,no,no,telephone,jun,mon,157,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+33,self-employed,single,university.degree,no,no,no,telephone,jun,mon,226,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,entrepreneur,single,professional.course,no,yes,no,telephone,jun,mon,136,8,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+53,admin.,married,university.degree,no,no,no,telephone,jun,mon,541,19,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+41,unknown,single,unknown,unknown,no,no,telephone,jun,mon,242,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+52,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,50,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+44,management,divorced,basic.9y,unknown,yes,no,telephone,jun,mon,73,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+38,technician,married,professional.course,no,no,no,telephone,jun,mon,250,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+26,technician,married,professional.course,no,yes,no,telephone,jun,mon,181,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+30,blue-collar,married,high.school,no,yes,no,telephone,jun,mon,32,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+41,technician,married,professional.course,no,no,no,telephone,jun,mon,235,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+40,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,121,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+57,technician,married,basic.9y,no,yes,no,telephone,jun,mon,215,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+35,admin.,single,university.degree,no,no,no,telephone,jun,mon,320,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+41,technician,single,university.degree,no,no,no,telephone,jun,mon,382,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+53,unknown,married,high.school,unknown,yes,no,telephone,jun,mon,244,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+40,housemaid,married,basic.4y,no,no,no,telephone,jun,mon,286,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+26,admin.,married,high.school,no,no,yes,telephone,jun,mon,1021,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+45,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,jun,mon,167,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+31,entrepreneur,single,basic.9y,no,no,no,telephone,jun,mon,1248,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes
+32,admin.,single,university.degree,unknown,no,no,telephone,jun,mon,179,25,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+29,blue-collar,single,high.school,no,no,no,telephone,jun,mon,203,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+28,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,mon,273,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+27,blue-collar,single,basic.9y,no,yes,no,telephone,jun,mon,209,12,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+32,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,39,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+52,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,162,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+46,admin.,single,high.school,no,no,no,telephone,jun,mon,418,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+37,entrepreneur,single,university.degree,no,yes,no,telephone,jun,mon,348,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+36,management,married,university.degree,no,yes,yes,telephone,jun,mon,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+28,student,single,high.school,unknown,yes,no,telephone,jun,mon,131,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+52,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,401,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+30,technician,divorced,professional.course,no,no,no,telephone,jun,mon,332,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+29,technician,single,university.degree,no,no,no,telephone,jun,mon,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+55,housemaid,married,professional.course,no,no,no,telephone,jun,mon,394,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+45,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,mon,287,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+24,unemployed,married,university.degree,no,yes,no,telephone,jun,mon,266,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+43,technician,single,high.school,no,no,no,telephone,jun,mon,153,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+46,technician,married,high.school,no,unknown,unknown,telephone,jun,mon,500,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+24,services,married,high.school,no,yes,no,telephone,jun,mon,298,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+38,blue-collar,single,basic.9y,unknown,yes,no,telephone,jun,mon,101,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+56,services,divorced,high.school,unknown,yes,no,telephone,jun,mon,13,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+41,blue-collar,divorced,basic.6y,no,no,no,telephone,jun,mon,66,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+35,admin.,married,professional.course,no,no,no,telephone,jun,mon,62,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+45,management,married,unknown,unknown,no,yes,telephone,jun,mon,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+26,admin.,divorced,high.school,no,yes,no,telephone,jun,mon,50,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+53,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,jun,mon,57,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+53,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,mon,193,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+37,admin.,married,high.school,no,yes,no,telephone,jun,mon,599,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+52,entrepreneur,married,university.degree,no,no,no,telephone,jun,mon,92,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+35,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,mon,52,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+48,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,92,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+41,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,mon,294,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+36,admin.,single,university.degree,no,yes,no,telephone,jun,mon,99,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+44,unknown,single,basic.9y,unknown,yes,no,telephone,jun,mon,76,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+31,blue-collar,divorced,high.school,no,no,yes,telephone,jun,mon,27,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+26,blue-collar,single,basic.4y,no,yes,yes,telephone,jun,mon,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,technician,married,professional.course,no,yes,yes,telephone,jun,mon,191,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+45,admin.,married,high.school,no,yes,yes,telephone,jun,mon,523,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+39,admin.,single,high.school,no,yes,no,telephone,jun,mon,358,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+51,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,254,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+50,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,mon,46,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+40,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,112,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+43,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,mon,51,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+29,admin.,single,university.degree,no,yes,no,telephone,jun,mon,359,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+42,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,88,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+30,technician,single,university.degree,no,yes,no,telephone,jun,mon,342,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+40,entrepreneur,married,high.school,no,no,no,telephone,jun,mon,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,services,married,high.school,no,yes,no,telephone,jun,mon,76,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+39,management,married,university.degree,no,no,no,telephone,jun,mon,721,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes
+60,management,divorced,university.degree,no,yes,no,telephone,jun,mon,420,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+30,services,single,unknown,no,no,no,telephone,jun,mon,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+35,services,single,high.school,no,no,no,telephone,jun,mon,41,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,technician,divorced,professional.course,no,no,no,telephone,jun,mon,442,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+35,admin.,divorced,university.degree,no,no,no,telephone,jun,mon,41,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+52,entrepreneur,married,basic.4y,unknown,yes,no,telephone,jun,mon,535,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+60,retired,married,basic.4y,unknown,no,no,telephone,jun,mon,155,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+25,self-employed,single,university.degree,no,no,no,telephone,jun,mon,178,7,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+35,admin.,single,high.school,no,no,no,telephone,jun,mon,36,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+40,services,single,high.school,no,yes,yes,telephone,jun,mon,20,21,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+35,admin.,divorced,high.school,no,no,yes,telephone,jun,mon,15,15,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+58,unemployed,single,basic.4y,unknown,no,no,telephone,jun,mon,170,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+37,technician,married,basic.6y,no,no,no,telephone,jun,mon,87,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+42,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,298,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+32,services,married,high.school,no,no,no,telephone,jun,mon,244,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+31,blue-collar,single,high.school,no,yes,no,telephone,jun,mon,750,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes
+30,technician,married,professional.course,no,no,yes,telephone,jun,mon,169,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+47,unknown,married,unknown,unknown,no,no,telephone,jun,mon,139,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,admin.,married,university.degree,no,yes,no,telephone,jun,mon,14,14,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+29,admin.,married,university.degree,no,no,no,telephone,jun,mon,81,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+28,services,married,unknown,no,no,no,telephone,jun,mon,220,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+50,services,single,high.school,no,no,no,telephone,jun,mon,162,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+25,unemployed,single,high.school,unknown,yes,no,telephone,jun,mon,53,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+35,technician,married,university.degree,unknown,no,no,telephone,jun,mon,131,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,blue-collar,married,basic.9y,no,no,yes,telephone,jun,mon,18,30,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+24,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,607,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+52,retired,divorced,basic.4y,no,yes,no,telephone,jun,mon,111,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+59,retired,married,basic.4y,unknown,yes,no,telephone,jun,mon,216,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+26,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,102,35,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+55,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,431,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,19,21,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+37,technician,single,high.school,no,no,no,telephone,jun,mon,394,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+36,management,single,university.degree,no,no,no,telephone,jun,mon,301,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+54,technician,married,university.degree,unknown,no,no,telephone,jun,mon,71,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+24,services,single,high.school,no,yes,no,telephone,jun,mon,341,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+53,technician,married,professional.course,unknown,no,no,telephone,jun,mon,54,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+28,admin.,married,university.degree,no,yes,no,telephone,jun,mon,406,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+32,technician,married,professional.course,no,yes,no,telephone,jun,mon,226,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+57,services,divorced,high.school,no,no,no,telephone,jun,mon,168,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+48,technician,married,high.school,no,unknown,unknown,telephone,jun,mon,221,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,admin.,married,university.degree,no,no,no,telephone,jun,mon,703,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+48,unemployed,divorced,basic.4y,no,no,yes,telephone,jun,mon,119,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+39,services,single,high.school,unknown,no,yes,telephone,jun,mon,126,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+33,admin.,married,high.school,no,no,no,telephone,jun,mon,314,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+37,technician,single,university.degree,no,no,no,telephone,jun,mon,182,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+32,blue-collar,married,high.school,unknown,no,no,telephone,jun,mon,353,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+42,admin.,single,high.school,no,no,no,telephone,jun,mon,362,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+34,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,75,7,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+35,admin.,married,high.school,no,no,no,telephone,jun,mon,142,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+47,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,146,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+42,housemaid,married,unknown,unknown,yes,no,telephone,jun,mon,345,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+57,management,married,university.degree,unknown,no,no,telephone,jun,mon,103,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+44,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,17,25,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+47,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,2769,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes
+49,management,married,high.school,no,yes,no,telephone,jun,mon,26,18,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+30,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,141,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+41,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,14,20,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+32,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,jun,mon,1009,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+39,entrepreneur,married,high.school,no,unknown,unknown,telephone,jun,mon,440,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+36,blue-collar,single,university.degree,unknown,no,no,telephone,jun,mon,323,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+30,technician,divorced,professional.course,no,yes,no,telephone,jun,mon,80,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+40,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,154,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+38,blue-collar,single,basic.6y,unknown,yes,no,telephone,jun,mon,97,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+51,admin.,married,high.school,no,no,no,telephone,jun,mon,368,12,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+55,management,married,university.degree,no,yes,no,telephone,jun,mon,303,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+36,admin.,married,university.degree,no,unknown,unknown,telephone,jun,mon,375,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+54,technician,married,high.school,no,no,no,telephone,jun,mon,77,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+32,student,single,university.degree,no,yes,no,telephone,jun,mon,295,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+29,blue-collar,single,high.school,unknown,no,no,telephone,jun,mon,335,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no
+52,entrepreneur,divorced,basic.4y,no,no,no,telephone,jun,tue,69,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+55,admin.,divorced,university.degree,no,no,no,telephone,jun,tue,143,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,technician,married,university.degree,no,yes,no,telephone,jun,tue,153,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,technician,married,professional.course,no,no,no,telephone,jun,tue,83,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,single,basic.6y,no,yes,no,telephone,jun,tue,214,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,services,divorced,high.school,no,no,no,telephone,jun,tue,118,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,admin.,married,high.school,no,no,no,telephone,jun,tue,638,16,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,technician,married,professional.course,unknown,no,no,telephone,jun,tue,78,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,services,married,high.school,no,no,yes,telephone,jun,tue,222,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,technician,married,professional.course,no,yes,no,telephone,jun,tue,78,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,blue-collar,married,professional.course,no,no,no,telephone,jun,tue,260,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,admin.,married,university.degree,no,yes,no,telephone,jun,tue,150,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,services,married,high.school,unknown,no,no,telephone,jun,tue,49,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,management,divorced,high.school,no,no,no,telephone,jun,tue,62,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,tue,100,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,married,high.school,no,no,no,telephone,jun,tue,138,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,blue-collar,divorced,high.school,no,no,no,telephone,jun,tue,329,13,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,tue,338,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,331,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,technician,divorced,high.school,no,yes,yes,telephone,jun,tue,131,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,services,divorced,basic.6y,unknown,yes,no,telephone,jun,tue,319,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,technician,single,professional.course,no,no,no,telephone,jun,tue,315,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,services,married,high.school,no,no,no,telephone,jun,tue,37,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,technician,single,university.degree,no,yes,no,telephone,jun,tue,45,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,33,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,single,high.school,no,no,no,telephone,jun,tue,117,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,170,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,admin.,married,university.degree,unknown,unknown,unknown,telephone,jun,tue,104,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,admin.,divorced,high.school,no,yes,yes,telephone,jun,tue,287,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,single,university.degree,no,yes,yes,telephone,jun,tue,43,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,services,married,unknown,no,no,no,telephone,jun,tue,345,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,tue,168,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,blue-collar,married,basic.9y,no,no,yes,telephone,jun,tue,110,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+59,retired,single,high.school,no,no,no,telephone,jun,tue,193,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+57,technician,divorced,university.degree,no,no,yes,telephone,jun,tue,187,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,admin.,single,university.degree,no,yes,no,telephone,jun,tue,198,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,blue-collar,divorced,high.school,no,no,no,telephone,jun,tue,256,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,self-employed,married,basic.9y,unknown,yes,no,telephone,jun,tue,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,entrepreneur,married,professional.course,unknown,yes,no,telephone,jun,tue,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,admin.,married,high.school,no,yes,no,telephone,jun,tue,285,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,technician,single,professional.course,no,yes,no,telephone,jun,tue,160,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,admin.,married,high.school,no,no,no,telephone,jun,tue,442,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,management,divorced,university.degree,no,yes,no,telephone,jun,tue,183,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,housemaid,married,basic.4y,unknown,no,yes,telephone,jun,tue,166,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,admin.,married,high.school,no,no,no,telephone,jun,tue,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,services,single,university.degree,no,yes,no,telephone,jun,tue,57,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,student,single,high.school,no,yes,no,telephone,jun,tue,173,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,single,basic.9y,no,no,no,telephone,jun,tue,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+53,admin.,married,basic.9y,no,no,no,telephone,jun,tue,116,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+55,technician,married,university.degree,no,no,no,telephone,jun,tue,126,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+51,blue-collar,married,basic.4y,no,yes,no,telephone,jun,tue,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,196,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,admin.,divorced,high.school,no,unknown,unknown,telephone,jun,tue,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,admin.,married,university.degree,no,yes,yes,telephone,jun,tue,75,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,blue-collar,single,basic.4y,no,no,no,telephone,jun,tue,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,blue-collar,single,basic.9y,no,no,no,telephone,jun,tue,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,technician,married,basic.6y,unknown,yes,no,telephone,jun,tue,98,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,services,single,basic.4y,no,yes,no,telephone,jun,tue,355,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,services,divorced,high.school,no,no,no,telephone,jun,tue,115,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,blue-collar,single,basic.4y,no,no,no,telephone,jun,tue,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,technician,married,professional.course,no,yes,no,telephone,jun,tue,133,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,blue-collar,divorced,basic.9y,no,no,yes,telephone,jun,tue,134,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,admin.,single,high.school,no,no,no,telephone,jun,tue,60,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,entrepreneur,married,basic.6y,no,yes,no,telephone,jun,tue,147,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,married,professional.course,no,yes,no,telephone,jun,tue,296,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,blue-collar,married,professional.course,no,no,no,telephone,jun,tue,70,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+53,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,527,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,blue-collar,married,basic.9y,no,no,yes,telephone,jun,tue,156,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,services,married,high.school,no,yes,no,telephone,jun,tue,187,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+55,admin.,married,high.school,no,yes,yes,telephone,jun,tue,269,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,admin.,married,high.school,unknown,yes,no,telephone,jun,tue,306,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,admin.,single,university.degree,unknown,no,no,telephone,jun,tue,556,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+29,admin.,single,university.degree,no,no,no,telephone,jun,tue,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,admin.,married,university.degree,no,no,no,telephone,jun,tue,483,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+53,services,unknown,unknown,no,yes,no,telephone,jun,tue,382,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,married,basic.4y,no,no,no,telephone,jun,tue,881,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,404,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+24,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,218,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+27,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,121,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,admin.,married,high.school,no,no,no,telephone,jun,tue,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,self-employed,married,basic.9y,no,no,no,telephone,jun,tue,243,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,technician,married,university.degree,no,no,no,telephone,jun,tue,181,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,admin.,single,university.degree,unknown,no,no,telephone,jun,tue,99,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+27,self-employed,single,university.degree,no,no,no,telephone,jun,tue,139,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,services,married,high.school,unknown,no,yes,telephone,jun,tue,214,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,services,divorced,university.degree,no,no,no,telephone,jun,tue,198,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,unemployed,married,university.degree,no,no,no,telephone,jun,tue,132,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,self-employed,married,professional.course,no,no,no,telephone,jun,tue,129,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,technician,married,high.school,unknown,no,no,telephone,jun,tue,491,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,admin.,married,university.degree,no,yes,yes,telephone,jun,tue,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,blue-collar,single,basic.4y,no,no,no,telephone,jun,tue,285,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,management,single,university.degree,no,no,no,telephone,jun,tue,255,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,housemaid,single,basic.4y,no,no,no,telephone,jun,tue,241,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,self-employed,married,professional.course,no,no,yes,telephone,jun,tue,705,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+56,technician,married,professional.course,unknown,no,no,telephone,jun,tue,134,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,admin.,single,high.school,unknown,yes,no,telephone,jun,tue,483,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,admin.,single,high.school,no,no,no,telephone,jun,tue,423,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,admin.,married,university.degree,no,yes,no,telephone,jun,tue,43,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,admin.,divorced,university.degree,no,unknown,unknown,telephone,jun,tue,23,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,technician,single,university.degree,no,no,no,telephone,jun,tue,48,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,blue-collar,single,basic.4y,unknown,no,no,telephone,jun,tue,254,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,unemployed,single,high.school,unknown,no,no,telephone,jun,tue,34,11,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,tue,388,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,technician,married,university.degree,no,no,no,telephone,jun,tue,107,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,management,married,high.school,unknown,yes,no,telephone,jun,tue,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,technician,married,professional.course,no,yes,yes,telephone,jun,tue,61,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,technician,married,high.school,no,no,no,telephone,jun,tue,157,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,single,basic.6y,unknown,unknown,unknown,telephone,jun,tue,82,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,blue-collar,married,basic.6y,no,yes,yes,telephone,jun,tue,105,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,admin.,single,basic.9y,no,no,no,telephone,jun,tue,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,technician,married,university.degree,no,yes,no,telephone,jun,tue,189,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,unemployed,married,high.school,no,yes,no,telephone,jun,tue,652,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,technician,single,university.degree,no,no,no,telephone,jun,tue,206,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,tue,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,tue,30,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+53,management,married,university.degree,unknown,no,no,telephone,jun,tue,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,admin.,married,high.school,no,yes,no,telephone,jun,tue,174,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,management,married,university.degree,no,yes,no,telephone,jun,tue,150,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,tue,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,tue,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,technician,single,university.degree,no,no,no,telephone,jun,tue,91,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,management,married,high.school,unknown,yes,no,telephone,jun,tue,77,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+57,retired,single,professional.course,no,no,yes,telephone,jun,tue,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,79,31,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,85,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,admin.,divorced,high.school,no,no,no,telephone,jun,tue,139,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,management,married,university.degree,no,yes,no,telephone,jun,tue,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,services,married,high.school,no,yes,no,telephone,jun,tue,168,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,blue-collar,married,university.degree,no,yes,yes,telephone,jun,tue,436,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,technician,married,university.degree,no,no,no,telephone,jun,tue,88,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,admin.,married,high.school,no,unknown,unknown,telephone,jun,tue,43,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,tue,156,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,married,high.school,no,yes,no,telephone,jun,tue,171,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,services,married,high.school,unknown,yes,no,telephone,jun,tue,157,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,blue-collar,married,basic.6y,no,yes,no,telephone,jun,tue,130,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,technician,divorced,professional.course,no,no,yes,telephone,jun,tue,50,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,technician,single,university.degree,no,yes,no,telephone,jun,tue,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,self-employed,married,basic.9y,no,unknown,unknown,telephone,jun,tue,120,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+27,entrepreneur,single,university.degree,no,no,no,telephone,jun,tue,259,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,79,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,tue,321,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,married,professional.course,unknown,yes,yes,telephone,jun,tue,192,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,technician,married,high.school,no,no,no,telephone,jun,tue,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,blue-collar,married,basic.6y,no,yes,no,telephone,jun,tue,108,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,entrepreneur,married,university.degree,no,yes,no,telephone,jun,tue,187,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,unknown,married,unknown,no,no,no,telephone,jun,tue,164,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,67,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,technician,single,unknown,no,yes,no,telephone,jun,tue,445,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,management,single,university.degree,no,yes,no,telephone,jun,tue,344,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,admin.,married,high.school,no,yes,no,telephone,jun,tue,167,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,unemployed,married,basic.9y,unknown,yes,no,telephone,jun,tue,605,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,blue-collar,divorced,high.school,no,yes,no,telephone,jun,tue,226,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,technician,single,university.degree,no,no,no,telephone,jun,tue,179,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,unemployed,divorced,professional.course,no,yes,no,telephone,jun,tue,353,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,tue,34,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,technician,married,professional.course,no,no,no,telephone,jun,tue,161,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+56,housemaid,divorced,basic.4y,unknown,yes,no,telephone,jun,tue,77,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,admin.,married,university.degree,no,no,yes,telephone,jun,tue,346,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+51,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,tue,781,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+44,admin.,divorced,high.school,unknown,no,no,telephone,jun,tue,81,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,management,married,university.degree,no,yes,no,telephone,jun,tue,269,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,services,married,high.school,unknown,yes,yes,telephone,jun,tue,31,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,student,single,unknown,no,yes,no,telephone,jun,tue,367,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,technician,married,professional.course,no,yes,no,telephone,jun,tue,229,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,admin.,single,unknown,unknown,unknown,unknown,telephone,jun,tue,479,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,admin.,married,university.degree,no,no,yes,telephone,jun,tue,24,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,blue-collar,married,basic.9y,no,no,yes,telephone,jun,tue,16,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,technician,married,professional.course,no,no,no,telephone,jun,tue,88,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,714,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,admin.,divorced,university.degree,unknown,yes,no,telephone,jun,tue,205,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,blue-collar,married,professional.course,no,no,no,telephone,jun,tue,291,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+57,housemaid,married,basic.6y,unknown,no,no,telephone,jun,tue,986,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+57,self-employed,married,unknown,unknown,yes,no,telephone,jun,tue,279,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,admin.,married,high.school,no,yes,no,telephone,jun,tue,166,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,92,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+58,retired,married,basic.4y,no,yes,no,telephone,jun,tue,254,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+57,management,divorced,university.degree,unknown,yes,yes,telephone,jun,tue,236,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,technician,single,professional.course,no,no,no,telephone,jun,tue,19,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,admin.,married,university.degree,unknown,yes,no,telephone,jun,tue,93,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,unemployed,married,basic.9y,unknown,yes,no,telephone,jun,tue,200,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,technician,married,university.degree,no,no,no,telephone,jun,tue,176,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,admin.,single,university.degree,no,yes,no,telephone,jun,tue,1162,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,tue,1848,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+30,self-employed,single,university.degree,no,no,yes,telephone,jun,tue,74,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,management,married,university.degree,no,no,no,telephone,jun,tue,490,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+50,services,divorced,high.school,no,no,no,telephone,jun,tue,291,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,tue,1051,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+27,housemaid,married,basic.9y,unknown,yes,no,telephone,jun,tue,614,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,services,single,high.school,unknown,yes,no,telephone,jun,tue,437,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+22,student,single,high.school,no,unknown,unknown,telephone,jun,tue,1199,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,209,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,married,high.school,unknown,yes,no,telephone,jun,tue,115,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,unemployed,single,high.school,unknown,yes,no,telephone,jun,tue,292,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,admin.,married,university.degree,no,yes,no,telephone,jun,tue,370,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+57,management,married,university.degree,unknown,yes,no,telephone,jun,tue,412,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,tue,108,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,admin.,single,high.school,no,no,yes,telephone,jun,tue,495,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+60,self-employed,married,professional.course,unknown,no,no,telephone,jun,tue,247,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,technician,married,professional.course,no,yes,no,telephone,jun,tue,57,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,services,married,high.school,unknown,yes,no,telephone,jun,tue,1345,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+55,retired,married,professional.course,no,no,yes,telephone,jun,tue,107,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,171,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,technician,single,professional.course,no,yes,no,telephone,jun,tue,66,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+56,unemployed,divorced,university.degree,unknown,yes,no,telephone,jun,tue,447,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,technician,married,professional.course,no,yes,no,telephone,jun,tue,167,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+53,blue-collar,married,basic.9y,no,no,yes,telephone,jun,tue,668,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,admin.,divorced,high.school,no,yes,no,telephone,jun,tue,204,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,student,single,high.school,unknown,no,no,telephone,jun,tue,256,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,blue-collar,divorced,high.school,no,no,no,telephone,jun,tue,676,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+27,services,single,high.school,no,yes,no,telephone,jun,tue,170,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,technician,single,professional.course,no,no,yes,telephone,jun,tue,63,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,technician,married,basic.9y,unknown,yes,no,telephone,jun,tue,168,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+59,blue-collar,married,basic.6y,no,yes,no,telephone,jun,tue,133,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,services,married,high.school,no,yes,no,telephone,jun,tue,153,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,tue,118,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,technician,married,professional.course,no,yes,no,telephone,jun,tue,117,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,technician,married,high.school,no,no,no,telephone,jun,tue,572,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,admin.,single,unknown,unknown,no,no,telephone,jun,tue,681,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,technician,married,professional.course,no,yes,no,telephone,jun,tue,59,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,services,divorced,high.school,no,yes,no,telephone,jun,tue,42,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,self-employed,married,basic.9y,no,yes,yes,telephone,jun,tue,408,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,blue-collar,married,unknown,unknown,yes,yes,telephone,jun,tue,127,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,blue-collar,married,high.school,no,yes,yes,telephone,jun,tue,314,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,admin.,married,university.degree,no,no,yes,telephone,jun,tue,277,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,entrepreneur,single,university.degree,no,no,no,telephone,jun,tue,140,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,entrepreneur,married,university.degree,no,no,no,telephone,jun,tue,424,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,admin.,single,high.school,no,yes,yes,telephone,jun,tue,159,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,entrepreneur,married,professional.course,no,yes,no,telephone,jun,tue,775,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+57,self-employed,married,university.degree,unknown,no,no,telephone,jun,tue,187,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,married,professional.course,unknown,yes,yes,telephone,jun,tue,102,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,self-employed,single,university.degree,no,yes,no,telephone,jun,tue,2621,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+33,admin.,married,high.school,no,no,no,telephone,jun,tue,96,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,admin.,married,high.school,no,yes,no,telephone,jun,tue,167,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,services,married,high.school,no,no,no,telephone,jun,tue,200,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,services,married,professional.course,no,no,no,telephone,jun,tue,75,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+22,services,single,basic.4y,no,yes,no,telephone,jun,tue,249,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,admin.,married,high.school,unknown,yes,no,telephone,jun,tue,85,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,management,married,university.degree,no,yes,no,telephone,jun,tue,134,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,admin.,married,university.degree,no,yes,no,telephone,jun,tue,50,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,married,university.degree,no,yes,no,telephone,jun,tue,173,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,self-employed,married,unknown,no,yes,no,telephone,jun,tue,60,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,unemployed,married,professional.course,unknown,no,no,telephone,jun,tue,320,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,married,professional.course,no,no,no,telephone,jun,tue,854,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+51,services,married,high.school,no,no,no,telephone,jun,tue,236,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+55,technician,married,basic.9y,no,yes,no,telephone,jun,tue,183,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,admin.,married,high.school,no,yes,no,telephone,jun,tue,185,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,technician,married,professional.course,no,yes,no,telephone,jun,tue,41,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,services,married,basic.6y,unknown,no,yes,telephone,jun,tue,39,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,services,married,basic.9y,no,no,no,telephone,jun,tue,138,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,admin.,married,university.degree,no,yes,no,telephone,jun,tue,411,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+56,retired,married,basic.4y,no,no,no,telephone,jun,tue,394,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,209,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,admin.,married,high.school,no,yes,no,telephone,jun,tue,266,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,self-employed,married,university.degree,no,yes,no,telephone,jun,tue,134,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,admin.,married,university.degree,no,no,no,telephone,jun,tue,311,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,blue-collar,married,unknown,unknown,no,no,telephone,jun,tue,705,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,tue,89,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,admin.,married,high.school,no,no,no,telephone,jun,tue,93,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,management,married,basic.4y,unknown,no,no,telephone,jun,tue,847,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,admin.,married,high.school,unknown,no,no,telephone,jun,tue,675,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,housemaid,divorced,basic.4y,unknown,yes,yes,telephone,jun,tue,273,27,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,admin.,single,high.school,unknown,no,yes,telephone,jun,tue,162,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,admin.,divorced,university.degree,no,no,no,telephone,jun,tue,213,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,admin.,single,university.degree,no,no,no,telephone,jun,tue,641,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,admin.,single,university.degree,no,yes,no,telephone,jun,tue,61,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,student,married,high.school,no,no,yes,telephone,jun,tue,136,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+27,technician,single,high.school,no,no,no,telephone,jun,tue,187,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+57,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,332,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,entrepreneur,single,professional.course,no,no,no,telephone,jun,tue,76,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,services,single,high.school,no,no,no,telephone,jun,tue,406,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,admin.,married,university.degree,no,no,yes,telephone,jun,tue,544,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,self-employed,married,basic.9y,no,yes,no,telephone,jun,tue,363,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,tue,756,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,tue,117,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,entrepreneur,married,basic.4y,unknown,yes,no,telephone,jun,tue,76,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,management,married,basic.6y,no,no,yes,telephone,jun,tue,271,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+58,admin.,single,professional.course,unknown,no,no,telephone,jun,tue,203,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,married,university.degree,unknown,no,no,telephone,jun,tue,338,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,admin.,single,university.degree,no,no,no,telephone,jun,tue,70,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,admin.,married,university.degree,no,no,no,telephone,jun,tue,198,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,married,high.school,no,yes,no,telephone,jun,tue,398,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,admin.,married,high.school,unknown,no,no,telephone,jun,tue,956,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,technician,married,professional.course,unknown,yes,yes,telephone,jun,tue,76,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,264,16,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,admin.,married,university.degree,no,no,no,telephone,jun,tue,979,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,blue-collar,married,basic.4y,no,no,no,telephone,jun,tue,89,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,entrepreneur,married,high.school,no,no,no,telephone,jun,tue,135,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,services,single,high.school,no,no,no,telephone,jun,tue,420,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,single,high.school,unknown,no,no,telephone,jun,tue,548,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,unemployed,married,high.school,no,yes,no,telephone,jun,tue,235,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+56,admin.,married,unknown,no,yes,no,telephone,jun,tue,87,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,blue-collar,married,basic.6y,no,yes,no,telephone,jun,tue,169,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,management,married,high.school,no,yes,yes,telephone,jun,tue,343,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,unemployed,married,professional.course,no,yes,no,telephone,jun,tue,88,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,admin.,single,basic.4y,no,yes,yes,telephone,jun,tue,68,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,services,married,high.school,no,no,no,telephone,jun,tue,77,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,management,married,basic.9y,no,yes,no,telephone,jun,tue,116,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,services,single,high.school,no,no,no,telephone,jun,tue,363,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,tue,116,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,311,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,unknown,married,unknown,unknown,yes,yes,telephone,jun,tue,138,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,entrepreneur,married,basic.4y,unknown,no,no,telephone,jun,tue,48,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,blue-collar,married,high.school,unknown,no,no,telephone,jun,tue,390,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,management,married,high.school,unknown,no,no,telephone,jun,tue,61,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,tue,65,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,unemployed,divorced,basic.4y,no,yes,yes,telephone,jun,tue,637,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,single,university.degree,no,yes,no,telephone,jun,tue,117,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+24,admin.,single,university.degree,no,yes,no,telephone,jun,tue,128,21,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,technician,married,university.degree,unknown,no,no,telephone,jun,tue,130,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,blue-collar,married,basic.6y,unknown,yes,yes,telephone,jun,tue,193,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,technician,divorced,professional.course,no,yes,no,telephone,jun,tue,269,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,admin.,single,high.school,no,yes,no,telephone,jun,tue,150,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,admin.,divorced,high.school,no,no,no,telephone,jun,tue,132,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,blue-collar,divorced,basic.6y,no,yes,no,telephone,jun,tue,1208,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,management,married,university.degree,no,yes,no,telephone,jun,tue,228,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,technician,divorced,university.degree,no,no,yes,telephone,jun,tue,585,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,334,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,single,university.degree,no,no,no,telephone,jun,tue,229,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+55,housemaid,married,university.degree,no,yes,no,telephone,jun,tue,441,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,blue-collar,divorced,basic.6y,no,yes,no,telephone,jun,wed,60,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+59,admin.,married,university.degree,no,yes,no,telephone,jun,wed,47,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+32,self-employed,divorced,professional.course,unknown,yes,no,telephone,jun,wed,235,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+58,blue-collar,married,high.school,no,no,no,telephone,jun,wed,270,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+32,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,wed,192,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+54,blue-collar,married,high.school,no,yes,yes,telephone,jun,wed,26,7,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+38,unemployed,married,basic.9y,unknown,yes,no,telephone,jun,wed,89,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,61,7,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+43,services,married,high.school,no,no,no,telephone,jun,wed,386,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+36,admin.,divorced,high.school,no,yes,no,telephone,jun,wed,54,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+52,admin.,married,university.degree,unknown,yes,no,telephone,jun,wed,272,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+43,technician,single,professional.course,no,unknown,unknown,telephone,jun,wed,35,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+28,admin.,single,high.school,no,no,no,telephone,jun,wed,284,8,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+46,technician,divorced,professional.course,no,no,no,telephone,jun,wed,53,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+42,housemaid,married,unknown,unknown,yes,no,telephone,jun,wed,311,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+31,blue-collar,married,basic.9y,no,no,yes,telephone,jun,wed,245,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+38,blue-collar,married,basic.9y,no,no,yes,telephone,jun,wed,151,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+50,services,married,high.school,no,yes,yes,telephone,jun,wed,64,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+39,services,single,high.school,no,yes,no,telephone,jun,wed,205,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+34,technician,married,university.degree,no,yes,no,telephone,jun,wed,250,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+30,management,single,university.degree,no,yes,no,telephone,jun,wed,66,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+51,technician,married,high.school,no,no,yes,telephone,jun,wed,137,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+43,admin.,married,high.school,unknown,no,no,telephone,jun,wed,30,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+26,admin.,single,high.school,no,no,no,telephone,jun,wed,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+35,admin.,married,university.degree,no,yes,no,telephone,jun,wed,284,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+24,entrepreneur,married,university.degree,no,yes,yes,telephone,jun,wed,126,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+51,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,wed,120,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+31,unemployed,divorced,basic.4y,no,yes,no,telephone,jun,wed,48,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+45,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,wed,262,9,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+30,student,single,university.degree,no,yes,no,telephone,jun,wed,1062,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+46,unemployed,divorced,basic.9y,no,no,no,telephone,jun,wed,283,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+44,admin.,single,high.school,no,no,no,telephone,jun,wed,295,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+26,blue-collar,single,unknown,no,yes,yes,telephone,jun,wed,203,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+38,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,37,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+30,admin.,married,university.degree,no,no,yes,telephone,jun,wed,18,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+33,blue-collar,single,basic.9y,no,yes,no,telephone,jun,wed,18,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+31,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,350,7,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+47,blue-collar,single,basic.4y,unknown,no,no,telephone,jun,wed,190,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+57,retired,married,unknown,unknown,yes,no,telephone,jun,wed,54,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+36,blue-collar,single,high.school,no,yes,no,telephone,jun,wed,835,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes
+30,services,married,high.school,no,yes,no,telephone,jun,wed,421,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+40,blue-collar,divorced,basic.9y,unknown,unknown,unknown,telephone,jun,wed,104,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+32,services,married,professional.course,no,unknown,unknown,telephone,jun,wed,164,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+45,entrepreneur,married,unknown,no,no,no,telephone,jun,wed,89,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+29,technician,single,high.school,no,no,no,telephone,jun,wed,112,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+37,management,married,university.degree,no,yes,no,telephone,jun,wed,744,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+45,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,503,11,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+48,technician,married,professional.course,unknown,yes,no,telephone,jun,wed,321,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+35,admin.,divorced,basic.9y,unknown,yes,no,telephone,jun,wed,24,10,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+34,admin.,married,university.degree,no,yes,no,telephone,jun,wed,102,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+42,technician,married,basic.6y,no,yes,no,telephone,jun,wed,261,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+32,admin.,single,high.school,unknown,no,no,telephone,jun,wed,213,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+31,technician,married,professional.course,no,no,no,telephone,jun,wed,371,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes
+38,admin.,single,university.degree,no,yes,no,telephone,jun,wed,190,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+30,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,114,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+54,housemaid,married,basic.4y,unknown,no,no,telephone,jun,wed,221,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+38,admin.,single,basic.9y,unknown,yes,no,telephone,jun,wed,247,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+25,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,680,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+25,services,single,professional.course,no,no,no,telephone,jun,wed,185,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+51,unemployed,divorced,university.degree,unknown,yes,yes,telephone,jun,wed,110,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+35,blue-collar,single,basic.4y,unknown,no,no,telephone,jun,wed,172,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+28,admin.,single,university.degree,no,no,no,telephone,jun,wed,156,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+47,services,married,high.school,no,unknown,unknown,telephone,jun,wed,347,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+35,technician,single,professional.course,no,no,no,telephone,jun,wed,394,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+51,blue-collar,single,basic.9y,unknown,yes,no,telephone,jun,wed,573,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+28,technician,single,university.degree,unknown,no,no,telephone,jun,wed,262,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+34,services,married,basic.9y,no,no,no,telephone,jun,wed,37,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+27,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,72,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+31,services,married,high.school,no,yes,no,telephone,jun,wed,417,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+35,technician,married,professional.course,no,no,no,telephone,jun,wed,1528,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes
+56,management,married,university.degree,no,no,no,telephone,jun,wed,154,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+31,services,single,basic.6y,no,no,no,telephone,jun,wed,533,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+41,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,wed,122,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+58,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,23,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+38,blue-collar,married,basic.6y,unknown,no,yes,telephone,jun,wed,82,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+47,services,married,high.school,unknown,yes,yes,telephone,jun,wed,55,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+46,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,67,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+56,retired,married,high.school,unknown,no,no,telephone,jun,wed,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+47,services,married,high.school,unknown,no,no,telephone,jun,wed,311,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+33,admin.,single,high.school,no,no,yes,telephone,jun,wed,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+55,technician,married,professional.course,unknown,yes,no,telephone,jun,wed,59,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+47,services,married,high.school,unknown,yes,no,telephone,jun,wed,551,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+56,retired,married,high.school,unknown,yes,no,telephone,jun,wed,367,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+32,blue-collar,married,high.school,no,no,no,telephone,jun,wed,220,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+41,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,15,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+52,self-employed,married,professional.course,unknown,no,yes,telephone,jun,wed,56,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+43,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,173,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+29,admin.,married,high.school,no,no,yes,telephone,jun,wed,97,8,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+41,admin.,divorced,high.school,no,yes,no,telephone,jun,wed,199,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+23,blue-collar,married,professional.course,unknown,no,no,telephone,jun,wed,94,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+51,blue-collar,divorced,unknown,unknown,no,no,telephone,jun,wed,15,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+36,services,single,high.school,no,no,no,telephone,jun,wed,142,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+51,blue-collar,divorced,unknown,unknown,no,no,telephone,jun,wed,220,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+35,technician,married,professional.course,no,no,no,telephone,jun,wed,417,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+43,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,192,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+32,services,married,high.school,no,yes,no,telephone,jun,wed,443,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+41,services,married,basic.9y,no,yes,no,telephone,jun,wed,115,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+43,self-employed,married,university.degree,unknown,yes,yes,telephone,jun,wed,1487,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+54,retired,single,basic.4y,unknown,no,no,telephone,jun,wed,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+25,admin.,single,high.school,no,yes,no,telephone,jun,wed,54,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+36,admin.,married,high.school,no,yes,no,telephone,jun,wed,159,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+36,admin.,married,high.school,no,yes,no,telephone,jun,wed,335,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+42,admin.,divorced,university.degree,no,no,no,telephone,jun,wed,104,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+35,entrepreneur,single,professional.course,no,no,no,telephone,jun,wed,236,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+50,management,married,university.degree,no,yes,no,telephone,jun,wed,300,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+42,admin.,divorced,university.degree,no,yes,no,telephone,jun,wed,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+32,admin.,married,high.school,no,yes,no,telephone,jun,wed,156,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+32,admin.,married,high.school,no,no,no,telephone,jun,wed,103,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+51,services,married,high.school,unknown,no,yes,telephone,jun,wed,269,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+39,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,wed,187,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+38,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,wed,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+43,blue-collar,married,basic.6y,no,yes,no,telephone,jun,wed,1540,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes
+39,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,wed,310,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+41,services,married,basic.9y,no,yes,no,telephone,jun,wed,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+34,admin.,single,high.school,no,no,yes,telephone,jun,wed,129,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+36,admin.,married,high.school,no,yes,yes,telephone,jun,wed,208,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+28,services,single,high.school,no,no,no,telephone,jun,wed,124,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+49,housemaid,divorced,basic.4y,no,no,no,telephone,jun,wed,67,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,1218,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+25,housemaid,married,basic.4y,no,no,no,telephone,jun,wed,362,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+29,management,married,university.degree,no,no,no,telephone,jun,wed,973,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes
+56,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,36,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+54,blue-collar,divorced,basic.4y,unknown,no,yes,telephone,jun,wed,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+31,admin.,married,high.school,no,yes,no,telephone,jun,wed,132,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+34,blue-collar,married,professional.course,unknown,no,no,telephone,jun,wed,1009,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+27,technician,married,university.degree,no,yes,yes,telephone,jun,wed,55,10,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+31,admin.,married,high.school,no,yes,no,telephone,jun,wed,105,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+51,blue-collar,divorced,unknown,unknown,unknown,unknown,telephone,jun,wed,339,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+28,admin.,single,university.degree,no,yes,no,telephone,jun,wed,355,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+28,management,single,basic.9y,no,no,no,telephone,jun,wed,466,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+26,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,94,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+25,services,married,high.school,no,yes,no,telephone,jun,wed,227,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+39,technician,married,professional.course,unknown,yes,yes,telephone,jun,wed,65,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+28,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,387,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+33,admin.,married,university.degree,no,yes,no,telephone,jun,wed,379,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+39,technician,married,professional.course,unknown,no,no,telephone,jun,wed,401,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+55,management,single,basic.4y,no,no,no,telephone,jun,wed,205,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+29,management,married,university.degree,no,no,no,telephone,jun,wed,332,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+51,management,married,university.degree,unknown,yes,yes,telephone,jun,wed,567,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+28,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,200,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+24,blue-collar,single,basic.4y,no,no,no,telephone,jun,wed,537,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes
+24,blue-collar,single,basic.4y,no,no,no,telephone,jun,wed,476,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+45,blue-collar,divorced,unknown,unknown,yes,no,telephone,jun,wed,29,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+20,services,single,high.school,no,yes,no,telephone,jun,wed,290,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+34,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,74,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+25,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,76,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+29,self-employed,married,professional.course,no,no,no,telephone,jun,wed,26,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+29,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,wed,27,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+29,self-employed,married,professional.course,no,no,no,telephone,jun,wed,632,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+32,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,316,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+32,blue-collar,married,basic.6y,no,yes,yes,telephone,jun,wed,440,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+32,admin.,single,university.degree,no,no,no,telephone,jun,wed,52,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+38,blue-collar,single,university.degree,unknown,yes,no,telephone,jun,wed,59,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+29,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,243,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+37,technician,single,university.degree,no,no,no,telephone,jun,wed,190,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,81,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+55,management,single,basic.4y,no,yes,no,telephone,jun,wed,58,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+29,admin.,single,high.school,no,yes,no,telephone,jun,wed,356,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+43,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,wed,320,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+24,services,single,high.school,no,yes,no,telephone,jun,wed,221,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+24,services,single,high.school,no,yes,no,telephone,jun,wed,453,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+55,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,345,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+38,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,146,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+40,admin.,married,university.degree,no,no,no,telephone,jun,wed,248,29,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+41,services,married,basic.9y,no,yes,no,telephone,jun,wed,324,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+29,entrepreneur,single,professional.course,no,no,no,telephone,jun,wed,609,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+58,management,unknown,university.degree,no,no,no,telephone,jun,wed,16,9,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+28,admin.,married,university.degree,no,no,no,telephone,jun,wed,392,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+57,unemployed,married,basic.9y,no,yes,no,telephone,jun,wed,422,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+57,housemaid,married,basic.4y,no,no,no,telephone,jun,wed,101,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+33,services,married,basic.4y,no,unknown,unknown,telephone,jun,wed,577,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+43,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,319,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+38,blue-collar,married,professional.course,no,no,no,telephone,jun,wed,112,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+56,technician,single,university.degree,no,yes,no,telephone,jun,wed,308,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+52,services,single,high.school,no,yes,no,telephone,jun,wed,43,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+25,technician,married,professional.course,no,yes,no,telephone,jun,wed,149,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+31,housemaid,married,professional.course,no,yes,no,telephone,jun,wed,36,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+52,services,single,high.school,no,yes,no,telephone,jun,wed,324,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+36,admin.,married,high.school,unknown,yes,no,telephone,jun,wed,100,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+32,student,single,university.degree,no,yes,no,telephone,jun,wed,209,12,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+26,technician,single,high.school,no,unknown,unknown,telephone,jun,wed,105,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+41,services,married,high.school,no,unknown,unknown,telephone,jun,wed,707,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes
+31,entrepreneur,divorced,high.school,no,yes,no,telephone,jun,wed,119,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+28,management,married,university.degree,no,yes,no,telephone,jun,wed,695,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes
+32,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,wed,13,11,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+41,technician,single,professional.course,no,yes,no,telephone,jun,wed,1255,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes
+29,technician,divorced,professional.course,no,yes,no,telephone,jun,wed,11,19,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+39,management,married,basic.9y,no,no,no,telephone,jun,wed,255,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+42,management,married,university.degree,no,no,no,telephone,jun,wed,50,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+50,unemployed,married,high.school,no,no,no,telephone,jun,wed,373,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+34,blue-collar,married,high.school,no,no,no,telephone,jun,wed,18,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+32,blue-collar,single,high.school,no,yes,no,telephone,jun,wed,108,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+44,entrepreneur,married,professional.course,no,no,yes,telephone,jun,wed,307,14,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+42,retired,married,professional.course,unknown,yes,no,telephone,jun,wed,142,17,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+48,technician,divorced,university.degree,no,yes,no,telephone,jun,wed,78,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+41,self-employed,married,basic.9y,no,yes,no,telephone,jun,wed,376,7,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+27,management,single,high.school,no,unknown,unknown,telephone,jun,wed,155,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+32,technician,married,professional.course,no,no,no,telephone,jun,wed,188,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+55,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,326,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+27,admin.,single,university.degree,no,no,no,telephone,jun,wed,443,7,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+41,admin.,married,university.degree,no,yes,yes,telephone,jun,wed,802,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+43,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,64,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+54,unemployed,married,high.school,no,no,no,telephone,jun,wed,36,16,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+52,blue-collar,divorced,high.school,no,no,no,telephone,jun,wed,18,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+55,management,single,basic.4y,no,yes,no,telephone,jun,wed,89,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+38,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,359,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+42,blue-collar,married,high.school,unknown,no,no,telephone,jun,wed,257,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+56,retired,married,basic.4y,no,yes,no,telephone,jun,wed,19,30,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+41,services,married,basic.9y,no,yes,no,telephone,jun,wed,404,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+31,services,married,high.school,unknown,yes,yes,telephone,jun,wed,146,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+29,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,234,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+40,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,13,14,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+25,services,single,high.school,no,no,no,telephone,jun,wed,297,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+46,entrepreneur,married,university.degree,unknown,unknown,unknown,telephone,jun,wed,156,9,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+53,management,divorced,university.degree,no,unknown,unknown,telephone,jun,wed,636,12,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+42,admin.,married,basic.6y,no,yes,no,telephone,jun,wed,300,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+59,retired,married,basic.9y,no,yes,no,telephone,jun,wed,2093,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes
+24,technician,single,professional.course,no,yes,no,telephone,jun,wed,37,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+44,admin.,single,high.school,no,no,no,telephone,jun,wed,61,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+43,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,793,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,704,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes
+28,technician,single,professional.course,no,yes,no,telephone,jun,wed,1195,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+33,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,61,23,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+47,admin.,married,basic.9y,no,yes,no,telephone,jun,wed,96,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+38,management,married,unknown,unknown,no,no,telephone,jun,wed,1066,9,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes
+35,admin.,divorced,university.degree,no,yes,no,telephone,jun,wed,399,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+47,entrepreneur,married,professional.course,unknown,no,yes,telephone,jun,wed,140,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+25,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,121,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+26,technician,single,professional.course,no,no,no,telephone,jun,wed,84,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+39,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,87,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+42,entrepreneur,married,professional.course,no,no,no,telephone,jun,wed,108,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+43,management,married,high.school,no,no,no,telephone,jun,wed,48,10,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+29,technician,married,professional.course,no,no,no,telephone,jun,wed,129,10,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+50,management,married,university.degree,unknown,no,no,telephone,jun,wed,242,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+29,blue-collar,married,professional.course,no,no,no,telephone,jun,wed,230,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+45,technician,divorced,professional.course,no,yes,no,telephone,jun,wed,37,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+36,blue-collar,married,unknown,no,yes,yes,telephone,jun,wed,130,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+38,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,25,41,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+36,services,married,high.school,unknown,yes,yes,telephone,jun,wed,57,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+33,housemaid,married,high.school,no,unknown,unknown,telephone,jun,wed,154,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+33,entrepreneur,married,university.degree,no,yes,yes,telephone,jun,wed,77,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+44,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,wed,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+33,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,313,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+43,management,divorced,university.degree,no,no,no,telephone,jun,wed,114,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+39,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,wed,119,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+36,admin.,single,university.degree,no,no,no,telephone,jun,wed,305,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+31,services,single,high.school,no,no,no,telephone,jun,wed,49,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+49,technician,married,professional.course,unknown,yes,no,telephone,jun,wed,429,13,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+44,blue-collar,married,high.school,unknown,yes,no,telephone,jun,wed,51,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+51,management,married,high.school,no,no,no,telephone,jun,wed,99,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+28,management,married,university.degree,no,no,no,telephone,jun,wed,771,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes
+57,blue-collar,divorced,unknown,unknown,unknown,unknown,telephone,jun,wed,41,8,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+41,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,378,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+49,unknown,married,basic.6y,no,no,no,telephone,jun,wed,152,9,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+44,technician,married,high.school,no,yes,yes,telephone,jun,wed,491,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+57,retired,divorced,professional.course,no,no,no,telephone,jun,wed,203,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+36,services,married,high.school,unknown,no,no,telephone,jun,wed,90,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+49,admin.,married,high.school,no,yes,no,telephone,jun,wed,135,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+36,blue-collar,married,high.school,no,no,no,telephone,jun,wed,626,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+51,management,married,university.degree,no,no,no,telephone,jun,wed,16,17,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+45,admin.,married,high.school,no,no,no,telephone,jun,wed,125,8,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+30,entrepreneur,married,high.school,no,unknown,unknown,telephone,jun,wed,120,8,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+46,admin.,married,basic.9y,unknown,yes,no,telephone,jun,wed,16,14,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+43,blue-collar,single,basic.9y,no,yes,no,telephone,jun,wed,354,21,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+23,blue-collar,single,basic.9y,no,yes,no,telephone,jun,wed,507,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+50,technician,married,professional.course,unknown,yes,no,telephone,jun,wed,18,20,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+41,admin.,single,high.school,unknown,yes,no,telephone,jun,wed,90,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+26,admin.,single,high.school,no,no,no,telephone,jun,wed,140,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+47,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,jun,wed,15,8,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+52,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,23,7,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+33,self-employed,married,university.degree,no,no,no,telephone,jun,wed,113,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+28,admin.,single,university.degree,no,yes,no,telephone,jun,wed,249,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+28,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,445,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+42,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,82,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+28,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,1060,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes
+54,management,married,basic.6y,no,no,no,telephone,jun,wed,255,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+35,admin.,married,high.school,no,yes,no,telephone,jun,wed,55,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+60,admin.,married,university.degree,unknown,no,no,telephone,jun,wed,521,11,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+47,services,married,high.school,unknown,yes,yes,telephone,jun,wed,161,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+60,retired,married,high.school,no,yes,no,telephone,jun,wed,340,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+29,management,single,university.degree,unknown,yes,no,telephone,jun,wed,40,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+49,technician,married,high.school,no,no,no,telephone,jun,wed,156,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+56,retired,married,basic.4y,no,no,no,telephone,jun,wed,375,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+33,admin.,married,high.school,no,no,no,telephone,jun,wed,43,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+28,student,single,high.school,no,yes,yes,telephone,jun,wed,604,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no
+60,admin.,married,university.degree,no,no,no,telephone,jun,wed,1574,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes
+34,admin.,married,high.school,no,no,no,telephone,jun,thu,29,11,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,102,13,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,management,single,university.degree,no,yes,no,telephone,jun,thu,160,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,admin.,single,university.degree,no,no,no,telephone,jun,thu,136,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+56,entrepreneur,married,university.degree,no,yes,yes,telephone,jun,thu,82,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,admin.,single,professional.course,no,no,no,telephone,jun,thu,122,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,admin.,married,basic.9y,no,no,no,telephone,jun,thu,185,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+58,entrepreneur,married,basic.4y,no,no,no,telephone,jun,thu,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,thu,575,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,39,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,single,high.school,unknown,no,no,telephone,jun,thu,675,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,admin.,single,university.degree,no,yes,no,telephone,jun,thu,172,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,services,married,high.school,unknown,no,no,telephone,jun,thu,97,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,admin.,single,university.degree,no,no,no,telephone,jun,thu,394,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,technician,single,professional.course,unknown,no,yes,telephone,jun,thu,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,student,single,basic.9y,no,yes,no,telephone,jun,thu,176,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,technician,married,university.degree,no,no,no,telephone,jun,thu,37,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,266,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,student,single,university.degree,unknown,no,no,telephone,jun,thu,618,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+59,retired,married,basic.9y,no,no,no,telephone,jun,thu,297,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,management,divorced,university.degree,no,no,no,telephone,jun,thu,593,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,446,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,self-employed,married,high.school,no,no,no,telephone,jun,thu,340,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,108,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,admin.,married,professional.course,no,unknown,unknown,telephone,jun,thu,638,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,blue-collar,divorced,basic.6y,no,unknown,unknown,telephone,jun,thu,45,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+27,admin.,married,university.degree,no,unknown,unknown,telephone,jun,thu,240,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,70,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,technician,married,professional.course,unknown,no,no,telephone,jun,thu,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,services,married,high.school,unknown,no,no,telephone,jun,thu,139,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,technician,single,professional.course,unknown,no,no,telephone,jun,thu,820,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,admin.,divorced,high.school,no,no,no,telephone,jun,thu,149,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,348,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,blue-collar,married,unknown,no,no,no,telephone,jun,thu,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,admin.,married,professional.course,unknown,no,no,telephone,jun,thu,168,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+56,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,573,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,management,divorced,university.degree,unknown,yes,no,telephone,jun,thu,209,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,admin.,married,university.degree,no,no,no,telephone,jun,thu,446,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,self-employed,single,university.degree,no,no,no,telephone,jun,thu,111,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,blue-collar,married,basic.6y,no,no,no,telephone,jun,thu,34,31,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+58,self-employed,divorced,professional.course,no,no,no,telephone,jun,thu,197,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,admin.,divorced,high.school,no,yes,no,telephone,jun,thu,1224,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+46,blue-collar,married,basic.6y,no,no,no,telephone,jun,thu,144,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+53,services,married,high.school,unknown,yes,no,telephone,jun,thu,75,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+58,self-employed,divorced,professional.course,no,yes,no,telephone,jun,thu,430,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,housemaid,single,high.school,unknown,no,no,telephone,jun,thu,32,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,services,married,high.school,no,yes,no,telephone,jun,thu,268,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,services,divorced,basic.9y,unknown,no,no,telephone,jun,thu,73,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,203,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,admin.,married,professional.course,no,no,no,telephone,jun,thu,252,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,unemployed,married,high.school,unknown,yes,yes,telephone,jun,thu,188,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,services,married,high.school,no,no,no,telephone,jun,thu,395,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,retired,divorced,basic.4y,no,no,no,telephone,jun,thu,170,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,services,divorced,basic.9y,no,no,no,telephone,jun,thu,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,admin.,married,university.degree,no,yes,no,telephone,jun,thu,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+51,technician,married,professional.course,no,yes,no,telephone,jun,thu,22,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,unemployed,married,professional.course,no,yes,no,telephone,jun,thu,109,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,technician,married,high.school,no,no,no,telephone,jun,thu,677,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,management,divorced,university.degree,no,no,no,telephone,jun,thu,167,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,admin.,married,university.degree,no,no,yes,telephone,jun,thu,105,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,services,married,basic.9y,no,no,no,telephone,jun,thu,57,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,technician,single,high.school,no,no,no,telephone,jun,thu,220,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,self-employed,married,basic.4y,unknown,no,no,telephone,jun,thu,140,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,admin.,single,university.degree,no,yes,no,telephone,jun,thu,1082,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+27,technician,single,professional.course,no,no,no,telephone,jun,thu,248,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,self-employed,single,high.school,no,no,no,telephone,jun,thu,11,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jun,thu,93,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,admin.,married,university.degree,no,no,no,telephone,jun,thu,161,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,services,married,high.school,no,no,no,telephone,jun,thu,653,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,admin.,married,high.school,no,no,no,telephone,jun,thu,193,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,management,married,basic.4y,no,no,yes,telephone,jun,thu,216,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,admin.,married,high.school,no,no,yes,telephone,jun,thu,291,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+53,admin.,single,high.school,no,no,no,telephone,jun,thu,223,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,married,professional.course,no,no,no,telephone,jun,thu,96,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,admin.,married,basic.4y,no,no,no,telephone,jun,thu,477,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+58,retired,married,basic.4y,unknown,no,no,telephone,jun,thu,327,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+53,admin.,single,high.school,no,no,no,telephone,jun,thu,446,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,technician,married,professional.course,no,no,no,telephone,jun,thu,159,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+55,admin.,married,high.school,no,yes,no,telephone,jun,thu,178,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+51,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,152,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+51,admin.,married,professional.course,unknown,no,no,telephone,jun,thu,169,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,single,professional.course,no,no,no,telephone,jun,thu,635,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,services,divorced,basic.6y,unknown,yes,no,telephone,jun,thu,122,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,admin.,married,university.degree,no,no,no,telephone,jun,thu,136,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,admin.,married,high.school,no,no,no,telephone,jun,thu,69,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,admin.,married,basic.9y,no,no,no,telephone,jun,thu,521,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,technician,married,professional.course,no,yes,no,telephone,jun,thu,201,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,admin.,married,university.degree,no,yes,yes,telephone,jun,thu,142,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,blue-collar,single,basic.6y,no,unknown,unknown,telephone,jun,thu,59,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,admin.,married,high.school,no,no,no,telephone,jun,thu,66,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,512,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+45,housemaid,married,professional.course,unknown,yes,no,telephone,jun,thu,810,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,services,married,basic.6y,no,yes,yes,telephone,jun,thu,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,technician,single,professional.course,no,no,no,telephone,jun,thu,574,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,services,married,unknown,unknown,no,no,telephone,jun,thu,44,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,admin.,married,university.degree,no,no,no,telephone,jun,thu,145,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,196,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,single,basic.4y,unknown,yes,yes,telephone,jun,thu,270,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,admin.,married,university.degree,unknown,no,no,telephone,jun,thu,252,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,management,married,basic.4y,unknown,yes,no,telephone,jun,thu,26,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,335,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,thu,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,330,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,entrepreneur,married,university.degree,unknown,unknown,unknown,telephone,jun,thu,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+54,admin.,married,high.school,no,no,no,telephone,jun,thu,361,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,entrepreneur,married,basic.9y,no,no,no,telephone,jun,thu,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,management,divorced,university.degree,no,no,no,telephone,jun,thu,221,12,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,84,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,services,married,unknown,no,yes,no,telephone,jun,thu,53,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,technician,single,university.degree,no,no,no,telephone,jun,thu,90,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,unknown,married,unknown,no,no,no,telephone,jun,thu,141,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,services,married,university.degree,no,no,no,telephone,jun,thu,254,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,263,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,212,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,149,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,technician,married,professional.course,no,no,no,telephone,jun,thu,77,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,services,married,high.school,no,no,yes,telephone,jun,thu,374,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,207,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+41,admin.,divorced,high.school,no,unknown,unknown,telephone,jun,thu,289,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,entrepreneur,married,basic.9y,unknown,no,no,telephone,jun,thu,143,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,unknown,married,unknown,no,no,yes,telephone,jun,thu,188,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,unemployed,married,high.school,unknown,yes,no,telephone,jun,thu,106,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,admin.,single,high.school,no,yes,no,telephone,jun,thu,191,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,admin.,divorced,high.school,no,no,no,telephone,jun,thu,370,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,technician,married,basic.9y,unknown,yes,no,telephone,jun,thu,487,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,services,married,high.school,unknown,no,no,telephone,jun,thu,84,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,blue-collar,married,unknown,unknown,yes,no,telephone,jun,thu,118,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,56,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+57,admin.,married,university.degree,no,no,yes,telephone,jun,thu,253,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,blue-collar,married,basic.6y,no,yes,no,telephone,jun,thu,786,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+44,blue-collar,married,unknown,no,no,no,telephone,jun,thu,239,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,management,married,university.degree,no,no,no,telephone,jun,thu,136,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,admin.,married,high.school,no,no,no,telephone,jun,thu,162,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,management,married,university.degree,no,no,yes,telephone,jun,thu,219,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,unemployed,married,professional.course,unknown,yes,yes,telephone,jun,thu,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,admin.,married,high.school,no,no,no,telephone,jun,thu,177,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,technician,divorced,professional.course,no,no,no,telephone,jun,thu,252,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+55,retired,divorced,professional.course,no,no,no,telephone,jun,thu,416,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,unemployed,married,professional.course,no,yes,no,telephone,jun,thu,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,technician,single,high.school,no,no,no,telephone,jun,thu,32,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,217,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,student,married,high.school,unknown,no,no,telephone,jun,thu,145,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+24,technician,married,professional.course,no,no,no,telephone,jun,thu,93,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+57,services,married,high.school,unknown,yes,yes,telephone,jun,thu,61,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,blue-collar,single,unknown,no,no,yes,telephone,jun,thu,262,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+58,technician,married,high.school,no,no,no,telephone,jun,thu,246,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,admin.,single,high.school,no,unknown,unknown,telephone,jun,thu,92,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,blue-collar,single,high.school,no,yes,no,telephone,jun,thu,1318,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+23,services,single,high.school,no,no,no,telephone,jun,thu,197,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,management,married,basic.9y,unknown,unknown,unknown,telephone,jun,thu,282,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,922,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+45,technician,divorced,university.degree,no,yes,yes,telephone,jun,thu,163,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,retired,divorced,basic.4y,unknown,yes,yes,telephone,jun,thu,26,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,admin.,single,high.school,no,yes,no,telephone,jun,thu,63,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,technician,married,basic.9y,unknown,yes,no,telephone,jun,thu,176,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,admin.,married,high.school,no,no,no,telephone,jun,thu,605,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+27,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,75,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,admin.,married,high.school,no,yes,no,telephone,jun,thu,1411,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,services,divorced,high.school,no,yes,no,telephone,jun,thu,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,services,divorced,high.school,no,unknown,unknown,telephone,jun,thu,297,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,admin.,married,high.school,no,yes,yes,telephone,jun,thu,2028,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+54,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,211,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,453,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,blue-collar,married,high.school,no,no,no,telephone,jun,thu,419,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+53,technician,married,university.degree,no,no,no,telephone,jun,thu,498,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,admin.,married,university.degree,no,no,no,telephone,jun,thu,202,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,management,married,university.degree,no,no,no,telephone,jun,thu,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,services,married,high.school,no,yes,yes,telephone,jun,thu,40,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+23,technician,single,professional.course,no,unknown,unknown,telephone,jun,thu,148,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,management,single,high.school,no,unknown,unknown,telephone,jun,thu,184,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,unemployed,married,basic.4y,unknown,no,no,telephone,jun,thu,55,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,admin.,married,high.school,no,no,no,telephone,jun,thu,952,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+36,blue-collar,single,basic.9y,no,no,yes,telephone,jun,thu,207,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,admin.,married,basic.9y,no,no,no,telephone,jun,thu,238,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,admin.,divorced,university.degree,no,yes,no,telephone,jun,thu,318,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,thu,232,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+57,retired,married,basic.4y,unknown,no,no,telephone,jun,thu,76,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,blue-collar,married,high.school,no,no,no,telephone,jun,thu,153,14,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+58,technician,married,high.school,unknown,no,no,telephone,jun,thu,525,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,97,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,management,married,university.degree,no,no,no,telephone,jun,thu,216,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,admin.,married,university.degree,no,no,no,telephone,jun,thu,142,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,admin.,single,high.school,no,no,no,telephone,jun,thu,290,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,blue-collar,married,professional.course,unknown,yes,no,telephone,jun,thu,280,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,559,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,blue-collar,single,basic.9y,no,no,no,telephone,jun,thu,67,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+59,retired,married,unknown,unknown,yes,no,telephone,jun,thu,235,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+57,retired,single,basic.4y,no,yes,no,telephone,jun,thu,107,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+55,management,married,professional.course,unknown,yes,yes,telephone,jun,thu,368,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,blue-collar,single,basic.9y,no,yes,no,telephone,jun,thu,74,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+55,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,1136,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+23,blue-collar,single,basic.9y,no,no,no,telephone,jun,thu,359,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+56,self-employed,single,basic.9y,unknown,no,no,telephone,jun,thu,64,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,technician,single,university.degree,no,no,no,telephone,jun,thu,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+51,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,16,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,thu,409,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,technician,married,university.degree,no,no,no,telephone,jun,thu,65,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+57,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,69,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,services,married,basic.6y,no,no,no,telephone,jun,thu,722,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,entrepreneur,married,high.school,no,yes,no,telephone,jun,thu,133,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,management,married,university.degree,no,no,no,telephone,jun,thu,288,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,admin.,married,basic.9y,no,yes,no,telephone,jun,thu,120,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+60,entrepreneur,married,basic.4y,no,no,no,telephone,jun,thu,43,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,blue-collar,single,basic.4y,unknown,yes,no,telephone,jun,thu,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+55,technician,married,professional.course,unknown,no,no,telephone,jun,thu,166,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,admin.,married,university.degree,no,no,no,telephone,jun,thu,30,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,10,16,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,retired,married,professional.course,no,yes,no,telephone,jun,thu,219,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,164,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,admin.,married,university.degree,no,no,no,telephone,jun,thu,148,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,married,professional.course,no,no,no,telephone,jun,thu,11,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,130,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,technician,married,unknown,unknown,no,no,telephone,jun,thu,208,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,140,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,blue-collar,single,professional.course,no,no,no,telephone,jun,thu,559,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,services,married,high.school,no,no,no,telephone,jun,thu,224,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+55,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,thu,93,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+53,self-employed,divorced,basic.9y,no,yes,no,telephone,jun,thu,177,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,management,married,high.school,no,yes,no,telephone,jun,thu,405,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,management,single,basic.9y,no,yes,no,telephone,jun,thu,69,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,blue-collar,single,high.school,no,no,no,telephone,jun,thu,1017,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,technician,single,professional.course,no,no,yes,telephone,jun,thu,385,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,unknown,single,high.school,unknown,no,no,telephone,jun,thu,237,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+45,management,single,basic.9y,no,yes,no,telephone,jun,thu,237,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,admin.,married,university.degree,no,no,no,telephone,jun,thu,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,services,married,high.school,no,no,yes,telephone,jun,thu,153,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,management,divorced,university.degree,no,no,no,telephone,jun,thu,163,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+53,technician,married,professional.course,no,no,no,telephone,jun,thu,97,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+49,admin.,married,high.school,unknown,yes,no,telephone,jun,thu,216,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,technician,married,basic.6y,no,no,no,telephone,jun,thu,399,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,blue-collar,married,high.school,unknown,yes,no,telephone,jun,thu,234,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,blue-collar,single,basic.9y,no,yes,no,telephone,jun,thu,184,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+35,blue-collar,single,basic.4y,no,yes,no,telephone,jun,thu,155,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,housemaid,married,basic.4y,no,no,no,telephone,jun,thu,500,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+50,housemaid,married,unknown,no,yes,no,telephone,jun,thu,167,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+60,management,married,university.degree,no,yes,no,telephone,jun,thu,89,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+56,retired,married,basic.4y,no,no,no,telephone,jun,thu,92,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,296,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,thu,563,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,146,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,management,married,university.degree,no,no,no,telephone,jun,thu,92,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,thu,149,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+60,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,80,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+40,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,354,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,106,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+42,services,divorced,high.school,unknown,no,no,telephone,jun,thu,111,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,services,married,high.school,unknown,no,no,telephone,jun,thu,136,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,blue-collar,married,basic.6y,no,yes,yes,telephone,jun,thu,549,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+34,housemaid,single,university.degree,no,no,no,telephone,jun,thu,267,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+48,self-employed,married,basic.9y,unknown,yes,no,telephone,jun,thu,461,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,thu,60,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,admin.,married,high.school,no,yes,no,telephone,jun,thu,117,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,unemployed,married,university.degree,unknown,no,no,telephone,jun,thu,21,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+43,technician,single,professional.course,no,unknown,unknown,telephone,jun,thu,104,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+29,admin.,single,high.school,no,yes,yes,telephone,jun,thu,15,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+37,blue-collar,married,basic.6y,no,yes,no,telephone,jun,thu,216,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,jun,thu,211,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,self-employed,married,basic.4y,unknown,no,yes,telephone,jun,thu,71,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,admin.,married,high.school,unknown,no,no,telephone,jun,thu,18,18,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+28,technician,married,basic.9y,no,yes,no,telephone,jun,thu,225,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,admin.,married,high.school,unknown,no,yes,telephone,jun,thu,59,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+47,services,single,basic.9y,no,unknown,unknown,telephone,jun,thu,835,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+37,technician,married,professional.course,no,yes,no,telephone,jun,thu,683,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+57,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jun,thu,258,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+55,retired,married,university.degree,unknown,yes,no,telephone,jun,thu,1012,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes
+39,technician,married,professional.course,no,yes,no,telephone,jun,thu,233,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+38,technician,married,basic.9y,no,no,no,telephone,jun,thu,129,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+56,admin.,divorced,unknown,unknown,no,no,telephone,jun,thu,91,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,services,divorced,high.school,no,no,no,telephone,jun,thu,339,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+52,unemployed,married,high.school,no,unknown,unknown,telephone,jun,thu,90,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+39,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,thu,112,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+32,unknown,unknown,university.degree,no,no,no,telephone,jun,thu,36,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+25,blue-collar,single,basic.9y,no,yes,yes,telephone,jun,thu,112,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+31,technician,married,high.school,no,no,no,telephone,jun,thu,9,28,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,technician,divorced,professional.course,no,no,no,telephone,jun,thu,26,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,admin.,single,university.degree,no,yes,no,telephone,jun,thu,55,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+26,technician,single,university.degree,no,no,no,telephone,jun,thu,2635,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+46,admin.,divorced,university.degree,no,yes,no,telephone,jun,thu,138,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+30,technician,married,university.degree,unknown,yes,no,telephone,jun,thu,49,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+36,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,thu,318,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+33,services,single,high.school,no,yes,no,telephone,jun,thu,326,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no
+57,services,divorced,high.school,unknown,no,no,telephone,jun,fri,53,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,technician,married,professional.course,no,no,no,telephone,jun,fri,179,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,262,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,housemaid,married,high.school,no,yes,yes,telephone,jun,fri,168,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,193,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,admin.,divorced,university.degree,unknown,no,no,telephone,jun,fri,333,15,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,fri,241,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,76,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,technician,married,professional.course,no,no,no,telephone,jun,fri,37,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,technician,married,professional.course,no,yes,no,telephone,jun,fri,189,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,management,married,basic.9y,no,yes,no,telephone,jun,fri,89,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,112,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,admin.,married,high.school,no,no,no,telephone,jun,fri,489,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+59,retired,divorced,basic.9y,unknown,yes,no,telephone,jun,fri,141,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,services,married,high.school,no,yes,no,telephone,jun,fri,241,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,services,divorced,basic.4y,no,yes,no,telephone,jun,fri,60,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,technician,married,basic.6y,no,yes,no,telephone,jun,fri,61,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,self-employed,married,basic.6y,unknown,no,no,telephone,jun,fri,24,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,housemaid,divorced,basic.4y,no,yes,yes,telephone,jun,fri,62,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,entrepreneur,married,professional.course,no,yes,no,telephone,jun,fri,43,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,retired,married,basic.4y,unknown,no,no,telephone,jun,fri,75,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,services,married,high.school,unknown,yes,no,telephone,jun,fri,177,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,admin.,single,university.degree,no,yes,no,telephone,jun,fri,170,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,blue-collar,married,unknown,no,yes,no,telephone,jun,fri,42,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+51,admin.,married,high.school,no,no,no,telephone,jun,fri,22,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,services,single,high.school,no,no,yes,telephone,jun,fri,99,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,services,married,high.school,unknown,yes,no,telephone,jun,fri,139,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,unemployed,single,professional.course,no,no,no,telephone,jun,fri,394,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,management,married,university.degree,no,no,yes,telephone,jun,fri,42,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+51,services,married,high.school,unknown,yes,no,telephone,jun,fri,41,28,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,services,married,high.school,no,yes,yes,telephone,jun,fri,98,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+26,blue-collar,single,basic.9y,no,no,no,telephone,jun,fri,114,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,191,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,blue-collar,married,basic.6y,no,yes,no,telephone,jun,fri,167,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+54,housemaid,divorced,basic.4y,unknown,yes,no,telephone,jun,fri,238,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+27,services,married,high.school,unknown,no,no,telephone,jun,fri,73,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,technician,married,professional.course,no,no,no,telephone,jun,fri,206,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,services,married,high.school,no,no,no,telephone,jun,fri,160,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,fri,156,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,services,divorced,basic.6y,no,no,no,telephone,jun,fri,512,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,blue-collar,married,high.school,unknown,no,no,telephone,jun,fri,50,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,23,23,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,services,married,high.school,unknown,yes,no,telephone,jun,fri,106,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,unemployed,married,basic.4y,unknown,no,no,telephone,jun,fri,744,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,admin.,single,university.degree,no,no,no,telephone,jun,fri,109,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,management,divorced,university.degree,no,yes,no,telephone,jun,fri,99,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,entrepreneur,married,basic.9y,no,no,no,telephone,jun,fri,241,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,admin.,married,unknown,no,yes,no,telephone,jun,fri,246,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,blue-collar,single,basic.4y,no,yes,no,telephone,jun,fri,59,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,blue-collar,married,high.school,no,yes,yes,telephone,jun,fri,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,entrepreneur,divorced,university.degree,no,yes,yes,telephone,jun,fri,54,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,management,married,university.degree,no,yes,yes,telephone,jun,fri,87,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,admin.,married,basic.9y,unknown,no,no,telephone,jun,fri,973,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+36,management,married,university.degree,no,yes,no,telephone,jun,fri,122,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,375,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,technician,married,high.school,unknown,yes,yes,telephone,jun,fri,111,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,50,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,technician,married,professional.course,unknown,no,no,telephone,jun,fri,35,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,services,married,high.school,no,no,no,telephone,jun,fri,124,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,services,married,high.school,no,yes,no,telephone,jun,fri,157,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,admin.,married,university.degree,no,no,no,telephone,jun,fri,45,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,technician,married,professional.course,no,yes,yes,telephone,jun,fri,577,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,admin.,married,university.degree,no,no,no,telephone,jun,fri,134,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+28,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,325,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,170,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,blue-collar,married,basic.9y,no,no,yes,telephone,jun,fri,124,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,111,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,management,married,unknown,no,yes,no,telephone,jun,fri,170,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,housemaid,married,basic.4y,unknown,unknown,unknown,telephone,jun,fri,40,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,blue-collar,married,high.school,no,yes,no,telephone,jun,fri,368,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,admin.,single,university.degree,no,no,no,telephone,jun,fri,25,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,528,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,management,married,university.degree,no,yes,no,telephone,jun,fri,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,blue-collar,divorced,basic.6y,unknown,no,no,telephone,jun,fri,398,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,admin.,single,basic.9y,no,no,no,telephone,jun,fri,361,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,493,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,470,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,admin.,single,university.degree,no,yes,yes,telephone,jun,fri,282,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,fri,48,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,admin.,married,basic.9y,unknown,yes,no,telephone,jun,fri,856,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+49,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,606,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+51,management,married,university.degree,no,yes,no,telephone,jun,fri,74,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,self-employed,divorced,basic.4y,no,no,no,telephone,jun,fri,79,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,blue-collar,single,basic.9y,no,no,no,telephone,jun,fri,153,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,fri,1210,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+40,self-employed,married,professional.course,no,yes,yes,telephone,jun,fri,716,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+39,entrepreneur,married,university.degree,no,yes,no,telephone,jun,fri,513,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,technician,divorced,unknown,no,unknown,unknown,telephone,jun,fri,158,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,blue-collar,single,basic.9y,no,unknown,unknown,telephone,jun,fri,158,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,blue-collar,single,basic.9y,no,no,no,telephone,jun,fri,139,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,entrepreneur,married,high.school,no,yes,no,telephone,jun,fri,273,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,blue-collar,single,basic.9y,no,unknown,unknown,telephone,jun,fri,364,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,fri,218,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,services,married,high.school,no,no,no,telephone,jun,fri,115,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,management,married,university.degree,no,yes,no,telephone,jun,fri,280,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,entrepreneur,married,university.degree,no,no,no,telephone,jun,fri,109,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,115,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,jun,fri,25,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,retired,divorced,basic.4y,unknown,no,no,telephone,jun,fri,75,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,admin.,married,university.degree,no,no,no,telephone,jun,fri,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,technician,married,basic.9y,no,yes,no,telephone,jun,fri,235,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,admin.,married,university.degree,no,yes,yes,telephone,jun,fri,95,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,231,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+59,retired,divorced,basic.4y,unknown,yes,no,telephone,jun,fri,39,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,admin.,married,high.school,unknown,yes,no,telephone,jun,fri,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,housemaid,married,high.school,no,no,yes,telephone,jun,fri,31,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,838,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+40,management,married,university.degree,no,no,no,telephone,jun,fri,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+57,management,married,university.degree,no,no,no,telephone,jun,fri,1276,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,technician,married,basic.6y,no,yes,no,telephone,jun,fri,27,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,jun,fri,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,technician,divorced,university.degree,no,yes,yes,telephone,jun,fri,188,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,unknown,married,unknown,unknown,yes,no,telephone,jun,fri,141,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,blue-collar,married,unknown,unknown,no,no,telephone,jun,fri,144,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,services,divorced,professional.course,no,yes,no,telephone,jun,fri,329,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,admin.,divorced,basic.9y,no,yes,no,telephone,jun,fri,45,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,75,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,41,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,unknown,married,unknown,no,no,no,telephone,jun,fri,258,18,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,blue-collar,single,basic.4y,unknown,no,no,telephone,jun,fri,402,22,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,self-employed,divorced,basic.9y,no,no,no,telephone,jun,fri,60,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,technician,married,professional.course,no,no,no,telephone,jun,fri,269,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,services,single,basic.6y,no,yes,no,telephone,jun,fri,307,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,entrepreneur,divorced,high.school,no,no,no,telephone,jun,fri,485,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,services,married,high.school,unknown,no,no,telephone,jun,fri,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,services,married,high.school,no,unknown,unknown,telephone,jun,fri,283,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,fri,1098,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+49,admin.,divorced,high.school,no,yes,no,telephone,jun,fri,115,20,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,entrepreneur,married,university.degree,no,no,no,telephone,jun,fri,351,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,unemployed,married,high.school,unknown,no,no,telephone,jun,fri,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+24,entrepreneur,single,high.school,no,yes,no,telephone,jun,fri,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+57,retired,married,high.school,no,yes,yes,telephone,jun,fri,471,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,services,married,high.school,no,yes,no,telephone,jun,fri,256,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,services,married,basic.6y,no,no,no,telephone,jun,fri,108,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,services,married,basic.9y,no,unknown,unknown,telephone,jun,fri,48,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,76,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,fri,35,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+51,unemployed,married,basic.9y,unknown,no,no,telephone,jun,fri,375,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,services,married,high.school,no,no,no,telephone,jun,fri,166,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,123,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+26,management,single,university.degree,no,no,no,telephone,jun,fri,633,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,services,single,university.degree,no,no,no,telephone,jun,fri,160,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,entrepreneur,married,basic.9y,unknown,no,no,telephone,jun,fri,326,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,245,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+60,retired,divorced,university.degree,no,yes,no,telephone,jun,fri,98,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,management,married,basic.9y,no,yes,no,telephone,jun,fri,37,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,95,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+59,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,fri,19,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,admin.,married,high.school,no,no,no,telephone,jun,fri,374,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,admin.,married,university.degree,no,yes,yes,telephone,jun,fri,172,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,technician,married,professional.course,no,yes,no,telephone,jun,fri,74,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,174,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,admin.,single,basic.9y,no,no,yes,telephone,jun,fri,111,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,256,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,unemployed,married,professional.course,no,no,no,telephone,jun,fri,38,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,205,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,technician,married,unknown,no,yes,no,telephone,jun,fri,471,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+28,student,single,professional.course,no,no,no,telephone,jun,fri,168,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,housemaid,married,high.school,no,yes,no,telephone,jun,fri,19,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,retired,married,high.school,unknown,yes,no,telephone,jun,fri,211,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+25,admin.,married,high.school,no,yes,no,telephone,jun,fri,534,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,services,divorced,unknown,no,no,no,telephone,jun,fri,250,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,technician,single,university.degree,no,yes,yes,telephone,jun,fri,1149,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+50,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,343,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,retired,married,high.school,unknown,yes,yes,telephone,jun,fri,141,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,1573,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+52,retired,married,high.school,unknown,no,no,telephone,jun,fri,181,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,232,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,technician,married,professional.course,unknown,yes,yes,telephone,jun,fri,705,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+45,management,married,university.degree,no,no,no,telephone,jun,fri,126,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,self-employed,single,university.degree,no,no,no,telephone,jun,fri,237,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,174,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,admin.,married,basic.6y,no,no,no,telephone,jun,fri,26,17,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,fri,109,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,288,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,admin.,married,high.school,no,yes,no,telephone,jun,fri,84,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,management,married,basic.6y,unknown,no,yes,telephone,jun,fri,73,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,fri,11,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,management,married,university.degree,no,yes,no,telephone,jun,fri,415,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,blue-collar,married,basic.6y,no,yes,no,telephone,jun,fri,44,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+55,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,23,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,blue-collar,married,professional.course,no,yes,no,telephone,jun,fri,446,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,1663,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+32,blue-collar,married,professional.course,no,no,yes,telephone,jun,fri,459,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,management,married,university.degree,no,yes,no,telephone,jun,fri,398,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,560,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+41,management,married,university.degree,no,yes,no,telephone,jun,fri,248,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+54,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,fri,124,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+55,unemployed,married,high.school,no,no,no,telephone,jun,fri,154,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,technician,married,professional.course,no,yes,no,telephone,jun,fri,1617,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+39,technician,single,professional.course,no,yes,no,telephone,jun,fri,127,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,technician,married,professional.course,unknown,no,no,telephone,jun,fri,421,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,blue-collar,married,professional.course,no,yes,no,telephone,jun,fri,591,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,165,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,admin.,married,university.degree,no,yes,yes,telephone,jun,fri,170,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,services,married,high.school,no,yes,no,telephone,jun,fri,618,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,blue-collar,single,basic.9y,unknown,no,yes,telephone,jun,fri,70,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,1478,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,admin.,married,professional.course,no,no,no,telephone,jun,fri,110,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,management,married,basic.6y,no,no,no,telephone,jun,fri,40,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,570,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+50,admin.,divorced,high.school,no,no,no,telephone,jun,fri,519,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,39,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,unemployed,married,basic.9y,unknown,yes,no,telephone,jun,fri,14,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,admin.,married,high.school,no,yes,no,telephone,jun,fri,36,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,technician,married,basic.9y,no,no,no,telephone,jun,fri,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,self-employed,divorced,basic.4y,no,no,no,telephone,jun,fri,825,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,263,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,admin.,married,high.school,no,no,no,telephone,jun,fri,1422,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+31,blue-collar,married,basic.6y,no,yes,no,telephone,jun,fri,55,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+27,services,married,high.school,no,yes,no,telephone,jun,fri,172,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,553,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,15,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,81,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,services,married,basic.6y,no,yes,yes,telephone,jun,fri,150,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,blue-collar,married,professional.course,unknown,yes,no,telephone,jun,fri,324,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,93,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+59,retired,married,basic.4y,unknown,no,yes,telephone,jun,fri,62,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+57,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,19,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+54,technician,married,high.school,no,yes,no,telephone,jun,fri,47,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jun,fri,16,20,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+27,admin.,single,university.degree,no,no,no,telephone,jun,fri,134,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,unemployed,married,basic.9y,no,no,no,telephone,jun,fri,9,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,management,divorced,high.school,no,yes,no,telephone,jun,fri,176,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+26,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,25,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,238,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,technician,married,high.school,no,yes,no,telephone,jun,fri,17,37,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,services,single,high.school,no,no,no,telephone,jun,fri,9,18,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,blue-collar,single,basic.9y,unknown,unknown,unknown,telephone,jun,fri,25,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,admin.,married,high.school,no,yes,yes,telephone,jun,fri,14,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,technician,divorced,professional.course,unknown,yes,no,telephone,jun,fri,365,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,admin.,single,high.school,no,no,no,telephone,jun,fri,267,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,11,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+28,admin.,single,university.degree,no,yes,no,telephone,jun,fri,12,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+54,unemployed,married,basic.9y,no,no,no,telephone,jun,fri,8,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,blue-collar,single,basic.6y,unknown,yes,no,telephone,jun,fri,55,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,admin.,married,university.degree,no,no,yes,telephone,jun,fri,76,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,admin.,married,high.school,no,no,no,telephone,jun,fri,9,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,blue-collar,single,university.degree,unknown,no,no,telephone,jun,fri,13,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,entrepreneur,single,high.school,no,no,no,telephone,jun,fri,28,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+28,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,fri,17,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,admin.,married,high.school,no,no,no,telephone,jun,fri,47,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,fri,31,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,services,married,basic.4y,unknown,no,no,telephone,jun,fri,8,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,management,married,basic.6y,unknown,no,no,telephone,jun,fri,8,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,admin.,married,university.degree,no,yes,no,telephone,jun,fri,11,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,admin.,married,unknown,unknown,yes,no,telephone,jun,fri,158,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,blue-collar,single,basic.6y,no,no,no,telephone,jun,fri,81,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,management,married,unknown,unknown,yes,no,telephone,jun,fri,14,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+27,services,single,high.school,unknown,yes,yes,telephone,jun,fri,25,26,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+28,services,married,unknown,no,no,no,telephone,jun,fri,9,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,self-employed,single,basic.9y,unknown,no,no,telephone,jun,fri,154,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,blue-collar,married,unknown,no,no,no,telephone,jun,fri,34,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,technician,single,unknown,no,no,no,telephone,jun,fri,264,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,management,married,university.degree,no,no,no,telephone,jun,fri,29,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,self-employed,married,professional.course,no,no,no,telephone,jun,fri,20,18,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,admin.,single,university.degree,unknown,no,yes,telephone,jun,fri,13,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,retired,divorced,university.degree,no,yes,no,telephone,jun,fri,152,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,technician,married,basic.9y,unknown,no,no,telephone,jun,fri,44,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,29,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,services,married,high.school,no,yes,no,telephone,jun,fri,25,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,fri,34,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,admin.,single,professional.course,no,no,yes,telephone,jun,fri,10,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,admin.,single,university.degree,no,no,no,telephone,jun,fri,34,29,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,services,single,high.school,no,no,no,telephone,jun,fri,17,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,technician,single,professional.course,no,unknown,unknown,telephone,jun,fri,14,21,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,blue-collar,married,unknown,no,yes,no,telephone,jun,fri,29,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,housemaid,married,basic.4y,no,no,no,telephone,jun,fri,134,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+55,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,17,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,technician,married,professional.course,no,no,no,telephone,jun,fri,268,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,admin.,married,university.degree,no,yes,no,telephone,jun,fri,22,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,admin.,married,high.school,no,yes,no,telephone,jun,fri,82,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,unemployed,married,high.school,unknown,no,no,telephone,jun,fri,10,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+28,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,fri,652,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,blue-collar,single,basic.9y,no,no,no,telephone,jun,fri,16,18,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,blue-collar,divorced,basic.6y,no,yes,yes,telephone,jun,fri,9,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+59,retired,married,professional.course,unknown,yes,no,telephone,jun,fri,435,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,admin.,married,high.school,no,no,no,telephone,jun,fri,10,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,admin.,single,university.degree,no,no,no,telephone,jun,fri,123,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,entrepreneur,divorced,university.degree,no,no,no,telephone,jun,fri,8,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,blue-collar,married,basic.4y,no,no,yes,telephone,jun,fri,16,22,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,admin.,married,high.school,no,no,no,telephone,jun,fri,179,21,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,13,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+57,retired,married,basic.4y,no,no,no,telephone,jun,fri,14,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,services,divorced,basic.9y,no,yes,no,telephone,jun,fri,524,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,retired,married,professional.course,unknown,no,no,telephone,jun,fri,74,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,management,divorced,university.degree,no,no,no,telephone,jun,fri,23,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+57,entrepreneur,married,basic.9y,unknown,yes,no,telephone,jun,fri,850,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,technician,married,basic.9y,unknown,yes,yes,telephone,jun,fri,818,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,admin.,married,basic.6y,no,no,no,telephone,jun,fri,126,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,services,single,high.school,no,no,no,telephone,jun,fri,15,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+54,services,married,high.school,no,no,no,telephone,jun,fri,7,20,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,fri,49,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,services,married,high.school,no,yes,no,telephone,jun,fri,40,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,blue-collar,married,professional.course,no,no,no,telephone,jun,fri,15,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,technician,married,university.degree,no,no,no,telephone,jun,fri,4,20,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,services,married,high.school,unknown,no,no,telephone,jun,fri,32,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,technician,single,basic.6y,unknown,no,no,telephone,jun,fri,8,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+57,retired,married,university.degree,no,yes,no,telephone,jun,fri,12,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,admin.,married,high.school,no,yes,no,telephone,jun,fri,77,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,retired,married,unknown,unknown,yes,no,telephone,jun,fri,9,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,admin.,married,high.school,unknown,yes,no,telephone,jun,fri,17,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,admin.,divorced,university.degree,unknown,unknown,unknown,telephone,jun,fri,8,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,admin.,divorced,high.school,no,yes,no,telephone,jun,fri,7,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+26,admin.,single,basic.9y,no,no,no,telephone,jun,fri,11,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+57,management,married,university.degree,no,no,yes,telephone,jun,fri,20,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,student,single,unknown,unknown,yes,no,telephone,jun,fri,16,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,fri,26,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,admin.,single,university.degree,no,yes,no,telephone,jun,fri,10,27,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,blue-collar,married,high.school,no,no,no,telephone,jun,fri,285,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,technician,divorced,basic.9y,no,yes,no,telephone,jun,fri,39,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,admin.,single,high.school,unknown,yes,no,telephone,jun,fri,16,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,services,unknown,high.school,no,no,no,telephone,jun,fri,11,21,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,management,married,university.degree,no,yes,no,telephone,jun,fri,37,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,services,married,basic.9y,unknown,yes,no,telephone,jun,fri,9,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+55,admin.,married,high.school,no,yes,no,telephone,jun,fri,7,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,blue-collar,single,basic.6y,no,yes,yes,telephone,jun,fri,205,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,fri,408,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,27,16,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,management,married,basic.9y,unknown,yes,no,telephone,jun,fri,376,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,admin.,divorced,high.school,no,yes,no,telephone,jun,fri,9,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,management,single,university.degree,unknown,yes,no,telephone,jun,fri,15,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,services,married,basic.6y,no,yes,no,telephone,jun,fri,46,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,admin.,married,university.degree,no,no,no,telephone,jun,fri,1023,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+40,housemaid,single,university.degree,no,yes,no,telephone,jun,fri,253,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,technician,married,professional.course,no,yes,no,telephone,jun,fri,10,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+26,blue-collar,single,basic.9y,unknown,no,yes,telephone,jun,fri,175,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+55,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,fri,220,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,retired,married,basic.6y,no,yes,no,telephone,jun,fri,51,19,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,retired,married,basic.4y,no,no,no,telephone,jun,fri,407,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,technician,married,university.degree,unknown,no,no,telephone,jun,fri,10,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,services,single,high.school,no,yes,no,telephone,jun,fri,9,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,blue-collar,single,basic.4y,no,no,no,telephone,jun,fri,110,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,admin.,married,university.degree,no,no,no,telephone,jun,fri,11,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,self-employed,married,professional.course,no,no,no,telephone,jun,fri,161,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+55,admin.,married,university.degree,no,no,no,telephone,jun,fri,44,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,13,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,management,married,university.degree,no,no,no,telephone,jun,fri,13,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,entrepreneur,married,university.degree,no,no,no,telephone,jun,fri,79,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,technician,divorced,professional.course,no,yes,no,telephone,jun,fri,212,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,admin.,married,high.school,no,no,yes,telephone,jun,fri,78,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+55,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,585,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+31,entrepreneur,single,basic.6y,unknown,yes,yes,telephone,jun,fri,8,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,self-employed,married,university.degree,no,no,no,telephone,jun,fri,129,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,admin.,married,university.degree,no,yes,no,telephone,jun,fri,65,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,services,married,high.school,no,no,no,telephone,jun,fri,9,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,admin.,divorced,high.school,no,yes,yes,telephone,jun,fri,100,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,self-employed,divorced,professional.course,unknown,no,no,telephone,jun,fri,12,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,blue-collar,single,professional.course,no,no,no,telephone,jun,fri,86,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,technician,married,professional.course,no,no,yes,telephone,jun,fri,809,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+38,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,693,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+44,admin.,married,university.degree,no,no,no,telephone,jun,fri,8,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,housemaid,married,university.degree,no,yes,no,telephone,jun,fri,258,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,blue-collar,married,basic.6y,no,yes,no,telephone,jun,fri,16,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+57,admin.,married,university.degree,no,yes,no,telephone,jun,fri,27,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,12,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,admin.,married,high.school,no,yes,no,telephone,jun,fri,11,15,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,services,divorced,high.school,no,no,no,telephone,jun,fri,155,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,admin.,married,professional.course,no,no,no,telephone,jun,fri,81,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,entrepreneur,single,university.degree,unknown,no,no,telephone,jun,fri,22,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,admin.,married,basic.9y,no,no,no,telephone,jun,fri,116,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+25,blue-collar,single,high.school,unknown,no,no,telephone,jun,fri,136,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,blue-collar,single,unknown,unknown,yes,no,telephone,jun,fri,8,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,self-employed,single,university.degree,no,no,no,telephone,jun,fri,10,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,unemployed,married,high.school,unknown,yes,no,telephone,jun,fri,157,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,fri,10,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+60,self-employed,single,basic.9y,unknown,yes,no,telephone,jun,fri,11,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+43,services,married,high.school,no,no,no,telephone,jun,fri,16,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+57,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,fri,84,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,fri,10,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,admin.,married,basic.9y,no,no,yes,telephone,jun,fri,556,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+51,technician,married,unknown,no,yes,no,telephone,jun,fri,17,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,entrepreneur,married,professional.course,no,no,no,telephone,jun,fri,804,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,admin.,married,university.degree,no,unknown,unknown,telephone,jun,fri,71,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,fri,38,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,technician,single,professional.course,no,no,yes,telephone,jun,fri,241,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,management,married,high.school,unknown,no,no,telephone,jun,fri,28,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+55,unknown,married,basic.4y,unknown,no,no,telephone,jun,fri,27,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,services,married,basic.6y,unknown,no,no,telephone,jun,fri,11,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,retired,divorced,basic.4y,no,yes,no,telephone,jun,fri,10,15,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,technician,married,university.degree,no,no,no,telephone,jun,fri,23,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,blue-collar,single,basic.9y,no,no,no,telephone,jun,fri,43,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,admin.,married,university.degree,no,yes,no,telephone,jun,fri,14,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,technician,married,high.school,no,no,no,telephone,jun,fri,8,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,372,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,entrepreneur,married,professional.course,no,yes,no,telephone,jun,fri,291,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+49,management,married,high.school,no,no,no,telephone,jun,fri,9,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,29,27,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,technician,married,university.degree,no,yes,no,telephone,jun,fri,73,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,8,31,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,14,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,78,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,admin.,married,high.school,no,no,no,telephone,jun,fri,590,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,management,single,university.degree,unknown,no,no,telephone,jun,fri,100,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,admin.,divorced,high.school,no,no,no,telephone,jun,fri,13,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,entrepreneur,married,professional.course,no,yes,no,telephone,jun,fri,40,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,admin.,single,university.degree,unknown,yes,no,telephone,jun,fri,18,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,management,married,university.degree,unknown,yes,no,telephone,jun,fri,16,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,technician,married,unknown,no,no,no,telephone,jun,fri,196,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+57,retired,single,high.school,no,no,no,telephone,jun,fri,74,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,services,divorced,basic.9y,unknown,yes,no,telephone,jun,fri,34,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,admin.,married,university.degree,no,yes,no,telephone,jun,fri,27,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,self-employed,married,professional.course,no,no,yes,telephone,jun,fri,13,40,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+27,management,single,high.school,no,yes,yes,telephone,jun,fri,23,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,retired,single,basic.4y,no,yes,yes,telephone,jun,fri,160,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,14,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+25,admin.,single,high.school,no,no,no,telephone,jun,fri,20,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+59,entrepreneur,married,university.degree,no,no,no,telephone,jun,fri,9,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+25,unemployed,single,high.school,unknown,no,no,telephone,jun,fri,287,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,technician,married,professional.course,no,no,no,telephone,jun,fri,26,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,entrepreneur,single,basic.6y,unknown,yes,no,telephone,jun,fri,12,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+59,retired,divorced,basic.4y,unknown,no,yes,telephone,jun,fri,13,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,services,single,high.school,no,no,no,telephone,jun,fri,48,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,services,single,high.school,no,no,no,telephone,jun,fri,13,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+55,unemployed,divorced,basic.9y,no,no,no,telephone,jun,fri,9,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+25,services,single,high.school,no,yes,no,telephone,jun,fri,13,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,services,married,high.school,no,no,no,telephone,jun,fri,55,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,admin.,single,high.school,no,yes,yes,telephone,jun,fri,10,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,retired,married,professional.course,no,no,no,telephone,jun,fri,41,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+59,services,married,high.school,unknown,yes,no,telephone,jun,fri,13,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,fri,7,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,92,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,blue-collar,unknown,basic.9y,unknown,no,no,telephone,jun,fri,180,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,retired,married,high.school,unknown,yes,no,telephone,jun,fri,1094,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+50,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,fri,160,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,management,married,university.degree,no,no,no,telephone,jun,fri,101,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,admin.,married,basic.9y,no,no,yes,telephone,jun,fri,75,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,admin.,married,university.degree,no,no,no,telephone,jun,fri,17,21,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+22,technician,single,professional.course,no,no,no,telephone,jun,fri,184,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+27,unemployed,married,high.school,no,yes,no,telephone,jun,fri,23,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,blue-collar,married,basic.9y,no,no,yes,telephone,jun,fri,78,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+51,management,married,university.degree,unknown,no,no,telephone,jun,fri,13,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,management,married,university.degree,no,no,no,telephone,jun,fri,601,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,83,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,retired,divorced,professional.course,unknown,yes,no,telephone,jun,fri,169,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,13,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+23,blue-collar,single,basic.4y,no,yes,no,telephone,jun,fri,31,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,management,single,basic.9y,no,yes,no,telephone,jun,fri,294,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,admin.,divorced,high.school,no,no,yes,telephone,jun,fri,36,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,blue-collar,married,unknown,unknown,no,yes,telephone,jun,fri,55,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,15,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,technician,single,professional.course,no,yes,no,telephone,jun,fri,87,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,management,married,unknown,no,no,yes,telephone,jun,fri,17,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,fri,30,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,blue-collar,single,basic.9y,no,yes,no,telephone,jun,fri,38,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,self-employed,divorced,university.degree,unknown,yes,no,telephone,jun,fri,39,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,admin.,married,high.school,no,yes,no,telephone,jun,fri,61,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,63,15,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,technician,divorced,basic.9y,no,no,no,telephone,jun,fri,45,22,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+59,retired,married,basic.9y,unknown,no,no,telephone,jun,fri,25,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,admin.,married,university.degree,no,yes,yes,telephone,jun,fri,42,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,services,single,high.school,no,yes,no,telephone,jun,fri,23,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,252,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+21,student,single,high.school,no,no,no,telephone,jun,fri,24,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,services,married,high.school,no,no,no,telephone,jun,fri,152,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,services,married,high.school,unknown,no,no,telephone,jun,fri,33,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,admin.,married,university.degree,no,yes,no,telephone,jun,fri,31,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+51,management,married,university.degree,no,yes,no,telephone,jun,fri,236,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+50,entrepreneur,married,basic.4y,no,no,no,telephone,jun,fri,20,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,blue-collar,single,high.school,no,yes,yes,telephone,jun,fri,14,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,21,18,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,admin.,single,basic.9y,unknown,yes,yes,telephone,jun,fri,13,15,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,entrepreneur,single,university.degree,unknown,yes,no,telephone,jun,fri,39,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+51,services,divorced,unknown,unknown,yes,no,telephone,jun,fri,16,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,retired,married,basic.6y,no,yes,yes,telephone,jun,fri,37,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,self-employed,married,professional.course,no,yes,yes,telephone,jun,fri,47,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,admin.,married,university.degree,no,no,no,telephone,jun,fri,34,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+51,services,married,basic.9y,no,yes,no,telephone,jun,fri,250,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,entrepreneur,married,basic.4y,no,yes,no,telephone,jun,fri,221,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,fri,216,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,admin.,married,high.school,no,yes,no,telephone,jun,fri,21,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,admin.,single,university.degree,no,yes,no,telephone,jun,fri,14,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,94,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+30,services,single,high.school,no,unknown,unknown,telephone,jun,fri,709,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,fri,8,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,technician,single,professional.course,unknown,no,no,telephone,jun,fri,43,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,admin.,divorced,high.school,no,no,no,telephone,jun,fri,111,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,self-employed,single,university.degree,no,unknown,unknown,telephone,jun,fri,38,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,self-employed,single,university.degree,no,yes,no,telephone,jun,fri,19,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,technician,single,high.school,no,yes,no,telephone,jun,fri,274,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+28,admin.,married,university.degree,no,no,no,telephone,jun,fri,819,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,technician,married,professional.course,unknown,yes,no,telephone,jun,fri,16,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,fri,19,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,services,married,high.school,unknown,yes,no,telephone,jun,fri,247,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,jun,fri,27,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,admin.,married,high.school,unknown,no,no,telephone,jun,fri,23,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,12,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,self-employed,single,basic.9y,unknown,yes,yes,telephone,jun,fri,375,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+60,self-employed,married,professional.course,unknown,yes,no,telephone,jun,fri,10,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,admin.,married,high.school,no,yes,no,telephone,jun,fri,21,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,admin.,married,high.school,no,yes,no,telephone,jun,fri,14,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,retired,married,university.degree,no,yes,no,telephone,jun,fri,11,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,admin.,married,basic.9y,no,yes,no,telephone,jun,fri,9,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+44,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,109,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,technician,married,professional.course,no,yes,no,telephone,jun,fri,21,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,admin.,married,high.school,no,yes,no,telephone,jun,fri,7,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,management,married,university.degree,no,yes,no,telephone,jun,fri,18,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,13,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,admin.,married,university.degree,no,no,no,telephone,jun,fri,24,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+55,technician,married,professional.course,no,yes,yes,telephone,jun,fri,61,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,unemployed,single,university.degree,no,no,no,telephone,jun,fri,6,17,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,114,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+25,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,11,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,admin.,married,university.degree,no,no,no,telephone,jun,fri,44,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,admin.,married,basic.9y,unknown,no,yes,telephone,jun,fri,24,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+27,blue-collar,married,university.degree,no,no,no,telephone,jun,fri,10,19,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+51,blue-collar,divorced,unknown,unknown,no,no,telephone,jun,fri,197,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,26,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+57,self-employed,married,basic.9y,unknown,yes,no,telephone,jun,fri,185,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,admin.,single,university.degree,no,no,no,telephone,jun,fri,18,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,unknown,married,unknown,no,no,no,telephone,jun,fri,61,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+28,blue-collar,married,unknown,unknown,no,no,telephone,jun,fri,20,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,management,divorced,university.degree,no,no,no,telephone,jun,fri,8,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,admin.,single,high.school,no,yes,yes,telephone,jun,fri,15,26,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,technician,single,professional.course,no,yes,yes,telephone,jun,fri,39,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,admin.,divorced,high.school,unknown,no,yes,telephone,jun,fri,28,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+52,services,unknown,professional.course,no,yes,no,telephone,jun,fri,7,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+27,entrepreneur,single,university.degree,no,no,no,telephone,jun,fri,48,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,admin.,married,university.degree,no,no,no,telephone,jun,fri,18,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,admin.,single,university.degree,no,no,no,telephone,jun,fri,35,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,admin.,married,university.degree,no,no,no,telephone,jun,fri,13,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+28,admin.,single,high.school,no,no,no,telephone,jun,fri,22,16,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,management,married,high.school,unknown,no,no,telephone,jun,fri,18,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,admin.,married,unknown,no,unknown,unknown,telephone,jun,fri,83,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,admin.,married,university.degree,no,yes,no,telephone,jun,fri,11,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,admin.,married,high.school,no,yes,no,telephone,jun,fri,447,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,technician,married,professional.course,unknown,no,no,telephone,jun,fri,18,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,services,married,basic.9y,no,unknown,unknown,telephone,jun,fri,17,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,admin.,married,high.school,no,no,yes,telephone,jun,fri,492,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+58,admin.,married,university.degree,no,unknown,unknown,telephone,jun,fri,36,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+27,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,fri,34,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+26,technician,married,basic.6y,no,yes,no,telephone,jun,fri,11,20,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+29,admin.,married,university.degree,no,yes,no,telephone,jun,fri,9,16,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,admin.,married,high.school,no,yes,yes,telephone,jun,fri,9,19,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,unemployed,married,basic.9y,no,no,no,telephone,jun,fri,11,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+48,blue-collar,married,professional.course,no,yes,yes,telephone,jun,fri,12,24,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,management,married,university.degree,unknown,no,no,telephone,jun,fri,10,23,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,housemaid,married,basic.9y,no,no,no,telephone,jun,fri,86,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,46,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+55,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,jun,fri,32,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,admin.,married,professional.course,no,no,no,telephone,jun,fri,32,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,admin.,single,professional.course,unknown,no,yes,telephone,jun,fri,36,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,124,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,blue-collar,single,basic.4y,unknown,no,no,telephone,jun,fri,15,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+36,blue-collar,married,professional.course,unknown,yes,no,telephone,jun,fri,9,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+35,student,single,university.degree,unknown,no,no,telephone,jun,fri,10,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,services,divorced,high.school,no,yes,no,telephone,jun,fri,52,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+41,technician,married,high.school,no,yes,no,telephone,jun,fri,145,24,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+33,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,8,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+24,services,single,high.school,no,no,no,telephone,jun,fri,12,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,technician,divorced,university.degree,no,yes,no,telephone,jun,fri,16,28,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+32,admin.,single,university.degree,unknown,no,no,telephone,jun,fri,44,15,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+40,blue-collar,married,unknown,unknown,no,no,telephone,jun,fri,22,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+51,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,60,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+38,unknown,married,unknown,unknown,yes,no,telephone,jun,fri,13,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+53,technician,married,unknown,no,no,no,telephone,jun,fri,51,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+49,technician,married,professional.course,no,yes,no,telephone,jun,fri,41,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+42,management,married,high.school,no,no,no,telephone,jun,fri,20,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+37,blue-collar,single,unknown,unknown,no,yes,telephone,jun,fri,53,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+47,blue-collar,divorced,basic.4y,no,yes,yes,telephone,jun,fri,9,18,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+31,services,single,professional.course,no,yes,no,telephone,jun,fri,202,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+46,blue-collar,single,high.school,no,no,no,telephone,jun,fri,310,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+54,technician,married,high.school,no,no,no,telephone,jun,fri,204,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+39,unemployed,divorced,basic.9y,unknown,no,no,telephone,jun,fri,638,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+45,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,924,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+32,services,married,high.school,no,no,no,telephone,jun,fri,298,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no
+56,technician,married,unknown,no,no,yes,telephone,jun,fri,988,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes
+29,services,single,high.school,unknown,no,no,telephone,jun,mon,123,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+32,admin.,single,university.degree,no,yes,no,telephone,jun,mon,85,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+40,admin.,single,university.degree,no,no,no,telephone,jun,mon,498,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+39,management,single,university.degree,no,no,no,telephone,jun,mon,670,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+25,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,82,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+26,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,72,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+46,management,married,basic.9y,no,no,no,telephone,jun,mon,53,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+26,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,123,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+54,blue-collar,married,professional.course,no,no,no,telephone,jun,mon,364,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+47,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,655,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+40,management,divorced,university.degree,unknown,unknown,unknown,telephone,jun,mon,88,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+41,self-employed,single,university.degree,no,yes,yes,telephone,jun,mon,640,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+36,technician,married,basic.9y,no,no,no,telephone,jun,mon,339,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+30,blue-collar,single,basic.9y,no,yes,no,telephone,jun,mon,662,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+58,management,married,university.degree,unknown,no,no,telephone,jun,mon,25,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+47,admin.,married,university.degree,no,no,no,telephone,jun,mon,216,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+52,management,married,basic.4y,no,no,no,telephone,jun,tue,165,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+34,blue-collar,single,high.school,no,yes,no,telephone,jun,tue,137,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+30,services,married,high.school,no,yes,no,telephone,jun,tue,62,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+26,admin.,single,high.school,no,no,no,telephone,jun,tue,56,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+58,services,married,high.school,no,yes,no,telephone,jun,tue,790,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+43,self-employed,divorced,university.degree,unknown,yes,no,telephone,jun,tue,363,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+31,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,481,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+46,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,32,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+39,admin.,single,high.school,no,no,no,telephone,jun,tue,183,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+42,self-employed,married,professional.course,no,yes,no,telephone,jun,tue,214,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+37,services,married,high.school,unknown,yes,no,telephone,jun,tue,146,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+51,admin.,divorced,unknown,no,yes,no,telephone,jun,tue,528,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes
+37,services,married,high.school,no,yes,yes,telephone,jun,tue,351,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+35,admin.,divorced,university.degree,no,no,no,telephone,jun,tue,51,8,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+55,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,tue,103,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+43,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,89,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+29,entrepreneur,single,university.degree,no,no,no,telephone,jun,wed,347,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+58,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,372,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+34,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,411,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+44,blue-collar,married,unknown,no,yes,no,telephone,jun,wed,151,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+42,self-employed,married,university.degree,unknown,yes,no,telephone,jun,wed,157,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+44,blue-collar,married,professional.course,unknown,yes,no,telephone,jun,wed,43,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+32,blue-collar,single,basic.9y,no,yes,no,telephone,jun,wed,75,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+52,technician,married,basic.9y,no,no,yes,telephone,jun,wed,249,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,268,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+38,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,333,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+39,technician,married,basic.9y,unknown,yes,no,telephone,jun,wed,155,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+33,unknown,married,unknown,unknown,yes,no,telephone,jun,wed,247,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+39,services,married,basic.6y,unknown,yes,no,telephone,jun,wed,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+36,admin.,married,university.degree,no,yes,no,telephone,jun,wed,67,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+44,services,married,basic.9y,no,yes,no,telephone,jun,wed,162,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+30,services,married,unknown,unknown,no,no,telephone,jun,wed,93,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+29,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,wed,231,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+34,technician,married,professional.course,no,no,no,telephone,jun,wed,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+41,admin.,single,basic.6y,no,no,no,telephone,jun,wed,168,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+51,entrepreneur,married,university.degree,no,no,no,telephone,jun,wed,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+28,admin.,married,high.school,no,no,no,telephone,jun,wed,151,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+31,housemaid,married,basic.4y,no,no,no,telephone,jun,wed,91,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+46,services,divorced,professional.course,unknown,yes,no,telephone,jun,wed,292,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+29,admin.,married,university.degree,no,yes,yes,telephone,jun,wed,281,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+33,services,single,high.school,no,no,no,telephone,jun,wed,375,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+42,management,married,university.degree,no,no,no,telephone,jun,wed,168,8,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+36,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,456,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+44,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,wed,103,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+39,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,305,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no
+44,admin.,married,university.degree,unknown,yes,yes,telephone,jun,thu,91,4,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+45,admin.,married,high.school,no,yes,no,telephone,jun,thu,650,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+28,services,single,basic.9y,no,no,no,telephone,jun,thu,178,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+59,retired,married,basic.9y,no,no,yes,telephone,jun,thu,465,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+42,services,single,unknown,no,yes,no,telephone,jun,thu,626,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+58,services,married,basic.4y,no,no,no,telephone,jun,thu,322,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+51,services,married,professional.course,unknown,no,no,telephone,jun,thu,177,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+31,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,thu,519,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,yes
+49,unemployed,married,basic.9y,no,yes,yes,telephone,jun,thu,271,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+48,blue-collar,married,high.school,no,yes,yes,telephone,jun,thu,677,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,yes
+52,technician,married,basic.9y,no,yes,yes,telephone,jun,thu,138,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+29,blue-collar,single,basic.6y,no,yes,no,telephone,jun,thu,215,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+60,self-employed,married,professional.course,no,yes,no,telephone,jun,thu,318,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+28,admin.,single,professional.course,no,no,yes,telephone,jun,thu,253,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+30,admin.,married,high.school,no,unknown,unknown,telephone,jun,thu,344,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+30,admin.,single,university.degree,no,no,no,telephone,jun,thu,301,4,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+36,blue-collar,married,high.school,no,no,no,telephone,jun,thu,197,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+56,admin.,divorced,high.school,no,yes,no,telephone,jun,thu,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+29,blue-collar,married,basic.9y,no,no,yes,telephone,jun,thu,190,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+45,technician,single,professional.course,unknown,yes,yes,telephone,jun,thu,116,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+51,management,married,university.degree,unknown,no,yes,telephone,jun,thu,93,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+35,self-employed,married,professional.course,unknown,yes,no,telephone,jun,thu,29,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+30,services,divorced,high.school,unknown,yes,no,telephone,jun,thu,133,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+39,blue-collar,married,basic.6y,no,yes,no,telephone,jun,thu,150,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+25,technician,single,professional.course,no,no,yes,telephone,jun,thu,150,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+36,blue-collar,single,basic.4y,no,yes,no,telephone,jun,thu,182,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+38,blue-collar,single,high.school,unknown,no,no,telephone,jun,thu,277,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+29,admin.,married,university.degree,no,no,no,telephone,jun,thu,176,7,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+36,blue-collar,single,basic.9y,no,yes,yes,telephone,jun,thu,762,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,yes
+37,admin.,single,university.degree,unknown,yes,no,telephone,jun,thu,179,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+42,admin.,divorced,high.school,unknown,no,no,telephone,jun,thu,105,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+58,retired,single,professional.course,no,yes,no,telephone,jun,thu,565,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+49,services,divorced,high.school,no,no,no,telephone,jun,thu,138,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+55,technician,unknown,unknown,unknown,no,no,telephone,jun,thu,667,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+58,retired,married,high.school,no,yes,no,telephone,jun,thu,3183,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,yes
+34,admin.,single,university.degree,no,no,no,telephone,jun,thu,406,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+29,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,thu,243,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+46,unknown,married,basic.4y,unknown,yes,no,telephone,jun,thu,110,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+38,blue-collar,married,high.school,unknown,no,no,telephone,jun,thu,113,5,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+27,technician,single,unknown,no,yes,no,telephone,jun,thu,174,8,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+39,self-employed,divorced,professional.course,no,yes,no,telephone,jun,thu,529,4,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+60,retired,divorced,basic.4y,unknown,yes,no,telephone,jun,thu,45,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+42,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,75,5,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+35,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jun,thu,122,6,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no
+31,services,single,high.school,no,no,no,telephone,jun,fri,422,6,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,yes
+34,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,381,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+38,blue-collar,single,high.school,unknown,yes,no,telephone,jun,fri,856,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,yes
+39,services,married,basic.9y,unknown,no,no,telephone,jun,fri,97,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+33,services,married,high.school,no,no,no,telephone,jun,fri,59,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+34,admin.,married,university.degree,no,no,no,telephone,jun,fri,198,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+32,management,married,university.degree,no,no,no,telephone,jun,fri,80,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+29,admin.,single,high.school,no,no,no,telephone,jun,fri,433,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+44,blue-collar,married,basic.6y,no,yes,no,telephone,jun,fri,159,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+50,admin.,married,high.school,no,no,no,telephone,jun,fri,513,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+59,housemaid,married,basic.6y,no,no,no,telephone,jun,fri,207,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+26,admin.,married,high.school,no,no,no,telephone,jun,fri,120,6,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+29,services,married,high.school,no,yes,yes,telephone,jun,fri,121,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+34,admin.,married,high.school,no,yes,no,telephone,jun,fri,95,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+39,self-employed,married,basic.6y,unknown,no,yes,telephone,jun,fri,213,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+24,technician,single,basic.9y,no,no,no,telephone,jun,fri,111,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,302,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+37,admin.,married,high.school,no,no,no,telephone,jun,fri,212,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+27,self-employed,single,university.degree,no,no,no,telephone,jun,fri,911,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,yes
+30,technician,married,high.school,no,no,no,telephone,jun,fri,154,6,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+58,services,married,high.school,no,no,no,telephone,jun,fri,181,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+58,services,married,high.school,no,yes,no,telephone,jun,fri,32,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+40,services,married,high.school,no,no,no,telephone,jun,fri,392,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+37,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,124,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+40,management,married,basic.9y,no,yes,yes,telephone,jun,fri,162,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+33,technician,single,professional.course,no,no,no,telephone,jun,fri,634,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+32,services,single,high.school,no,no,no,telephone,jun,fri,79,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+34,admin.,single,basic.9y,no,yes,no,telephone,jun,fri,148,5,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+27,admin.,single,professional.course,no,yes,yes,telephone,jun,fri,103,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+27,admin.,single,professional.course,no,yes,yes,telephone,jun,fri,141,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+27,self-employed,single,university.degree,no,yes,no,telephone,jun,fri,244,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+36,blue-collar,single,basic.4y,no,yes,no,telephone,jun,fri,250,8,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+42,admin.,single,high.school,no,no,no,telephone,jun,fri,140,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+51,services,married,high.school,no,unknown,unknown,telephone,jun,fri,133,5,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+30,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,191,28,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+28,blue-collar,married,high.school,no,no,no,telephone,jun,fri,216,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+58,technician,married,basic.4y,unknown,yes,yes,telephone,jun,fri,269,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+29,blue-collar,married,unknown,unknown,no,no,telephone,jun,fri,139,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+35,technician,single,professional.course,no,no,no,telephone,jun,fri,397,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+29,blue-collar,single,basic.9y,no,yes,no,telephone,jun,fri,76,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+41,blue-collar,married,professional.course,unknown,no,yes,telephone,jun,fri,244,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+59,technician,divorced,basic.4y,no,yes,no,telephone,jun,fri,135,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+35,admin.,married,high.school,no,yes,no,telephone,jun,fri,131,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+42,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,fri,102,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+58,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,326,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+30,entrepreneur,married,basic.9y,no,no,no,telephone,jun,fri,153,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+42,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,fri,151,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+40,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,349,5,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+54,admin.,married,university.degree,no,yes,no,telephone,jun,fri,291,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+47,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,185,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+30,blue-collar,single,basic.6y,unknown,yes,no,telephone,jun,fri,169,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+35,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,281,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+49,housemaid,divorced,basic.4y,no,no,no,telephone,jun,fri,114,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+49,housemaid,married,basic.4y,no,no,yes,telephone,jun,fri,183,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+45,technician,single,professional.course,unknown,yes,no,telephone,jun,fri,293,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+36,admin.,married,high.school,no,yes,yes,telephone,jun,fri,111,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+29,services,divorced,high.school,no,yes,no,telephone,jun,fri,56,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+30,entrepreneur,divorced,university.degree,no,no,no,telephone,jun,fri,101,5,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+44,blue-collar,single,basic.6y,no,no,no,telephone,jun,fri,247,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+28,technician,single,university.degree,no,no,no,telephone,jun,mon,125,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+40,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,mon,322,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+39,technician,single,professional.course,no,yes,no,telephone,jun,mon,182,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+49,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,117,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,198,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+37,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,123,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+52,self-employed,married,professional.course,no,no,no,telephone,jun,mon,45,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+23,services,single,high.school,no,no,no,telephone,jun,mon,85,5,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+40,entrepreneur,divorced,university.degree,no,no,no,telephone,jun,mon,146,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+40,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,93,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+28,admin.,single,university.degree,no,no,no,telephone,jun,mon,103,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+55,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,jun,mon,54,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+35,admin.,married,university.degree,no,no,no,telephone,jun,mon,27,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+38,admin.,married,high.school,no,no,no,telephone,jun,mon,117,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+42,admin.,married,university.degree,no,no,no,telephone,jun,mon,124,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+44,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,mon,165,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+33,self-employed,married,professional.course,no,yes,no,telephone,jun,mon,141,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+28,management,married,university.degree,no,no,no,telephone,jun,mon,138,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+41,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,385,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+23,admin.,married,professional.course,no,no,yes,telephone,jun,mon,266,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+58,retired,married,basic.4y,unknown,yes,no,telephone,jun,mon,50,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+39,unemployed,married,basic.4y,no,no,no,telephone,jun,mon,203,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+32,self-employed,divorced,professional.course,no,yes,no,telephone,jun,mon,118,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+41,blue-collar,single,unknown,unknown,no,no,telephone,jun,mon,780,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+39,admin.,single,high.school,no,yes,yes,telephone,jun,mon,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+39,admin.,single,high.school,no,no,no,telephone,jun,mon,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+39,admin.,single,high.school,no,no,yes,telephone,jun,mon,158,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+27,technician,single,university.degree,no,yes,no,telephone,jun,mon,224,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+28,self-employed,single,university.degree,no,yes,no,telephone,jun,mon,73,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+54,technician,divorced,basic.9y,no,yes,no,telephone,jun,mon,111,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+29,admin.,single,high.school,no,unknown,unknown,telephone,jun,mon,444,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+29,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,69,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+37,self-employed,single,university.degree,unknown,no,yes,telephone,jun,mon,88,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+38,technician,single,university.degree,no,yes,no,telephone,jun,mon,104,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+44,technician,married,university.degree,no,no,no,telephone,jun,mon,252,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+53,technician,married,basic.9y,no,no,no,telephone,jun,mon,1049,6,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,yes
+39,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,mon,132,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+31,housemaid,married,basic.4y,no,no,no,telephone,jun,mon,260,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+41,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,mon,450,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no
+41,entrepreneur,married,university.degree,no,yes,yes,telephone,jul,tue,381,4,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+49,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,tue,158,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+25,services,married,high.school,no,yes,no,telephone,jul,tue,479,9,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,yes
+41,blue-collar,married,basic.4y,no,yes,no,telephone,jul,tue,281,3,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+53,management,married,university.degree,no,no,yes,telephone,jul,tue,128,3,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+41,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,tue,471,3,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+56,retired,married,basic.4y,no,yes,no,telephone,jul,tue,58,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+41,services,single,high.school,no,yes,no,telephone,jul,tue,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+35,blue-collar,married,unknown,no,yes,no,telephone,jul,tue,140,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+28,admin.,married,high.school,no,yes,no,telephone,jul,tue,54,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+28,admin.,married,high.school,no,no,no,telephone,jul,tue,249,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+33,blue-collar,married,basic.4y,no,yes,no,telephone,jul,tue,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+29,self-employed,married,university.degree,no,no,no,telephone,jul,tue,215,3,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+54,blue-collar,married,basic.6y,unknown,yes,no,telephone,jul,tue,34,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+31,blue-collar,married,basic.4y,unknown,no,no,telephone,jul,tue,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+40,blue-collar,married,basic.9y,no,yes,no,telephone,jul,tue,428,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+34,technician,single,professional.course,no,yes,no,telephone,jul,tue,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+37,technician,married,professional.course,no,yes,no,telephone,jul,tue,242,6,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+28,blue-collar,single,basic.6y,no,no,no,telephone,jul,tue,117,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+45,blue-collar,married,basic.9y,no,yes,no,telephone,jul,tue,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+28,blue-collar,married,basic.6y,no,no,no,telephone,jul,tue,36,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,jul,tue,89,7,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+26,unemployed,single,high.school,no,no,no,telephone,jul,tue,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+38,blue-collar,married,basic.4y,no,no,no,telephone,jul,tue,150,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+38,blue-collar,married,basic.4y,no,no,no,telephone,jul,tue,292,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+44,admin.,divorced,unknown,no,no,no,telephone,jul,tue,183,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+27,unemployed,married,basic.9y,unknown,no,no,telephone,jul,tue,200,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+56,services,divorced,high.school,no,no,yes,telephone,jul,tue,150,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+52,technician,married,professional.course,unknown,no,no,telephone,jul,tue,304,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+42,unemployed,married,basic.9y,unknown,yes,no,telephone,jul,tue,163,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+49,blue-collar,married,basic.4y,unknown,no,no,telephone,jul,tue,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+36,technician,married,high.school,no,no,no,telephone,jul,tue,426,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+58,management,married,university.degree,no,no,no,telephone,jul,tue,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+41,housemaid,married,high.school,no,no,yes,telephone,jul,tue,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+43,technician,single,professional.course,no,yes,yes,telephone,jul,tue,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+37,admin.,married,high.school,no,no,no,telephone,jul,tue,305,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+38,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jul,tue,110,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+55,blue-collar,married,basic.4y,no,yes,no,telephone,jul,tue,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+55,blue-collar,married,basic.4y,no,yes,no,telephone,jul,tue,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+33,services,married,high.school,unknown,yes,no,telephone,jul,tue,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+53,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,tue,39,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+42,admin.,married,basic.6y,no,no,no,telephone,jul,tue,340,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+37,services,divorced,high.school,no,no,no,telephone,jul,tue,125,3,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+41,blue-collar,married,unknown,no,no,no,telephone,jul,tue,529,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+35,blue-collar,married,basic.6y,no,no,no,telephone,jul,tue,196,4,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+47,retired,married,basic.4y,no,no,no,telephone,jul,tue,484,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+32,admin.,married,university.degree,no,no,no,telephone,jul,tue,56,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+47,blue-collar,divorced,basic.9y,no,no,no,telephone,jul,tue,245,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+57,retired,divorced,university.degree,no,no,no,telephone,jul,tue,156,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+57,self-employed,married,professional.course,no,yes,yes,telephone,jul,tue,221,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+54,retired,married,high.school,no,yes,yes,telephone,jul,tue,1992,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+41,services,single,professional.course,no,yes,no,telephone,jul,tue,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+35,admin.,married,high.school,no,yes,yes,telephone,jul,tue,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+27,entrepreneur,single,university.degree,no,yes,no,telephone,jul,tue,420,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+40,blue-collar,married,basic.9y,no,no,yes,telephone,jul,tue,1135,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,yes
+40,admin.,married,high.school,no,no,yes,telephone,jul,tue,289,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+53,technician,married,professional.course,no,yes,no,telephone,jul,tue,307,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+53,services,married,basic.9y,no,yes,no,telephone,jul,tue,723,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no
+42,management,married,university.degree,no,no,yes,telephone,jul,tue,650,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,yes
+43,blue-collar,single,basic.4y,no,no,no,telephone,jul,wed,660,3,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+26,blue-collar,married,university.degree,no,no,no,telephone,jul,wed,63,4,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+40,admin.,divorced,high.school,no,no,no,telephone,jul,wed,96,7,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+39,blue-collar,married,unknown,unknown,no,no,telephone,jul,wed,218,2,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+46,housemaid,married,basic.4y,no,yes,no,telephone,jul,wed,220,2,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+41,blue-collar,married,basic.6y,no,no,no,telephone,jul,wed,144,5,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+36,technician,single,high.school,no,no,no,telephone,jul,wed,97,4,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+38,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,wed,32,3,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+43,technician,single,professional.course,no,no,no,telephone,jul,wed,44,2,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+50,blue-collar,divorced,basic.9y,no,no,no,telephone,jul,wed,79,3,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+39,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,wed,306,2,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+30,blue-collar,single,high.school,no,no,no,telephone,jul,wed,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+47,technician,married,professional.course,no,no,no,telephone,jul,wed,348,3,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+49,technician,single,high.school,no,yes,no,telephone,jul,wed,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+28,unemployed,single,high.school,no,yes,no,telephone,jul,wed,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+31,services,single,high.school,no,no,no,telephone,jul,wed,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+51,services,married,high.school,unknown,no,no,telephone,jul,wed,372,1,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+28,services,married,high.school,no,no,no,telephone,jul,wed,60,2,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+28,management,married,university.degree,no,yes,no,telephone,jul,wed,134,2,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+28,admin.,single,university.degree,no,yes,yes,telephone,jul,wed,108,3,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+38,services,divorced,basic.9y,no,yes,no,telephone,jul,wed,33,2,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+30,self-employed,married,university.degree,no,yes,yes,telephone,jul,wed,957,3,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+46,services,married,high.school,no,no,no,telephone,jul,wed,83,3,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no
+40,admin.,divorced,professional.course,unknown,no,no,telephone,jul,thu,343,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+51,services,married,high.school,no,yes,no,telephone,jul,thu,158,3,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+45,management,single,university.degree,no,no,yes,telephone,jul,thu,269,3,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+36,retired,married,unknown,no,no,no,telephone,jul,thu,269,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+46,admin.,married,high.school,unknown,no,no,telephone,jul,thu,375,3,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+48,entrepreneur,married,basic.6y,no,yes,no,telephone,jul,thu,202,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+32,housemaid,married,basic.9y,no,no,no,telephone,jul,thu,149,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+30,blue-collar,divorced,basic.4y,no,yes,yes,telephone,jul,thu,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+56,management,married,university.degree,no,yes,no,telephone,jul,thu,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+29,admin.,single,university.degree,no,yes,no,telephone,jul,thu,211,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+43,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,24,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+29,technician,single,university.degree,no,yes,no,telephone,jul,thu,109,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+42,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jul,thu,472,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+39,technician,single,professional.course,no,yes,no,telephone,jul,thu,452,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+52,retired,divorced,professional.course,no,no,no,telephone,jul,thu,269,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+39,technician,single,professional.course,no,no,no,telephone,jul,thu,206,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+40,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,228,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+53,blue-collar,married,basic.9y,no,no,no,telephone,jul,thu,183,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+30,blue-collar,single,basic.4y,no,no,no,telephone,jul,thu,267,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,jul,thu,414,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+28,blue-collar,married,high.school,no,yes,no,telephone,jul,thu,60,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+37,blue-collar,married,basic.6y,unknown,yes,no,telephone,jul,thu,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+38,blue-collar,married,basic.6y,unknown,no,no,telephone,jul,thu,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+38,blue-collar,married,high.school,no,yes,no,telephone,jul,thu,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+48,blue-collar,married,basic.6y,unknown,no,no,telephone,jul,thu,256,3,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+45,admin.,married,high.school,no,no,no,telephone,jul,thu,172,10,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+58,technician,married,university.degree,no,no,no,telephone,jul,thu,84,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+41,admin.,married,high.school,no,no,no,telephone,jul,thu,412,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+35,unemployed,married,basic.9y,unknown,no,no,telephone,jul,thu,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+42,blue-collar,married,basic.9y,no,no,no,telephone,jul,thu,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+53,technician,divorced,professional.course,no,no,no,telephone,jul,thu,115,4,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+38,technician,single,university.degree,unknown,yes,yes,telephone,jul,thu,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+55,admin.,married,basic.9y,unknown,yes,no,telephone,jul,thu,197,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+54,admin.,divorced,unknown,unknown,no,no,telephone,jul,thu,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+50,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,jul,thu,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+57,housemaid,divorced,basic.6y,no,yes,no,telephone,jul,thu,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+39,admin.,single,high.school,no,no,no,telephone,jul,thu,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+39,admin.,single,high.school,no,no,no,telephone,jul,thu,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+39,admin.,single,high.school,no,no,no,telephone,jul,thu,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+43,management,married,university.degree,no,no,yes,telephone,jul,thu,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+35,admin.,divorced,university.degree,unknown,no,no,telephone,jul,thu,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+36,retired,married,unknown,no,no,no,telephone,jul,thu,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+36,retired,married,unknown,no,no,no,telephone,jul,thu,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+29,admin.,single,university.degree,no,no,no,telephone,jul,thu,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+37,technician,married,basic.9y,no,yes,no,telephone,jul,thu,991,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+34,admin.,divorced,university.degree,no,no,no,telephone,jul,thu,676,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,yes
+34,management,married,university.degree,no,yes,no,telephone,jul,thu,652,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+29,blue-collar,divorced,high.school,no,yes,no,telephone,jul,thu,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+52,housemaid,single,basic.4y,no,yes,no,telephone,jul,thu,306,4,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+24,admin.,single,high.school,no,yes,yes,telephone,jul,thu,354,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+27,services,married,basic.9y,no,no,no,telephone,jul,thu,100,3,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+30,technician,married,professional.course,no,yes,no,telephone,jul,thu,501,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+34,blue-collar,married,basic.6y,no,yes,no,telephone,jul,thu,93,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+41,services,single,high.school,unknown,no,yes,telephone,jul,thu,504,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+57,housemaid,married,basic.4y,no,yes,no,telephone,jul,thu,381,3,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+32,services,married,high.school,no,yes,no,telephone,jul,thu,251,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+37,technician,married,basic.9y,no,no,no,telephone,jul,thu,515,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+38,blue-collar,married,basic.6y,no,yes,no,telephone,jul,thu,389,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+50,entrepreneur,married,professional.course,no,yes,no,telephone,jul,thu,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+28,management,single,unknown,no,no,no,telephone,jul,thu,135,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+39,blue-collar,married,basic.9y,unknown,no,yes,telephone,jul,thu,74,5,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+30,services,married,basic.9y,no,no,yes,telephone,jul,thu,172,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+25,services,single,high.school,no,yes,no,telephone,jul,thu,202,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+43,blue-collar,married,basic.4y,no,yes,no,telephone,jul,thu,155,3,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+26,technician,married,professional.course,no,yes,no,telephone,jul,thu,277,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+46,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,thu,746,4,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+29,entrepreneur,single,university.degree,no,yes,no,telephone,jul,thu,167,11,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+23,technician,single,professional.course,no,yes,no,telephone,jul,thu,194,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+55,blue-collar,married,basic.4y,unknown,no,no,telephone,jul,thu,385,6,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no
+36,management,married,basic.6y,unknown,yes,no,telephone,jul,fri,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+46,self-employed,married,high.school,unknown,yes,no,telephone,jul,fri,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+32,technician,single,professional.course,no,no,no,telephone,jul,fri,566,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+46,blue-collar,married,unknown,no,yes,no,telephone,jul,fri,257,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+31,technician,married,high.school,no,yes,no,telephone,jul,fri,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+24,blue-collar,single,basic.9y,unknown,no,no,telephone,jul,fri,270,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+37,admin.,single,university.degree,no,no,no,telephone,jul,fri,43,11,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+27,services,single,high.school,no,yes,no,telephone,jul,fri,433,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+56,self-employed,married,basic.9y,unknown,no,no,telephone,jul,fri,523,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+55,technician,married,university.degree,no,yes,no,telephone,jul,fri,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+32,blue-collar,married,basic.6y,unknown,no,yes,telephone,jul,fri,191,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+26,admin.,single,high.school,no,no,yes,telephone,jul,fri,634,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+45,management,married,university.degree,unknown,no,yes,telephone,jul,fri,355,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+45,management,married,university.degree,unknown,no,yes,telephone,jul,fri,31,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+29,blue-collar,single,high.school,no,yes,no,telephone,jul,fri,52,4,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+46,services,married,high.school,no,yes,no,telephone,jul,fri,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+32,technician,divorced,professional.course,no,yes,yes,telephone,jul,fri,99,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+32,blue-collar,married,basic.6y,no,yes,no,telephone,jul,fri,133,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+43,management,married,high.school,no,no,yes,telephone,jul,fri,169,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+32,housemaid,married,basic.6y,no,no,no,telephone,jul,fri,68,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+30,admin.,single,high.school,no,no,no,telephone,jul,fri,30,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+39,admin.,married,high.school,no,no,no,telephone,jul,fri,246,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+39,admin.,married,high.school,no,yes,no,telephone,jul,fri,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+32,blue-collar,single,high.school,no,no,no,telephone,jul,fri,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+43,technician,married,university.degree,no,yes,no,telephone,jul,fri,105,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+40,blue-collar,single,high.school,no,no,no,telephone,jul,fri,217,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+31,unemployed,single,professional.course,no,no,no,telephone,jul,fri,538,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+36,entrepreneur,married,university.degree,no,no,no,telephone,jul,fri,164,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+50,blue-collar,married,basic.4y,unknown,no,yes,telephone,jul,fri,5,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+28,admin.,single,university.degree,no,no,no,telephone,jul,fri,46,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+31,admin.,single,university.degree,no,yes,no,telephone,jul,fri,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+30,admin.,single,high.school,no,yes,no,telephone,jul,fri,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+30,admin.,single,high.school,no,yes,no,telephone,jul,fri,253,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+27,services,married,high.school,unknown,no,no,telephone,jul,fri,584,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,yes
+35,blue-collar,married,high.school,no,no,no,telephone,jul,fri,260,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+34,admin.,married,university.degree,no,yes,no,telephone,jul,fri,126,4,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+30,admin.,single,university.degree,no,yes,no,telephone,jul,fri,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+41,entrepreneur,married,basic.4y,no,no,no,telephone,jul,fri,101,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+43,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jul,fri,195,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+31,admin.,single,university.degree,no,yes,no,telephone,jul,fri,400,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+35,blue-collar,married,basic.4y,no,yes,no,telephone,jul,fri,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+53,blue-collar,married,basic.4y,no,yes,no,telephone,jul,fri,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+57,admin.,single,university.degree,unknown,no,no,telephone,jul,fri,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+39,admin.,married,university.degree,no,no,no,telephone,jul,fri,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+41,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,fri,742,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+31,admin.,divorced,university.degree,no,yes,no,telephone,jul,fri,692,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+37,unemployed,married,university.degree,no,no,yes,telephone,jul,fri,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+26,admin.,single,high.school,no,yes,no,telephone,jul,fri,678,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+38,services,single,high.school,no,no,no,telephone,jul,fri,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+34,technician,single,high.school,no,yes,no,telephone,jul,fri,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+32,admin.,divorced,university.degree,no,no,yes,telephone,jul,fri,137,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+53,housemaid,married,basic.4y,no,no,no,telephone,jul,fri,53,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+41,entrepreneur,married,basic.4y,no,yes,no,telephone,jul,fri,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+45,admin.,married,university.degree,no,no,no,telephone,jul,fri,45,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+33,technician,married,university.degree,no,unknown,unknown,telephone,jul,fri,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+45,blue-collar,married,basic.4y,no,no,no,telephone,jul,fri,407,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+34,technician,single,professional.course,unknown,yes,no,telephone,jul,fri,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+42,admin.,divorced,university.degree,no,yes,no,telephone,jul,fri,426,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+42,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,fri,61,4,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+29,entrepreneur,married,basic.6y,no,yes,yes,telephone,jul,fri,286,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+30,services,single,high.school,no,yes,no,telephone,jul,fri,1576,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+43,technician,single,professional.course,no,yes,no,telephone,jul,fri,468,6,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+59,retired,married,basic.4y,unknown,no,no,telephone,jul,fri,150,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+27,admin.,married,university.degree,no,yes,yes,telephone,jul,fri,178,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+28,blue-collar,divorced,basic.4y,no,no,no,telephone,jul,fri,327,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+29,admin.,single,university.degree,no,unknown,unknown,telephone,jul,fri,212,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+49,blue-collar,married,basic.9y,no,no,no,telephone,jul,fri,235,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+49,blue-collar,married,basic.9y,no,yes,no,telephone,jul,fri,333,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+45,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,297,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+29,entrepreneur,married,high.school,no,yes,no,cellular,jul,fri,668,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+46,services,married,high.school,no,yes,no,telephone,jul,fri,65,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+33,technician,married,basic.9y,unknown,yes,no,cellular,jul,fri,436,4,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+41,management,married,university.degree,no,yes,no,cellular,jul,fri,1044,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+31,technician,single,professional.course,no,no,no,telephone,jul,fri,141,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+30,services,divorced,high.school,no,yes,yes,cellular,jul,fri,39,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+58,retired,married,professional.course,unknown,yes,no,cellular,jul,fri,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+31,blue-collar,married,basic.9y,no,unknown,unknown,cellular,jul,fri,135,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+30,admin.,married,high.school,no,yes,no,cellular,jul,fri,53,6,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+40,blue-collar,divorced,basic.6y,unknown,unknown,unknown,cellular,jul,fri,138,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+33,services,married,high.school,no,yes,no,cellular,jul,fri,548,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+38,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,95,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+29,admin.,married,basic.9y,no,yes,no,cellular,jul,fri,273,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+40,blue-collar,married,basic.9y,no,no,no,telephone,jul,fri,304,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+48,blue-collar,married,basic.4y,no,no,yes,cellular,jul,fri,425,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+51,retired,married,basic.9y,unknown,no,no,cellular,jul,fri,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+51,retired,married,basic.9y,unknown,yes,no,cellular,jul,fri,276,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+34,technician,married,high.school,unknown,yes,no,cellular,jul,fri,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+46,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,407,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+34,unemployed,married,high.school,no,no,no,cellular,jul,fri,339,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no
+55,admin.,married,high.school,no,yes,no,cellular,jul,mon,92,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,admin.,married,university.degree,unknown,unknown,unknown,cellular,jul,mon,135,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,107,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+49,admin.,divorced,high.school,no,no,no,cellular,jul,mon,148,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,admin.,divorced,high.school,no,no,yes,cellular,jul,mon,125,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+51,admin.,married,illiterate,unknown,no,no,cellular,jul,mon,151,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,management,married,professional.course,no,yes,no,cellular,jul,mon,491,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+59,retired,married,professional.course,unknown,yes,yes,cellular,jul,mon,494,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+33,self-employed,married,basic.9y,no,yes,no,cellular,jul,mon,181,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,admin.,married,high.school,no,yes,yes,cellular,jul,mon,615,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+48,admin.,married,university.degree,no,yes,no,cellular,jul,mon,99,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+57,admin.,divorced,basic.9y,no,yes,yes,cellular,jul,mon,518,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,technician,single,university.degree,no,no,yes,cellular,jul,mon,164,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+53,self-employed,divorced,university.degree,no,no,no,cellular,jul,mon,397,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+56,technician,married,university.degree,unknown,no,no,cellular,jul,mon,17,19,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,unemployed,divorced,university.degree,no,yes,no,cellular,jul,mon,148,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,128,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,services,married,high.school,unknown,no,no,cellular,jul,mon,160,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,89,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+45,admin.,married,basic.9y,no,yes,yes,cellular,jul,mon,181,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,technician,single,professional.course,no,yes,yes,cellular,jul,mon,111,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,blue-collar,married,basic.9y,unknown,yes,yes,cellular,jul,mon,119,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,227,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,jul,mon,107,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,unemployed,married,high.school,unknown,yes,no,cellular,jul,mon,149,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,services,married,professional.course,unknown,no,no,cellular,jul,mon,134,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,1434,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,blue-collar,married,basic.6y,no,no,no,telephone,jul,mon,176,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,179,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,blue-collar,married,basic.6y,no,no,no,telephone,jul,mon,63,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,management,married,unknown,no,no,yes,cellular,jul,mon,86,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,113,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,self-employed,married,unknown,no,yes,no,cellular,jul,mon,685,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,management,divorced,university.degree,no,no,no,cellular,jul,mon,200,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,mon,196,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,technician,divorced,professional.course,no,no,no,cellular,jul,mon,250,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,technician,married,university.degree,unknown,no,no,cellular,jul,mon,185,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,technician,married,professional.course,unknown,no,no,cellular,jul,mon,75,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,services,married,high.school,unknown,yes,no,cellular,jul,mon,136,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,admin.,married,basic.9y,unknown,yes,no,telephone,jul,mon,229,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+57,management,divorced,university.degree,unknown,no,yes,cellular,jul,mon,200,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,139,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,services,married,basic.6y,no,no,yes,cellular,jul,mon,161,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,technician,married,basic.9y,unknown,no,no,cellular,jul,mon,141,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,self-employed,married,university.degree,no,yes,no,cellular,jul,mon,39,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,mon,49,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,technician,married,professional.course,no,no,no,cellular,jul,mon,66,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,entrepreneur,married,basic.6y,no,yes,yes,cellular,jul,mon,782,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+45,management,married,unknown,unknown,no,no,cellular,jul,mon,321,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,admin.,single,university.degree,no,yes,yes,cellular,jul,mon,118,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,116,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,jul,mon,128,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+51,management,married,basic.4y,no,no,no,cellular,jul,mon,104,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,admin.,married,basic.9y,unknown,no,no,cellular,jul,mon,87,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,management,married,high.school,no,no,no,cellular,jul,mon,1272,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+45,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,107,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,admin.,single,university.degree,no,no,no,cellular,jul,mon,401,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,services,single,basic.9y,no,no,no,cellular,jul,mon,64,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+56,blue-collar,single,basic.4y,no,yes,no,cellular,jul,mon,758,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,self-employed,single,basic.4y,no,unknown,unknown,cellular,jul,mon,277,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,blue-collar,single,basic.4y,no,unknown,unknown,cellular,jul,mon,107,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,mon,111,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+23,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,360,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,housemaid,divorced,basic.4y,unknown,no,no,cellular,jul,mon,461,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+56,admin.,divorced,basic.6y,no,yes,no,cellular,jul,mon,239,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,housemaid,married,basic.4y,no,no,no,cellular,jul,mon,240,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,housemaid,divorced,high.school,no,yes,no,cellular,jul,mon,127,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,412,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,technician,married,high.school,no,yes,no,cellular,jul,mon,244,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,management,married,university.degree,unknown,no,no,cellular,jul,mon,240,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,technician,married,basic.9y,no,no,no,cellular,jul,mon,62,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,self-employed,married,high.school,unknown,yes,no,telephone,jul,mon,46,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,blue-collar,single,basic.9y,no,yes,yes,telephone,jul,mon,41,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,services,married,high.school,no,yes,no,cellular,jul,mon,559,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,unemployed,single,high.school,no,yes,no,cellular,jul,mon,300,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,services,single,high.school,no,no,no,cellular,jul,mon,722,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+25,admin.,married,high.school,no,no,yes,cellular,jul,mon,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,technician,married,professional.course,no,no,no,cellular,jul,mon,328,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+56,retired,married,basic.4y,no,yes,no,cellular,jul,mon,621,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+31,services,single,high.school,no,yes,yes,cellular,jul,mon,232,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,blue-collar,divorced,basic.9y,no,no,no,telephone,jul,mon,259,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+50,blue-collar,divorced,high.school,no,yes,yes,cellular,jul,mon,629,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+41,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,1103,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,317,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,entrepreneur,married,university.degree,unknown,no,yes,telephone,jul,mon,126,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,management,single,university.degree,no,no,no,telephone,jul,mon,66,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,technician,married,university.degree,no,yes,yes,cellular,jul,mon,385,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+35,blue-collar,married,basic.9y,no,no,no,telephone,jul,mon,1356,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+44,services,married,high.school,no,no,no,cellular,jul,mon,190,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,services,married,high.school,unknown,yes,no,telephone,jul,mon,173,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,admin.,married,university.degree,no,no,no,cellular,jul,mon,61,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,unemployed,married,high.school,no,no,no,cellular,jul,mon,74,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+56,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,mon,86,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,housemaid,single,basic.6y,no,no,no,cellular,jul,mon,94,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,56,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+23,admin.,single,university.degree,no,yes,yes,telephone,jul,mon,69,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+49,unemployed,divorced,basic.9y,unknown,no,no,cellular,jul,mon,326,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,497,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+49,admin.,divorced,high.school,no,no,no,cellular,jul,mon,21,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,housemaid,married,basic.4y,no,yes,no,cellular,jul,mon,223,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,mon,179,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+45,services,single,basic.9y,unknown,no,yes,cellular,jul,mon,236,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+51,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,mon,87,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,services,divorced,unknown,no,no,no,cellular,jul,mon,66,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,services,married,basic.6y,no,yes,no,cellular,jul,mon,207,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,unemployed,divorced,basic.9y,no,unknown,unknown,cellular,jul,mon,385,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,housemaid,married,university.degree,no,yes,no,cellular,jul,mon,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,admin.,single,high.school,no,no,no,cellular,jul,mon,459,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,entrepreneur,married,high.school,no,no,no,cellular,jul,mon,217,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,entrepreneur,married,high.school,no,yes,no,cellular,jul,mon,247,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,technician,married,university.degree,no,no,no,cellular,jul,mon,289,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,blue-collar,married,high.school,no,yes,yes,cellular,jul,mon,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,admin.,single,university.degree,no,no,no,cellular,jul,mon,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,332,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,services,divorced,high.school,no,unknown,unknown,cellular,jul,mon,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,technician,married,basic.9y,unknown,no,no,cellular,jul,mon,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,services,married,high.school,no,yes,no,cellular,jul,mon,94,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,blue-collar,divorced,basic.4y,unknown,yes,yes,cellular,jul,mon,169,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,services,single,high.school,no,no,no,cellular,jul,mon,385,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,admin.,single,university.degree,unknown,yes,no,cellular,jul,mon,248,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,blue-collar,married,high.school,no,no,no,cellular,jul,mon,889,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+43,admin.,married,high.school,no,yes,no,cellular,jul,mon,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,admin.,married,high.school,no,no,no,cellular,jul,mon,240,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,admin.,divorced,high.school,no,yes,no,cellular,jul,mon,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,services,married,high.school,no,yes,no,cellular,jul,mon,556,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+55,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,jul,mon,199,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+59,technician,divorced,university.degree,no,no,no,cellular,jul,mon,39,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+49,blue-collar,married,basic.4y,no,no,yes,telephone,jul,mon,256,15,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,entrepreneur,married,basic.9y,unknown,yes,no,cellular,jul,mon,174,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,management,married,university.degree,no,yes,yes,cellular,jul,mon,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,admin.,married,basic.9y,no,yes,no,cellular,jul,mon,461,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,self-employed,married,high.school,no,no,no,cellular,jul,mon,187,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,admin.,married,high.school,no,yes,no,cellular,jul,mon,201,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,services,married,high.school,no,yes,no,cellular,jul,mon,206,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,technician,married,basic.9y,unknown,unknown,unknown,cellular,jul,mon,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,self-employed,divorced,university.degree,unknown,yes,no,cellular,jul,mon,643,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,297,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,entrepreneur,married,unknown,unknown,yes,no,cellular,jul,mon,44,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+56,retired,married,basic.4y,unknown,no,no,cellular,jul,mon,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+51,technician,married,professional.course,no,no,yes,cellular,jul,mon,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,technician,married,high.school,no,unknown,unknown,cellular,jul,mon,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,admin.,divorced,high.school,no,no,no,cellular,jul,mon,480,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,mon,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,admin.,divorced,high.school,no,no,no,cellular,jul,mon,532,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+60,blue-collar,married,basic.9y,unknown,unknown,unknown,cellular,jul,mon,575,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,retired,married,basic.4y,no,no,no,cellular,jul,mon,445,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,technician,single,professional.course,no,yes,yes,cellular,jul,mon,554,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,admin.,divorced,high.school,unknown,no,no,cellular,jul,mon,129,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,jul,mon,46,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,entrepreneur,married,basic.6y,no,yes,no,cellular,jul,mon,254,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,blue-collar,married,unknown,no,no,no,cellular,jul,mon,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+54,management,married,university.degree,no,yes,no,cellular,jul,mon,224,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,admin.,married,university.degree,no,yes,no,telephone,jul,mon,118,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,housemaid,married,high.school,unknown,yes,no,cellular,jul,mon,1200,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+45,services,divorced,high.school,no,no,no,cellular,jul,mon,295,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+57,entrepreneur,married,university.degree,unknown,unknown,unknown,cellular,jul,mon,268,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,technician,married,university.degree,no,yes,no,cellular,jul,mon,174,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+49,admin.,married,unknown,unknown,no,no,cellular,jul,mon,630,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,services,married,basic.6y,unknown,no,no,cellular,jul,mon,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,243,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,technician,married,professional.course,no,yes,no,cellular,jul,mon,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,services,married,professional.course,no,yes,no,cellular,jul,mon,451,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,admin.,single,university.degree,unknown,no,no,cellular,jul,mon,192,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,admin.,single,high.school,no,no,no,cellular,jul,mon,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,services,married,high.school,no,no,yes,cellular,jul,mon,162,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+53,entrepreneur,single,basic.9y,no,no,no,cellular,jul,mon,933,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+51,blue-collar,married,high.school,no,no,no,cellular,jul,mon,110,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+58,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,86,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,technician,married,basic.9y,no,yes,no,cellular,jul,mon,448,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,admin.,single,high.school,unknown,no,no,cellular,jul,mon,261,12,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,entrepreneur,married,basic.4y,no,yes,no,cellular,jul,mon,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,151,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,management,married,university.degree,no,yes,no,cellular,jul,mon,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,mon,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,97,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,entrepreneur,married,basic.4y,no,no,no,cellular,jul,mon,531,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,services,married,basic.9y,unknown,no,no,cellular,jul,mon,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,services,married,basic.9y,unknown,yes,no,cellular,jul,mon,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,admin.,married,university.degree,no,no,no,telephone,jul,mon,41,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,mon,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+55,retired,divorced,high.school,unknown,no,no,cellular,jul,mon,210,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,technician,single,high.school,no,yes,no,telephone,jul,mon,130,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,management,married,high.school,no,yes,no,cellular,jul,mon,599,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+50,management,married,university.degree,no,yes,no,cellular,jul,mon,236,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,532,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+55,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,mon,849,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+34,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,technician,single,high.school,unknown,no,no,cellular,jul,mon,500,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,212,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,services,married,high.school,no,yes,no,cellular,jul,mon,337,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,jul,mon,1467,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,jul,mon,246,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,117,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,services,single,university.degree,no,no,no,cellular,jul,mon,234,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,blue-collar,married,basic.9y,no,no,yes,cellular,jul,mon,387,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,admin.,married,high.school,unknown,yes,no,cellular,jul,mon,353,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,entrepreneur,married,high.school,no,no,no,cellular,jul,mon,500,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,admin.,married,university.degree,no,no,no,telephone,jul,mon,267,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,entrepreneur,married,basic.9y,unknown,yes,no,cellular,jul,mon,387,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,313,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,535,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+45,technician,married,unknown,unknown,yes,no,cellular,jul,mon,326,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,self-employed,married,university.degree,no,no,no,cellular,jul,mon,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,entrepreneur,married,basic.6y,unknown,no,no,cellular,jul,mon,973,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+60,retired,married,high.school,no,no,no,telephone,jul,mon,188,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,admin.,divorced,basic.6y,no,no,no,telephone,jul,mon,141,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,technician,married,basic.6y,no,yes,no,cellular,jul,mon,422,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,services,married,high.school,no,yes,no,cellular,jul,mon,354,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,self-employed,single,basic.9y,unknown,yes,no,cellular,jul,mon,835,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+50,unknown,married,basic.4y,unknown,yes,no,cellular,jul,mon,511,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,admin.,married,professional.course,no,no,no,cellular,jul,mon,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,admin.,married,high.school,no,yes,no,telephone,jul,mon,194,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,technician,married,professional.course,no,no,no,cellular,jul,mon,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+50,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,1165,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,services,single,high.school,no,yes,no,cellular,jul,mon,113,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,services,single,high.school,no,yes,no,cellular,jul,mon,98,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,190,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+23,services,single,high.school,no,no,no,cellular,jul,mon,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,admin.,single,high.school,no,no,no,cellular,jul,mon,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+23,services,single,high.school,no,no,no,cellular,jul,mon,316,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,admin.,married,university.degree,no,no,no,telephone,jul,mon,211,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,services,married,high.school,unknown,no,no,cellular,jul,mon,455,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+50,technician,married,professional.course,no,no,no,cellular,jul,mon,830,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+47,technician,married,professional.course,no,no,no,cellular,jul,mon,208,10,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+59,retired,married,university.degree,unknown,no,no,telephone,jul,mon,95,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,technician,married,professional.course,no,no,no,cellular,jul,mon,167,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,jul,mon,108,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+49,blue-collar,married,unknown,unknown,unknown,unknown,cellular,jul,mon,375,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,housemaid,single,basic.4y,unknown,no,no,cellular,jul,mon,457,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,self-employed,married,professional.course,unknown,no,yes,cellular,jul,mon,216,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,technician,divorced,basic.9y,no,yes,no,cellular,jul,mon,299,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,unknown,single,basic.9y,unknown,no,no,cellular,jul,mon,366,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,admin.,married,high.school,no,yes,no,cellular,jul,mon,238,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,admin.,single,university.degree,no,yes,no,cellular,jul,mon,281,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,admin.,single,high.school,no,no,no,cellular,jul,mon,270,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,blue-collar,single,high.school,no,no,no,cellular,jul,mon,234,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,admin.,married,high.school,no,no,no,cellular,jul,mon,68,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,107,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,management,married,university.degree,unknown,no,no,cellular,jul,mon,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,admin.,divorced,professional.course,no,no,no,cellular,jul,mon,159,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,technician,divorced,university.degree,no,yes,no,cellular,jul,mon,247,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,jul,mon,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,228,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+51,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,mon,293,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,services,married,basic.9y,no,no,no,cellular,jul,mon,88,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,entrepreneur,single,professional.course,no,no,no,telephone,jul,mon,143,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,unemployed,married,high.school,no,no,no,cellular,jul,mon,273,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,152,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,admin.,married,high.school,no,no,no,cellular,jul,mon,87,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,admin.,divorced,university.degree,no,yes,no,telephone,jul,mon,339,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,services,single,high.school,no,no,no,cellular,jul,mon,98,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+49,technician,married,professional.course,no,yes,yes,telephone,jul,mon,70,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+59,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,244,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,management,single,high.school,no,no,no,cellular,jul,mon,264,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,blue-collar,married,professional.course,no,no,no,cellular,jul,mon,280,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,admin.,single,university.degree,no,unknown,unknown,cellular,jul,mon,116,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,jul,mon,164,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,entrepreneur,married,basic.4y,no,no,no,cellular,jul,mon,25,30,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,admin.,married,basic.9y,no,yes,no,cellular,jul,mon,196,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+54,services,married,high.school,unknown,yes,no,cellular,jul,mon,36,33,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,mon,214,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,services,divorced,unknown,no,no,yes,cellular,jul,mon,277,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,95,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+56,housemaid,married,basic.4y,no,no,yes,cellular,jul,mon,116,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,blue-collar,single,basic.6y,no,yes,yes,cellular,jul,mon,305,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,blue-collar,single,unknown,no,yes,no,cellular,jul,mon,15,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,technician,married,professional.course,unknown,no,no,telephone,jul,mon,237,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,jul,mon,263,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,technician,married,professional.course,unknown,no,no,cellular,jul,mon,224,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,210,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,blue-collar,married,professional.course,no,yes,no,cellular,jul,mon,333,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,admin.,married,high.school,no,yes,no,cellular,jul,mon,627,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,100,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,technician,married,high.school,no,no,no,cellular,jul,mon,75,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,blue-collar,single,high.school,no,yes,no,telephone,jul,mon,416,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,unemployed,divorced,professional.course,unknown,yes,no,cellular,jul,mon,221,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,services,married,basic.9y,no,no,yes,cellular,jul,mon,51,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,unemployed,married,unknown,no,yes,no,cellular,jul,mon,199,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,mon,576,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,blue-collar,married,unknown,unknown,no,no,cellular,jul,mon,340,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+51,blue-collar,married,unknown,unknown,yes,no,cellular,jul,mon,377,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,mon,260,13,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,management,divorced,university.degree,unknown,no,no,cellular,jul,mon,255,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,admin.,married,high.school,no,no,no,cellular,jul,mon,160,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,admin.,divorced,high.school,no,no,no,cellular,jul,mon,96,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,services,married,basic.9y,no,yes,no,telephone,jul,mon,543,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,admin.,married,professional.course,no,no,no,cellular,jul,mon,182,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,unemployed,single,basic.9y,no,yes,yes,cellular,jul,mon,104,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,management,divorced,university.degree,no,no,no,cellular,jul,mon,13,20,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,jul,mon,167,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,technician,single,professional.course,unknown,yes,no,cellular,jul,mon,224,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,317,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,admin.,single,unknown,no,yes,no,cellular,jul,mon,179,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,admin.,married,high.school,no,no,no,cellular,jul,mon,74,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,admin.,divorced,high.school,no,yes,no,cellular,jul,mon,422,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,jul,mon,447,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,blue-collar,single,basic.6y,no,no,yes,cellular,jul,mon,380,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+50,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,371,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,blue-collar,married,basic.6y,no,yes,no,cellular,jul,mon,122,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,159,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,admin.,divorced,basic.9y,no,yes,no,cellular,jul,mon,79,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,blue-collar,married,professional.course,no,yes,no,cellular,jul,mon,261,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,mon,140,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,blue-collar,married,basic.4y,no,unknown,unknown,telephone,jul,mon,360,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,mon,500,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,blue-collar,single,high.school,no,yes,yes,cellular,jul,mon,234,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,blue-collar,married,basic.9y,no,no,yes,telephone,jul,mon,146,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,services,divorced,university.degree,no,no,no,cellular,jul,mon,407,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,admin.,married,university.degree,no,no,no,cellular,jul,mon,416,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,technician,single,university.degree,no,no,no,cellular,jul,mon,756,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,blue-collar,divorced,basic.6y,unknown,no,yes,telephone,jul,mon,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+50,admin.,married,high.school,unknown,yes,no,cellular,jul,mon,339,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,services,single,high.school,no,no,no,cellular,jul,mon,500,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,admin.,divorced,high.school,no,no,no,telephone,jul,mon,352,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,management,married,university.degree,unknown,yes,no,cellular,jul,mon,16,34,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,admin.,married,high.school,unknown,yes,no,cellular,jul,mon,288,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,technician,single,university.degree,no,yes,no,cellular,jul,mon,164,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,entrepreneur,married,high.school,no,yes,no,cellular,jul,mon,100,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,unemployed,single,high.school,no,yes,no,telephone,jul,mon,245,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,technician,married,university.degree,no,no,no,cellular,jul,mon,95,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,blue-collar,married,unknown,unknown,yes,no,cellular,jul,mon,285,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,housemaid,married,basic.4y,no,yes,no,cellular,jul,mon,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+50,housemaid,divorced,high.school,no,yes,no,cellular,jul,mon,78,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,services,single,high.school,no,no,no,cellular,jul,mon,422,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,admin.,single,university.degree,unknown,yes,no,cellular,jul,mon,719,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+40,services,married,high.school,no,yes,no,telephone,jul,mon,167,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+53,services,married,high.school,no,no,no,telephone,jul,mon,336,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+55,technician,married,professional.course,unknown,no,no,telephone,jul,mon,89,13,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,blue-collar,single,basic.4y,no,no,no,cellular,jul,mon,112,10,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+45,management,married,university.degree,unknown,no,no,cellular,jul,mon,208,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,services,married,high.school,no,no,no,cellular,jul,mon,221,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,services,married,high.school,no,no,no,cellular,jul,mon,624,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,admin.,single,high.school,unknown,no,no,cellular,jul,mon,252,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+60,management,married,unknown,unknown,no,no,cellular,jul,mon,230,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,entrepreneur,married,basic.4y,unknown,no,no,cellular,jul,mon,482,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,blue-collar,single,unknown,no,yes,no,telephone,jul,mon,564,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,admin.,married,high.school,no,yes,no,cellular,jul,mon,53,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,technician,married,professional.course,no,yes,no,cellular,jul,mon,279,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,admin.,married,high.school,no,yes,no,cellular,jul,mon,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,admin.,married,high.school,no,yes,no,cellular,jul,mon,242,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,technician,married,professional.course,no,yes,no,cellular,jul,mon,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,technician,married,professional.course,no,yes,no,telephone,jul,mon,9,17,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,admin.,married,high.school,no,no,yes,cellular,jul,mon,205,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,entrepreneur,single,basic.9y,no,no,no,cellular,jul,mon,131,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,admin.,married,university.degree,no,no,yes,cellular,jul,mon,15,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,technician,married,professional.course,no,no,no,cellular,jul,mon,192,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,housemaid,married,high.school,no,yes,yes,cellular,jul,mon,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,technician,married,unknown,unknown,yes,no,cellular,jul,mon,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,admin.,divorced,university.degree,unknown,no,no,cellular,jul,tue,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,admin.,divorced,university.degree,unknown,no,no,cellular,jul,tue,262,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,tue,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,admin.,married,basic.4y,unknown,yes,no,cellular,jul,tue,290,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,342,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,services,married,high.school,no,yes,no,cellular,jul,tue,140,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,services,married,high.school,no,no,no,cellular,jul,tue,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,services,married,high.school,no,no,no,cellular,jul,tue,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,services,divorced,high.school,unknown,yes,yes,cellular,jul,tue,47,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,entrepreneur,married,unknown,unknown,yes,yes,cellular,jul,tue,163,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,services,married,basic.9y,no,no,no,cellular,jul,tue,491,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,services,married,high.school,no,no,no,cellular,jul,tue,220,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,tue,104,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,blue-collar,married,basic.6y,unknown,yes,no,telephone,jul,tue,54,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,unemployed,divorced,professional.course,no,no,no,telephone,jul,tue,141,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,109,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,single,high.school,no,yes,no,cellular,jul,tue,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,jul,tue,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,services,married,high.school,no,yes,no,cellular,jul,tue,24,26,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,jul,tue,216,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,divorced,high.school,no,yes,no,telephone,jul,tue,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,services,divorced,high.school,no,no,no,cellular,jul,tue,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,services,divorced,high.school,no,yes,no,cellular,jul,tue,146,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,technician,married,professional.course,unknown,yes,no,cellular,jul,tue,362,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,basic.9y,unknown,yes,no,cellular,jul,tue,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,services,divorced,high.school,no,yes,yes,cellular,jul,tue,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,services,single,high.school,unknown,no,no,cellular,jul,tue,509,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+42,unemployed,married,university.degree,unknown,yes,no,cellular,jul,tue,431,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,services,married,basic.4y,unknown,no,no,cellular,jul,tue,160,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,admin.,divorced,university.degree,no,yes,no,cellular,jul,tue,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,186,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,admin.,divorced,university.degree,no,yes,no,cellular,jul,tue,395,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+60,admin.,married,high.school,unknown,yes,no,cellular,jul,tue,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,technician,married,high.school,unknown,yes,no,cellular,jul,tue,740,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+56,services,married,basic.4y,unknown,no,no,cellular,jul,tue,534,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+60,admin.,married,high.school,unknown,no,no,cellular,jul,tue,201,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+60,admin.,married,high.school,unknown,no,no,cellular,jul,tue,320,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,services,divorced,high.school,no,yes,no,cellular,jul,tue,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,admin.,married,professional.course,no,yes,no,cellular,jul,tue,425,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,jul,tue,59,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,entrepreneur,married,university.degree,no,no,no,telephone,jul,tue,208,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,high.school,no,yes,no,cellular,jul,tue,85,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,technician,single,unknown,no,no,no,cellular,jul,tue,290,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,services,married,basic.6y,unknown,no,no,cellular,jul,tue,31,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,technician,single,unknown,no,no,no,cellular,jul,tue,393,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,married,professional.course,no,no,yes,cellular,jul,tue,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,523,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,tue,136,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,admin.,married,high.school,unknown,no,no,cellular,jul,tue,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,admin.,married,high.school,no,yes,yes,cellular,jul,tue,144,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,university.degree,no,yes,yes,cellular,jul,tue,152,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,married,university.degree,no,no,yes,cellular,jul,tue,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,management,divorced,university.degree,no,yes,no,cellular,jul,tue,732,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+43,admin.,married,university.degree,no,no,no,cellular,jul,tue,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,admin.,married,high.school,unknown,no,no,cellular,jul,tue,733,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,self-employed,single,professional.course,no,yes,no,cellular,jul,tue,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,university.degree,no,no,no,cellular,jul,tue,524,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,university.degree,no,yes,yes,telephone,jul,tue,377,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,services,single,high.school,no,yes,no,cellular,jul,tue,286,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,management,married,basic.6y,unknown,yes,no,cellular,jul,tue,304,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,admin.,married,high.school,no,no,no,cellular,jul,tue,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,technician,married,professional.course,no,no,no,cellular,jul,tue,711,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,technician,married,high.school,unknown,yes,no,cellular,jul,tue,97,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,management,single,unknown,no,yes,no,cellular,jul,tue,288,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,99,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,admin.,single,university.degree,no,yes,no,cellular,jul,tue,238,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,single,high.school,no,no,no,cellular,jul,tue,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,tue,367,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,531,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+43,management,married,basic.9y,no,no,no,cellular,jul,tue,217,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,retired,divorced,high.school,unknown,yes,no,cellular,jul,tue,256,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,tue,634,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+26,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,admin.,married,high.school,no,no,no,cellular,jul,tue,260,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,technician,single,university.degree,no,no,no,cellular,jul,tue,460,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+38,entrepreneur,married,basic.9y,unknown,no,yes,cellular,jul,tue,133,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,services,single,high.school,unknown,no,no,cellular,jul,tue,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,technician,single,unknown,no,yes,no,cellular,jul,tue,1046,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,technician,married,high.school,unknown,no,no,cellular,jul,tue,143,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,management,married,high.school,no,no,no,cellular,jul,tue,116,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,technician,single,professional.course,unknown,yes,no,cellular,jul,tue,265,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,technician,married,high.school,no,no,no,telephone,jul,tue,176,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,services,married,high.school,no,yes,yes,cellular,jul,tue,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,services,married,high.school,no,no,no,cellular,jul,tue,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,services,divorced,high.school,no,unknown,unknown,cellular,jul,tue,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,services,married,high.school,no,no,no,cellular,jul,tue,272,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,management,married,university.degree,no,yes,no,cellular,jul,tue,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,management,married,high.school,no,no,no,cellular,jul,tue,705,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+47,technician,married,professional.course,unknown,no,yes,cellular,jul,tue,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,technician,single,professional.course,no,yes,no,cellular,jul,tue,185,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,married,high.school,no,yes,no,cellular,jul,tue,992,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+47,technician,married,professional.course,unknown,no,no,cellular,jul,tue,455,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,admin.,single,university.degree,no,no,no,cellular,jul,tue,253,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,tue,187,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,management,married,high.school,no,no,no,cellular,jul,tue,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,management,single,university.degree,no,yes,no,cellular,jul,tue,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,management,single,university.degree,no,yes,no,cellular,jul,tue,201,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,admin.,single,unknown,no,no,no,cellular,jul,tue,574,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,housemaid,married,basic.4y,unknown,unknown,unknown,cellular,jul,tue,202,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,professional.course,no,no,no,cellular,jul,tue,46,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,admin.,divorced,university.degree,unknown,yes,yes,cellular,jul,tue,401,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,student,single,high.school,unknown,no,no,cellular,jul,tue,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,yes,no,cellular,jul,tue,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,admin.,single,university.degree,no,no,no,cellular,jul,tue,362,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,single,high.school,no,yes,no,telephone,jul,tue,287,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,management,single,university.degree,unknown,yes,yes,cellular,jul,tue,92,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,single,high.school,no,no,no,cellular,jul,tue,574,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+43,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,220,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,249,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,single,high.school,no,no,no,cellular,jul,tue,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,entrepreneur,married,professional.course,no,yes,no,cellular,jul,tue,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,entrepreneur,married,professional.course,no,yes,no,cellular,jul,tue,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,single,high.school,no,yes,no,cellular,jul,tue,443,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,single,university.degree,no,no,no,cellular,jul,tue,402,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,married,high.school,no,no,no,cellular,jul,tue,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,tue,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,blue-collar,married,basic.6y,unknown,no,no,telephone,jul,tue,190,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,technician,divorced,professional.course,no,no,no,cellular,jul,tue,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,services,married,basic.9y,no,no,no,telephone,jul,tue,186,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,admin.,married,basic.4y,unknown,yes,no,cellular,jul,tue,325,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,services,married,high.school,no,no,no,cellular,jul,tue,1767,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+34,admin.,married,university.degree,no,no,no,cellular,jul,tue,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,single,professional.course,no,no,no,cellular,jul,tue,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,single,professional.course,no,no,no,cellular,jul,tue,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,services,married,basic.9y,no,no,no,cellular,jul,tue,630,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,single,high.school,no,no,no,cellular,jul,tue,116,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,technician,divorced,professional.course,no,yes,no,cellular,jul,tue,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,blue-collar,married,basic.4y,no,no,no,cellular,jul,tue,545,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,married,high.school,no,yes,no,cellular,jul,tue,681,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+30,unemployed,single,basic.4y,unknown,no,yes,cellular,jul,tue,489,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,admin.,married,university.degree,no,yes,yes,cellular,jul,tue,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,professional.course,no,yes,no,cellular,jul,tue,483,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,services,married,basic.6y,no,yes,no,cellular,jul,tue,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,admin.,married,university.degree,no,no,no,cellular,jul,tue,197,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,245,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,technician,single,university.degree,no,yes,yes,cellular,jul,tue,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,technician,single,university.degree,no,no,no,cellular,jul,tue,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,no,no,cellular,jul,tue,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,technician,single,university.degree,no,no,yes,cellular,jul,tue,1082,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+30,technician,single,professional.course,no,yes,no,cellular,jul,tue,206,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,730,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+33,services,single,high.school,no,yes,no,cellular,jul,tue,143,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,self-employed,married,unknown,no,no,no,cellular,jul,tue,125,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,single,professional.course,no,no,no,cellular,jul,tue,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,jul,tue,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,single,university.degree,unknown,yes,yes,cellular,jul,tue,70,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,tue,211,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,single,professional.course,no,no,no,cellular,jul,tue,163,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,management,single,basic.9y,no,yes,no,cellular,jul,tue,123,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,jul,tue,716,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+39,services,married,high.school,no,no,no,cellular,jul,tue,297,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,technician,divorced,professional.course,no,yes,no,cellular,jul,tue,86,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,technician,divorced,professional.course,no,no,no,cellular,jul,tue,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,technician,single,university.degree,no,no,no,cellular,jul,tue,116,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,250,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,blue-collar,single,basic.6y,no,no,no,cellular,jul,tue,338,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,married,university.degree,no,no,no,cellular,jul,tue,212,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,admin.,single,high.school,no,no,yes,cellular,jul,tue,586,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,tue,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,no,no,cellular,jul,tue,413,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,technician,single,professional.course,unknown,no,no,cellular,jul,tue,97,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,services,married,high.school,no,unknown,unknown,cellular,jul,tue,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,self-employed,divorced,professional.course,unknown,no,no,cellular,jul,tue,361,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,technician,single,university.degree,no,no,yes,cellular,jul,tue,293,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.4y,no,yes,yes,cellular,jul,tue,528,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+23,admin.,single,high.school,no,no,no,cellular,jul,tue,220,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,professional.course,no,no,no,cellular,jul,tue,803,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+54,retired,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,141,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,retired,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,management,married,university.degree,no,yes,no,cellular,jul,tue,604,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,technician,single,university.degree,no,no,no,cellular,jul,tue,159,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,retired,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,498,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,admin.,single,university.degree,no,yes,no,cellular,jul,tue,220,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+20,blue-collar,married,basic.4y,no,no,yes,cellular,jul,tue,285,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,married,university.degree,unknown,yes,no,cellular,jul,tue,231,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,married,university.degree,unknown,no,no,cellular,jul,tue,305,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,student,single,high.school,unknown,yes,no,cellular,jul,tue,154,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,blue-collar,single,professional.course,no,no,no,cellular,jul,tue,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,221,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,services,divorced,high.school,unknown,yes,no,cellular,jul,tue,454,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,tue,353,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.9y,no,no,yes,cellular,jul,tue,215,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,services,married,basic.9y,no,yes,no,cellular,jul,tue,163,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,high.school,no,yes,no,cellular,jul,tue,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,high.school,no,no,no,cellular,jul,tue,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,high.school,no,no,no,cellular,jul,tue,297,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,266,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,high.school,no,no,no,cellular,jul,tue,491,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,single,high.school,no,yes,no,cellular,jul,tue,303,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,services,single,high.school,no,yes,no,telephone,jul,tue,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,retired,married,basic.6y,unknown,no,no,cellular,jul,tue,61,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,entrepreneur,married,university.degree,no,yes,no,cellular,jul,tue,306,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,jul,tue,1027,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,entrepreneur,married,high.school,no,no,no,cellular,jul,tue,831,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+26,entrepreneur,married,basic.4y,unknown,no,no,cellular,jul,tue,510,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,professional.course,no,no,no,cellular,jul,tue,338,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,management,married,university.degree,unknown,unknown,unknown,cellular,jul,tue,107,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,tue,138,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,services,divorced,basic.6y,no,yes,yes,cellular,jul,tue,210,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+23,entrepreneur,married,professional.course,no,no,no,cellular,jul,tue,58,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,married,high.school,no,yes,no,cellular,jul,tue,305,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,entrepreneur,single,basic.9y,unknown,yes,no,cellular,jul,tue,349,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,management,single,university.degree,unknown,no,no,cellular,jul,tue,312,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+23,entrepreneur,married,professional.course,no,yes,no,cellular,jul,tue,283,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,technician,divorced,professional.course,no,yes,no,cellular,jul,tue,360,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,high.school,no,no,no,cellular,jul,tue,216,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,327,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,high.school,no,no,no,cellular,jul,tue,317,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,management,single,university.degree,no,yes,yes,cellular,jul,tue,76,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,single,high.school,no,yes,no,cellular,jul,tue,202,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,tue,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,blue-collar,married,unknown,no,yes,yes,cellular,jul,tue,301,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,blue-collar,married,unknown,no,yes,no,telephone,jul,tue,460,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,admin.,married,university.degree,no,yes,no,cellular,jul,tue,194,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,married,high.school,no,no,yes,cellular,jul,tue,165,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,technician,single,professional.course,no,yes,no,cellular,jul,tue,64,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,single,basic.9y,no,no,yes,cellular,jul,tue,141,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,retired,divorced,high.school,unknown,yes,no,cellular,jul,tue,84,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,blue-collar,married,unknown,no,no,no,cellular,jul,tue,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,technician,married,professional.course,no,yes,no,cellular,jul,tue,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,blue-collar,married,unknown,no,yes,no,cellular,jul,tue,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,blue-collar,married,unknown,no,no,yes,cellular,jul,tue,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,retired,married,basic.6y,no,no,no,cellular,jul,tue,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,single,high.school,no,yes,yes,cellular,jul,tue,54,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,retired,married,basic.6y,unknown,yes,yes,cellular,jul,tue,632,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,high.school,no,no,no,cellular,jul,tue,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,high.school,no,no,no,cellular,jul,tue,192,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,high.school,no,yes,yes,cellular,jul,tue,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,divorced,high.school,no,yes,no,cellular,jul,tue,251,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,married,basic.9y,unknown,unknown,unknown,cellular,jul,tue,319,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,admin.,married,professional.course,no,yes,yes,cellular,jul,tue,635,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+35,blue-collar,married,professional.course,no,no,no,cellular,jul,tue,584,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,technician,married,professional.course,no,yes,no,cellular,jul,tue,157,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,management,married,university.degree,unknown,no,yes,cellular,jul,tue,606,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,services,married,high.school,no,yes,no,cellular,jul,tue,78,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,119,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,jul,tue,192,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,divorced,high.school,no,yes,yes,cellular,jul,tue,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,retired,married,professional.course,unknown,no,yes,cellular,jul,tue,1720,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,355,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,admin.,married,university.degree,no,yes,yes,cellular,jul,tue,452,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,jul,tue,819,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+30,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,623,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+29,technician,married,professional.course,no,no,no,cellular,jul,tue,294,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,single,basic.9y,no,yes,yes,telephone,jul,tue,63,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,technician,married,professional.course,no,yes,no,cellular,jul,tue,280,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,professional.course,no,no,yes,cellular,jul,tue,518,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,management,married,university.degree,no,yes,no,telephone,jul,tue,336,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,171,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,services,married,basic.6y,unknown,yes,no,cellular,jul,tue,326,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,services,divorced,high.school,unknown,yes,no,cellular,jul,tue,55,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,services,married,high.school,no,no,yes,cellular,jul,tue,302,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,admin.,divorced,university.degree,unknown,no,no,cellular,jul,tue,323,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,single,basic.9y,no,no,no,telephone,jul,tue,346,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,entrepreneur,married,basic.9y,no,no,no,cellular,jul,tue,291,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,blue-collar,single,basic.4y,no,yes,yes,cellular,jul,tue,426,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,blue-collar,married,basic.6y,no,no,no,telephone,jul,tue,107,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,483,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,no,no,cellular,jul,tue,289,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,no,no,cellular,jul,tue,262,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,technician,single,professional.course,no,no,no,cellular,jul,tue,52,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,management,single,university.degree,no,no,no,cellular,jul,tue,517,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,yes,no,telephone,jul,tue,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,no,no,cellular,jul,tue,554,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,no,no,cellular,jul,tue,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,yes,no,cellular,jul,tue,59,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,admin.,married,university.degree,no,yes,no,cellular,jul,tue,228,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,self-employed,married,university.degree,no,yes,no,cellular,jul,tue,242,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,admin.,married,basic.4y,unknown,yes,no,cellular,jul,tue,150,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,154,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,blue-collar,divorced,high.school,no,yes,no,cellular,jul,tue,658,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+34,technician,single,university.degree,no,no,no,cellular,jul,tue,117,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,married,professional.course,unknown,yes,no,cellular,jul,tue,362,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,yes,no,cellular,jul,tue,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,single,basic.4y,no,yes,no,cellular,jul,tue,145,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,professional.course,no,yes,no,cellular,jul,tue,1061,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+37,entrepreneur,married,basic.9y,no,unknown,unknown,cellular,jul,tue,268,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,237,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,no,yes,cellular,jul,tue,378,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,no,no,cellular,jul,tue,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,yes,no,cellular,jul,tue,286,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,single,professional.course,unknown,unknown,unknown,cellular,jul,tue,392,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,jul,tue,218,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,high.school,no,no,no,cellular,jul,tue,21,35,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,single,basic.9y,no,no,no,telephone,jul,tue,116,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,admin.,divorced,university.degree,unknown,yes,yes,cellular,jul,tue,201,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,services,married,high.school,no,yes,no,cellular,jul,tue,1344,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+27,admin.,single,professional.course,no,yes,yes,cellular,jul,tue,520,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,137,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,single,high.school,no,no,no,cellular,jul,tue,82,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,admin.,single,basic.9y,no,yes,yes,cellular,jul,tue,687,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+30,admin.,married,university.degree,no,yes,yes,telephone,jul,tue,212,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,technician,divorced,professional.course,no,yes,no,telephone,jul,tue,243,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,services,married,high.school,no,unknown,unknown,cellular,jul,tue,160,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,single,basic.4y,no,yes,no,telephone,jul,tue,49,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,married,high.school,no,no,yes,telephone,jul,tue,65,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,yes,no,cellular,jul,tue,376,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,admin.,single,university.degree,no,yes,no,cellular,jul,tue,476,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,entrepreneur,married,university.degree,unknown,yes,yes,telephone,jul,tue,379,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,blue-collar,divorced,basic.9y,unknown,no,no,cellular,jul,tue,141,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,services,divorced,high.school,no,yes,no,cellular,jul,tue,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,services,married,high.school,no,yes,no,cellular,jul,tue,90,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,single,high.school,no,no,no,telephone,jul,tue,17,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,high.school,no,no,no,cellular,jul,tue,140,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,university.degree,no,no,no,cellular,jul,tue,187,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,single,professional.course,no,no,no,cellular,jul,tue,136,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,management,single,unknown,no,no,no,cellular,jul,tue,416,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,technician,married,professional.course,no,yes,no,telephone,jul,tue,389,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,283,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,retired,married,basic.6y,unknown,yes,no,telephone,jul,tue,554,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,17,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,management,married,high.school,no,yes,no,cellular,jul,tue,22,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,entrepreneur,single,basic.9y,no,yes,no,cellular,jul,tue,38,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,tue,109,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,married,university.degree,no,no,no,cellular,jul,tue,480,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,141,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,high.school,no,yes,no,cellular,jul,tue,212,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,technician,married,professional.course,no,yes,no,cellular,jul,tue,249,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,227,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,services,divorced,high.school,no,yes,no,cellular,jul,tue,256,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+23,admin.,single,high.school,no,yes,no,cellular,jul,tue,141,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,yes,yes,telephone,jul,tue,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,technician,single,university.degree,no,no,no,cellular,jul,tue,120,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,yes,no,cellular,jul,tue,333,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,self-employed,single,professional.course,no,yes,no,cellular,jul,tue,279,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.6y,no,yes,yes,cellular,jul,tue,241,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,no,no,telephone,jul,tue,103,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,technician,single,professional.course,no,yes,no,cellular,jul,tue,861,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,technician,married,unknown,no,yes,no,telephone,jul,tue,114,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,student,single,high.school,unknown,no,no,cellular,jul,tue,284,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,admin.,single,high.school,no,no,yes,telephone,jul,tue,127,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,technician,married,professional.course,no,yes,no,cellular,jul,tue,136,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,250,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,technician,single,professional.course,no,no,no,cellular,jul,tue,529,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,entrepreneur,married,unknown,unknown,yes,no,cellular,jul,tue,244,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,student,single,high.school,unknown,no,no,cellular,jul,tue,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,blue-collar,single,basic.4y,no,no,no,telephone,jul,tue,104,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,services,single,high.school,no,no,no,cellular,jul,tue,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,admin.,married,high.school,no,yes,no,cellular,jul,tue,369,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,services,single,high.school,no,no,no,cellular,jul,tue,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,services,single,high.school,no,no,no,cellular,jul,tue,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,technician,divorced,basic.9y,no,yes,no,cellular,jul,tue,195,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,unemployed,divorced,professional.course,no,yes,no,cellular,jul,tue,214,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,student,single,high.school,unknown,no,no,cellular,jul,tue,1111,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,technician,divorced,professional.course,no,no,no,cellular,jul,tue,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,jul,tue,183,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,entrepreneur,married,basic.9y,unknown,yes,no,telephone,jul,tue,258,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,professional.course,no,no,no,cellular,jul,tue,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,services,married,high.school,no,no,no,cellular,jul,tue,329,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,technician,single,university.degree,no,no,no,cellular,jul,tue,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,admin.,divorced,university.degree,unknown,no,no,cellular,jul,tue,210,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,married,basic.9y,no,no,no,telephone,jul,tue,320,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,management,married,university.degree,unknown,yes,yes,cellular,jul,tue,1011,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,tue,142,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,single,basic.9y,no,no,no,telephone,jul,tue,280,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,jul,wed,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,jul,wed,353,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,single,high.school,no,yes,no,cellular,jul,wed,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,single,high.school,no,unknown,unknown,cellular,jul,wed,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,technician,married,professional.course,no,yes,no,cellular,jul,wed,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,477,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,married,unknown,no,yes,no,cellular,jul,wed,131,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,admin.,married,high.school,no,yes,no,cellular,jul,wed,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,self-employed,single,university.degree,no,no,no,cellular,jul,wed,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,admin.,married,high.school,no,no,no,cellular,jul,wed,254,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,technician,married,professional.course,no,no,no,cellular,jul,wed,394,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,retired,divorced,university.degree,unknown,unknown,unknown,cellular,jul,wed,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,technician,divorced,basic.9y,unknown,no,no,cellular,jul,wed,80,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,retired,married,professional.course,no,yes,no,cellular,jul,wed,53,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,married,unknown,no,no,no,cellular,jul,wed,618,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,wed,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,technician,divorced,university.degree,no,yes,no,cellular,jul,wed,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,technician,divorced,university.degree,no,no,no,cellular,jul,wed,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,technician,divorced,university.degree,no,no,no,cellular,jul,wed,265,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,services,married,high.school,no,no,no,telephone,jul,wed,250,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,services,married,high.school,no,no,no,cellular,jul,wed,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,management,single,university.degree,no,yes,no,cellular,jul,wed,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,single,high.school,no,yes,no,cellular,jul,wed,1272,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,management,married,university.degree,no,no,no,cellular,jul,wed,182,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,wed,207,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,admin.,married,high.school,no,no,no,cellular,jul,wed,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,retired,married,basic.4y,unknown,yes,yes,cellular,jul,wed,253,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,services,single,high.school,unknown,yes,no,cellular,jul,wed,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,single,university.degree,unknown,yes,no,cellular,jul,wed,132,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,technician,single,university.degree,no,yes,no,cellular,jul,wed,259,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,261,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,admin.,married,university.degree,unknown,no,no,cellular,jul,wed,815,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+53,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,205,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,services,married,basic.9y,no,yes,no,cellular,jul,wed,537,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+40,technician,married,professional.course,no,yes,yes,cellular,jul,wed,323,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,services,married,basic.9y,no,no,no,cellular,jul,wed,679,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+29,blue-collar,married,high.school,no,yes,no,telephone,jul,wed,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,single,university.degree,no,yes,yes,cellular,jul,wed,63,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,2122,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+53,admin.,married,university.degree,no,yes,no,cellular,jul,wed,618,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,housemaid,married,basic.4y,no,yes,no,cellular,jul,wed,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,199,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,housemaid,married,basic.4y,no,yes,no,cellular,jul,wed,296,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,206,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,services,married,basic.9y,unknown,yes,no,cellular,jul,wed,133,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,housemaid,married,basic.4y,no,yes,no,cellular,jul,wed,317,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,housemaid,married,basic.4y,no,yes,no,cellular,jul,wed,107,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,housemaid,married,basic.4y,no,yes,no,cellular,jul,wed,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,high.school,no,no,no,cellular,jul,wed,75,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,296,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,74,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,housemaid,married,basic.4y,no,yes,no,cellular,jul,wed,402,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,management,married,university.degree,no,yes,no,cellular,jul,wed,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,divorced,high.school,no,yes,no,cellular,jul,wed,389,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,self-employed,married,university.degree,no,yes,no,cellular,jul,wed,99,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,jul,wed,99,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,management,married,university.degree,no,yes,no,cellular,jul,wed,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,management,married,university.degree,no,yes,no,cellular,jul,wed,420,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,management,married,university.degree,no,no,no,cellular,jul,wed,191,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,housemaid,married,basic.4y,no,no,yes,cellular,jul,wed,697,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,management,married,university.degree,no,yes,no,cellular,jul,wed,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,blue-collar,divorced,basic.9y,no,yes,no,telephone,jul,wed,138,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,management,married,university.degree,no,no,yes,cellular,jul,wed,110,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,services,single,professional.course,no,yes,no,cellular,jul,wed,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.9y,no,no,yes,cellular,jul,wed,45,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,management,married,university.degree,no,no,no,cellular,jul,wed,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,services,single,professional.course,no,yes,no,cellular,jul,wed,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,married,university.degree,no,no,yes,cellular,jul,wed,153,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,services,single,professional.course,no,yes,no,cellular,jul,wed,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,services,single,professional.course,no,yes,no,cellular,jul,wed,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,services,single,professional.course,no,yes,no,cellular,jul,wed,349,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,unemployed,married,basic.6y,unknown,yes,no,cellular,jul,wed,62,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,unemployed,married,basic.6y,unknown,no,no,cellular,jul,wed,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,single,high.school,no,yes,no,cellular,jul,wed,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,jul,wed,570,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+34,technician,married,professional.course,no,yes,no,cellular,jul,wed,99,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,technician,single,university.degree,no,yes,yes,cellular,jul,wed,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,272,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,married,high.school,no,yes,no,cellular,jul,wed,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,single,high.school,no,yes,no,cellular,jul,wed,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,single,high.school,no,no,no,cellular,jul,wed,127,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,single,high.school,no,yes,no,cellular,jul,wed,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,technician,married,professional.course,no,yes,no,cellular,jul,wed,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,technician,married,high.school,no,yes,no,cellular,jul,wed,761,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+48,entrepreneur,married,university.degree,no,yes,no,telephone,jul,wed,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,206,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,blue-collar,married,basic.9y,no,unknown,unknown,cellular,jul,wed,781,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+26,services,single,high.school,no,unknown,unknown,cellular,jul,wed,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,management,married,university.degree,no,yes,no,cellular,jul,wed,113,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,wed,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,blue-collar,married,basic.6y,no,yes,no,telephone,jul,wed,16,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,university.degree,no,no,no,cellular,jul,wed,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,technician,married,university.degree,unknown,yes,yes,cellular,jul,wed,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,205,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,wed,125,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,technician,married,university.degree,unknown,yes,yes,cellular,jul,wed,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,university.degree,no,yes,yes,cellular,jul,wed,91,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,technician,married,university.degree,unknown,yes,no,cellular,jul,wed,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,university.degree,no,no,no,cellular,jul,wed,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,wed,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,services,married,basic.9y,unknown,yes,no,telephone,jul,wed,25,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,single,high.school,no,yes,no,cellular,jul,wed,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,wed,285,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,management,single,university.degree,no,yes,yes,cellular,jul,wed,61,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,entrepreneur,divorced,basic.4y,no,no,no,cellular,jul,wed,174,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,unemployed,married,basic.9y,unknown,no,no,cellular,jul,wed,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,admin.,married,professional.course,no,no,no,cellular,jul,wed,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,high.school,unknown,yes,no,cellular,jul,wed,44,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,high.school,unknown,no,no,cellular,jul,wed,145,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,married,university.degree,no,no,no,telephone,jul,wed,238,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,160,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,management,single,university.degree,no,no,no,cellular,jul,wed,645,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+32,blue-collar,married,basic.4y,unknown,no,yes,telephone,jul,wed,990,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+31,technician,divorced,professional.course,no,unknown,unknown,cellular,jul,wed,254,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,technician,divorced,professional.course,no,no,no,cellular,jul,wed,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,blue-collar,single,basic.4y,no,no,no,cellular,jul,wed,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,unemployed,married,basic.9y,unknown,no,yes,cellular,jul,wed,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,technician,divorced,professional.course,no,yes,no,cellular,jul,wed,662,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+31,technician,divorced,professional.course,no,yes,no,cellular,jul,wed,625,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+28,technician,married,university.degree,no,yes,no,cellular,jul,wed,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,unemployed,married,basic.9y,unknown,yes,no,cellular,jul,wed,189,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,technician,married,university.degree,no,yes,no,cellular,jul,wed,321,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,technician,single,professional.course,unknown,no,no,cellular,jul,wed,482,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,single,basic.4y,no,yes,yes,cellular,jul,wed,215,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,727,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+55,admin.,divorced,high.school,no,no,no,cellular,jul,wed,189,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,admin.,divorced,high.school,no,yes,no,cellular,jul,wed,127,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,technician,married,university.degree,no,yes,no,telephone,jul,wed,196,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,blue-collar,divorced,basic.4y,no,no,no,cellular,jul,wed,87,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,wed,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,university.degree,unknown,yes,no,cellular,jul,wed,290,13,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,admin.,married,high.school,no,yes,no,cellular,jul,wed,310,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,retired,married,professional.course,no,yes,no,cellular,jul,wed,389,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,wed,294,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,single,professional.course,no,yes,no,cellular,jul,wed,611,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+23,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,wed,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,blue-collar,single,basic.4y,no,yes,yes,cellular,jul,wed,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,wed,275,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,admin.,single,university.degree,no,yes,yes,cellular,jul,wed,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,technician,married,high.school,no,no,no,cellular,jul,wed,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,technician,married,high.school,no,yes,no,cellular,jul,wed,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,management,married,professional.course,no,no,no,cellular,jul,wed,222,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,technician,married,university.degree,no,yes,no,cellular,jul,wed,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,divorced,high.school,no,yes,yes,cellular,jul,wed,148,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,366,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,jul,wed,138,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,wed,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,jul,wed,337,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,236,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,blue-collar,married,basic.4y,no,yes,no,telephone,jul,wed,52,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,wed,90,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,admin.,married,university.degree,no,yes,no,cellular,jul,wed,426,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+29,technician,married,professional.course,no,yes,no,cellular,jul,wed,332,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,jul,wed,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,127,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,186,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,housemaid,married,basic.9y,no,yes,no,cellular,jul,wed,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,admin.,single,high.school,no,yes,no,cellular,jul,wed,180,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,wed,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,admin.,married,high.school,no,yes,yes,cellular,jul,wed,273,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+22,student,single,high.school,no,no,yes,cellular,jul,wed,349,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,590,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+32,technician,single,university.degree,no,no,yes,cellular,jul,wed,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,high.school,no,no,no,cellular,jul,wed,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,university.degree,no,yes,no,cellular,jul,wed,899,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,blue-collar,single,basic.4y,unknown,unknown,unknown,cellular,jul,wed,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,unemployed,married,university.degree,unknown,yes,no,cellular,jul,wed,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,unemployed,married,university.degree,unknown,yes,no,telephone,jul,wed,54,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,1121,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+36,admin.,divorced,university.degree,no,yes,no,cellular,jul,wed,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,retired,married,basic.9y,unknown,unknown,unknown,cellular,jul,wed,628,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,admin.,married,high.school,no,yes,no,cellular,jul,wed,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+23,unemployed,single,university.degree,no,yes,no,cellular,jul,wed,119,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,single,basic.9y,no,no,no,cellular,jul,wed,1139,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+44,admin.,married,high.school,no,yes,no,cellular,jul,wed,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,services,divorced,high.school,no,yes,no,cellular,jul,wed,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,housemaid,single,high.school,no,no,no,cellular,jul,wed,1156,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,management,married,university.degree,no,no,no,cellular,jul,wed,71,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,admin.,single,high.school,no,yes,yes,cellular,jul,wed,668,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,services,married,high.school,no,no,no,cellular,jul,wed,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,technician,married,professional.course,no,yes,no,cellular,jul,wed,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,admin.,single,high.school,no,yes,no,cellular,jul,wed,171,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,jul,wed,76,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,divorced,high.school,no,no,no,cellular,jul,wed,89,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,services,divorced,high.school,no,yes,no,cellular,jul,wed,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,admin.,married,high.school,no,no,no,cellular,jul,wed,869,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+24,services,single,high.school,no,yes,no,cellular,jul,wed,242,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,98,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,technician,married,professional.course,no,yes,no,telephone,jul,wed,87,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,services,married,basic.9y,no,no,no,cellular,jul,wed,100,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,jul,wed,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,admin.,married,high.school,no,no,yes,telephone,jul,wed,31,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,205,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,technician,married,professional.course,no,yes,no,cellular,jul,wed,167,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,high.school,no,no,no,cellular,jul,wed,108,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,management,married,university.degree,unknown,yes,no,cellular,jul,wed,180,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,jul,wed,31,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,jul,wed,494,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,technician,single,university.degree,no,no,no,cellular,jul,wed,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,self-employed,married,basic.4y,unknown,no,no,cellular,jul,wed,133,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,jul,wed,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,management,married,university.degree,no,no,no,cellular,jul,wed,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,services,married,high.school,no,unknown,unknown,cellular,jul,wed,136,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,145,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,532,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,married,high.school,no,yes,no,telephone,jul,wed,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,91,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,management,divorced,basic.6y,unknown,yes,yes,cellular,jul,wed,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,wed,279,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,blue-collar,married,basic.6y,unknown,no,yes,cellular,jul,wed,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,wed,98,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,technician,married,professional.course,no,yes,no,cellular,jul,wed,178,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,wed,103,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,self-employed,married,basic.9y,no,yes,no,cellular,jul,wed,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,single,university.degree,no,yes,no,cellular,jul,wed,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,technician,married,professional.course,no,yes,no,cellular,jul,wed,144,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,self-employed,married,basic.9y,no,yes,yes,cellular,jul,wed,332,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,married,university.degree,no,yes,no,telephone,jul,wed,693,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,technician,married,professional.course,no,yes,no,cellular,jul,wed,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,married,professional.course,no,yes,no,cellular,jul,wed,289,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,single,basic.9y,no,yes,yes,telephone,jul,wed,224,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,entrepreneur,divorced,university.degree,no,yes,no,cellular,jul,wed,224,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,single,high.school,no,no,no,cellular,jul,wed,118,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,entrepreneur,divorced,university.degree,no,no,yes,cellular,jul,wed,362,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,management,single,high.school,no,yes,no,cellular,jul,wed,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,married,university.degree,no,no,no,telephone,jul,wed,672,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,management,single,university.degree,unknown,yes,no,cellular,jul,wed,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,single,high.school,no,yes,no,cellular,jul,wed,192,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,technician,married,professional.course,no,yes,no,cellular,jul,wed,160,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,divorced,high.school,unknown,yes,no,cellular,jul,wed,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,single,high.school,no,yes,no,cellular,jul,wed,360,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.9y,no,no,yes,cellular,jul,wed,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,94,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,services,married,high.school,unknown,yes,yes,cellular,jul,wed,172,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,blue-collar,divorced,professional.course,unknown,no,no,cellular,jul,wed,176,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,blue-collar,divorced,professional.course,unknown,yes,no,cellular,jul,wed,74,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,378,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,services,single,university.degree,no,yes,no,cellular,jul,wed,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,technician,single,high.school,no,yes,no,cellular,jul,wed,294,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,services,married,basic.6y,unknown,yes,no,telephone,jul,wed,183,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,728,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,services,single,high.school,no,no,no,cellular,jul,wed,643,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,divorced,high.school,no,yes,no,cellular,jul,wed,111,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,married,basic.9y,unknown,no,no,cellular,jul,wed,131,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,jul,wed,203,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,married,basic.9y,unknown,no,no,cellular,jul,wed,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,entrepreneur,divorced,basic.4y,no,yes,yes,cellular,jul,wed,1317,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,services,married,high.school,no,no,no,cellular,jul,wed,313,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,admin.,divorced,high.school,no,no,no,cellular,jul,wed,364,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,technician,single,professional.course,no,yes,no,cellular,jul,wed,171,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,technician,married,professional.course,no,no,no,cellular,jul,wed,290,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+60,unknown,married,basic.4y,unknown,yes,no,cellular,jul,wed,659,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,unemployed,married,high.school,no,no,no,cellular,jul,wed,140,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,services,married,high.school,no,no,no,cellular,jul,wed,83,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,87,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,single,university.degree,no,no,no,cellular,jul,wed,176,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,entrepreneur,married,professional.course,no,no,no,cellular,jul,wed,736,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,single,university.degree,no,yes,no,cellular,jul,wed,458,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,384,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,technician,single,university.degree,no,yes,no,cellular,jul,wed,174,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,admin.,single,university.degree,no,yes,no,telephone,jul,wed,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,blue-collar,married,high.school,no,yes,no,cellular,jul,wed,295,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,self-employed,single,university.degree,no,no,no,cellular,jul,wed,312,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,management,married,university.degree,unknown,no,no,cellular,jul,wed,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,services,single,high.school,no,yes,no,telephone,jul,wed,206,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,services,married,high.school,unknown,no,no,telephone,jul,wed,304,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.9y,no,no,no,telephone,jul,wed,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.9y,no,yes,no,telephone,jul,wed,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,601,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,housemaid,married,university.degree,no,yes,no,cellular,jul,wed,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+21,blue-collar,single,basic.9y,no,no,no,cellular,jul,wed,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+21,blue-collar,single,basic.9y,no,unknown,unknown,cellular,jul,wed,208,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+21,blue-collar,single,basic.9y,no,unknown,unknown,cellular,jul,wed,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,housemaid,married,university.degree,no,no,no,cellular,jul,wed,388,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,jul,wed,397,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,431,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,technician,single,university.degree,no,yes,no,cellular,jul,wed,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,480,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,single,basic.9y,no,no,no,cellular,jul,wed,218,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,blue-collar,single,basic.4y,no,yes,no,cellular,jul,wed,676,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,single,university.degree,no,no,no,telephone,jul,wed,74,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,admin.,divorced,university.degree,no,yes,no,cellular,jul,wed,240,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,married,basic.6y,no,no,no,telephone,jul,wed,292,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+60,blue-collar,married,basic.4y,unknown,no,no,telephone,jul,wed,83,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,391,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+60,blue-collar,married,basic.4y,unknown,no,yes,telephone,jul,wed,271,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,131,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,technician,single,high.school,no,yes,no,telephone,jul,wed,233,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,married,high.school,no,yes,no,cellular,jul,wed,293,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,married,high.school,no,no,no,cellular,jul,wed,391,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,married,high.school,no,no,yes,cellular,jul,wed,432,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,married,high.school,no,yes,yes,cellular,jul,wed,411,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+20,admin.,single,high.school,no,no,no,cellular,jul,wed,208,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,61,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,married,high.school,no,no,no,cellular,jul,wed,359,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+41,unemployed,single,high.school,no,no,no,cellular,jul,wed,197,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,management,married,university.degree,no,unknown,unknown,cellular,jul,wed,530,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,unemployed,single,high.school,no,yes,no,cellular,jul,wed,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,unemployed,married,basic.6y,unknown,no,yes,telephone,jul,wed,399,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,admin.,single,university.degree,unknown,yes,yes,cellular,jul,wed,328,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,technician,married,university.degree,no,unknown,unknown,telephone,jul,wed,446,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,married,university.degree,no,no,no,cellular,jul,wed,266,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,blue-collar,single,basic.4y,no,yes,no,cellular,jul,wed,211,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,technician,married,professional.course,no,no,no,cellular,jul,wed,263,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,married,university.degree,no,no,no,cellular,jul,wed,226,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,technician,married,university.degree,no,unknown,unknown,cellular,jul,wed,364,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,technician,married,professional.course,no,yes,no,cellular,jul,wed,231,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,technician,married,university.degree,no,no,no,telephone,jul,wed,60,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,retired,married,basic.9y,no,no,no,cellular,jul,wed,171,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,technician,divorced,professional.course,no,yes,no,cellular,jul,wed,243,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,single,basic.9y,no,no,no,telephone,jul,wed,137,16,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,technician,single,university.degree,no,yes,no,cellular,jul,wed,593,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,admin.,married,high.school,no,no,no,cellular,jul,wed,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,divorced,basic.9y,no,no,no,telephone,jul,wed,246,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,technician,single,high.school,no,no,no,cellular,jul,wed,445,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,entrepreneur,married,university.degree,no,no,no,telephone,jul,wed,337,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,retired,married,basic.4y,no,no,no,cellular,jul,wed,1014,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+36,services,single,high.school,no,no,no,cellular,jul,wed,399,17,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,single,university.degree,no,no,no,telephone,jul,wed,85,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,technician,married,university.degree,no,no,no,telephone,jul,wed,19,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,wed,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jul,wed,10,19,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,technician,single,professional.course,no,yes,yes,telephone,jul,wed,17,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,single,professional.course,no,no,no,cellular,jul,wed,1290,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+55,management,divorced,basic.6y,unknown,no,no,telephone,jul,wed,297,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,management,married,university.degree,no,yes,no,cellular,jul,wed,281,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,married,university.degree,no,yes,no,telephone,jul,wed,193,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,admin.,married,university.degree,no,no,no,telephone,jul,wed,76,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,technician,single,university.degree,no,no,no,cellular,jul,wed,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,unemployed,married,basic.9y,unknown,yes,no,telephone,jul,wed,73,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,married,basic.4y,unknown,no,no,telephone,jul,wed,39,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,wed,300,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,technician,single,university.degree,no,yes,yes,telephone,jul,wed,16,43,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,technician,married,professional.course,no,no,no,telephone,jul,wed,20,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,technician,single,university.degree,no,yes,no,cellular,jul,wed,115,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,high.school,unknown,no,no,cellular,jul,wed,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,married,university.degree,no,no,no,cellular,jul,wed,607,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,blue-collar,single,basic.9y,unknown,yes,no,telephone,jul,wed,236,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,high.school,unknown,unknown,unknown,cellular,jul,wed,150,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,technician,married,professional.course,no,no,no,telephone,jul,wed,56,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,admin.,married,university.degree,no,no,no,cellular,jul,wed,799,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,technician,divorced,basic.9y,no,no,no,telephone,jul,wed,372,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,wed,1439,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+41,admin.,married,basic.9y,no,yes,no,telephone,jul,wed,120,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,technician,divorced,basic.9y,no,no,no,telephone,jul,wed,119,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,university.degree,no,no,no,cellular,jul,wed,919,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+45,technician,married,professional.course,unknown,no,no,telephone,jul,wed,130,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,wed,227,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,technician,divorced,basic.9y,no,yes,no,cellular,jul,wed,497,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,services,single,university.degree,no,yes,no,cellular,jul,wed,170,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,services,divorced,basic.4y,unknown,yes,no,cellular,jul,wed,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,services,divorced,basic.4y,unknown,yes,no,cellular,jul,wed,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,wed,630,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,wed,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,196,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,services,married,high.school,no,yes,yes,cellular,jul,wed,134,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,services,single,high.school,no,no,no,cellular,jul,wed,1426,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+27,retired,single,basic.9y,no,no,no,cellular,jul,thu,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,307,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,divorced,university.degree,no,no,no,cellular,jul,thu,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,divorced,university.degree,no,yes,no,cellular,jul,thu,151,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.4y,no,no,no,telephone,jul,thu,317,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,divorced,university.degree,no,yes,no,cellular,jul,thu,668,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,thu,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,67,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+57,retired,married,basic.4y,no,yes,no,cellular,jul,thu,496,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,thu,315,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,blue-collar,married,basic.4y,unknown,no,yes,telephone,jul,thu,29,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,thu,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,347,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,admin.,married,high.school,no,no,no,cellular,jul,thu,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,admin.,married,high.school,no,yes,no,cellular,jul,thu,141,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,technician,single,university.degree,no,no,no,cellular,jul,thu,305,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,services,married,high.school,no,no,no,cellular,jul,thu,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,admin.,single,high.school,no,no,no,cellular,jul,thu,241,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,unemployed,married,professional.course,unknown,yes,yes,cellular,jul,thu,901,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+55,housemaid,married,basic.4y,no,no,no,cellular,jul,thu,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+57,technician,divorced,professional.course,no,yes,yes,cellular,jul,thu,235,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,management,married,university.degree,no,no,no,cellular,jul,thu,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,266,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,technician,single,professional.course,no,yes,no,cellular,jul,thu,121,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+57,retired,divorced,high.school,no,yes,no,cellular,jul,thu,162,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,jul,thu,192,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,jul,thu,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,jul,thu,560,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+48,technician,divorced,professional.course,no,yes,no,cellular,jul,thu,108,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,single,university.degree,no,no,yes,cellular,jul,thu,93,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,thu,196,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,management,married,university.degree,no,yes,no,cellular,jul,thu,1019,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,admin.,single,high.school,no,no,no,cellular,jul,thu,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,admin.,single,high.school,no,yes,no,telephone,jul,thu,140,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,admin.,divorced,university.degree,unknown,yes,yes,telephone,jul,thu,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,services,married,high.school,no,no,no,cellular,jul,thu,211,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,services,married,high.school,no,unknown,unknown,cellular,jul,thu,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,technician,married,basic.9y,no,no,no,cellular,jul,thu,119,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,blue-collar,married,basic.9y,no,no,no,telephone,jul,thu,30,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,402,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,technician,divorced,university.degree,no,no,no,cellular,jul,thu,132,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,single,university.degree,no,yes,yes,cellular,jul,thu,1065,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,services,married,high.school,no,no,yes,cellular,jul,thu,371,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,technician,married,professional.course,no,yes,no,cellular,jul,thu,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,admin.,divorced,university.degree,no,no,no,cellular,jul,thu,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,218,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,thu,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,387,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,68,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,217,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,blue-collar,single,basic.6y,no,no,no,cellular,jul,thu,854,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+31,services,married,high.school,no,yes,no,cellular,jul,thu,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,thu,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,jul,thu,41,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,blue-collar,divorced,basic.9y,unknown,no,no,cellular,jul,thu,160,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,thu,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,admin.,married,basic.4y,unknown,yes,no,cellular,jul,thu,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,married,university.degree,no,no,no,cellular,jul,thu,76,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,192,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,272,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,364,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,married,professional.course,no,yes,no,cellular,jul,thu,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+32,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,thu,624,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,admin.,divorced,high.school,no,no,no,cellular,jul,thu,128,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,single,university.degree,unknown,no,no,cellular,jul,thu,250,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,thu,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,blue-collar,married,basic.9y,no,no,no,telephone,jul,thu,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,services,single,professional.course,no,yes,no,cellular,jul,thu,384,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,268,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,services,single,basic.9y,no,yes,no,cellular,jul,thu,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,single,university.degree,unknown,no,no,cellular,jul,thu,863,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+33,technician,married,university.degree,no,yes,no,cellular,jul,thu,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,thu,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,technician,single,professional.course,no,yes,no,cellular,jul,thu,234,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,housemaid,married,high.school,no,no,no,telephone,jul,thu,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,thu,190,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,blue-collar,married,basic.6y,no,no,no,cellular,jul,thu,298,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,housemaid,married,high.school,no,no,no,cellular,jul,thu,356,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,technician,single,professional.course,no,yes,no,cellular,jul,thu,783,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,married,high.school,unknown,no,no,cellular,jul,thu,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,blue-collar,single,high.school,no,no,no,cellular,jul,thu,228,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,student,single,university.degree,no,no,no,cellular,jul,thu,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,1102,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,jul,thu,441,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,student,single,university.degree,no,yes,no,cellular,jul,thu,370,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,student,single,university.degree,no,yes,no,cellular,jul,thu,489,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,admin.,single,high.school,no,yes,no,cellular,jul,thu,103,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,admin.,single,high.school,no,no,no,cellular,jul,thu,67,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,admin.,single,high.school,no,no,yes,cellular,jul,thu,277,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+54,retired,married,high.school,no,yes,no,cellular,jul,thu,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+59,management,married,university.degree,unknown,no,no,cellular,jul,thu,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,thu,633,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,176,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+54,unemployed,married,university.degree,unknown,no,no,telephone,jul,thu,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,admin.,married,university.degree,no,no,no,cellular,jul,thu,37,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,technician,married,university.degree,unknown,no,no,cellular,jul,thu,793,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,473,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,self-employed,married,university.degree,no,yes,no,cellular,jul,thu,140,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,married,high.school,no,no,no,cellular,jul,thu,964,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,services,divorced,high.school,no,no,no,cellular,jul,thu,503,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,technician,married,professional.course,no,no,no,cellular,jul,thu,439,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,technician,married,professional.course,no,no,no,cellular,jul,thu,71,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,services,married,high.school,no,no,no,cellular,jul,thu,174,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,technician,married,professional.course,no,yes,no,cellular,jul,thu,804,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+27,technician,married,professional.course,no,yes,no,cellular,jul,thu,347,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,admin.,divorced,university.degree,unknown,no,no,cellular,jul,thu,642,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,management,married,high.school,unknown,no,no,cellular,jul,thu,103,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,management,married,high.school,unknown,yes,no,cellular,jul,thu,58,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,technician,single,professional.course,no,yes,no,cellular,jul,thu,660,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,management,single,university.degree,no,yes,yes,cellular,jul,thu,221,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,management,married,high.school,unknown,yes,no,cellular,jul,thu,329,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,thu,187,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,admin.,divorced,university.degree,unknown,no,no,telephone,jul,thu,39,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+43,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,982,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+42,admin.,single,university.degree,no,yes,no,cellular,jul,thu,324,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,technician,single,professional.course,no,no,no,cellular,jul,thu,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,student,married,high.school,no,no,no,cellular,jul,thu,149,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,admin.,married,university.degree,no,yes,no,cellular,jul,thu,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,45,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,services,married,high.school,unknown,no,no,cellular,jul,thu,224,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,jul,thu,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,jul,thu,150,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,jul,thu,117,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,single,basic.6y,no,yes,yes,cellular,jul,thu,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,jul,thu,349,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,technician,single,university.degree,no,no,no,cellular,jul,thu,292,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,jul,thu,792,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,jul,thu,100,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,jul,thu,369,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,jul,thu,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,jul,thu,285,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,admin.,single,high.school,no,yes,no,cellular,jul,thu,418,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,admin.,single,high.school,no,yes,no,telephone,jul,thu,532,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,student,divorced,basic.6y,no,yes,no,cellular,jul,thu,467,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,thu,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+54,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,220,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,thu,330,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+57,management,married,basic.4y,unknown,no,yes,cellular,jul,thu,584,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+34,technician,married,high.school,no,no,yes,cellular,jul,thu,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,613,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,jul,thu,152,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+45,management,married,university.degree,no,no,yes,cellular,jul,thu,542,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,married,high.school,no,yes,no,cellular,jul,thu,210,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,unemployed,married,basic.4y,unknown,no,no,cellular,jul,thu,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,blue-collar,married,basic.9y,no,no,yes,cellular,jul,thu,880,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+39,blue-collar,married,basic.6y,unknown,no,yes,cellular,jul,thu,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,admin.,married,professional.course,no,yes,no,cellular,jul,thu,132,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,admin.,married,professional.course,no,no,no,cellular,jul,thu,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,married,high.school,no,no,no,cellular,jul,thu,481,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,married,high.school,no,yes,yes,cellular,jul,thu,815,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+54,blue-collar,divorced,basic.4y,unknown,yes,yes,cellular,jul,thu,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,blue-collar,married,high.school,no,yes,no,cellular,jul,thu,212,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+54,blue-collar,divorced,basic.4y,unknown,no,no,cellular,jul,thu,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,admin.,married,university.degree,unknown,no,yes,cellular,jul,thu,160,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+54,blue-collar,divorced,basic.4y,unknown,no,no,cellular,jul,thu,279,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,technician,married,basic.9y,no,yes,no,cellular,jul,thu,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,technician,married,university.degree,no,no,no,cellular,jul,thu,68,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,admin.,married,university.degree,no,yes,no,cellular,jul,thu,182,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,single,high.school,no,yes,no,telephone,jul,thu,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,technician,married,professional.course,no,yes,no,telephone,jul,thu,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,single,basic.4y,no,yes,no,cellular,jul,thu,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,blue-collar,single,basic.6y,no,no,no,cellular,jul,thu,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,self-employed,married,basic.9y,no,no,no,cellular,jul,thu,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,admin.,married,unknown,no,no,no,cellular,jul,thu,277,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,506,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,married,professional.course,no,no,no,cellular,jul,thu,66,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,services,single,high.school,no,no,no,cellular,jul,thu,421,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,admin.,married,high.school,no,yes,no,cellular,jul,thu,301,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,self-employed,married,basic.9y,no,no,no,cellular,jul,thu,742,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,blue-collar,married,university.degree,no,no,no,cellular,jul,thu,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,retired,divorced,basic.4y,no,no,no,cellular,jul,thu,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,633,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,blue-collar,married,university.degree,no,yes,no,cellular,jul,thu,288,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,services,single,high.school,no,no,no,cellular,jul,thu,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,single,basic.4y,no,yes,no,cellular,jul,thu,133,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,technician,single,professional.course,no,yes,no,cellular,jul,thu,268,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,262,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,307,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,58,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,thu,446,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,jul,thu,252,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,self-employed,married,basic.9y,unknown,no,no,cellular,jul,thu,356,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,technician,married,professional.course,no,no,no,cellular,jul,thu,102,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,self-employed,married,basic.9y,unknown,yes,no,cellular,jul,thu,151,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,single,basic.4y,no,yes,no,cellular,jul,thu,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,married,basic.6y,unknown,yes,no,cellular,jul,thu,133,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,self-employed,married,basic.9y,unknown,no,no,cellular,jul,thu,466,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,self-employed,married,basic.9y,unknown,yes,no,cellular,jul,thu,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,single,basic.4y,no,yes,yes,cellular,jul,thu,380,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,self-employed,married,basic.9y,unknown,no,no,cellular,jul,thu,358,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,self-employed,married,basic.9y,unknown,yes,no,cellular,jul,thu,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,technician,single,university.degree,no,no,no,cellular,jul,thu,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,services,divorced,high.school,no,yes,no,cellular,jul,thu,207,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,services,married,high.school,no,no,no,telephone,jul,thu,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,blue-collar,single,basic.4y,no,yes,no,cellular,jul,thu,421,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+45,blue-collar,divorced,high.school,unknown,yes,yes,cellular,jul,thu,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,admin.,single,high.school,no,yes,no,cellular,jul,thu,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+45,blue-collar,divorced,high.school,unknown,no,no,cellular,jul,thu,323,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,400,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,428,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+54,blue-collar,married,high.school,no,no,yes,cellular,jul,thu,313,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,single,high.school,no,no,no,cellular,jul,thu,720,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+31,technician,single,university.degree,no,yes,yes,cellular,jul,thu,328,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,entrepreneur,single,university.degree,no,no,no,cellular,jul,thu,361,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,single,basic.9y,no,yes,no,telephone,jul,thu,45,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,single,high.school,no,no,no,cellular,jul,thu,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,housemaid,married,professional.course,no,yes,no,telephone,jul,thu,645,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,unknown,single,professional.course,no,yes,no,telephone,jul,thu,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,486,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,admin.,single,high.school,no,yes,no,telephone,jul,thu,180,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+22,technician,single,basic.9y,no,no,no,telephone,jul,thu,83,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,admin.,married,university.degree,unknown,yes,no,telephone,jul,thu,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,190,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,admin.,married,university.degree,unknown,yes,yes,telephone,jul,thu,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+54,blue-collar,married,high.school,no,yes,no,telephone,jul,thu,445,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,technician,married,basic.9y,no,no,no,cellular,jul,thu,81,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+54,blue-collar,married,high.school,no,no,no,cellular,jul,thu,771,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+49,management,divorced,university.degree,no,no,no,cellular,jul,thu,161,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,technician,single,professional.course,no,no,no,telephone,jul,thu,245,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,thu,45,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,jul,thu,228,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,admin.,married,high.school,no,yes,no,cellular,jul,thu,627,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+31,admin.,married,high.school,no,no,no,cellular,jul,thu,293,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,technician,divorced,professional.course,no,yes,no,telephone,jul,thu,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,admin.,married,high.school,no,yes,no,cellular,jul,thu,244,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,management,married,university.degree,no,yes,no,cellular,jul,thu,1341,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+31,admin.,married,high.school,no,no,no,cellular,jul,thu,634,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+31,admin.,married,high.school,no,no,no,cellular,jul,thu,363,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,jul,thu,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,married,university.degree,no,unknown,unknown,cellular,jul,thu,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,admin.,married,high.school,no,yes,no,cellular,jul,thu,197,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,604,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,thu,270,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,thu,210,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,admin.,married,high.school,no,no,no,cellular,jul,thu,269,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,thu,446,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,self-employed,single,professional.course,no,yes,no,cellular,jul,thu,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,thu,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,single,university.degree,no,yes,no,telephone,jul,thu,310,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,thu,155,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,admin.,single,high.school,no,yes,no,cellular,jul,thu,189,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,self-employed,married,university.degree,no,no,no,cellular,jul,thu,573,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,admin.,single,high.school,no,yes,no,cellular,jul,thu,476,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+42,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,829,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+32,admin.,married,university.degree,no,no,no,telephone,jul,thu,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,360,17,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,unknown,single,professional.course,no,no,no,telephone,jul,thu,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+22,blue-collar,single,basic.9y,no,yes,no,telephone,jul,thu,227,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,724,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+29,technician,married,university.degree,no,no,yes,cellular,jul,thu,525,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,thu,500,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+26,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,559,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,353,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,unknown,single,professional.course,no,no,no,cellular,jul,thu,2029,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+42,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,57,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,housemaid,married,professional.course,no,yes,no,cellular,jul,thu,351,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,thu,60,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,single,high.school,no,yes,no,cellular,jul,thu,270,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,396,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,thu,456,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,technician,married,unknown,no,yes,no,cellular,jul,thu,502,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,entrepreneur,married,professional.course,no,no,no,cellular,jul,thu,227,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,entrepreneur,married,professional.course,no,yes,no,cellular,jul,thu,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,technician,married,basic.9y,no,no,yes,cellular,jul,thu,1499,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+44,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,186,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,admin.,single,university.degree,no,yes,yes,cellular,jul,thu,107,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,entrepreneur,divorced,professional.course,no,no,no,cellular,jul,thu,82,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,retired,divorced,basic.4y,unknown,yes,no,cellular,jul,thu,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,services,single,basic.6y,no,yes,no,cellular,jul,thu,229,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,839,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,240,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,technician,married,university.degree,no,yes,no,cellular,jul,thu,189,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,entrepreneur,divorced,professional.course,no,yes,no,cellular,jul,thu,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,blue-collar,single,basic.4y,unknown,yes,no,telephone,jul,thu,160,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,entrepreneur,divorced,professional.course,no,yes,no,cellular,jul,thu,99,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,admin.,single,high.school,no,yes,no,cellular,jul,thu,340,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,thu,151,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,90,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,services,single,university.degree,no,no,no,cellular,jul,thu,363,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+47,management,married,unknown,no,no,no,cellular,jul,thu,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,management,single,university.degree,no,no,no,cellular,jul,thu,192,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,thu,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,admin.,single,high.school,no,yes,no,cellular,jul,thu,154,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,self-employed,married,basic.9y,no,yes,yes,cellular,jul,thu,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,housemaid,married,basic.4y,unknown,no,no,cellular,jul,thu,223,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,technician,single,university.degree,no,no,no,cellular,jul,thu,480,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,technician,single,professional.course,no,no,yes,telephone,jul,thu,156,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,entrepreneur,divorced,professional.course,no,yes,no,cellular,jul,thu,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+22,blue-collar,single,basic.9y,no,yes,yes,telephone,jul,thu,834,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,thu,412,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,blue-collar,single,professional.course,no,yes,no,cellular,jul,thu,164,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,thu,562,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,326,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,housemaid,single,high.school,unknown,yes,yes,telephone,jul,thu,127,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,technician,married,university.degree,no,yes,no,cellular,jul,thu,290,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,housemaid,single,high.school,unknown,yes,no,cellular,jul,thu,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,thu,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,services,single,high.school,no,no,no,cellular,jul,thu,377,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,management,married,high.school,no,no,no,telephone,jul,thu,524,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,85,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,admin.,married,high.school,no,no,no,cellular,jul,thu,61,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,married,professional.course,no,no,no,telephone,jul,thu,180,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,1399,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+46,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,107,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,374,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,1187,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+51,housemaid,divorced,high.school,no,yes,yes,cellular,jul,thu,460,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,technician,married,university.degree,no,no,no,telephone,jul,thu,270,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,technician,married,professional.course,no,unknown,unknown,cellular,jul,thu,338,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,technician,married,basic.6y,no,no,no,cellular,jul,thu,171,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,single,university.degree,no,yes,no,cellular,jul,thu,721,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,married,high.school,no,no,no,cellular,jul,thu,182,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,technician,married,professional.course,no,no,yes,cellular,jul,thu,487,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+42,admin.,single,high.school,no,no,no,telephone,jul,thu,229,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,entrepreneur,divorced,professional.course,no,no,yes,cellular,jul,thu,140,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,services,single,university.degree,no,no,no,cellular,jul,thu,113,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,entrepreneur,divorced,professional.course,no,yes,yes,cellular,jul,thu,109,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,services,married,high.school,no,no,no,cellular,jul,thu,184,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,148,20,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,91,15,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,services,single,high.school,no,no,no,cellular,jul,thu,1097,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+49,management,divorced,university.degree,no,no,no,cellular,jul,thu,144,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,150,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,single,high.school,no,no,no,telephone,jul,thu,535,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,blue-collar,single,basic.9y,no,yes,no,telephone,jul,thu,465,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,admin.,single,high.school,no,yes,no,cellular,jul,thu,154,14,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,311,27,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,123,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,admin.,single,high.school,no,no,no,telephone,jul,thu,924,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,technician,married,university.degree,no,yes,no,cellular,jul,thu,296,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,technician,single,professional.course,no,no,no,cellular,jul,thu,200,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+60,management,married,university.degree,unknown,yes,no,cellular,jul,thu,212,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+60,management,married,university.degree,unknown,no,yes,cellular,jul,thu,258,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,technician,married,professional.course,no,no,no,cellular,jul,thu,3643,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+26,entrepreneur,single,university.degree,no,no,no,telephone,jul,fri,117,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,married,high.school,unknown,no,no,cellular,jul,fri,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,divorced,professional.course,no,yes,no,cellular,jul,fri,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,fri,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+52,admin.,married,high.school,no,yes,no,cellular,jul,fri,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,married,high.school,unknown,no,no,telephone,jul,fri,189,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,blue-collar,divorced,basic.6y,no,no,no,cellular,jul,fri,159,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,married,high.school,unknown,yes,no,cellular,jul,fri,393,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,508,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,fri,522,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,technician,married,unknown,no,yes,no,cellular,jul,fri,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,545,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+52,services,married,basic.4y,no,yes,no,cellular,jul,fri,264,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,services,married,high.school,no,yes,no,cellular,jul,fri,812,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+52,admin.,divorced,high.school,unknown,no,no,cellular,jul,fri,67,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,married,high.school,unknown,yes,no,cellular,jul,fri,794,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+29,technician,married,unknown,no,yes,no,cellular,jul,fri,404,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,student,single,basic.9y,no,no,no,cellular,jul,fri,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,blue-collar,married,basic.9y,unknown,yes,yes,cellular,jul,fri,170,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,jul,fri,504,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,333,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,single,basic.6y,no,no,no,cellular,jul,fri,252,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,23,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,services,single,basic.6y,no,yes,no,cellular,jul,fri,48,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,services,single,high.school,no,yes,no,cellular,jul,fri,116,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,student,single,basic.4y,no,no,no,cellular,jul,fri,67,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,blue-collar,married,basic.4y,no,unknown,unknown,cellular,jul,fri,467,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,student,single,basic.4y,no,no,no,cellular,jul,fri,159,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,student,single,basic.4y,no,yes,yes,telephone,jul,fri,57,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,services,single,basic.6y,no,no,no,cellular,jul,fri,484,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,student,single,basic.4y,no,no,no,cellular,jul,fri,378,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,management,married,university.degree,no,yes,yes,cellular,jul,fri,772,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,student,single,basic.4y,no,unknown,unknown,cellular,jul,fri,230,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,student,single,basic.4y,no,no,no,cellular,jul,fri,304,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,fri,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,married,high.school,unknown,no,no,cellular,jul,fri,451,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,married,high.school,unknown,yes,yes,cellular,jul,fri,283,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,78,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+60,retired,divorced,high.school,no,yes,no,cellular,jul,fri,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,married,professional.course,unknown,no,yes,cellular,jul,fri,431,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,143,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,services,divorced,basic.9y,no,no,no,cellular,jul,fri,684,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,retired,single,basic.4y,unknown,no,no,cellular,jul,fri,802,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,117,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,entrepreneur,divorced,basic.4y,no,no,no,cellular,jul,fri,170,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,services,married,university.degree,no,yes,no,cellular,jul,fri,131,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+22,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,admin.,single,high.school,no,yes,no,cellular,jul,fri,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,fri,269,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+22,services,single,high.school,no,yes,no,cellular,jul,fri,143,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,technician,married,professional.course,no,no,no,cellular,jul,fri,196,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+52,housemaid,married,basic.4y,no,no,no,cellular,jul,fri,479,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,services,married,professional.course,no,yes,no,cellular,jul,fri,211,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+52,housemaid,married,basic.4y,no,no,no,cellular,jul,fri,347,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,management,single,high.school,no,no,no,cellular,jul,fri,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+52,housemaid,married,basic.4y,no,no,yes,cellular,jul,fri,183,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,retired,married,basic.9y,unknown,yes,no,cellular,jul,fri,817,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+33,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,439,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,entrepreneur,married,professional.course,unknown,yes,no,cellular,jul,fri,168,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,single,professional.course,no,yes,no,cellular,jul,fri,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,retired,married,university.degree,no,yes,no,cellular,jul,fri,188,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,single,university.degree,no,yes,no,cellular,jul,fri,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,married,basic.9y,no,yes,no,telephone,jul,fri,321,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,retired,married,basic.9y,unknown,no,no,cellular,jul,fri,891,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,admin.,married,high.school,no,yes,no,cellular,jul,fri,80,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+43,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,fri,1242,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,blue-collar,single,basic.4y,unknown,yes,no,telephone,jul,fri,76,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,high.school,no,yes,no,cellular,jul,fri,45,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,blue-collar,married,basic.9y,no,no,yes,cellular,jul,fri,138,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,jul,fri,132,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,216,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,student,single,high.school,no,yes,no,cellular,jul,fri,100,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,technician,divorced,professional.course,no,no,no,cellular,jul,fri,318,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,jul,fri,141,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,technician,married,basic.9y,no,yes,yes,cellular,jul,fri,906,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,single,high.school,no,yes,no,cellular,jul,fri,72,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,admin.,single,high.school,unknown,yes,no,cellular,jul,fri,139,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,technician,divorced,professional.course,no,yes,no,telephone,jul,fri,41,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,blue-collar,divorced,basic.9y,no,unknown,unknown,cellular,jul,fri,93,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,jul,fri,564,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,entrepreneur,married,professional.course,unknown,yes,no,cellular,jul,fri,243,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jul,fri,31,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,student,single,university.degree,unknown,no,yes,cellular,jul,fri,226,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,admin.,married,high.school,no,no,no,cellular,jul,fri,16,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,jul,fri,306,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,married,basic.9y,no,no,yes,telephone,jul,fri,518,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,admin.,single,university.degree,no,no,no,telephone,jul,fri,87,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,admin.,single,high.school,no,yes,no,cellular,jul,fri,130,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,admin.,married,high.school,no,no,no,cellular,jul,fri,98,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,housemaid,married,basic.4y,unknown,no,no,cellular,jul,fri,504,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,jul,fri,98,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,married,high.school,unknown,no,yes,cellular,jul,fri,93,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,services,married,high.school,no,yes,no,cellular,jul,fri,82,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,fri,188,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+54,blue-collar,divorced,high.school,unknown,no,no,cellular,jul,fri,223,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,services,married,high.school,unknown,yes,no,cellular,jul,fri,67,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,admin.,married,high.school,no,yes,no,cellular,jul,fri,59,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+54,blue-collar,divorced,high.school,unknown,no,no,cellular,jul,fri,86,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,blue-collar,married,basic.6y,no,yes,no,cellular,jul,fri,186,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,services,married,high.school,no,no,no,cellular,jul,fri,1060,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+36,services,single,high.school,no,yes,no,cellular,jul,fri,249,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,jul,fri,60,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,services,married,basic.9y,no,no,no,cellular,jul,fri,126,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,retired,married,university.degree,no,no,no,cellular,jul,fri,659,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,admin.,married,university.degree,no,yes,no,telephone,jul,fri,52,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,entrepreneur,divorced,university.degree,no,no,no,cellular,jul,fri,222,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,professional.course,unknown,no,no,cellular,jul,fri,109,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,jul,fri,112,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.6y,no,no,yes,cellular,jul,fri,173,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,jul,fri,42,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,management,married,high.school,no,yes,no,cellular,jul,fri,131,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,services,single,high.school,no,yes,no,cellular,jul,fri,455,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,single,basic.9y,no,yes,no,cellular,jul,fri,431,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,unemployed,married,high.school,unknown,unknown,unknown,cellular,jul,fri,147,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,services,single,high.school,unknown,no,no,cellular,jul,fri,717,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,blue-collar,married,basic.4y,no,yes,no,cellular,jul,fri,286,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,jul,fri,614,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+38,technician,married,professional.course,no,yes,yes,cellular,jul,fri,50,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,divorced,basic.9y,no,no,yes,cellular,jul,fri,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,services,single,high.school,unknown,yes,no,cellular,jul,fri,289,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,married,university.degree,no,no,yes,telephone,jul,fri,117,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,married,university.degree,no,yes,yes,cellular,jul,fri,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,admin.,single,high.school,unknown,no,no,cellular,jul,fri,487,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,256,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,blue-collar,single,basic.6y,unknown,yes,yes,cellular,jul,fri,103,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,retired,married,basic.9y,unknown,yes,no,cellular,jul,fri,181,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,services,married,professional.course,no,yes,yes,cellular,jul,fri,348,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,admin.,married,university.degree,no,yes,yes,cellular,jul,fri,154,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,fri,196,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,technician,divorced,professional.course,no,yes,yes,cellular,jul,fri,71,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,retired,married,basic.4y,unknown,yes,no,cellular,jul,fri,1689,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+32,unemployed,married,university.degree,no,yes,no,cellular,jul,fri,47,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,1294,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+37,technician,married,professional.course,no,yes,no,cellular,jul,fri,314,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,technician,single,university.degree,no,no,yes,cellular,jul,fri,228,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,entrepreneur,married,professional.course,unknown,yes,no,cellular,jul,fri,965,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,services,married,high.school,no,yes,no,cellular,jul,fri,123,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+43,entrepreneur,divorced,professional.course,no,no,yes,cellular,jul,fri,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,admin.,single,high.school,no,no,no,cellular,jul,fri,144,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,jul,fri,330,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,services,married,professional.course,no,no,yes,cellular,jul,fri,146,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,single,high.school,no,yes,no,cellular,jul,fri,712,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,admin.,married,high.school,no,no,no,cellular,jul,fri,366,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,fri,502,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,fri,260,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,services,single,high.school,no,yes,no,cellular,jul,fri,252,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,married,basic.6y,no,yes,no,cellular,jul,fri,251,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,fri,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,services,single,high.school,no,no,no,cellular,jul,fri,239,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,entrepreneur,divorced,high.school,no,no,no,cellular,jul,fri,347,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,fri,764,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+38,blue-collar,divorced,basic.9y,no,unknown,unknown,cellular,jul,fri,1120,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+57,retired,single,basic.9y,unknown,unknown,unknown,cellular,jul,fri,16,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,married,unknown,no,yes,no,cellular,jul,fri,107,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+54,blue-collar,married,basic.4y,no,no,no,cellular,jul,fri,271,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,fri,970,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,jul,fri,963,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+55,entrepreneur,married,professional.course,unknown,no,no,cellular,jul,fri,149,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,services,married,high.school,no,no,no,cellular,jul,fri,64,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,married,unknown,no,yes,yes,cellular,jul,fri,1973,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+32,technician,married,unknown,no,no,no,cellular,jul,fri,221,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,services,married,high.school,no,no,no,cellular,jul,fri,117,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,divorced,basic.9y,no,no,yes,cellular,jul,fri,706,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,technician,divorced,university.degree,no,no,yes,cellular,jul,fri,241,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,technician,single,university.degree,no,no,no,cellular,jul,fri,141,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,232,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,187,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,technician,divorced,university.degree,no,yes,no,cellular,jul,fri,249,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,student,single,university.degree,no,no,no,telephone,jul,fri,178,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,services,married,high.school,no,no,no,cellular,jul,fri,90,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,student,single,high.school,unknown,no,no,cellular,jul,fri,175,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,unemployed,married,university.degree,no,no,no,telephone,jul,fri,176,15,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.6y,no,no,no,cellular,jul,fri,255,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,management,married,basic.9y,unknown,yes,yes,cellular,jul,fri,1041,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+35,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,324,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,services,married,basic.9y,no,yes,no,cellular,jul,fri,1389,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,admin.,single,high.school,unknown,no,no,telephone,jul,fri,61,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,unemployed,married,high.school,unknown,no,no,cellular,jul,fri,120,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,married,high.school,no,no,no,cellular,jul,fri,213,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+45,management,married,unknown,no,yes,no,cellular,jul,fri,121,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+45,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,fri,636,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,services,single,high.school,no,yes,no,cellular,jul,fri,80,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,blue-collar,married,basic.6y,unknown,yes,no,telephone,jul,fri,330,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,technician,single,professional.course,no,yes,yes,cellular,jul,fri,919,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,technician,single,university.degree,no,yes,no,cellular,jul,fri,210,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,admin.,married,university.degree,unknown,no,yes,cellular,jul,fri,71,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,admin.,divorced,basic.9y,no,no,no,cellular,jul,fri,452,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,professional.course,unknown,no,no,cellular,jul,fri,255,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,technician,single,professional.course,no,no,no,cellular,jul,fri,260,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,admin.,divorced,high.school,no,no,no,cellular,jul,fri,666,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,admin.,married,university.degree,no,no,yes,telephone,jul,fri,498,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,jul,fri,344,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,technician,divorced,university.degree,no,no,no,cellular,jul,fri,221,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,housemaid,married,high.school,no,yes,no,cellular,jul,fri,189,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,services,single,high.school,no,no,no,cellular,jul,fri,70,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,unemployed,married,basic.9y,no,no,no,cellular,jul,fri,154,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,housemaid,married,high.school,no,no,no,cellular,jul,fri,271,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,jul,fri,159,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,self-employed,married,basic.9y,no,no,no,cellular,jul,fri,134,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,single,high.school,no,no,no,telephone,jul,fri,470,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+52,technician,married,professional.course,no,no,no,cellular,jul,fri,221,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,jul,fri,1164,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,admin.,married,high.school,no,yes,no,cellular,jul,fri,595,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,fri,1081,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,services,single,high.school,no,no,no,cellular,jul,fri,254,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+59,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,202,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+52,unemployed,married,university.degree,unknown,no,yes,cellular,jul,fri,118,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.6y,no,yes,no,cellular,jul,fri,207,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,blue-collar,single,basic.6y,unknown,no,yes,cellular,jul,fri,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,management,married,basic.9y,unknown,no,yes,cellular,jul,fri,333,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,housemaid,married,basic.4y,unknown,no,no,cellular,jul,fri,550,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+22,blue-collar,married,professional.course,no,yes,no,cellular,jul,fri,143,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.6y,no,yes,yes,cellular,jul,fri,69,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,single,university.degree,no,no,yes,cellular,jul,fri,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,admin.,single,university.degree,no,yes,no,cellular,jul,fri,271,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,fri,396,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,jul,fri,71,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,blue-collar,married,basic.6y,no,yes,no,cellular,jul,fri,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,management,divorced,university.degree,no,yes,no,cellular,jul,fri,215,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,services,single,high.school,no,yes,no,cellular,jul,fri,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,married,basic.9y,no,no,no,cellular,jul,fri,271,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,self-employed,divorced,professional.course,no,no,no,cellular,jul,fri,911,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+35,blue-collar,married,basic.6y,no,no,no,cellular,jul,fri,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,single,high.school,no,yes,no,cellular,jul,fri,196,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,blue-collar,married,basic.9y,no,yes,yes,telephone,jul,fri,437,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,admin.,single,university.degree,no,no,no,cellular,jul,fri,1180,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,admin.,married,university.degree,unknown,no,no,cellular,jul,fri,135,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,married,unknown,no,yes,no,cellular,jul,fri,193,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.6y,no,no,no,cellular,jul,fri,103,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,jul,fri,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,unemployed,married,university.degree,no,no,no,telephone,jul,fri,328,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,divorced,professional.course,no,no,no,cellular,jul,fri,261,13,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,342,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.6y,no,yes,no,cellular,jul,fri,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,single,high.school,no,no,no,cellular,jul,fri,425,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,fri,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+52,technician,married,professional.course,no,no,yes,cellular,jul,fri,163,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,773,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,822,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+37,admin.,single,university.degree,no,no,no,cellular,jul,fri,188,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+43,technician,divorced,basic.9y,no,no,no,cellular,jul,fri,853,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+28,admin.,married,professional.course,no,no,no,cellular,jul,fri,549,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,single,high.school,no,no,no,cellular,jul,fri,172,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+22,blue-collar,married,professional.course,no,yes,no,cellular,jul,fri,161,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,blue-collar,single,unknown,unknown,no,no,cellular,jul,fri,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,housemaid,married,basic.4y,unknown,no,no,cellular,jul,fri,1649,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+26,admin.,single,high.school,no,no,no,cellular,jul,fri,1310,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+25,technician,single,professional.course,no,yes,no,cellular,jul,fri,1187,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,135,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,services,married,high.school,no,yes,yes,cellular,jul,mon,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,technician,married,professional.course,no,yes,yes,cellular,jul,mon,324,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,married,basic.9y,no,no,no,cellular,jul,mon,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,unemployed,married,university.degree,no,yes,no,cellular,jul,mon,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,blue-collar,single,unknown,no,yes,no,cellular,jul,mon,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,management,married,basic.6y,unknown,no,no,cellular,jul,mon,175,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,51,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,246,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,330,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,management,married,university.degree,unknown,no,no,cellular,jul,mon,607,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,104,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,basic.9y,no,yes,no,cellular,jul,mon,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,management,married,university.degree,unknown,yes,no,cellular,jul,mon,332,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,entrepreneur,married,university.degree,no,yes,yes,cellular,jul,mon,125,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,blue-collar,single,basic.9y,no,yes,no,telephone,jul,mon,236,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,jul,mon,79,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,65,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,married,university.degree,no,yes,yes,telephone,jul,mon,216,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,technician,married,high.school,no,no,no,cellular,jul,mon,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,324,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,entrepreneur,married,university.degree,no,no,no,cellular,jul,mon,68,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,self-employed,single,professional.course,no,yes,no,cellular,jul,mon,61,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,technician,divorced,university.degree,no,no,no,cellular,jul,mon,179,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,jul,mon,243,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,technician,single,university.degree,no,yes,no,cellular,jul,mon,90,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,611,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+30,admin.,single,university.degree,unknown,yes,no,telephone,jul,mon,256,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,unknown,single,basic.9y,no,no,no,cellular,jul,mon,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,high.school,no,no,no,cellular,jul,mon,41,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,basic.9y,no,no,no,cellular,jul,mon,221,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,divorced,high.school,no,yes,no,cellular,jul,mon,329,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,entrepreneur,married,university.degree,unknown,no,no,cellular,jul,mon,97,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,technician,single,basic.9y,no,yes,no,cellular,jul,mon,227,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,management,married,university.degree,unknown,yes,yes,cellular,jul,mon,56,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,married,basic.9y,no,no,yes,cellular,jul,mon,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,unemployed,single,university.degree,no,yes,no,telephone,jul,mon,158,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,blue-collar,divorced,basic.9y,no,no,yes,cellular,jul,mon,194,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,entrepreneur,married,university.degree,no,yes,yes,cellular,jul,mon,285,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,high.school,no,yes,no,cellular,jul,mon,231,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,unknown,single,basic.9y,no,no,yes,cellular,jul,mon,53,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,blue-collar,single,high.school,no,yes,yes,cellular,jul,mon,276,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,services,single,high.school,no,no,no,cellular,jul,mon,505,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,admin.,divorced,university.degree,unknown,unknown,unknown,cellular,jul,mon,178,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,technician,single,university.degree,no,no,no,telephone,jul,mon,211,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,116,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,technician,single,university.degree,no,no,no,cellular,jul,mon,135,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,admin.,single,high.school,no,yes,no,cellular,jul,mon,172,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,admin.,divorced,basic.9y,no,no,no,cellular,jul,mon,47,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,self-employed,married,university.degree,no,no,no,cellular,jul,mon,84,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,married,high.school,unknown,no,no,cellular,jul,mon,367,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,244,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,entrepreneur,married,university.degree,no,yes,yes,cellular,jul,mon,103,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,jul,mon,158,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,entrepreneur,married,university.degree,no,no,no,cellular,jul,mon,611,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,self-employed,married,university.degree,no,yes,no,cellular,jul,mon,78,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,services,single,high.school,no,yes,no,cellular,jul,mon,306,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,divorced,high.school,no,no,no,telephone,jul,mon,79,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,single,high.school,no,yes,yes,cellular,jul,mon,110,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,services,married,professional.course,no,yes,no,cellular,jul,mon,751,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+35,blue-collar,married,high.school,no,yes,yes,cellular,jul,mon,289,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,housemaid,married,high.school,no,yes,no,cellular,jul,mon,126,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,management,single,university.degree,no,yes,no,cellular,jul,mon,84,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,mon,297,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,single,professional.course,no,no,no,cellular,jul,mon,66,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,high.school,no,yes,no,telephone,jul,mon,120,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,technician,divorced,professional.course,no,yes,no,cellular,jul,mon,72,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,housemaid,married,high.school,no,yes,no,cellular,jul,mon,64,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,entrepreneur,married,university.degree,unknown,yes,no,cellular,jul,mon,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+22,housemaid,single,high.school,no,yes,yes,cellular,jul,mon,767,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,unknown,single,basic.9y,no,no,yes,cellular,jul,mon,329,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,married,high.school,unknown,no,yes,cellular,jul,mon,84,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+23,blue-collar,single,basic.9y,no,no,yes,cellular,jul,mon,105,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,married,basic.9y,no,no,no,telephone,jul,mon,214,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,189,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,management,married,university.degree,no,yes,no,cellular,jul,mon,1397,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+40,entrepreneur,married,university.degree,no,no,no,cellular,jul,mon,550,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,technician,single,professional.course,no,no,no,cellular,jul,mon,331,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,high.school,no,no,no,cellular,jul,mon,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,services,married,basic.6y,no,yes,no,cellular,jul,mon,137,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,technician,married,university.degree,unknown,yes,no,cellular,jul,mon,333,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,blue-collar,married,high.school,unknown,no,no,telephone,jul,mon,44,14,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,management,single,university.degree,no,no,no,cellular,jul,mon,173,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,single,university.degree,no,unknown,unknown,cellular,jul,mon,209,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,blue-collar,single,high.school,no,no,no,cellular,jul,mon,122,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,238,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,single,basic.4y,no,unknown,unknown,cellular,jul,mon,84,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,unemployed,married,university.degree,no,yes,no,telephone,jul,mon,363,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,jul,mon,64,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,admin.,single,high.school,no,no,no,cellular,jul,mon,226,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,married,university.degree,no,no,no,cellular,jul,mon,97,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,services,divorced,high.school,unknown,yes,no,cellular,jul,mon,247,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,mon,80,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,married,university.degree,no,no,no,cellular,jul,mon,141,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,admin.,married,university.degree,no,no,no,cellular,jul,mon,187,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,married,professional.course,no,yes,no,cellular,jul,mon,467,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,management,married,university.degree,no,no,no,cellular,jul,mon,549,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,admin.,single,high.school,no,no,yes,cellular,jul,mon,254,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,single,high.school,no,yes,no,cellular,jul,mon,460,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,high.school,unknown,yes,no,cellular,jul,mon,1153,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+40,services,married,basic.6y,no,no,no,cellular,jul,mon,247,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,entrepreneur,married,high.school,no,no,no,cellular,jul,mon,121,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,high.school,no,yes,yes,cellular,jul,mon,138,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,married,high.school,unknown,no,no,cellular,jul,mon,90,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,services,divorced,high.school,unknown,yes,no,cellular,jul,mon,354,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,jul,mon,154,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,single,university.degree,no,yes,yes,cellular,jul,mon,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,228,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,blue-collar,married,high.school,unknown,yes,yes,telephone,jul,mon,281,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,jul,mon,132,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,admin.,divorced,basic.9y,no,yes,yes,cellular,jul,mon,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,blue-collar,single,unknown,no,yes,no,cellular,jul,mon,56,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,married,high.school,no,no,no,cellular,jul,mon,69,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,single,university.degree,no,unknown,unknown,cellular,jul,mon,55,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,services,married,high.school,no,no,no,cellular,jul,mon,650,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,single,high.school,no,no,yes,telephone,jul,mon,251,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,jul,mon,125,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,high.school,no,yes,yes,cellular,jul,mon,183,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,services,married,basic.6y,no,no,no,cellular,jul,mon,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,mon,127,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,high.school,no,no,no,cellular,jul,mon,74,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,management,single,university.degree,no,yes,no,cellular,jul,mon,138,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,single,professional.course,no,no,no,cellular,jul,mon,74,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,53,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,technician,married,professional.course,no,yes,no,cellular,jul,mon,634,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,mon,297,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,blue-collar,single,unknown,no,yes,no,cellular,jul,mon,213,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,blue-collar,single,high.school,no,yes,no,cellular,jul,mon,51,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,blue-collar,married,unknown,unknown,yes,no,telephone,jul,mon,124,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,married,university.degree,no,no,no,cellular,jul,mon,58,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,admin.,single,university.degree,no,yes,no,cellular,jul,mon,219,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,jul,mon,19,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,single,university.degree,no,yes,no,telephone,jul,mon,310,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,144,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,management,married,basic.9y,no,no,yes,cellular,jul,mon,174,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,married,professional.course,no,yes,no,cellular,jul,mon,41,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,397,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,married,high.school,no,yes,yes,cellular,jul,mon,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,management,single,university.degree,no,yes,no,telephone,jul,mon,305,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,105,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,111,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+23,admin.,married,basic.9y,no,yes,no,cellular,jul,mon,686,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+36,technician,divorced,professional.course,no,no,no,cellular,jul,mon,319,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,766,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+45,management,married,basic.9y,unknown,yes,no,cellular,jul,mon,297,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,jul,mon,673,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,86,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,services,divorced,high.school,no,no,no,cellular,jul,mon,388,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,services,married,basic.9y,no,yes,no,cellular,jul,mon,334,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,mon,191,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,married,high.school,unknown,no,no,cellular,jul,mon,35,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,jul,mon,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,services,married,basic.6y,no,yes,no,cellular,jul,mon,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,self-employed,divorced,university.degree,no,yes,no,telephone,jul,mon,162,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,292,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,technician,single,professional.course,no,no,no,cellular,jul,mon,331,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,student,single,university.degree,no,yes,no,cellular,jul,mon,134,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,788,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+32,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,mon,64,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,jul,mon,171,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,retired,single,basic.6y,unknown,yes,no,cellular,jul,mon,72,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,blue-collar,single,basic.9y,no,unknown,unknown,cellular,jul,mon,182,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,self-employed,married,university.degree,no,yes,no,telephone,jul,mon,105,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,management,married,university.degree,no,yes,no,cellular,jul,mon,106,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,entrepreneur,married,high.school,no,yes,no,cellular,jul,mon,64,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,blue-collar,married,basic.6y,no,no,no,cellular,jul,mon,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,services,divorced,high.school,no,no,no,cellular,jul,mon,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,technician,single,high.school,no,yes,no,cellular,jul,mon,124,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,admin.,married,university.degree,no,no,yes,telephone,jul,mon,464,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,self-employed,single,professional.course,no,yes,no,cellular,jul,mon,201,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,mon,616,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,housemaid,married,high.school,no,yes,no,cellular,jul,mon,194,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,mon,146,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,unemployed,married,high.school,unknown,yes,no,cellular,jul,mon,38,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,services,single,high.school,no,no,no,cellular,jul,mon,68,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+22,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,245,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+22,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,79,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,management,married,basic.4y,no,yes,no,cellular,jul,mon,130,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,admin.,married,high.school,unknown,yes,no,cellular,jul,mon,204,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,retired,single,basic.6y,unknown,yes,no,cellular,jul,mon,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,married,professional.course,no,yes,yes,cellular,jul,mon,699,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,services,divorced,high.school,no,yes,no,cellular,jul,mon,140,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,management,married,university.degree,no,yes,no,cellular,jul,mon,768,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,1130,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+36,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,80,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,admin.,single,high.school,no,no,no,cellular,jul,mon,259,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,blue-collar,single,basic.6y,unknown,yes,yes,cellular,jul,mon,341,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,self-employed,married,university.degree,no,yes,no,cellular,jul,mon,192,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,admin.,married,high.school,no,no,yes,cellular,jul,mon,417,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,admin.,married,high.school,no,no,no,cellular,jul,mon,154,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,admin.,married,university.degree,no,no,no,cellular,jul,mon,455,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,blue-collar,divorced,basic.6y,no,yes,no,cellular,jul,mon,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,mon,243,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,housemaid,married,high.school,no,yes,no,cellular,jul,mon,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,services,married,high.school,unknown,no,no,cellular,jul,mon,76,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,entrepreneur,married,basic.9y,unknown,yes,no,cellular,jul,mon,163,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,blue-collar,married,high.school,no,no,yes,cellular,jul,mon,149,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,technician,single,high.school,no,no,no,cellular,jul,mon,568,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,retired,married,university.degree,no,yes,yes,cellular,jul,mon,1062,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+29,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,334,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,single,high.school,unknown,yes,yes,cellular,jul,mon,393,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,admin.,divorced,basic.9y,no,no,no,cellular,jul,mon,250,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,jul,mon,364,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,mon,229,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,technician,single,university.degree,no,yes,no,cellular,jul,mon,118,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,blue-collar,single,unknown,no,no,no,cellular,jul,mon,111,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,retired,single,basic.6y,unknown,yes,no,cellular,jul,mon,315,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,admin.,single,high.school,no,yes,no,cellular,jul,mon,115,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,jul,mon,144,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,admin.,single,university.degree,no,no,no,cellular,jul,mon,103,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,self-employed,married,university.degree,no,no,no,cellular,jul,mon,299,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,technician,married,professional.course,unknown,yes,no,cellular,jul,mon,77,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,housemaid,single,basic.4y,unknown,yes,no,cellular,jul,mon,385,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,unemployed,married,high.school,no,yes,no,cellular,jul,mon,99,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,245,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,admin.,married,university.degree,no,no,no,cellular,jul,mon,140,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,single,high.school,no,no,no,cellular,jul,mon,124,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,services,married,high.school,no,no,no,cellular,jul,mon,93,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,mon,465,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,mon,197,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,management,married,university.degree,no,yes,no,cellular,jul,mon,216,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,basic.9y,no,yes,no,cellular,jul,mon,392,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,services,married,high.school,no,yes,no,cellular,jul,mon,407,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,technician,married,professional.course,no,no,no,telephone,jul,mon,81,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,blue-collar,single,high.school,no,yes,no,cellular,jul,mon,619,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,high.school,no,no,no,cellular,jul,mon,81,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,management,married,university.degree,no,yes,no,cellular,jul,mon,248,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,retired,single,basic.6y,unknown,no,no,cellular,jul,mon,157,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,214,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,blue-collar,married,professional.course,unknown,yes,no,cellular,jul,mon,201,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,425,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,1669,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+37,blue-collar,married,basic.6y,no,yes,no,cellular,jul,mon,108,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,technician,married,high.school,no,yes,yes,cellular,jul,mon,460,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,mon,256,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,blue-collar,single,basic.6y,unknown,no,yes,cellular,jul,mon,272,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,married,basic.9y,unknown,yes,yes,cellular,jul,mon,166,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,retired,single,basic.6y,unknown,yes,yes,cellular,jul,mon,431,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,technician,single,high.school,no,yes,no,cellular,jul,mon,377,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,married,professional.course,no,yes,yes,cellular,jul,mon,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,housemaid,married,basic.4y,no,no,no,cellular,jul,mon,119,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,single,professional.course,no,no,yes,cellular,jul,mon,123,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,250,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,housemaid,married,high.school,no,yes,no,cellular,jul,mon,109,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,301,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,services,single,high.school,no,no,no,cellular,jul,mon,257,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,jul,mon,136,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,blue-collar,married,professional.course,no,yes,no,cellular,jul,mon,340,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,admin.,single,basic.9y,no,yes,no,cellular,jul,mon,387,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,163,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,blue-collar,married,unknown,no,no,yes,cellular,jul,mon,326,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,mon,557,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,unemployed,married,high.school,no,yes,no,cellular,jul,mon,512,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,management,single,unknown,no,no,yes,cellular,jul,mon,342,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,married,university.degree,no,yes,no,telephone,jul,mon,197,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,admin.,divorced,basic.9y,no,yes,no,cellular,jul,mon,97,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,divorced,high.school,no,yes,no,telephone,jul,mon,109,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,blue-collar,married,basic.9y,unknown,yes,yes,cellular,jul,mon,194,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,blue-collar,married,basic.6y,no,yes,yes,cellular,jul,mon,298,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,technician,married,high.school,no,no,no,cellular,jul,mon,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,technician,divorced,professional.course,no,yes,no,cellular,jul,mon,643,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,services,married,high.school,no,no,no,cellular,jul,mon,1271,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,blue-collar,divorced,basic.4y,no,no,no,cellular,jul,mon,149,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,services,married,high.school,unknown,no,no,cellular,jul,mon,81,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,244,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,married,high.school,unknown,no,no,cellular,jul,mon,1336,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+27,blue-collar,single,basic.9y,no,yes,no,telephone,jul,mon,111,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,admin.,single,high.school,no,no,yes,cellular,jul,mon,157,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,services,married,high.school,no,unknown,unknown,cellular,jul,mon,455,13,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,blue-collar,married,high.school,no,no,yes,cellular,jul,mon,218,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,housemaid,married,basic.4y,no,yes,no,cellular,jul,mon,118,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,blue-collar,single,unknown,no,no,no,telephone,jul,mon,185,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,housemaid,married,university.degree,no,no,no,cellular,jul,mon,138,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,304,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,171,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,technician,divorced,professional.course,no,yes,yes,cellular,jul,mon,43,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,services,single,high.school,no,no,no,cellular,jul,mon,1071,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+27,admin.,single,high.school,no,yes,no,telephone,jul,mon,167,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,240,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,management,married,professional.course,unknown,no,no,cellular,jul,mon,565,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,blue-collar,divorced,high.school,unknown,no,yes,telephone,jul,mon,716,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,149,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+23,blue-collar,single,high.school,unknown,yes,no,cellular,jul,mon,150,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,divorced,high.school,no,yes,yes,cellular,jul,mon,615,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,services,single,basic.9y,no,yes,no,cellular,jul,mon,149,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,housemaid,married,high.school,no,yes,no,cellular,jul,mon,424,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,364,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,single,university.degree,no,no,no,telephone,jul,mon,179,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,management,single,university.degree,no,no,no,cellular,jul,mon,403,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,unemployed,married,high.school,no,yes,no,cellular,jul,mon,745,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,married,high.school,no,yes,no,cellular,jul,mon,164,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,235,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,technician,married,professional.course,no,yes,yes,cellular,jul,mon,330,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,admin.,single,university.degree,no,yes,no,telephone,jul,mon,160,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,student,single,high.school,no,yes,no,telephone,jul,mon,12,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,entrepreneur,married,high.school,no,no,no,cellular,jul,mon,77,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,552,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,entrepreneur,married,university.degree,no,yes,no,telephone,jul,mon,35,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,technician,divorced,professional.course,no,no,no,cellular,jul,mon,36,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,46,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+23,services,single,high.school,no,no,no,telephone,jul,mon,821,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,high.school,no,yes,yes,telephone,jul,mon,198,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,technician,single,high.school,no,yes,yes,cellular,jul,mon,894,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+59,blue-collar,divorced,basic.4y,unknown,no,yes,cellular,jul,mon,84,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,services,married,high.school,no,yes,no,cellular,jul,mon,250,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,admin.,married,high.school,no,no,no,cellular,jul,mon,110,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,high.school,no,no,no,cellular,jul,mon,133,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,78,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,technician,single,university.degree,no,yes,no,cellular,jul,mon,227,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,76,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,entrepreneur,single,basic.9y,no,no,no,cellular,jul,mon,223,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.6y,unknown,no,yes,telephone,jul,mon,164,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,admin.,married,basic.9y,no,no,yes,cellular,jul,mon,131,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,married,high.school,unknown,no,no,cellular,jul,mon,356,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,self-employed,married,basic.9y,unknown,yes,no,telephone,jul,mon,135,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,358,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,admin.,married,university.degree,no,no,no,telephone,jul,mon,172,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,mon,399,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,mon,180,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,married,basic.4y,no,no,no,telephone,jul,mon,252,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,single,university.degree,no,yes,no,telephone,jul,mon,109,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,mon,72,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jul,mon,102,14,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,457,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,jul,mon,254,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,management,single,university.degree,no,yes,no,cellular,jul,mon,400,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,married,university.degree,no,no,no,cellular,jul,mon,171,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,196,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,married,professional.course,no,yes,yes,telephone,jul,mon,123,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,jul,mon,546,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,management,married,university.degree,no,no,no,cellular,jul,mon,798,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+39,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,231,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,blue-collar,single,basic.4y,unknown,yes,no,telephone,jul,tue,321,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,56,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,blue-collar,single,high.school,no,no,no,cellular,jul,tue,31,19,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,technician,single,professional.course,no,yes,no,cellular,jul,tue,170,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+42,services,married,basic.6y,no,no,no,cellular,jul,tue,376,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jul,tue,138,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,married,basic.9y,unknown,yes,yes,cellular,jul,tue,656,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,122,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,335,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,admin.,single,university.degree,no,unknown,unknown,cellular,jul,tue,136,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,tue,528,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,services,divorced,basic.9y,no,no,no,cellular,jul,tue,805,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+35,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,71,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,blue-collar,single,basic.4y,unknown,yes,yes,cellular,jul,tue,21,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,56,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,retired,single,basic.6y,unknown,no,no,cellular,jul,tue,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,technician,single,university.degree,no,yes,no,cellular,jul,tue,129,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,management,single,university.degree,no,no,no,cellular,jul,tue,125,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,blue-collar,married,basic.6y,no,no,no,telephone,jul,tue,285,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,166,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,jul,tue,101,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,blue-collar,single,basic.9y,no,no,no,cellular,jul,tue,169,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,jul,tue,110,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,divorced,high.school,unknown,no,no,cellular,jul,tue,175,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,technician,single,university.degree,no,no,no,cellular,jul,tue,179,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,admin.,married,high.school,no,yes,no,cellular,jul,tue,649,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,technician,divorced,professional.course,no,no,no,cellular,jul,tue,231,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,management,married,university.degree,no,no,no,cellular,jul,tue,442,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,jul,tue,439,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,technician,single,professional.course,no,yes,no,cellular,jul,tue,249,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,204,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,blue-collar,married,illiterate,no,yes,no,cellular,jul,tue,92,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,technician,single,professional.course,no,yes,no,cellular,jul,tue,131,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,services,single,basic.6y,no,no,no,cellular,jul,tue,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+23,blue-collar,single,basic.9y,no,no,no,cellular,jul,tue,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+51,retired,married,university.degree,unknown,no,no,cellular,jul,tue,94,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,housemaid,married,basic.4y,no,no,no,cellular,jul,tue,56,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,married,basic.9y,no,yes,no,cellular,jul,tue,274,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,42,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,blue-collar,married,basic.9y,no,unknown,unknown,cellular,jul,tue,112,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,blue-collar,single,basic.6y,unknown,unknown,unknown,cellular,jul,tue,199,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,management,divorced,university.degree,no,no,no,cellular,jul,tue,131,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,75,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,101,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,138,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+42,self-employed,divorced,basic.6y,unknown,yes,no,cellular,jul,tue,94,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,blue-collar,single,basic.9y,no,no,yes,cellular,jul,tue,416,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,659,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,202,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+42,services,married,basic.6y,no,no,no,cellular,jul,tue,92,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,admin.,single,university.degree,no,yes,yes,cellular,jul,tue,368,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+42,technician,married,basic.9y,no,no,no,cellular,jul,tue,723,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+48,admin.,single,university.degree,no,yes,yes,telephone,jul,tue,265,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,579,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,tue,195,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,technician,single,professional.course,no,no,yes,cellular,jul,tue,80,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,technician,married,professional.course,no,yes,no,cellular,jul,tue,401,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,services,divorced,high.school,no,no,yes,cellular,jul,tue,101,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,housemaid,single,university.degree,unknown,yes,no,cellular,jul,tue,71,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,technician,single,professional.course,no,yes,no,cellular,jul,tue,134,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,blue-collar,single,basic.4y,unknown,no,no,telephone,jul,tue,41,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,services,married,high.school,no,no,no,cellular,jul,tue,280,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,tue,289,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,791,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+55,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,63,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,retired,married,basic.4y,no,yes,yes,telephone,jul,tue,533,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+30,entrepreneur,single,high.school,no,yes,no,telephone,jul,tue,501,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,blue-collar,divorced,basic.6y,no,no,no,cellular,jul,tue,76,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,self-employed,married,professional.course,no,yes,no,cellular,jul,tue,1056,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+36,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,753,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,admin.,single,university.degree,no,yes,yes,telephone,jul,tue,80,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,services,divorced,high.school,no,yes,no,cellular,jul,tue,317,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,blue-collar,married,illiterate,no,no,no,cellular,jul,tue,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,admin.,single,high.school,no,yes,no,cellular,jul,tue,237,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,self-employed,divorced,professional.course,unknown,yes,yes,cellular,jul,tue,110,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,entrepreneur,single,high.school,no,no,yes,cellular,jul,tue,295,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,admin.,single,university.degree,no,no,no,cellular,jul,tue,61,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,management,single,university.degree,no,yes,no,cellular,jul,tue,188,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,technician,single,professional.course,no,no,no,cellular,jul,tue,815,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+40,blue-collar,married,unknown,no,no,no,cellular,jul,tue,117,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,tue,89,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,blue-collar,married,basic.6y,no,yes,yes,cellular,jul,tue,101,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+51,retired,married,basic.9y,no,yes,no,cellular,jul,tue,109,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,315,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,226,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,blue-collar,married,basic.4y,unknown,no,no,telephone,jul,tue,49,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,entrepreneur,single,university.degree,no,no,yes,cellular,jul,tue,280,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,jul,tue,83,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,technician,divorced,professional.course,no,no,no,cellular,jul,tue,121,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,blue-collar,married,basic.9y,no,no,no,telephone,jul,tue,778,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,jul,tue,350,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,services,single,university.degree,no,no,no,cellular,jul,tue,368,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,entrepreneur,married,basic.4y,no,no,no,cellular,jul,tue,103,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,admin.,divorced,university.degree,no,no,no,cellular,jul,tue,232,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,admin.,married,high.school,unknown,no,no,cellular,jul,tue,60,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,admin.,married,high.school,unknown,no,no,cellular,jul,tue,87,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,jul,tue,156,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,entrepreneur,married,high.school,unknown,no,no,cellular,jul,tue,924,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,tue,65,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,jul,tue,256,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,admin.,married,university.degree,no,yes,no,cellular,jul,tue,132,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,services,single,high.school,no,unknown,unknown,telephone,jul,tue,207,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,services,married,basic.4y,no,no,no,telephone,jul,tue,152,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,blue-collar,married,unknown,unknown,yes,no,telephone,jul,tue,49,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,tue,67,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,management,married,university.degree,no,yes,no,cellular,jul,tue,646,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+24,entrepreneur,single,university.degree,no,yes,no,cellular,jul,tue,808,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+37,admin.,divorced,high.school,no,no,no,cellular,jul,tue,81,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,admin.,married,high.school,unknown,yes,no,cellular,jul,tue,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,services,married,high.school,unknown,yes,no,cellular,jul,tue,178,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,56,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+24,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,88,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,admin.,married,high.school,unknown,yes,no,cellular,jul,tue,177,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,married,basic.6y,no,yes,no,cellular,jul,tue,364,10,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,blue-collar,married,unknown,unknown,yes,yes,cellular,jul,tue,156,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,services,single,high.school,no,no,no,cellular,jul,tue,1317,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+37,admin.,single,university.degree,unknown,yes,no,cellular,jul,tue,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,unemployed,married,university.degree,no,yes,yes,cellular,jul,tue,200,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,blue-collar,single,basic.4y,no,no,no,cellular,jul,tue,59,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,services,married,high.school,no,no,yes,cellular,jul,tue,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,technician,single,professional.course,no,no,no,telephone,jul,tue,174,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,243,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,single,university.degree,unknown,no,yes,cellular,jul,tue,133,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,management,divorced,university.degree,no,no,yes,cellular,jul,tue,321,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,technician,divorced,high.school,no,yes,no,cellular,jul,tue,201,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,admin.,divorced,university.degree,no,no,yes,telephone,jul,tue,571,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,blue-collar,married,unknown,no,no,no,cellular,jul,tue,137,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,admin.,married,university.degree,no,no,no,cellular,jul,tue,503,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,unemployed,married,university.degree,no,no,no,cellular,jul,tue,277,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,services,married,high.school,no,yes,no,cellular,jul,tue,377,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,technician,married,professional.course,no,yes,no,cellular,jul,tue,83,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,admin.,single,high.school,no,yes,no,cellular,jul,tue,53,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,106,12,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,blue-collar,single,basic.4y,no,yes,no,cellular,jul,tue,82,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,blue-collar,single,basic.6y,no,yes,no,telephone,jul,tue,135,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,services,married,high.school,no,no,no,cellular,jul,tue,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,technician,divorced,professional.course,no,yes,no,cellular,jul,tue,387,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,retired,divorced,university.degree,no,yes,no,cellular,jul,tue,372,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,admin.,married,university.degree,no,yes,no,cellular,jul,tue,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,1615,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+33,housemaid,married,basic.9y,no,no,no,cellular,jul,tue,860,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+24,admin.,single,high.school,no,yes,yes,telephone,jul,tue,162,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,246,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,admin.,married,basic.6y,no,unknown,unknown,cellular,jul,tue,317,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,management,married,basic.4y,unknown,yes,no,cellular,jul,tue,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,76,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,admin.,married,basic.6y,no,yes,no,cellular,jul,tue,462,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+23,student,single,high.school,unknown,unknown,unknown,cellular,jul,tue,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,admin.,single,university.degree,no,no,no,cellular,jul,tue,182,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+59,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,85,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,tue,277,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,jul,tue,280,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,services,single,high.school,no,yes,no,cellular,jul,tue,218,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,admin.,single,basic.9y,no,yes,no,cellular,jul,tue,274,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,technician,married,professional.course,unknown,yes,yes,cellular,jul,tue,177,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,technician,divorced,professional.course,no,no,no,cellular,jul,tue,116,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,admin.,single,university.degree,no,no,no,cellular,jul,tue,98,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,442,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,blue-collar,married,basic.6y,no,no,yes,cellular,jul,tue,92,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,admin.,married,high.school,unknown,yes,no,cellular,jul,tue,88,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,tue,141,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,tue,658,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+31,technician,single,professional.course,no,yes,no,telephone,jul,tue,37,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,technician,married,professional.course,unknown,yes,yes,cellular,jul,tue,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,management,married,university.degree,no,no,no,cellular,jul,tue,794,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,management,married,university.degree,no,yes,no,cellular,jul,tue,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,housemaid,married,basic.4y,no,yes,no,cellular,jul,tue,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,admin.,married,basic.9y,no,no,no,cellular,jul,tue,878,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+35,housemaid,married,basic.9y,no,no,no,cellular,jul,tue,280,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,admin.,divorced,high.school,no,yes,no,cellular,jul,tue,193,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,blue-collar,married,basic.9y,no,no,yes,cellular,jul,tue,148,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,technician,divorced,professional.course,no,yes,no,cellular,jul,tue,513,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,services,single,high.school,no,no,yes,cellular,jul,tue,172,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,technician,single,university.degree,no,yes,no,cellular,jul,tue,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,792,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,admin.,single,high.school,no,no,no,cellular,jul,tue,355,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,services,single,unknown,unknown,yes,no,cellular,jul,tue,881,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+32,services,single,unknown,unknown,no,no,cellular,jul,tue,981,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+28,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,158,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,admin.,married,high.school,unknown,yes,yes,cellular,jul,tue,722,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,management,single,high.school,no,no,yes,cellular,jul,tue,103,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,services,married,high.school,no,yes,no,cellular,jul,tue,820,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+50,admin.,married,professional.course,no,no,no,cellular,jul,tue,1001,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+26,technician,divorced,professional.course,no,no,yes,cellular,jul,tue,500,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+26,technician,divorced,professional.course,no,yes,no,cellular,jul,tue,348,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,blue-collar,single,basic.4y,no,yes,no,cellular,jul,tue,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,technician,single,professional.course,no,no,yes,cellular,jul,tue,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,management,divorced,university.degree,no,yes,no,cellular,jul,tue,1228,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+25,blue-collar,married,high.school,unknown,yes,no,cellular,jul,tue,94,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,entrepreneur,single,university.degree,no,yes,no,cellular,jul,tue,192,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,services,married,high.school,no,yes,no,cellular,jul,tue,331,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,admin.,married,basic.9y,no,yes,no,cellular,jul,tue,779,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,admin.,single,high.school,no,no,yes,telephone,jul,tue,91,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,management,married,basic.4y,unknown,yes,no,cellular,jul,tue,61,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,jul,tue,555,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,blue-collar,married,basic.4y,no,no,no,cellular,jul,tue,157,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,management,divorced,university.degree,no,yes,no,cellular,jul,tue,580,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,housemaid,single,university.degree,unknown,no,no,telephone,jul,tue,39,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,technician,married,university.degree,no,no,no,cellular,jul,tue,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+52,blue-collar,divorced,unknown,no,no,no,cellular,jul,tue,111,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+23,technician,single,university.degree,no,yes,yes,cellular,jul,tue,603,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,unemployed,single,unknown,no,no,no,cellular,jul,tue,211,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+52,housemaid,married,basic.4y,no,yes,yes,cellular,jul,tue,105,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,admin.,divorced,high.school,no,yes,no,cellular,jul,tue,514,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+32,technician,single,professional.course,no,yes,no,cellular,jul,tue,479,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,111,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,368,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,admin.,single,university.degree,no,no,no,cellular,jul,tue,149,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,housemaid,single,high.school,no,yes,no,cellular,jul,tue,257,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,jul,tue,98,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+51,admin.,divorced,professional.course,no,yes,no,cellular,jul,tue,408,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,blue-collar,divorced,basic.6y,unknown,yes,yes,cellular,jul,tue,329,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,134,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,admin.,married,professional.course,no,no,no,cellular,jul,tue,306,14,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,housemaid,married,basic.4y,unknown,yes,no,telephone,jul,tue,159,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,entrepreneur,married,basic.6y,no,no,no,telephone,jul,tue,275,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,management,divorced,basic.4y,no,yes,no,cellular,jul,tue,68,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,unemployed,married,university.degree,no,yes,no,cellular,jul,tue,135,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,technician,divorced,basic.6y,no,yes,no,cellular,jul,tue,716,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+36,services,single,high.school,no,no,yes,cellular,jul,tue,257,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,divorced,university.degree,no,yes,no,cellular,jul,tue,826,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,admin.,single,university.degree,no,no,no,cellular,jul,tue,35,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,blue-collar,divorced,basic.9y,no,no,yes,cellular,jul,tue,1083,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,blue-collar,married,basic.6y,no,no,no,cellular,jul,tue,235,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,technician,single,professional.course,no,no,yes,cellular,jul,tue,955,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+41,entrepreneur,divorced,university.degree,no,yes,no,cellular,jul,tue,194,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,admin.,married,high.school,unknown,yes,no,cellular,jul,tue,194,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,management,divorced,university.degree,no,yes,no,cellular,jul,tue,123,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,services,single,high.school,no,no,no,cellular,jul,tue,612,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,services,married,high.school,no,no,no,cellular,jul,tue,85,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,admin.,single,university.degree,no,no,no,telephone,jul,tue,237,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,admin.,single,university.degree,no,no,no,cellular,jul,tue,196,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,blue-collar,married,high.school,no,yes,no,cellular,jul,tue,144,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,entrepreneur,single,high.school,no,yes,no,cellular,jul,tue,85,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,technician,single,professional.course,no,yes,no,cellular,jul,tue,179,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,220,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,admin.,single,basic.9y,no,no,yes,cellular,jul,tue,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,107,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,260,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,tue,232,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,single,university.degree,unknown,no,no,cellular,jul,tue,150,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,services,single,high.school,no,no,no,cellular,jul,tue,232,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,management,married,basic.4y,unknown,yes,no,cellular,jul,tue,673,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,entrepreneur,single,university.degree,no,no,no,cellular,jul,tue,272,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,blue-collar,married,basic.6y,no,no,yes,cellular,jul,tue,197,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,tue,263,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,admin.,married,university.degree,no,yes,no,cellular,jul,tue,275,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,tue,157,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,management,married,high.school,no,no,no,cellular,jul,tue,419,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,146,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,blue-collar,married,basic.4y,no,no,no,cellular,jul,tue,115,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,management,married,university.degree,no,yes,no,cellular,jul,tue,347,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,services,single,unknown,unknown,yes,yes,cellular,jul,tue,136,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,357,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,management,married,basic.9y,no,no,no,cellular,jul,tue,374,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,120,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,technician,divorced,professional.course,no,no,no,cellular,jul,tue,323,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,364,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,management,married,university.degree,no,yes,no,cellular,jul,tue,98,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,84,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,married,university.degree,no,unknown,unknown,telephone,jul,tue,78,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,blue-collar,single,basic.6y,no,unknown,unknown,telephone,jul,tue,59,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,blue-collar,married,basic.4y,no,no,no,cellular,jul,tue,395,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,blue-collar,married,high.school,unknown,no,no,cellular,jul,tue,169,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,blue-collar,divorced,high.school,no,no,no,cellular,jul,tue,209,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,106,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+24,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,107,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,unemployed,married,university.degree,no,yes,no,cellular,jul,tue,462,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,technician,single,university.degree,no,yes,no,cellular,jul,tue,216,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,technician,single,professional.course,no,no,no,cellular,jul,tue,769,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+45,blue-collar,single,basic.4y,unknown,yes,no,cellular,jul,tue,115,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,blue-collar,divorced,basic.9y,unknown,no,no,cellular,jul,tue,889,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+56,unknown,divorced,basic.4y,no,no,no,cellular,jul,tue,547,12,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,housemaid,single,university.degree,unknown,no,yes,cellular,jul,tue,142,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,technician,single,high.school,no,yes,no,telephone,jul,tue,166,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,admin.,divorced,basic.9y,no,no,no,cellular,jul,tue,1424,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+35,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,53,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,blue-collar,single,high.school,no,unknown,unknown,cellular,jul,tue,290,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,retired,married,basic.4y,unknown,no,no,cellular,jul,tue,520,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,jul,tue,490,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,management,married,high.school,no,yes,no,cellular,jul,tue,838,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+55,retired,married,basic.4y,unknown,no,yes,cellular,jul,tue,599,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,admin.,single,high.school,no,yes,no,cellular,jul,tue,498,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+51,technician,divorced,high.school,no,no,no,cellular,jul,tue,166,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,admin.,single,university.degree,no,no,no,telephone,jul,tue,232,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,admin.,divorced,high.school,no,no,yes,cellular,jul,tue,270,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,admin.,married,basic.4y,no,yes,no,cellular,jul,tue,118,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,159,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,blue-collar,married,basic.9y,no,no,no,telephone,jul,tue,265,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,admin.,divorced,university.degree,no,no,no,cellular,jul,tue,419,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,blue-collar,married,high.school,unknown,yes,no,cellular,jul,tue,624,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,59,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,unemployed,married,university.degree,no,yes,no,cellular,jul,tue,812,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,97,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,tue,119,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,admin.,single,high.school,no,yes,no,cellular,jul,tue,84,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,blue-collar,divorced,basic.6y,unknown,no,no,cellular,jul,tue,632,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+27,admin.,single,professional.course,no,no,no,cellular,jul,tue,448,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+48,unemployed,married,basic.4y,unknown,no,no,cellular,jul,tue,163,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,tue,231,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,technician,divorced,professional.course,no,no,no,cellular,jul,tue,114,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,services,married,high.school,no,yes,no,telephone,jul,tue,32,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,blue-collar,single,high.school,no,yes,no,telephone,jul,tue,1142,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,87,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,services,divorced,basic.9y,no,yes,no,telephone,jul,tue,62,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,blue-collar,divorced,unknown,no,yes,no,telephone,jul,tue,341,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,married,high.school,no,no,no,cellular,jul,tue,160,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,1412,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+24,services,single,high.school,no,no,no,telephone,jul,wed,61,14,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+24,admin.,single,high.school,no,no,no,telephone,jul,wed,41,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,entrepreneur,divorced,high.school,unknown,yes,no,cellular,jul,wed,276,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+58,management,divorced,university.degree,no,yes,no,cellular,jul,wed,75,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,blue-collar,married,basic.6y,no,yes,no,telephone,jul,wed,208,8,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+56,admin.,married,high.school,unknown,yes,no,cellular,jul,wed,298,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+59,retired,married,university.degree,unknown,no,no,cellular,jul,wed,767,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+58,management,divorced,university.degree,no,yes,no,telephone,jul,wed,174,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,admin.,single,unknown,no,no,yes,cellular,jul,wed,186,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+38,self-employed,married,professional.course,no,no,no,cellular,jul,wed,350,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,52,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+27,services,single,professional.course,no,unknown,unknown,telephone,jul,wed,46,8,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,jul,wed,510,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,student,married,university.degree,no,yes,no,cellular,jul,wed,81,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,blue-collar,divorced,basic.9y,unknown,yes,yes,cellular,jul,wed,464,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+24,admin.,single,high.school,no,no,no,cellular,jul,wed,220,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+38,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,wed,31,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,self-employed,single,university.degree,no,no,no,cellular,jul,wed,1147,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,admin.,married,high.school,no,no,no,cellular,jul,wed,130,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,admin.,married,high.school,no,yes,no,cellular,jul,wed,95,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,technician,single,professional.course,no,no,no,cellular,jul,wed,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,221,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+55,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,469,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,technician,single,professional.course,no,unknown,unknown,cellular,jul,wed,578,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+30,self-employed,married,university.degree,no,yes,no,telephone,jul,wed,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,entrepreneur,divorced,high.school,unknown,no,no,cellular,jul,wed,111,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,771,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,wed,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,technician,single,university.degree,unknown,yes,no,cellular,jul,wed,390,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,154,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,blue-collar,married,unknown,no,yes,no,cellular,jul,wed,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jul,wed,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+24,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,wed,349,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+34,admin.,single,university.degree,no,yes,no,cellular,jul,wed,46,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,technician,single,professional.course,unknown,yes,no,cellular,jul,wed,574,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,715,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,housemaid,married,basic.9y,unknown,no,no,cellular,jul,wed,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+55,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,525,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+28,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,wed,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,229,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,blue-collar,single,basic.6y,no,yes,yes,cellular,jul,wed,1806,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+28,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,wed,400,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,blue-collar,divorced,unknown,unknown,no,no,cellular,jul,wed,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,blue-collar,divorced,unknown,unknown,yes,no,cellular,jul,wed,284,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,technician,divorced,professional.course,no,no,no,cellular,jul,wed,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+27,services,married,high.school,no,no,no,cellular,jul,wed,151,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+32,blue-collar,single,basic.6y,no,yes,no,cellular,jul,wed,46,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+48,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,79,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,entrepreneur,divorced,high.school,unknown,no,no,cellular,jul,wed,344,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,blue-collar,divorced,unknown,unknown,no,no,cellular,jul,wed,291,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,self-employed,married,basic.9y,no,no,no,cellular,jul,wed,56,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+50,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,technician,divorced,professional.course,no,yes,no,cellular,jul,wed,401,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,blue-collar,single,basic.9y,no,no,no,telephone,jul,wed,138,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+52,management,married,university.degree,unknown,no,no,cellular,jul,wed,272,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+24,admin.,single,high.school,no,yes,no,cellular,jul,wed,145,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,services,married,high.school,unknown,yes,no,cellular,jul,wed,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,services,married,high.school,unknown,yes,no,cellular,jul,wed,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+45,unemployed,married,basic.6y,unknown,no,no,cellular,jul,wed,211,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+39,technician,married,unknown,no,yes,no,cellular,jul,wed,94,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+28,admin.,married,basic.9y,unknown,no,no,cellular,jul,wed,428,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+32,admin.,single,high.school,no,yes,no,cellular,jul,wed,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,technician,divorced,high.school,no,no,no,cellular,jul,wed,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+45,management,married,university.degree,unknown,no,no,cellular,jul,wed,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+39,technician,married,high.school,unknown,no,no,cellular,jul,wed,781,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+45,unknown,unknown,unknown,no,yes,yes,cellular,jul,wed,496,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+45,unknown,unknown,unknown,no,yes,no,cellular,jul,wed,586,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+34,blue-collar,single,basic.6y,no,yes,yes,cellular,jul,wed,195,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+55,management,married,basic.9y,no,yes,no,cellular,jul,wed,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+55,management,married,basic.9y,no,yes,no,cellular,jul,wed,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,blue-collar,divorced,unknown,unknown,no,no,cellular,jul,wed,339,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,services,married,unknown,no,yes,yes,cellular,jul,wed,268,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+27,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,689,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+45,management,married,high.school,unknown,no,no,cellular,jul,wed,94,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,technician,divorced,high.school,no,no,no,cellular,jul,wed,269,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+58,retired,divorced,basic.4y,unknown,no,no,cellular,jul,wed,303,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+56,admin.,married,high.school,unknown,no,no,cellular,jul,wed,120,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,retired,married,high.school,no,yes,no,cellular,jul,wed,239,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,admin.,single,university.degree,no,no,yes,telephone,jul,wed,98,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,retired,married,high.school,no,yes,no,cellular,jul,wed,555,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+37,technician,married,high.school,no,yes,no,cellular,jul,wed,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,jul,wed,686,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+32,technician,married,university.degree,no,no,no,cellular,jul,wed,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,admin.,married,high.school,no,yes,yes,cellular,jul,wed,29,8,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,technician,single,professional.course,unknown,no,no,cellular,jul,wed,528,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,technician,single,professional.course,no,no,no,cellular,jul,wed,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+23,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,60,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+23,blue-collar,single,high.school,no,no,no,cellular,jul,wed,251,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,blue-collar,divorced,unknown,unknown,yes,no,cellular,jul,wed,206,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,jul,wed,1150,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,services,single,basic.9y,no,yes,no,cellular,jul,wed,294,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+23,blue-collar,single,high.school,no,no,no,cellular,jul,wed,435,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+31,self-employed,married,basic.9y,no,no,no,cellular,jul,wed,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,jul,wed,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+52,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,294,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+42,services,married,high.school,unknown,no,yes,telephone,jul,wed,198,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+47,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,wed,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+23,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,830,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+24,services,single,high.school,no,yes,no,cellular,jul,wed,57,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+44,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,464,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+24,blue-collar,divorced,high.school,no,yes,no,cellular,jul,wed,57,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,technician,single,professional.course,no,yes,no,cellular,jul,wed,76,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+47,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,wed,318,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,jul,wed,39,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,jul,wed,873,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+31,blue-collar,single,high.school,no,no,no,cellular,jul,wed,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,admin.,married,high.school,no,no,no,cellular,jul,wed,227,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+25,admin.,single,high.school,no,yes,no,cellular,jul,wed,202,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+27,technician,single,high.school,no,yes,no,telephone,jul,wed,109,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,blue-collar,single,basic.9y,no,no,no,cellular,jul,wed,243,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,jul,wed,329,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+44,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+41,blue-collar,single,basic.6y,no,yes,no,cellular,jul,wed,142,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+32,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,151,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,jul,wed,335,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,services,divorced,basic.9y,no,no,no,cellular,jul,wed,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,services,divorced,basic.9y,no,yes,no,cellular,jul,wed,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,48,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,admin.,married,university.degree,no,no,no,cellular,jul,wed,198,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,admin.,single,high.school,no,yes,no,cellular,jul,wed,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,unemployed,single,high.school,no,yes,yes,cellular,jul,wed,45,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,services,divorced,basic.9y,no,yes,no,cellular,jul,wed,684,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,unemployed,single,high.school,no,yes,no,cellular,jul,wed,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,management,single,university.degree,no,no,no,cellular,jul,wed,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,services,divorced,basic.9y,no,no,no,cellular,jul,wed,885,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+50,retired,married,basic.4y,no,no,no,cellular,jul,wed,1222,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+31,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,wed,520,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+50,retired,married,basic.4y,no,yes,no,cellular,jul,wed,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,jul,wed,156,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,325,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+50,retired,married,basic.4y,no,unknown,unknown,cellular,jul,wed,236,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+52,admin.,married,high.school,no,yes,no,cellular,jul,wed,419,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+42,technician,married,high.school,unknown,yes,no,cellular,jul,wed,197,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+47,technician,divorced,professional.course,no,yes,no,cellular,jul,wed,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+55,housemaid,married,university.degree,no,yes,no,cellular,jul,wed,705,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,admin.,married,university.degree,no,yes,no,telephone,jul,wed,649,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+23,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,231,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,513,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,technician,married,professional.course,no,yes,no,cellular,jul,wed,87,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+55,housemaid,married,university.degree,no,no,no,cellular,jul,wed,988,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+21,admin.,single,high.school,no,yes,no,cellular,jul,wed,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+21,admin.,single,high.school,no,yes,no,cellular,jul,wed,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,admin.,married,high.school,unknown,no,no,cellular,jul,wed,241,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+46,blue-collar,single,basic.4y,unknown,yes,no,telephone,jul,wed,558,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+28,services,married,high.school,no,yes,yes,cellular,jul,wed,177,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+21,admin.,single,high.school,no,yes,no,cellular,jul,wed,680,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,admin.,single,high.school,no,yes,yes,cellular,jul,wed,652,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+28,services,married,high.school,no,yes,no,cellular,jul,wed,350,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+58,retired,married,high.school,no,yes,no,cellular,jul,wed,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+28,services,married,high.school,no,no,no,cellular,jul,wed,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,management,single,basic.4y,unknown,yes,no,cellular,jul,wed,592,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+39,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,wed,165,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+25,services,married,basic.9y,no,no,no,cellular,jul,wed,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+27,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,68,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,technician,married,basic.9y,unknown,yes,no,telephone,jul,wed,367,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+25,management,married,basic.6y,no,no,no,cellular,jul,wed,192,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+27,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+25,services,divorced,high.school,no,yes,no,cellular,jul,wed,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,547,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,1019,11,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+43,blue-collar,single,basic.6y,no,no,no,cellular,jul,wed,93,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,technician,married,high.school,no,no,no,cellular,jul,wed,332,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+52,admin.,married,high.school,no,no,no,cellular,jul,wed,131,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+48,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,wed,709,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+29,self-employed,married,basic.9y,unknown,yes,no,telephone,jul,wed,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+25,services,married,high.school,unknown,no,no,cellular,jul,wed,59,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+41,blue-collar,married,unknown,unknown,no,no,cellular,jul,wed,516,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+51,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,561,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+21,services,single,high.school,no,yes,no,telephone,jul,wed,198,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,services,married,high.school,unknown,yes,no,cellular,jul,wed,346,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,entrepreneur,married,professional.course,no,yes,no,cellular,jul,wed,157,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+40,services,married,high.school,no,yes,no,cellular,jul,wed,254,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,blue-collar,single,basic.6y,no,yes,no,cellular,jul,wed,199,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,wed,171,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,jul,wed,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+24,technician,single,professional.course,no,no,no,cellular,jul,wed,98,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+59,retired,married,university.degree,unknown,yes,yes,cellular,jul,wed,87,16,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+38,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,217,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+27,housemaid,single,high.school,no,no,no,cellular,jul,wed,293,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,blue-collar,married,professional.course,no,no,no,cellular,jul,wed,378,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,single,university.degree,no,no,no,telephone,jul,wed,129,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,blue-collar,divorced,unknown,unknown,no,no,cellular,jul,wed,132,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+28,services,married,high.school,no,no,no,cellular,jul,wed,240,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+45,unemployed,married,basic.6y,unknown,no,no,cellular,jul,wed,91,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,admin.,single,basic.9y,no,no,no,cellular,jul,wed,1432,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,technician,single,professional.course,unknown,no,no,telephone,jul,wed,87,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,services,married,high.school,unknown,no,no,cellular,jul,wed,111,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+55,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,141,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,technician,married,high.school,no,no,no,cellular,jul,wed,322,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,blue-collar,single,basic.6y,no,unknown,unknown,cellular,jul,wed,254,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,jul,wed,455,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,wed,285,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+51,admin.,married,high.school,no,yes,no,cellular,jul,wed,69,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+47,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,wed,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,blue-collar,married,basic.6y,no,yes,yes,cellular,jul,wed,1018,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+35,blue-collar,single,high.school,unknown,yes,no,cellular,jul,wed,60,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,admin.,single,university.degree,unknown,no,no,cellular,jul,wed,212,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,technician,single,professional.course,no,yes,no,cellular,jul,wed,173,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+36,management,single,university.degree,no,no,no,cellular,jul,wed,101,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,technician,married,basic.9y,no,no,no,cellular,jul,wed,110,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,technician,divorced,high.school,no,yes,no,cellular,jul,wed,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,student,married,basic.9y,no,no,no,cellular,jul,wed,156,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+58,admin.,divorced,basic.9y,no,no,no,telephone,jul,wed,231,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+38,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,406,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,blue-collar,divorced,unknown,unknown,no,no,cellular,jul,wed,255,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,entrepreneur,divorced,high.school,unknown,yes,no,cellular,jul,wed,538,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+44,admin.,divorced,university.degree,no,no,no,cellular,jul,wed,191,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+23,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,240,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+36,management,single,university.degree,no,yes,no,cellular,jul,wed,118,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+47,technician,married,unknown,unknown,yes,no,cellular,jul,wed,239,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,jul,wed,164,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,single,university.degree,no,yes,no,telephone,jul,wed,73,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+28,blue-collar,single,basic.9y,unknown,no,yes,cellular,jul,wed,278,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+42,technician,married,high.school,unknown,no,no,cellular,jul,wed,252,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,jul,wed,77,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,wed,345,10,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+40,admin.,single,high.school,no,no,no,cellular,jul,wed,282,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,technician,single,professional.course,unknown,yes,no,telephone,jul,wed,39,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,management,married,basic.6y,no,no,no,cellular,jul,wed,169,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,admin.,married,university.degree,no,no,no,cellular,jul,wed,781,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+27,admin.,married,high.school,no,yes,no,telephone,jul,wed,202,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,technician,single,university.degree,no,no,yes,telephone,jul,wed,357,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,technician,single,university.degree,no,no,no,cellular,jul,wed,159,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,technician,married,high.school,no,no,no,cellular,jul,wed,1389,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+41,blue-collar,single,basic.6y,no,yes,no,cellular,jul,wed,1056,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,single,university.degree,no,yes,yes,cellular,jul,wed,166,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,technician,single,professional.course,no,no,yes,cellular,jul,wed,168,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,admin.,single,university.degree,no,no,no,cellular,jul,wed,212,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+46,management,divorced,basic.4y,no,no,no,telephone,jul,wed,201,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+28,services,married,basic.9y,no,no,no,cellular,jul,wed,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,technician,married,high.school,no,yes,no,cellular,jul,wed,1339,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,admin.,single,university.degree,no,yes,no,telephone,jul,wed,30,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+24,management,married,basic.9y,no,no,no,telephone,jul,wed,127,11,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,married,university.degree,no,no,no,cellular,jul,wed,319,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+38,management,single,university.degree,no,no,no,telephone,jul,wed,284,8,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,technician,married,basic.9y,no,no,yes,telephone,jul,wed,264,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,services,married,basic.9y,no,no,yes,cellular,jul,wed,204,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+23,blue-collar,single,unknown,unknown,no,no,cellular,jul,wed,1473,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+24,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,255,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+55,admin.,single,high.school,no,no,yes,cellular,jul,wed,108,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,entrepreneur,divorced,high.school,unknown,no,no,cellular,jul,wed,524,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,26,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,jul,wed,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,admin.,single,university.degree,no,yes,yes,cellular,jul,wed,613,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,married,university.degree,no,no,no,cellular,jul,wed,268,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+44,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,605,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,technician,divorced,professional.course,no,no,no,cellular,jul,thu,93,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,admin.,single,high.school,no,no,no,cellular,jul,thu,98,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+33,services,single,high.school,no,yes,no,cellular,jul,thu,63,11,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+49,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,jul,thu,128,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,admin.,single,basic.9y,no,no,no,cellular,jul,thu,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+33,management,married,university.degree,no,no,no,cellular,jul,thu,66,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+23,retired,single,professional.course,no,yes,no,cellular,jul,thu,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+30,technician,married,high.school,no,no,no,cellular,jul,thu,199,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+52,technician,married,professional.course,no,yes,no,telephone,jul,thu,293,20,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+36,management,married,university.degree,no,no,yes,cellular,jul,thu,59,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,admin.,single,basic.9y,no,no,no,cellular,jul,thu,330,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,admin.,single,high.school,no,yes,no,telephone,jul,thu,209,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+36,admin.,divorced,university.degree,no,yes,no,cellular,jul,thu,59,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,159,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+28,self-employed,single,high.school,no,no,no,cellular,jul,thu,63,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+25,admin.,married,high.school,no,no,no,cellular,jul,thu,298,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+37,blue-collar,married,high.school,unknown,no,no,cellular,jul,thu,413,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,53,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+40,management,single,university.degree,no,no,no,cellular,jul,thu,309,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,jul,thu,257,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,jul,thu,36,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,55,14,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+30,admin.,married,basic.6y,no,yes,yes,cellular,jul,thu,53,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+39,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,student,single,university.degree,unknown,yes,no,cellular,jul,thu,20,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+37,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,117,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+28,admin.,single,high.school,no,yes,no,cellular,jul,thu,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+26,technician,single,university.degree,no,yes,no,cellular,jul,thu,261,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+36,blue-collar,married,basic.6y,no,no,no,cellular,jul,thu,201,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+34,entrepreneur,married,professional.course,no,yes,no,cellular,jul,thu,109,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+30,admin.,married,basic.6y,no,yes,no,cellular,jul,thu,397,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+38,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,69,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+36,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,thu,264,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+29,admin.,married,high.school,no,no,no,cellular,jul,thu,48,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+44,technician,single,professional.course,no,yes,no,cellular,jul,thu,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+28,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,72,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+34,entrepreneur,married,professional.course,no,yes,no,cellular,jul,thu,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+41,technician,married,professional.course,no,yes,yes,cellular,jul,thu,539,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,317,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,services,single,high.school,no,no,no,cellular,jul,thu,1150,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+25,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+26,services,single,high.school,no,no,yes,cellular,jul,thu,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+42,services,married,high.school,no,yes,yes,cellular,jul,thu,302,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+44,technician,single,professional.course,no,yes,yes,cellular,jul,thu,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+47,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,thu,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+25,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,235,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+35,entrepreneur,single,university.degree,no,no,no,cellular,jul,thu,196,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+35,unemployed,married,high.school,no,no,yes,telephone,jul,thu,84,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+26,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+31,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,thu,151,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+54,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+25,blue-collar,married,basic.4y,no,no,yes,cellular,jul,thu,521,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,181,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+35,self-employed,married,university.degree,no,yes,no,cellular,jul,thu,50,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+55,housemaid,divorced,unknown,unknown,yes,no,cellular,jul,thu,80,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+26,technician,divorced,unknown,unknown,no,no,cellular,jul,thu,187,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+40,services,married,basic.9y,no,yes,no,cellular,jul,thu,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+49,services,single,high.school,no,yes,yes,cellular,jul,thu,205,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+49,self-employed,married,university.degree,no,no,no,cellular,jul,thu,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+40,services,married,basic.9y,no,no,no,cellular,jul,thu,228,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,services,single,high.school,no,no,no,cellular,jul,thu,20,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+35,self-employed,married,university.degree,no,yes,no,cellular,jul,thu,628,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+35,blue-collar,single,high.school,unknown,no,no,cellular,jul,thu,117,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,418,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+48,admin.,married,high.school,unknown,yes,yes,cellular,jul,thu,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+28,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,302,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+30,blue-collar,single,basic.9y,no,yes,no,telephone,jul,thu,17,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+45,services,married,basic.9y,no,no,no,cellular,jul,thu,50,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+44,admin.,married,university.degree,no,no,no,cellular,jul,thu,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,jul,thu,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+29,admin.,single,university.degree,no,yes,yes,cellular,jul,thu,258,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,admin.,married,university.degree,no,no,no,cellular,jul,thu,45,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+45,admin.,single,university.degree,no,yes,no,cellular,jul,thu,544,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+49,technician,divorced,high.school,no,no,no,cellular,jul,thu,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+31,services,single,basic.9y,no,yes,no,cellular,jul,thu,753,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+43,blue-collar,single,basic.6y,no,yes,no,cellular,jul,thu,391,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+49,services,single,high.school,no,yes,no,cellular,jul,thu,72,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+31,student,single,university.degree,no,no,no,cellular,jul,thu,84,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,jul,thu,686,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+31,student,single,university.degree,no,yes,no,cellular,jul,thu,277,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+49,technician,divorced,high.school,no,yes,no,cellular,jul,thu,388,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+31,student,single,university.degree,no,yes,no,cellular,jul,thu,324,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,295,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,284,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+47,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,thu,504,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+49,technician,divorced,high.school,no,yes,no,cellular,jul,thu,1171,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,thu,430,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+43,technician,single,university.degree,no,yes,no,cellular,jul,thu,201,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+43,technician,married,basic.9y,no,yes,no,cellular,jul,thu,50,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+26,technician,single,high.school,no,no,no,cellular,jul,thu,224,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+43,technician,single,university.degree,no,yes,no,cellular,jul,thu,272,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+49,self-employed,married,basic.9y,unknown,yes,no,cellular,jul,thu,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+31,self-employed,divorced,university.degree,no,unknown,unknown,cellular,jul,thu,262,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+49,admin.,single,university.degree,no,yes,no,telephone,jul,thu,344,10,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,818,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+43,technician,single,university.degree,no,yes,no,cellular,jul,thu,534,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+52,technician,married,professional.course,no,yes,no,cellular,jul,thu,402,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,technician,single,basic.6y,no,yes,no,cellular,jul,thu,127,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+37,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,87,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,324,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+42,entrepreneur,married,basic.4y,unknown,yes,no,cellular,jul,thu,287,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,284,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+30,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,67,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+41,entrepreneur,married,professional.course,no,yes,no,cellular,jul,thu,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+33,management,single,basic.9y,no,yes,no,cellular,jul,thu,234,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+34,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,54,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,59,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+49,admin.,single,university.degree,no,yes,no,telephone,jul,thu,167,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,blue-collar,married,unknown,unknown,yes,no,cellular,jul,thu,58,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+33,management,single,basic.9y,no,yes,no,cellular,jul,thu,509,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+30,unemployed,married,professional.course,no,unknown,unknown,cellular,jul,thu,156,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,200,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+39,admin.,divorced,high.school,no,yes,yes,cellular,jul,thu,354,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,unemployed,single,university.degree,no,yes,no,cellular,jul,thu,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+34,technician,single,professional.course,no,no,no,cellular,jul,thu,28,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,blue-collar,married,unknown,unknown,yes,no,cellular,jul,thu,224,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+42,housemaid,married,basic.9y,no,yes,no,cellular,jul,thu,410,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+34,technician,single,professional.course,no,yes,no,cellular,jul,thu,109,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,1275,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+30,entrepreneur,single,university.degree,no,yes,no,cellular,jul,thu,11,12,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,1183,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+25,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,692,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+58,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,thu,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+31,admin.,single,university.degree,no,yes,yes,cellular,jul,thu,120,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+47,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,136,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,118,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+29,admin.,single,university.degree,no,yes,no,telephone,jul,thu,109,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+59,retired,single,high.school,no,yes,no,cellular,jul,thu,143,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,admin.,single,high.school,unknown,unknown,unknown,cellular,jul,thu,84,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,admin.,single,high.school,unknown,yes,no,telephone,jul,thu,15,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+30,technician,married,basic.9y,no,no,yes,cellular,jul,thu,536,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+35,admin.,married,high.school,no,no,no,cellular,jul,thu,490,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,282,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+25,blue-collar,married,basic.4y,no,no,yes,telephone,jul,thu,1008,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+24,admin.,single,high.school,unknown,yes,yes,cellular,jul,thu,493,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,421,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,jul,thu,80,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+29,unemployed,married,university.degree,no,yes,no,cellular,jul,thu,202,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+42,housemaid,married,basic.9y,no,yes,yes,cellular,jul,thu,301,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+39,housemaid,divorced,basic.9y,no,yes,no,cellular,jul,thu,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+29,unemployed,married,university.degree,no,no,no,cellular,jul,thu,509,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+23,management,single,university.degree,no,no,yes,cellular,jul,thu,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+23,management,single,university.degree,no,yes,no,cellular,jul,thu,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,unemployed,single,university.degree,no,yes,yes,cellular,jul,thu,538,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+41,entrepreneur,divorced,basic.9y,no,yes,yes,cellular,jul,thu,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+41,entrepreneur,divorced,basic.9y,no,yes,no,cellular,jul,thu,179,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+34,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,thu,195,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+38,management,married,university.degree,no,yes,yes,cellular,jul,thu,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+23,management,single,university.degree,no,no,no,cellular,jul,thu,795,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+35,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,225,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+39,housemaid,divorced,basic.9y,no,no,no,cellular,jul,thu,926,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+41,entrepreneur,divorced,basic.9y,no,yes,yes,cellular,jul,thu,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+58,retired,married,high.school,no,no,no,cellular,jul,thu,119,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+58,retired,married,high.school,no,yes,no,cellular,jul,thu,232,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+58,retired,married,high.school,no,yes,no,cellular,jul,thu,245,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+33,technician,divorced,university.degree,no,yes,yes,cellular,jul,thu,260,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+34,admin.,unknown,university.degree,no,yes,no,cellular,jul,thu,243,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,470,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+35,self-employed,married,university.degree,no,no,no,cellular,jul,thu,109,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,student,single,university.degree,no,yes,no,cellular,jul,thu,172,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,student,single,university.degree,no,unknown,unknown,cellular,jul,thu,312,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,student,single,university.degree,no,yes,no,cellular,jul,thu,393,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+49,admin.,married,high.school,unknown,yes,no,cellular,jul,thu,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+45,services,married,basic.9y,unknown,yes,no,cellular,jul,thu,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,admin.,single,high.school,no,yes,no,cellular,jul,thu,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+45,services,married,basic.9y,unknown,yes,yes,cellular,jul,thu,270,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,jul,thu,79,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,blue-collar,married,basic.9y,no,no,yes,cellular,jul,thu,655,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+49,technician,divorced,high.school,no,no,no,cellular,jul,thu,123,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+45,services,married,basic.9y,unknown,no,yes,cellular,jul,thu,479,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,jul,thu,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+54,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+33,services,divorced,high.school,no,no,no,cellular,jul,thu,654,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,student,single,university.degree,no,yes,no,cellular,jul,thu,747,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+29,technician,married,high.school,unknown,no,no,cellular,jul,thu,321,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+36,technician,single,professional.course,no,no,no,cellular,jul,thu,54,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+25,technician,single,professional.course,no,yes,no,cellular,jul,thu,312,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,admin.,single,university.degree,no,no,yes,cellular,jul,thu,1027,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+32,self-employed,single,university.degree,no,yes,no,cellular,jul,thu,630,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,services,single,high.school,no,no,no,cellular,jul,thu,360,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,entrepreneur,married,basic.4y,unknown,no,no,cellular,jul,thu,180,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+26,admin.,single,university.degree,no,yes,yes,cellular,jul,thu,22,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+26,admin.,single,university.degree,no,no,no,cellular,jul,thu,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+43,services,married,high.school,no,no,no,cellular,jul,thu,345,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+33,technician,single,professional.course,unknown,yes,no,cellular,jul,thu,506,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+39,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,388,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+43,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,377,11,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,technician,married,professional.course,no,no,no,cellular,jul,thu,683,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+23,services,single,high.school,no,no,no,cellular,jul,thu,796,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,blue-collar,single,basic.4y,unknown,yes,no,telephone,jul,thu,381,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+23,management,single,university.degree,no,yes,yes,cellular,jul,thu,804,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+33,services,single,high.school,no,yes,no,cellular,jul,thu,127,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+30,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,18,11,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+41,blue-collar,divorced,high.school,no,yes,no,cellular,jul,thu,168,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+26,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,263,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+25,blue-collar,married,basic.4y,no,yes,yes,cellular,jul,thu,309,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+40,housemaid,divorced,high.school,unknown,yes,yes,cellular,jul,thu,43,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+29,admin.,single,basic.9y,no,no,no,cellular,jul,thu,504,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+29,blue-collar,single,high.school,no,no,no,cellular,jul,thu,353,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+57,entrepreneur,married,unknown,unknown,no,no,cellular,jul,thu,384,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+29,unemployed,married,university.degree,no,unknown,unknown,cellular,jul,thu,177,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,technician,single,basic.6y,no,yes,yes,cellular,jul,thu,18,8,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,334,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+26,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,275,17,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,technician,single,basic.6y,no,yes,no,cellular,jul,thu,378,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,management,divorced,university.degree,unknown,yes,no,cellular,jul,thu,489,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+35,technician,married,professional.course,no,yes,yes,cellular,jul,thu,54,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+56,admin.,divorced,basic.6y,no,no,yes,cellular,jul,thu,174,8,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+42,entrepreneur,married,basic.4y,unknown,yes,no,telephone,jul,thu,485,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+23,management,single,university.degree,no,no,no,cellular,jul,thu,1584,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+25,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,420,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+26,housemaid,married,basic.4y,no,no,no,cellular,jul,thu,62,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+49,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,thu,626,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+29,unemployed,married,university.degree,no,yes,no,cellular,jul,thu,104,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+26,housemaid,married,basic.4y,no,no,no,cellular,jul,thu,695,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+55,housemaid,divorced,unknown,unknown,no,no,cellular,jul,thu,139,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+29,admin.,single,university.degree,no,no,yes,cellular,jul,thu,582,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+24,technician,single,basic.6y,no,yes,no,telephone,jul,thu,1448,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+23,management,single,university.degree,no,no,no,cellular,jul,thu,271,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+26,housemaid,married,basic.4y,no,yes,no,cellular,jul,thu,1151,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+40,housemaid,divorced,high.school,unknown,no,yes,telephone,jul,thu,265,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+28,admin.,single,basic.9y,unknown,no,no,telephone,jul,thu,171,8,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+26,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,120,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+28,services,single,basic.9y,no,yes,no,cellular,jul,thu,277,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+31,self-employed,unknown,professional.course,no,no,yes,cellular,jul,thu,383,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+31,services,single,high.school,no,no,no,cellular,jul,thu,186,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+25,admin.,single,university.degree,no,yes,no,cellular,jul,thu,271,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+52,blue-collar,divorced,basic.4y,unknown,no,no,cellular,jul,thu,160,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+35,technician,married,professional.course,no,no,yes,cellular,jul,thu,207,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+35,admin.,divorced,high.school,no,yes,no,telephone,jul,thu,197,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+34,technician,single,university.degree,no,yes,no,telephone,jul,thu,202,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,656,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+33,management,married,university.degree,no,yes,yes,cellular,jul,thu,1390,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+28,blue-collar,single,unknown,no,no,no,cellular,jul,thu,637,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+49,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,jul,thu,188,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,admin.,divorced,university.degree,no,yes,no,cellular,jul,thu,231,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+29,unemployed,married,university.degree,no,yes,no,cellular,jul,thu,738,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+31,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,thu,551,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+28,blue-collar,single,unknown,no,yes,no,cellular,jul,thu,25,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+56,admin.,divorced,basic.6y,no,no,no,cellular,jul,thu,614,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+28,blue-collar,single,unknown,no,no,no,cellular,jul,thu,437,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+31,technician,married,basic.9y,no,no,yes,cellular,jul,thu,1319,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+27,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,606,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,entrepreneur,married,basic.4y,unknown,no,no,cellular,jul,thu,235,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,services,single,basic.9y,unknown,yes,no,cellular,jul,thu,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+25,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,thu,201,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+31,self-employed,divorced,university.degree,no,yes,no,cellular,jul,thu,275,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,268,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+39,admin.,married,high.school,unknown,no,no,cellular,jul,thu,210,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+29,unemployed,married,university.degree,no,no,no,cellular,jul,thu,275,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,538,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+44,blue-collar,married,basic.6y,unknown,no,no,telephone,jul,thu,304,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+37,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,147,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,84,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,blue-collar,married,unknown,unknown,yes,no,cellular,jul,thu,125,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+43,admin.,married,basic.9y,unknown,no,no,cellular,jul,thu,294,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+25,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,59,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+48,admin.,married,high.school,unknown,yes,no,cellular,jul,thu,182,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+41,technician,married,professional.course,no,yes,no,cellular,jul,thu,410,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,blue-collar,married,basic.6y,no,yes,no,cellular,jul,thu,209,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,technician,single,professional.course,no,no,no,cellular,jul,thu,234,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+33,blue-collar,single,basic.9y,no,yes,no,telephone,jul,thu,124,8,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+46,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,111,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+35,unknown,single,high.school,unknown,yes,no,cellular,jul,thu,277,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,blue-collar,married,unknown,unknown,yes,no,cellular,jul,thu,80,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,blue-collar,married,unknown,unknown,yes,no,cellular,jul,thu,222,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,admin.,single,high.school,no,no,no,cellular,jul,thu,147,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,jul,thu,278,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+25,admin.,single,university.degree,no,yes,no,cellular,jul,thu,174,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+35,self-employed,married,university.degree,no,no,no,cellular,jul,thu,1175,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+35,blue-collar,married,basic.9y,no,no,no,telephone,jul,thu,46,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,blue-collar,divorced,unknown,no,no,no,cellular,jul,thu,536,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+59,retired,single,high.school,no,no,no,cellular,jul,thu,257,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+37,blue-collar,single,basic.4y,no,no,yes,cellular,jul,thu,728,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,jul,thu,1018,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,291,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,management,single,university.degree,no,no,no,cellular,jul,thu,654,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+45,admin.,divorced,university.degree,no,yes,no,cellular,jul,thu,1673,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+44,technician,single,professional.course,no,no,no,cellular,jul,thu,330,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+42,entrepreneur,married,basic.4y,unknown,yes,no,cellular,jul,thu,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+42,self-employed,single,professional.course,no,yes,no,telephone,jul,thu,171,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,technician,single,basic.6y,no,yes,no,telephone,jul,thu,248,9,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,jul,thu,170,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+44,technician,single,professional.course,no,yes,no,cellular,jul,thu,408,11,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+25,services,single,basic.6y,unknown,yes,no,cellular,jul,thu,301,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+25,services,single,basic.6y,unknown,no,no,cellular,jul,thu,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+23,technician,married,professional.course,no,no,no,cellular,jul,thu,81,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+57,technician,married,basic.9y,unknown,yes,yes,cellular,jul,thu,155,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+26,services,single,high.school,no,no,no,cellular,jul,thu,770,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+52,technician,married,professional.course,no,yes,no,cellular,jul,thu,57,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,admin.,single,basic.9y,no,yes,no,cellular,jul,thu,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+26,admin.,married,high.school,no,no,no,cellular,jul,thu,991,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+28,blue-collar,single,unknown,no,no,no,cellular,jul,thu,82,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+30,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,903,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+28,blue-collar,single,basic.9y,no,no,no,telephone,jul,thu,610,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,entrepreneur,married,basic.4y,unknown,yes,no,cellular,jul,thu,175,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,jul,thu,122,17,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+49,technician,divorced,high.school,no,yes,no,cellular,jul,thu,395,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+38,entrepreneur,married,basic.6y,unknown,no,no,telephone,jul,thu,517,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+38,services,divorced,high.school,no,yes,no,cellular,jul,thu,444,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,technician,single,basic.6y,no,no,no,telephone,jul,thu,207,10,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+36,technician,single,professional.course,no,yes,no,cellular,jul,thu,230,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+36,admin.,married,university.degree,unknown,no,no,cellular,jul,thu,674,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+48,unemployed,married,basic.4y,unknown,yes,no,cellular,jul,thu,172,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+35,unemployed,divorced,basic.9y,no,no,no,cellular,jul,thu,169,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,admin.,single,high.school,unknown,no,no,cellular,jul,thu,320,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+46,admin.,single,university.degree,unknown,yes,no,cellular,jul,thu,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+46,admin.,single,university.degree,unknown,yes,no,cellular,jul,thu,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,jul,thu,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+29,blue-collar,single,professional.course,no,no,no,cellular,jul,thu,43,8,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+50,technician,married,professional.course,no,yes,no,cellular,jul,thu,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+31,self-employed,unknown,professional.course,no,no,no,cellular,jul,thu,505,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+49,admin.,divorced,high.school,no,no,no,telephone,jul,thu,27,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+37,admin.,single,university.degree,no,no,no,cellular,jul,thu,546,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+30,technician,single,university.degree,no,yes,no,cellular,jul,thu,91,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+24,technician,single,basic.6y,no,no,no,cellular,jul,thu,75,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+42,services,married,high.school,no,no,no,cellular,jul,thu,1153,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes
+49,admin.,divorced,high.school,no,no,no,cellular,jul,thu,602,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+32,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,740,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+27,blue-collar,divorced,unknown,no,no,no,cellular,jul,thu,193,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+28,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+52,housemaid,single,university.degree,no,no,no,cellular,jul,thu,188,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+57,admin.,married,high.school,no,no,no,telephone,jul,thu,487,9,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+39,admin.,married,high.school,unknown,no,yes,cellular,jul,thu,134,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+25,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,735,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no
+25,services,single,high.school,no,yes,no,cellular,jul,fri,172,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+41,blue-collar,married,basic.4y,no,yes,no,cellular,jul,fri,138,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+22,admin.,single,high.school,no,yes,no,cellular,jul,fri,64,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+32,services,married,high.school,no,no,yes,cellular,jul,fri,157,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+32,services,single,high.school,no,no,no,cellular,jul,fri,185,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+53,services,divorced,basic.9y,no,yes,no,cellular,jul,fri,121,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,single,high.school,no,no,yes,telephone,jul,fri,21,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,156,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,technician,married,professional.course,no,yes,no,cellular,jul,fri,74,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+32,services,married,high.school,no,yes,no,cellular,jul,fri,302,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,services,married,high.school,no,no,no,cellular,jul,fri,95,8,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+22,blue-collar,single,basic.6y,no,no,no,cellular,jul,fri,100,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+32,self-employed,married,university.degree,unknown,no,no,cellular,jul,fri,172,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+41,blue-collar,married,basic.4y,no,no,no,cellular,jul,fri,623,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+37,technician,married,professional.course,no,no,yes,cellular,jul,fri,674,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+39,housemaid,married,basic.6y,no,yes,no,cellular,jul,fri,76,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,fri,1081,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+39,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,113,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,management,married,university.degree,no,no,yes,cellular,jul,fri,69,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,fri,50,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,technician,single,university.degree,no,no,no,telephone,jul,fri,455,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+46,admin.,single,university.degree,no,no,no,cellular,jul,fri,142,10,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+47,technician,married,professional.course,no,yes,no,cellular,jul,fri,165,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+53,management,married,high.school,no,no,no,cellular,jul,fri,91,10,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+38,entrepreneur,married,basic.9y,no,yes,no,telephone,jul,fri,53,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+42,entrepreneur,married,university.degree,unknown,no,no,cellular,jul,fri,400,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,self-employed,single,university.degree,no,yes,no,cellular,jul,fri,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+51,housemaid,married,high.school,unknown,yes,yes,cellular,jul,fri,454,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,single,high.school,no,yes,yes,cellular,jul,fri,67,11,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+53,services,divorced,basic.9y,no,no,no,cellular,jul,fri,127,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+46,admin.,married,university.degree,unknown,no,no,cellular,jul,fri,178,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+48,admin.,married,high.school,no,no,no,cellular,jul,fri,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+38,technician,single,professional.course,no,no,no,cellular,jul,fri,59,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,admin.,single,high.school,no,no,yes,cellular,jul,fri,287,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,technician,single,university.degree,no,no,no,cellular,jul,fri,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,technician,married,professional.course,no,yes,yes,cellular,jul,fri,292,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+42,admin.,single,university.degree,unknown,yes,yes,cellular,jul,fri,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+40,services,divorced,basic.9y,no,yes,no,cellular,jul,fri,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+27,admin.,married,university.degree,no,no,no,cellular,jul,fri,146,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+28,technician,married,basic.9y,no,yes,no,cellular,jul,fri,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+28,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,103,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+57,blue-collar,married,high.school,unknown,no,no,cellular,jul,fri,558,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+57,blue-collar,married,high.school,unknown,yes,no,cellular,jul,fri,572,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+27,admin.,married,university.degree,no,yes,no,cellular,jul,fri,494,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+35,admin.,single,university.degree,no,no,no,cellular,jul,fri,14,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,admin.,married,high.school,no,no,yes,cellular,jul,fri,354,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,jul,fri,91,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+42,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,fri,304,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,jul,fri,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+36,admin.,married,high.school,no,unknown,unknown,cellular,jul,fri,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,admin.,single,basic.9y,no,no,no,cellular,jul,fri,978,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+32,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,fri,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+32,blue-collar,single,basic.9y,unknown,unknown,unknown,cellular,jul,fri,240,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+32,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,fri,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,jul,fri,536,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+32,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,fri,316,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+32,services,married,high.school,no,yes,no,cellular,jul,fri,91,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+27,admin.,single,university.degree,no,no,no,cellular,jul,fri,149,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,management,single,university.degree,no,yes,no,cellular,jul,fri,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,management,single,basic.9y,no,yes,no,telephone,jul,fri,11,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,222,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,management,single,basic.9y,no,yes,no,cellular,jul,fri,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+52,retired,married,basic.4y,unknown,yes,no,cellular,jul,fri,412,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+56,admin.,married,university.degree,no,yes,yes,cellular,jul,fri,383,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+27,admin.,single,high.school,no,yes,no,telephone,jul,fri,41,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,single,high.school,no,no,no,cellular,jul,fri,567,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+31,technician,single,university.degree,no,yes,no,cellular,jul,fri,800,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,jul,fri,84,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+39,self-employed,married,university.degree,no,no,no,cellular,jul,fri,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,blue-collar,single,high.school,no,yes,no,cellular,jul,fri,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,technician,single,high.school,no,no,no,cellular,jul,fri,33,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,entrepreneur,single,professional.course,no,no,no,cellular,jul,fri,274,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,technician,married,university.degree,no,yes,no,cellular,jul,fri,116,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+27,services,single,high.school,no,yes,no,cellular,jul,fri,71,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,management,single,basic.9y,no,no,yes,cellular,jul,fri,968,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+43,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,377,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+46,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+46,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,225,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+46,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,277,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,technician,single,professional.course,no,yes,no,cellular,jul,fri,274,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+25,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,467,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+36,admin.,married,professional.course,no,no,no,cellular,jul,fri,262,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,fri,474,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+33,admin.,single,high.school,no,no,no,cellular,jul,fri,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,technician,married,high.school,no,yes,no,cellular,jul,fri,110,10,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+53,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jul,fri,131,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,blue-collar,single,high.school,no,yes,no,cellular,jul,fri,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,blue-collar,single,high.school,no,no,no,cellular,jul,fri,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+50,self-employed,married,basic.9y,no,no,no,cellular,jul,fri,411,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,admin.,single,high.school,no,yes,no,cellular,jul,fri,516,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+31,admin.,married,university.degree,no,no,no,cellular,jul,fri,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+25,services,married,high.school,no,yes,no,cellular,jul,fri,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+45,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,jul,fri,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+24,blue-collar,single,high.school,no,yes,no,cellular,jul,fri,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,services,divorced,high.school,unknown,yes,no,cellular,jul,fri,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+24,blue-collar,single,high.school,no,no,no,cellular,jul,fri,482,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+56,admin.,married,university.degree,no,no,yes,cellular,jul,fri,569,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,unemployed,divorced,high.school,no,no,no,cellular,jul,fri,167,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+28,services,divorced,high.school,unknown,no,yes,cellular,jul,fri,278,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+54,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,94,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,technician,single,unknown,no,unknown,unknown,cellular,jul,fri,177,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+27,services,married,high.school,no,yes,no,cellular,jul,fri,110,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,fri,383,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+38,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,286,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+22,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+38,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,610,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+37,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,223,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,jul,fri,313,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+56,admin.,married,university.degree,no,unknown,unknown,cellular,jul,fri,41,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,admin.,single,high.school,no,yes,no,cellular,jul,fri,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,services,single,university.degree,no,no,no,cellular,jul,fri,116,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+50,services,married,high.school,no,yes,no,cellular,jul,fri,60,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+56,admin.,married,university.degree,no,yes,no,cellular,jul,fri,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+41,self-employed,married,basic.9y,unknown,no,no,cellular,jul,fri,119,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+44,services,divorced,high.school,no,no,no,cellular,jul,fri,238,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,services,single,university.degree,no,yes,no,cellular,jul,fri,337,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+57,retired,single,university.degree,no,yes,no,cellular,jul,fri,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,services,single,high.school,unknown,yes,yes,telephone,jul,fri,11,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,jul,fri,174,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,fri,63,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,jul,fri,483,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+38,services,married,high.school,no,yes,no,cellular,jul,fri,47,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,blue-collar,single,basic.4y,no,no,no,cellular,jul,fri,308,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,269,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,blue-collar,married,basic.6y,no,no,no,cellular,jul,fri,640,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+33,admin.,married,university.degree,no,no,no,cellular,jul,fri,384,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+28,management,single,university.degree,no,no,no,cellular,jul,fri,292,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+42,admin.,married,university.degree,no,no,no,cellular,jul,fri,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,jul,fri,287,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+57,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+22,blue-collar,single,basic.4y,unknown,yes,no,cellular,jul,fri,25,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,blue-collar,married,high.school,no,yes,no,cellular,jul,fri,159,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+57,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,302,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,fri,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,admin.,married,high.school,no,yes,no,cellular,jul,fri,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+46,admin.,single,university.degree,no,yes,no,cellular,jul,fri,439,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,unemployed,divorced,university.degree,no,yes,yes,cellular,jul,fri,133,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,blue-collar,married,basic.9y,no,no,yes,telephone,jul,fri,494,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+47,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,67,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,technician,married,professional.course,no,no,no,cellular,jul,fri,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+36,management,single,university.degree,no,yes,no,cellular,jul,fri,381,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+44,services,married,basic.4y,unknown,no,no,cellular,jul,fri,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,technician,married,professional.course,no,yes,no,cellular,jul,fri,354,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+45,housemaid,married,university.degree,unknown,yes,no,cellular,jul,fri,117,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+47,technician,divorced,professional.course,no,yes,no,cellular,jul,fri,239,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+32,services,single,professional.course,no,yes,no,cellular,jul,fri,671,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+45,admin.,divorced,university.degree,no,no,no,cellular,jul,fri,508,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+45,housemaid,divorced,basic.4y,unknown,no,no,cellular,jul,fri,420,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+44,entrepreneur,married,professional.course,no,no,no,cellular,jul,fri,56,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+25,entrepreneur,single,basic.9y,no,no,no,cellular,jul,fri,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+25,entrepreneur,single,basic.9y,no,yes,no,cellular,jul,fri,263,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,entrepreneur,married,basic.9y,unknown,yes,no,cellular,jul,fri,658,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+30,admin.,married,high.school,no,yes,no,cellular,jul,fri,362,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+46,blue-collar,married,basic.4y,no,yes,no,cellular,jul,fri,342,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+36,housemaid,divorced,basic.4y,unknown,no,no,cellular,jul,fri,300,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,207,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,unemployed,divorced,high.school,no,yes,no,cellular,jul,fri,115,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,services,divorced,basic.6y,unknown,yes,yes,cellular,jul,fri,112,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+51,services,married,basic.4y,no,yes,no,cellular,jul,fri,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,admin.,single,university.degree,no,yes,yes,cellular,jul,fri,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+50,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,95,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+25,services,single,high.school,no,yes,no,cellular,jul,fri,259,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+53,services,divorced,basic.9y,no,yes,no,cellular,jul,fri,503,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+45,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,jul,fri,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+45,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,jul,fri,328,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,technician,married,university.degree,no,no,no,cellular,jul,fri,187,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,admin.,single,high.school,no,no,no,cellular,jul,fri,140,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,services,divorced,basic.6y,unknown,no,no,telephone,jul,fri,744,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+57,retired,divorced,basic.4y,unknown,no,no,cellular,jul,fri,655,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+59,management,married,basic.9y,unknown,yes,no,cellular,jul,fri,142,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,technician,married,university.degree,no,no,no,cellular,jul,fri,642,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+32,blue-collar,single,basic.4y,no,yes,no,cellular,jul,fri,141,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+24,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,659,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+43,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,101,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+60,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,179,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+60,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,services,married,basic.9y,no,yes,no,cellular,jul,fri,169,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+46,admin.,single,university.degree,no,yes,no,telephone,jul,fri,199,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,technician,divorced,high.school,no,no,no,cellular,jul,fri,143,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+56,blue-collar,married,basic.4y,no,yes,no,cellular,jul,fri,641,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+25,admin.,single,university.degree,no,no,no,cellular,jul,fri,835,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,technician,single,university.degree,no,yes,no,telephone,jul,fri,54,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,management,single,university.degree,no,yes,no,cellular,jul,fri,415,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+42,admin.,married,university.degree,no,yes,no,cellular,jul,fri,146,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+52,admin.,married,high.school,unknown,yes,no,cellular,jul,fri,410,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,jul,fri,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,admin.,married,high.school,no,no,no,cellular,jul,fri,595,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,97,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+27,technician,single,basic.9y,unknown,no,no,cellular,jul,fri,171,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+53,self-employed,married,university.degree,unknown,no,no,telephone,jul,fri,239,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,technician,married,professional.course,no,yes,no,cellular,jul,fri,328,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+46,admin.,single,university.degree,no,no,no,cellular,jul,fri,852,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+34,admin.,single,high.school,no,yes,no,cellular,jul,fri,49,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,635,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+38,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,fri,215,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,services,single,high.school,unknown,yes,no,cellular,jul,fri,34,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+42,admin.,single,university.degree,unknown,yes,no,cellular,jul,fri,218,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+47,technician,married,professional.course,no,yes,no,cellular,jul,fri,352,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,management,single,basic.9y,no,no,no,cellular,jul,fri,652,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+46,management,divorced,university.degree,no,yes,no,cellular,jul,fri,317,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,entrepreneur,single,professional.course,no,yes,no,cellular,jul,fri,92,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+38,entrepreneur,married,basic.9y,no,no,no,cellular,jul,fri,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,blue-collar,married,high.school,no,no,no,cellular,jul,fri,297,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,admin.,married,high.school,unknown,no,no,cellular,jul,fri,225,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+47,admin.,single,university.degree,no,no,yes,telephone,jul,fri,183,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+20,student,single,university.degree,no,yes,no,cellular,jul,fri,1503,11,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,entrepreneur,married,basic.6y,no,yes,no,cellular,jul,fri,168,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+25,blue-collar,single,basic.6y,no,no,yes,cellular,jul,fri,1127,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+24,technician,single,professional.course,no,no,no,cellular,jul,fri,73,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+38,entrepreneur,married,basic.9y,no,no,yes,telephone,jul,fri,129,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+25,technician,single,university.degree,no,no,no,cellular,jul,fri,216,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+56,admin.,married,university.degree,no,no,no,telephone,jul,fri,55,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+41,admin.,single,university.degree,no,yes,no,cellular,jul,fri,706,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,technician,married,professional.course,no,yes,no,cellular,jul,fri,728,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,management,single,basic.9y,no,yes,yes,cellular,jul,fri,351,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,admin.,single,high.school,no,no,no,cellular,jul,fri,134,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,technician,single,university.degree,no,yes,no,cellular,jul,fri,127,10,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+49,technician,married,professional.course,no,yes,no,cellular,jul,fri,579,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+41,self-employed,married,basic.9y,unknown,yes,no,cellular,jul,fri,909,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+25,technician,single,high.school,no,no,no,cellular,jul,fri,96,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+39,blue-collar,single,basic.4y,unknown,yes,no,telephone,jul,fri,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,fri,100,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+45,housemaid,divorced,basic.4y,unknown,yes,no,cellular,jul,fri,183,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+47,admin.,married,high.school,unknown,yes,no,cellular,jul,fri,247,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+37,technician,married,professional.course,no,yes,no,cellular,jul,fri,252,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+44,self-employed,married,high.school,unknown,no,no,cellular,jul,fri,175,11,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,technician,married,high.school,no,yes,no,cellular,jul,fri,1360,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+36,blue-collar,married,basic.9y,no,no,yes,cellular,jul,fri,118,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+56,admin.,married,university.degree,no,no,no,cellular,jul,fri,139,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+36,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,464,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+41,self-employed,married,basic.9y,unknown,no,no,cellular,jul,fri,788,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,technician,married,professional.course,no,yes,no,cellular,jul,fri,570,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+38,services,married,high.school,no,no,no,cellular,jul,fri,905,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+60,admin.,divorced,high.school,no,no,no,cellular,jul,fri,30,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+51,retired,married,basic.9y,no,no,no,cellular,jul,fri,180,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+39,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,fri,541,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+44,services,married,basic.4y,unknown,no,yes,cellular,jul,fri,127,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+41,housemaid,married,high.school,no,yes,no,cellular,jul,fri,440,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+24,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+28,admin.,married,university.degree,no,yes,no,cellular,jul,fri,112,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,fri,300,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,services,single,university.degree,no,no,yes,cellular,jul,fri,409,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,married,basic.9y,no,yes,no,cellular,jul,fri,247,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+56,admin.,married,university.degree,no,yes,no,cellular,jul,fri,177,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,services,single,high.school,no,no,no,cellular,jul,fri,320,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+32,entrepreneur,single,university.degree,no,no,no,cellular,jul,fri,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,services,single,high.school,no,yes,no,telephone,jul,fri,200,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,technician,married,university.degree,no,yes,no,cellular,jul,fri,166,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+36,services,divorced,basic.4y,unknown,no,no,cellular,jul,fri,207,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+28,technician,single,university.degree,no,no,no,cellular,jul,fri,453,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+24,technician,single,unknown,no,no,no,cellular,jul,fri,126,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+43,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,379,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+36,housemaid,single,basic.4y,unknown,no,no,cellular,jul,fri,184,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,services,single,high.school,no,yes,no,cellular,jul,fri,37,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+24,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,191,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+25,services,single,unknown,no,no,no,telephone,jul,fri,662,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+28,admin.,single,unknown,no,yes,no,cellular,jul,fri,251,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,services,single,high.school,no,no,no,cellular,jul,fri,588,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+28,admin.,single,high.school,no,no,no,telephone,jul,fri,70,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,1373,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+53,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,93,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+21,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,127,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,entrepreneur,married,professional.course,no,no,no,cellular,jul,fri,462,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,jul,fri,305,10,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+41,self-employed,married,basic.9y,unknown,no,no,cellular,jul,fri,46,8,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+39,blue-collar,married,basic.9y,no,yes,yes,telephone,jul,fri,99,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,blue-collar,single,university.degree,no,no,no,cellular,jul,fri,35,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+53,technician,married,professional.course,unknown,yes,yes,cellular,jul,fri,264,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+38,entrepreneur,divorced,university.degree,no,yes,no,cellular,jul,fri,113,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,single,university.degree,unknown,yes,no,cellular,jul,fri,837,8,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,jul,fri,243,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+21,admin.,married,unknown,no,yes,no,cellular,jul,fri,528,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+29,admin.,single,university.degree,no,no,no,telephone,jul,fri,277,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+39,blue-collar,single,basic.4y,unknown,no,no,telephone,jul,fri,470,24,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+34,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,913,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+37,technician,married,professional.course,no,no,no,cellular,jul,fri,127,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+25,technician,married,professional.course,no,no,no,cellular,jul,fri,197,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+33,technician,married,professional.course,no,no,yes,cellular,jul,fri,414,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+22,student,single,high.school,no,no,yes,cellular,jul,fri,154,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,jul,fri,799,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+31,blue-collar,divorced,unknown,no,yes,no,cellular,jul,fri,320,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+31,blue-collar,divorced,unknown,no,yes,no,cellular,jul,fri,596,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+57,admin.,married,basic.9y,no,no,no,cellular,jul,fri,1139,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes
+51,blue-collar,married,basic.6y,no,yes,no,cellular,jul,fri,227,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+44,blue-collar,divorced,basic.6y,unknown,no,no,cellular,jul,fri,580,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no
+26,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,mon,82,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,mon,179,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,admin.,single,basic.9y,no,no,no,cellular,jul,mon,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,self-employed,single,university.degree,no,yes,no,cellular,jul,mon,212,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,technician,single,professional.course,no,no,no,telephone,jul,mon,280,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,management,married,university.degree,no,yes,no,cellular,jul,mon,124,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,technician,single,professional.course,no,yes,no,telephone,jul,mon,241,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,61,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,120,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,jul,mon,190,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,200,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,blue-collar,married,basic.9y,no,no,yes,cellular,jul,mon,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,technician,married,professional.course,no,yes,no,cellular,jul,mon,239,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,jul,mon,200,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,technician,single,university.degree,no,yes,no,cellular,jul,mon,463,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+54,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,144,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,blue-collar,married,high.school,no,yes,no,telephone,jul,mon,50,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,192,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,services,single,high.school,no,yes,no,cellular,jul,mon,75,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,mon,123,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,services,married,high.school,no,yes,no,cellular,jul,mon,93,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,admin.,married,high.school,no,no,no,cellular,jul,mon,999,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+26,services,married,high.school,no,yes,yes,cellular,jul,mon,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,services,single,high.school,no,yes,no,cellular,jul,mon,335,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,blue-collar,married,unknown,no,yes,no,cellular,jul,mon,43,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,housemaid,divorced,basic.9y,unknown,no,no,cellular,jul,mon,272,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,admin.,single,university.degree,no,yes,no,cellular,jul,mon,589,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+59,retired,married,basic.4y,unknown,no,no,cellular,jul,mon,91,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,student,single,high.school,unknown,yes,no,cellular,jul,mon,54,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+55,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,322,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,78,16,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,services,divorced,high.school,no,yes,no,cellular,jul,mon,72,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+54,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,168,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+22,blue-collar,single,basic.9y,no,yes,no,telephone,jul,mon,110,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+60,retired,married,university.degree,no,yes,no,cellular,jul,mon,120,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,blue-collar,married,unknown,no,yes,no,cellular,jul,mon,149,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,admin.,divorced,basic.9y,no,no,no,cellular,jul,mon,489,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,services,single,high.school,no,no,yes,telephone,jul,mon,1425,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,24,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,technician,single,university.degree,no,yes,no,telephone,jul,mon,218,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,blue-collar,married,unknown,no,no,yes,cellular,jul,mon,78,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,technician,single,professional.course,no,no,no,cellular,jul,mon,93,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+20,student,single,high.school,no,yes,no,cellular,jul,mon,100,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,257,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,mon,140,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,mon,145,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,management,single,university.degree,no,yes,no,telephone,jul,mon,90,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,blue-collar,married,basic.6y,no,no,no,cellular,jul,mon,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,97,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,admin.,single,professional.course,no,yes,no,cellular,jul,mon,357,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,management,married,university.degree,no,yes,no,cellular,jul,mon,638,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+45,admin.,married,university.degree,unknown,yes,no,cellular,jul,mon,478,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,services,divorced,high.school,no,no,yes,telephone,jul,mon,118,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,technician,married,professional.course,no,no,no,cellular,jul,mon,203,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,self-employed,single,university.degree,no,no,no,cellular,jul,mon,84,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,admin.,divorced,basic.9y,no,yes,no,cellular,jul,mon,118,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,admin.,single,high.school,unknown,no,yes,cellular,jul,mon,169,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,admin.,married,high.school,no,yes,no,cellular,jul,mon,176,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,self-employed,single,university.degree,no,no,no,cellular,jul,mon,195,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,101,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,technician,married,basic.9y,no,unknown,unknown,cellular,jul,mon,153,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,technician,single,professional.course,no,yes,no,cellular,jul,mon,519,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+51,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,227,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+50,entrepreneur,married,basic.9y,unknown,no,no,cellular,jul,mon,394,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,technician,married,basic.9y,no,yes,no,cellular,jul,mon,236,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,mon,180,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,services,divorced,high.school,no,no,yes,cellular,jul,mon,88,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,technician,single,university.degree,no,no,no,cellular,jul,mon,89,20,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,admin.,single,university.degree,no,yes,yes,cellular,jul,mon,317,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,technician,divorced,professional.course,no,yes,no,cellular,jul,mon,172,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,admin.,single,high.school,unknown,no,no,cellular,jul,mon,1105,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+27,self-employed,single,professional.course,no,no,no,cellular,jul,mon,553,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,technician,single,high.school,no,yes,no,cellular,jul,mon,538,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,808,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,blue-collar,divorced,high.school,no,yes,no,cellular,jul,mon,91,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,management,single,university.degree,no,yes,no,cellular,jul,mon,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,76,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,technician,married,professional.course,no,no,yes,cellular,jul,mon,554,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+49,management,married,university.degree,no,yes,no,cellular,jul,mon,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,technician,single,university.degree,no,yes,yes,cellular,jul,mon,126,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,316,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,405,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,self-employed,married,high.school,no,no,no,cellular,jul,mon,521,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+59,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,jul,mon,416,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,management,single,university.degree,no,yes,no,cellular,jul,mon,93,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+49,management,married,university.degree,unknown,yes,no,cellular,jul,mon,37,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,blue-collar,single,high.school,no,no,no,cellular,jul,mon,42,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,technician,single,professional.course,unknown,no,no,cellular,jul,mon,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,admin.,married,high.school,no,no,no,cellular,jul,mon,455,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,blue-collar,married,high.school,unknown,yes,no,cellular,jul,mon,150,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,blue-collar,married,basic.4y,no,yes,yes,cellular,jul,mon,93,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,jul,mon,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,admin.,single,basic.9y,no,no,no,cellular,jul,mon,66,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,management,single,university.degree,no,yes,no,cellular,jul,mon,323,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,blue-collar,single,basic.6y,unknown,no,no,telephone,jul,mon,37,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,services,divorced,high.school,no,yes,no,cellular,jul,mon,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,blue-collar,married,basic.4y,no,yes,yes,cellular,jul,mon,472,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,blue-collar,single,university.degree,no,no,no,cellular,jul,mon,357,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,mon,47,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,admin.,single,high.school,no,yes,no,cellular,jul,mon,295,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,technician,single,professional.course,no,no,no,cellular,jul,mon,581,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+54,blue-collar,married,basic.4y,no,yes,yes,cellular,jul,mon,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,admin.,married,high.school,no,yes,yes,cellular,jul,mon,193,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,admin.,married,high.school,no,yes,no,cellular,jul,mon,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+55,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,management,married,university.degree,no,no,no,cellular,jul,mon,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+53,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,212,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,225,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,entrepreneur,single,university.degree,no,no,no,cellular,jul,mon,120,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+53,entrepreneur,married,university.degree,no,no,no,cellular,jul,mon,304,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+57,admin.,married,university.degree,no,no,no,cellular,jul,mon,230,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+54,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,856,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,admin.,married,university.degree,no,no,yes,cellular,jul,mon,396,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,853,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,admin.,single,high.school,unknown,no,no,cellular,jul,mon,590,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+35,self-employed,divorced,basic.9y,no,no,no,cellular,jul,mon,53,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,blue-collar,single,high.school,unknown,yes,no,cellular,jul,mon,55,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,mon,169,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,admin.,married,high.school,no,yes,no,cellular,jul,mon,475,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+50,blue-collar,married,basic.4y,no,no,yes,cellular,jul,mon,141,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,mon,54,10,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,admin.,single,high.school,no,yes,no,cellular,jul,mon,101,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,management,married,high.school,no,yes,no,cellular,jul,mon,54,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,blue-collar,single,basic.9y,no,no,yes,cellular,jul,mon,730,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,services,single,professional.course,no,yes,no,cellular,jul,mon,105,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,533,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,blue-collar,married,high.school,no,no,yes,cellular,jul,mon,177,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,admin.,married,high.school,no,yes,no,cellular,jul,mon,296,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,admin.,married,high.school,no,no,yes,cellular,jul,mon,304,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,technician,married,basic.4y,no,no,no,cellular,jul,mon,854,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+41,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,103,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,services,divorced,high.school,unknown,no,yes,cellular,jul,mon,97,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,admin.,single,high.school,no,no,no,cellular,jul,mon,31,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+60,admin.,married,high.school,unknown,no,yes,cellular,jul,mon,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,entrepreneur,married,basic.9y,no,no,no,cellular,jul,mon,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,services,married,high.school,no,yes,no,cellular,jul,mon,170,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,blue-collar,married,basic.9y,no,no,yes,cellular,jul,mon,99,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,blue-collar,married,basic.6y,no,no,no,cellular,jul,mon,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,services,married,high.school,no,yes,no,telephone,jul,mon,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,technician,divorced,professional.course,no,no,yes,cellular,jul,mon,100,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+55,admin.,married,university.degree,unknown,no,no,cellular,jul,mon,118,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,admin.,married,high.school,no,yes,no,telephone,jul,mon,19,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,admin.,married,high.school,no,no,no,telephone,jul,mon,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,services,married,high.school,unknown,no,yes,cellular,jul,mon,336,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,services,married,high.school,unknown,no,no,cellular,jul,mon,44,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,services,married,high.school,unknown,no,yes,cellular,jul,mon,479,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,admin.,single,basic.9y,no,no,no,cellular,jul,mon,71,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,technician,single,professional.course,no,no,no,cellular,jul,mon,617,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+46,management,married,university.degree,no,yes,no,cellular,jul,mon,92,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,mon,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,blue-collar,single,high.school,no,yes,no,cellular,jul,mon,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,admin.,divorced,basic.9y,no,no,no,cellular,jul,mon,177,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+45,admin.,married,university.degree,unknown,no,yes,cellular,jul,mon,93,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,blue-collar,married,basic.6y,no,yes,yes,cellular,jul,mon,218,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,369,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,technician,married,high.school,no,no,no,cellular,jul,mon,206,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+34,blue-collar,married,basic.6y,no,yes,no,cellular,jul,mon,320,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,163,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,admin.,single,high.school,no,no,yes,cellular,jul,mon,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,admin.,single,professional.course,no,yes,no,cellular,jul,mon,171,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,1039,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+36,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,mon,221,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,369,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,admin.,single,high.school,unknown,yes,no,cellular,jul,mon,141,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,574,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+44,admin.,single,basic.9y,no,yes,yes,cellular,jul,mon,919,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+47,services,divorced,basic.9y,unknown,no,no,cellular,jul,mon,678,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,admin.,married,high.school,no,no,no,cellular,jul,mon,101,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,student,single,high.school,no,no,no,cellular,jul,mon,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,technician,married,professional.course,no,no,no,cellular,jul,mon,149,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,admin.,married,university.degree,no,yes,no,cellular,jul,mon,72,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,technician,single,professional.course,no,no,no,cellular,jul,mon,65,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,technician,divorced,high.school,no,yes,no,telephone,jul,mon,61,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,technician,divorced,high.school,no,yes,no,cellular,jul,mon,521,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,admin.,single,high.school,no,no,no,cellular,jul,mon,1017,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+40,self-employed,married,high.school,no,yes,no,cellular,jul,mon,51,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,blue-collar,single,basic.9y,no,no,yes,cellular,jul,mon,237,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,technician,divorced,high.school,no,yes,no,cellular,jul,mon,357,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,mon,449,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+22,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,mon,848,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+38,entrepreneur,married,professional.course,no,yes,no,cellular,jul,mon,356,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,mon,204,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,admin.,single,high.school,no,no,no,cellular,jul,mon,71,15,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+56,technician,married,professional.course,no,yes,no,cellular,jul,mon,163,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,admin.,married,high.school,no,no,yes,cellular,jul,mon,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,admin.,married,university.degree,no,no,no,telephone,jul,mon,733,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+40,self-employed,married,high.school,no,no,no,cellular,jul,mon,353,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,admin.,married,high.school,no,yes,no,cellular,jul,mon,119,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,self-employed,married,high.school,no,yes,no,telephone,jul,mon,79,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,808,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,technician,single,university.degree,no,yes,no,cellular,jul,mon,553,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+43,admin.,married,high.school,no,no,no,cellular,jul,mon,507,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+55,admin.,married,university.degree,no,no,no,cellular,jul,mon,93,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,blue-collar,married,high.school,unknown,yes,no,cellular,jul,mon,245,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,technician,married,basic.9y,no,yes,no,cellular,jul,mon,1080,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+43,blue-collar,married,high.school,unknown,no,no,cellular,jul,mon,339,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,services,married,high.school,no,no,no,cellular,jul,mon,710,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+40,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,mon,824,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,jul,mon,333,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,services,married,high.school,no,yes,yes,cellular,jul,mon,1212,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+32,entrepreneur,married,high.school,no,yes,no,cellular,jul,mon,240,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+19,student,single,basic.9y,unknown,yes,no,cellular,jul,mon,87,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,admin.,married,university.degree,no,no,no,cellular,jul,mon,1156,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,self-employed,married,high.school,no,no,no,cellular,jul,mon,761,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+51,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,200,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,471,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,jul,mon,80,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,services,divorced,high.school,no,no,no,cellular,jul,mon,137,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,623,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,services,single,high.school,no,no,no,cellular,jul,mon,881,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,housemaid,divorced,basic.4y,unknown,no,no,cellular,jul,mon,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+59,entrepreneur,married,university.degree,unknown,no,no,cellular,jul,mon,251,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,housemaid,divorced,basic.4y,unknown,no,no,cellular,jul,mon,357,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,services,married,basic.4y,unknown,no,no,cellular,jul,mon,891,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+22,blue-collar,single,unknown,unknown,no,no,cellular,jul,mon,228,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+56,housemaid,divorced,basic.4y,unknown,yes,no,cellular,jul,mon,121,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,services,divorced,high.school,no,yes,no,cellular,jul,mon,200,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,blue-collar,single,basic.4y,no,no,no,cellular,jul,mon,116,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,entrepreneur,married,university.degree,unknown,no,no,cellular,jul,mon,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,mon,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,admin.,single,university.degree,no,no,no,cellular,jul,mon,333,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,blue-collar,single,basic.4y,unknown,yes,no,cellular,jul,mon,153,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,technician,married,unknown,unknown,yes,no,cellular,jul,mon,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+52,blue-collar,divorced,basic.9y,unknown,yes,yes,cellular,jul,mon,410,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,56,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,services,married,university.degree,no,no,no,telephone,jul,mon,691,10,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+33,admin.,married,basic.9y,no,yes,yes,cellular,jul,mon,202,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,blue-collar,divorced,basic.9y,no,yes,yes,cellular,jul,mon,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,entrepreneur,single,university.degree,no,yes,no,cellular,jul,mon,580,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,blue-collar,married,basic.6y,no,no,no,cellular,jul,mon,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,admin.,single,basic.9y,no,yes,no,cellular,jul,mon,61,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,admin.,single,high.school,no,yes,no,telephone,jul,mon,742,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+49,admin.,married,university.degree,unknown,no,no,cellular,jul,mon,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,blue-collar,single,basic.6y,unknown,yes,no,telephone,jul,mon,1877,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+49,admin.,married,university.degree,unknown,yes,no,telephone,jul,mon,18,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,blue-collar,married,basic.6y,no,yes,no,cellular,jul,mon,167,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,295,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,management,married,university.degree,no,yes,no,cellular,jul,mon,292,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,blue-collar,married,basic.9y,no,no,no,telephone,jul,mon,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,46,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+51,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,578,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,admin.,single,high.school,no,yes,no,cellular,jul,mon,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,mon,299,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,admin.,married,university.degree,no,yes,no,cellular,jul,mon,588,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,admin.,single,basic.9y,no,yes,yes,cellular,jul,mon,145,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,blue-collar,married,basic.6y,unknown,yes,yes,cellular,jul,mon,250,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,technician,single,university.degree,no,yes,yes,cellular,jul,mon,149,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+23,services,single,high.school,no,yes,yes,cellular,jul,mon,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,services,single,high.school,no,yes,yes,cellular,jul,mon,208,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,admin.,single,high.school,no,no,no,cellular,jul,mon,249,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,technician,single,professional.course,no,yes,no,cellular,jul,mon,292,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,technician,single,high.school,no,yes,no,cellular,jul,mon,407,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,222,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,admin.,single,basic.9y,no,yes,no,cellular,jul,mon,50,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,technician,married,unknown,no,no,no,cellular,jul,mon,250,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+22,services,married,high.school,unknown,yes,no,cellular,jul,mon,100,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,admin.,married,high.school,no,no,no,telephone,jul,mon,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,admin.,married,high.school,no,yes,no,telephone,jul,mon,107,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,services,married,high.school,no,yes,yes,cellular,jul,mon,332,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,132,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+54,retired,married,basic.4y,unknown,yes,yes,cellular,jul,mon,320,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,housemaid,divorced,basic.4y,no,yes,no,cellular,jul,mon,71,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,91,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,housemaid,married,basic.4y,no,yes,no,cellular,jul,mon,149,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,392,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+56,blue-collar,married,unknown,unknown,yes,yes,cellular,jul,mon,210,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+22,blue-collar,single,unknown,unknown,no,no,telephone,jul,mon,50,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+57,blue-collar,married,professional.course,unknown,yes,no,cellular,jul,mon,857,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+31,services,single,university.degree,no,yes,no,cellular,jul,mon,68,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+56,blue-collar,married,unknown,unknown,no,no,cellular,jul,mon,298,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,blue-collar,single,basic.4y,unknown,yes,yes,cellular,jul,mon,213,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,services,single,university.degree,no,yes,no,cellular,jul,mon,195,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+58,management,married,university.degree,no,yes,no,cellular,jul,mon,260,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,services,married,high.school,no,no,no,cellular,jul,mon,474,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,admin.,single,high.school,no,yes,no,cellular,jul,mon,231,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,admin.,single,high.school,no,yes,yes,cellular,jul,mon,936,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,technician,single,professional.course,no,no,no,cellular,jul,mon,690,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,admin.,single,basic.9y,no,yes,no,cellular,jul,mon,381,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+40,admin.,single,basic.9y,no,no,no,cellular,jul,mon,1089,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,management,single,high.school,no,no,no,cellular,jul,mon,312,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,management,single,university.degree,no,no,no,cellular,jul,mon,211,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,technician,single,high.school,no,no,no,cellular,jul,mon,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,378,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,technician,married,professional.course,no,no,no,cellular,jul,mon,60,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,jul,mon,366,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,jul,mon,71,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,blue-collar,divorced,basic.9y,unknown,no,no,cellular,jul,mon,862,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,entrepreneur,divorced,high.school,unknown,yes,no,cellular,jul,mon,71,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,services,divorced,high.school,no,yes,no,cellular,jul,mon,172,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,admin.,single,high.school,no,yes,no,cellular,jul,mon,291,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,services,single,high.school,no,no,no,cellular,jul,mon,91,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,admin.,single,university.degree,no,no,yes,telephone,jul,mon,1130,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+29,admin.,married,basic.9y,no,yes,no,cellular,jul,mon,577,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+26,services,single,high.school,no,yes,no,cellular,jul,mon,509,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,services,single,high.school,no,yes,no,cellular,jul,mon,256,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,admin.,single,high.school,unknown,no,no,cellular,jul,mon,510,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,services,married,high.school,no,no,no,cellular,jul,mon,1342,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+29,technician,married,high.school,no,no,no,cellular,jul,mon,363,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,services,divorced,high.school,no,yes,no,cellular,jul,mon,522,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+55,admin.,married,high.school,no,no,no,cellular,jul,mon,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,services,married,high.school,no,no,yes,cellular,jul,mon,306,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,entrepreneur,single,professional.course,no,yes,no,cellular,jul,mon,354,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,jul,mon,106,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+50,entrepreneur,married,basic.9y,unknown,no,no,cellular,jul,mon,262,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,admin.,single,high.school,no,yes,no,cellular,jul,mon,87,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+47,blue-collar,married,basic.6y,no,no,yes,cellular,jul,mon,930,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,services,married,high.school,no,yes,yes,telephone,jul,mon,342,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,admin.,divorced,university.degree,no,no,yes,cellular,jul,mon,564,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,admin.,married,high.school,no,no,no,cellular,jul,mon,157,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,services,married,high.school,no,yes,no,cellular,jul,mon,181,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+58,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,418,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+31,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,mon,199,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,251,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,technician,single,professional.course,no,yes,no,cellular,jul,mon,1002,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+30,management,married,university.degree,no,no,yes,cellular,jul,mon,833,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,technician,single,professional.course,no,no,yes,cellular,jul,mon,452,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,services,divorced,high.school,unknown,yes,no,cellular,jul,mon,274,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,unemployed,married,basic.9y,no,yes,no,cellular,jul,mon,241,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+57,admin.,married,university.degree,no,yes,no,cellular,jul,mon,564,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,admin.,married,high.school,no,yes,no,telephone,jul,mon,132,10,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,admin.,married,high.school,no,yes,no,cellular,jul,mon,250,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+22,blue-collar,single,unknown,unknown,unknown,unknown,cellular,jul,mon,47,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,services,divorced,high.school,no,yes,no,cellular,jul,mon,313,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+22,student,single,university.degree,no,yes,no,telephone,jul,mon,138,12,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,management,married,university.degree,no,no,no,cellular,jul,mon,338,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,227,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,blue-collar,single,basic.9y,no,no,yes,cellular,jul,mon,985,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+35,admin.,married,unknown,unknown,yes,no,cellular,jul,mon,236,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,admin.,married,high.school,no,yes,no,cellular,jul,mon,67,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+44,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,162,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,121,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,admin.,married,university.degree,no,yes,no,cellular,jul,mon,929,15,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,blue-collar,married,unknown,no,no,no,cellular,jul,mon,91,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+35,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,mon,59,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,admin.,married,high.school,no,yes,no,cellular,jul,mon,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+57,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,769,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+41,admin.,married,university.degree,no,no,no,cellular,jul,mon,1360,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+30,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,mon,90,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+49,admin.,married,university.degree,unknown,no,no,cellular,jul,mon,91,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,technician,divorced,professional.course,unknown,yes,no,cellular,jul,mon,1134,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+30,blue-collar,married,basic.6y,no,no,no,cellular,jul,mon,173,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+49,management,married,university.degree,no,no,no,cellular,jul,mon,86,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,130,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,admin.,single,basic.9y,no,no,no,cellular,jul,mon,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,75,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+38,housemaid,married,unknown,unknown,yes,no,cellular,jul,mon,208,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,mon,276,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+26,admin.,single,unknown,no,no,yes,cellular,jul,mon,106,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,blue-collar,married,unknown,no,no,no,cellular,jul,mon,251,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,admin.,divorced,high.school,no,yes,no,cellular,jul,mon,482,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,blue-collar,single,basic.9y,unknown,yes,no,telephone,jul,mon,21,31,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+55,technician,married,professional.course,unknown,no,no,cellular,jul,mon,240,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+39,management,married,university.degree,unknown,yes,no,cellular,jul,mon,908,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes
+35,entrepreneur,single,university.degree,no,yes,no,cellular,jul,mon,88,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,admin.,single,university.degree,no,yes,yes,cellular,jul,mon,150,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+46,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,mon,31,20,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,services,married,high.school,no,yes,yes,cellular,jul,mon,185,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+37,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,167,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+28,technician,married,basic.9y,no,yes,no,telephone,jul,mon,105,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,admin.,single,university.degree,no,no,no,telephone,jul,mon,86,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+23,admin.,single,high.school,no,yes,no,cellular,jul,mon,34,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,jul,mon,105,10,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,services,married,basic.4y,unknown,no,no,cellular,jul,mon,322,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,housemaid,single,basic.9y,no,yes,no,cellular,jul,mon,898,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,admin.,married,high.school,no,no,no,cellular,jul,mon,549,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,193,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,admin.,single,high.school,no,no,no,telephone,jul,mon,177,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+27,technician,single,professional.course,no,no,no,cellular,jul,mon,357,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+32,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,mon,419,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+55,technician,married,professional.course,unknown,no,no,cellular,jul,mon,78,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,admin.,single,high.school,no,yes,no,cellular,jul,mon,595,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+43,admin.,married,high.school,no,yes,no,cellular,jul,mon,24,28,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,blue-collar,married,high.school,unknown,yes,no,cellular,jul,mon,147,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+30,management,single,university.degree,no,no,yes,telephone,jul,mon,100,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,jul,mon,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,admin.,single,high.school,no,no,no,telephone,jul,mon,184,21,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+33,blue-collar,married,basic.6y,unknown,no,yes,cellular,jul,mon,111,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,189,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+29,retired,single,basic.4y,unknown,no,no,cellular,jul,mon,314,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+25,services,single,high.school,no,no,no,cellular,jul,mon,322,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+48,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,54,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+36,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,mon,445,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+45,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,98,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+49,admin.,married,university.degree,unknown,no,no,cellular,jul,mon,97,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+24,admin.,single,high.school,no,yes,no,telephone,jul,mon,722,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no
+45,services,married,high.school,no,yes,no,telephone,jul,tue,68,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+51,technician,married,basic.6y,no,yes,no,cellular,jul,tue,166,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,single,high.school,no,no,no,cellular,jul,tue,78,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,admin.,divorced,high.school,no,no,no,cellular,jul,tue,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,retired,married,professional.course,unknown,no,no,telephone,jul,tue,44,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,management,married,unknown,no,yes,no,cellular,jul,tue,70,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,services,married,high.school,no,no,no,telephone,jul,tue,80,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,retired,divorced,basic.4y,unknown,no,yes,cellular,jul,tue,159,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,admin.,single,high.school,no,no,no,cellular,jul,tue,72,14,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+42,admin.,single,university.degree,no,no,no,cellular,jul,tue,125,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,single,high.school,unknown,no,no,cellular,jul,tue,712,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+38,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,tue,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,blue-collar,married,professional.course,unknown,no,no,cellular,jul,tue,156,20,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,blue-collar,married,professional.course,unknown,no,no,cellular,jul,tue,181,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,unemployed,married,high.school,no,yes,no,cellular,jul,tue,383,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,technician,single,high.school,no,no,yes,cellular,jul,tue,93,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,services,single,high.school,unknown,yes,no,cellular,jul,tue,40,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,retired,divorced,university.degree,no,yes,no,cellular,jul,tue,152,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,housemaid,divorced,basic.6y,no,yes,no,cellular,jul,tue,87,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,jul,tue,46,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,admin.,single,high.school,no,no,no,cellular,jul,tue,17,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,blue-collar,single,basic.6y,no,no,no,telephone,jul,tue,68,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,technician,married,professional.course,no,no,no,cellular,jul,tue,261,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,services,single,high.school,unknown,yes,no,cellular,jul,tue,204,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,single,high.school,no,yes,no,cellular,jul,tue,102,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,divorced,high.school,no,unknown,unknown,cellular,jul,tue,637,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,married,professional.course,no,yes,no,cellular,jul,tue,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,238,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,420,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+59,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,121,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,jul,tue,75,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,technician,single,professional.course,no,yes,no,cellular,jul,tue,312,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,blue-collar,single,high.school,no,no,no,cellular,jul,tue,29,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,entrepreneur,married,university.degree,unknown,no,yes,cellular,jul,tue,41,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,single,high.school,no,yes,no,cellular,jul,tue,1352,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+29,technician,married,professional.course,no,yes,yes,cellular,jul,tue,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,self-employed,single,unknown,no,yes,no,cellular,jul,tue,438,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+59,retired,married,basic.4y,no,no,no,cellular,jul,tue,153,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+22,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,tue,139,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,376,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,married,high.school,no,no,yes,cellular,jul,tue,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,services,divorced,high.school,no,yes,no,cellular,jul,tue,77,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+24,blue-collar,married,professional.course,no,no,no,cellular,jul,tue,211,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,management,married,university.degree,no,no,no,cellular,jul,tue,314,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,services,married,high.school,no,yes,no,cellular,jul,tue,278,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,admin.,single,university.degree,no,no,yes,cellular,jul,tue,263,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+21,services,single,high.school,no,yes,no,cellular,jul,tue,344,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,blue-collar,married,basic.6y,no,no,no,cellular,jul,tue,1077,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+46,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,152,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,jul,tue,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,jul,tue,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,jul,tue,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,retired,married,basic.4y,unknown,no,no,cellular,jul,tue,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,tue,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,tue,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,admin.,single,high.school,no,no,no,cellular,jul,tue,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,admin.,single,high.school,no,no,no,cellular,jul,tue,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,retired,married,basic.4y,unknown,no,no,cellular,jul,tue,307,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,admin.,single,high.school,no,no,no,cellular,jul,tue,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,132,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,housemaid,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,services,single,high.school,no,yes,no,cellular,jul,tue,714,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+27,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,66,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,housemaid,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,technician,married,high.school,no,no,no,cellular,jul,tue,422,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,admin.,single,university.degree,unknown,yes,yes,cellular,jul,tue,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,housemaid,divorced,basic.4y,unknown,no,yes,cellular,jul,tue,518,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,services,single,high.school,no,yes,no,cellular,jul,tue,168,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+23,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,blue-collar,single,high.school,no,no,no,cellular,jul,tue,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,blue-collar,married,unknown,unknown,yes,no,cellular,jul,tue,527,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,blue-collar,married,unknown,unknown,no,no,cellular,jul,tue,560,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+44,technician,married,professional.course,unknown,yes,no,cellular,jul,tue,663,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,690,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+39,blue-collar,single,high.school,unknown,yes,no,cellular,jul,tue,132,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,admin.,single,basic.9y,no,yes,yes,cellular,jul,tue,81,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,702,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,168,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,blue-collar,married,professional.course,unknown,no,no,cellular,jul,tue,407,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,single,high.school,no,yes,yes,cellular,jul,tue,254,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,single,high.school,no,no,no,cellular,jul,tue,176,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,services,married,high.school,no,no,no,cellular,jul,tue,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,admin.,married,high.school,no,no,no,cellular,jul,tue,305,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+22,admin.,single,high.school,no,yes,no,cellular,jul,tue,107,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,technician,single,unknown,no,yes,no,cellular,jul,tue,121,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+60,retired,married,basic.6y,no,no,no,cellular,jul,tue,268,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+59,retired,married,basic.6y,no,yes,no,cellular,jul,tue,196,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,services,single,high.school,unknown,yes,no,cellular,jul,tue,150,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+59,retired,married,basic.6y,no,yes,no,cellular,jul,tue,367,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,jul,tue,152,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,admin.,single,university.degree,no,no,no,cellular,jul,tue,490,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,jul,tue,125,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+59,retired,married,basic.6y,no,yes,no,cellular,jul,tue,807,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,1545,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+35,services,single,high.school,unknown,yes,no,cellular,jul,tue,40,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,services,single,high.school,unknown,no,no,cellular,jul,tue,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,services,single,high.school,unknown,yes,yes,cellular,jul,tue,47,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,services,single,high.school,unknown,yes,no,cellular,jul,tue,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,technician,married,professional.course,no,no,no,cellular,jul,tue,274,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,services,single,high.school,no,no,no,cellular,jul,tue,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,blue-collar,married,unknown,unknown,yes,no,cellular,jul,tue,1017,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,services,single,high.school,unknown,no,no,cellular,jul,tue,520,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,56,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,blue-collar,married,unknown,no,yes,no,cellular,jul,tue,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+24,student,married,university.degree,no,no,no,cellular,jul,tue,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,self-employed,single,unknown,no,no,no,cellular,jul,tue,843,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+24,blue-collar,married,professional.course,no,no,no,cellular,jul,tue,273,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,189,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,single,unknown,no,no,no,telephone,jul,tue,74,13,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,485,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,blue-collar,single,basic.4y,no,no,yes,cellular,jul,tue,271,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+24,blue-collar,single,basic.6y,no,no,no,cellular,jul,tue,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,services,married,high.school,no,no,no,cellular,jul,tue,152,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,71,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,tue,599,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,admin.,married,unknown,no,yes,yes,cellular,jul,tue,247,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,single,university.degree,no,yes,yes,cellular,jul,tue,204,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,single,university.degree,no,no,yes,telephone,jul,tue,215,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,tue,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,blue-collar,married,high.school,unknown,yes,no,cellular,jul,tue,423,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,285,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,admin.,married,university.degree,unknown,no,no,cellular,jul,tue,22,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,management,single,university.degree,no,no,no,cellular,jul,tue,200,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+23,blue-collar,single,basic.9y,no,no,no,cellular,jul,tue,246,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,352,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,single,high.school,no,no,yes,cellular,jul,tue,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,admin.,single,university.degree,no,yes,yes,cellular,jul,tue,292,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,tue,188,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,blue-collar,married,unknown,no,yes,no,cellular,jul,tue,506,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,136,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+59,retired,married,basic.6y,no,yes,no,cellular,jul,tue,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,117,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,blue-collar,married,basic.6y,unknown,yes,yes,cellular,jul,tue,188,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,jul,tue,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,single,high.school,no,no,yes,cellular,jul,tue,455,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,unemployed,single,university.degree,no,yes,no,cellular,jul,tue,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,unemployed,single,university.degree,no,no,no,telephone,jul,tue,27,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,unemployed,single,university.degree,no,yes,no,cellular,jul,tue,272,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,unemployed,single,university.degree,no,yes,no,cellular,jul,tue,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,blue-collar,married,basic.4y,no,no,yes,telephone,jul,tue,605,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,management,married,university.degree,no,no,yes,cellular,jul,tue,630,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,self-employed,single,high.school,no,yes,no,cellular,jul,tue,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,technician,married,professional.course,no,no,no,cellular,jul,tue,62,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,technician,married,professional.course,no,no,yes,cellular,jul,tue,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+23,blue-collar,single,basic.9y,no,no,no,cellular,jul,tue,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,admin.,married,unknown,unknown,no,no,cellular,jul,tue,599,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,jul,tue,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,services,divorced,university.degree,no,no,yes,cellular,jul,tue,654,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+30,admin.,single,university.degree,no,no,yes,cellular,jul,tue,127,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,management,single,high.school,no,no,no,cellular,jul,tue,1288,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,blue-collar,married,basic.6y,no,no,no,cellular,jul,tue,59,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,services,divorced,basic.9y,no,yes,no,telephone,jul,tue,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,services,single,high.school,no,no,no,telephone,jul,tue,29,16,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,technician,married,professional.course,no,no,no,cellular,jul,tue,156,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,admin.,married,basic.9y,no,yes,no,cellular,jul,tue,73,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,tue,333,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,technician,married,basic.9y,unknown,yes,no,cellular,jul,tue,267,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,403,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,admin.,married,basic.9y,no,yes,no,cellular,jul,tue,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,retired,married,basic.4y,no,no,yes,cellular,jul,tue,52,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,270,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,retired,married,basic.4y,no,no,no,cellular,jul,tue,283,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,retired,married,basic.4y,no,no,no,cellular,jul,tue,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,blue-collar,married,basic.4y,no,no,yes,cellular,jul,tue,849,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+36,services,divorced,professional.course,no,yes,no,telephone,jul,tue,261,12,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,retired,married,basic.4y,no,yes,no,cellular,jul,tue,614,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,retired,married,basic.4y,no,no,no,cellular,jul,tue,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,services,married,high.school,unknown,no,no,cellular,jul,tue,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,tue,1833,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+31,technician,single,professional.course,no,yes,no,cellular,jul,tue,77,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,blue-collar,married,university.degree,no,unknown,unknown,cellular,jul,tue,87,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,jul,tue,369,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,62,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,technician,single,high.school,no,no,no,cellular,jul,tue,431,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,self-employed,married,university.degree,no,no,yes,cellular,jul,tue,1220,12,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,entrepreneur,divorced,unknown,no,no,no,cellular,jul,tue,67,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,technician,divorced,professional.course,no,yes,yes,cellular,jul,tue,639,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,services,divorced,university.degree,no,yes,no,cellular,jul,tue,722,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+49,admin.,single,high.school,no,yes,no,cellular,jul,tue,1281,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+22,services,single,high.school,no,yes,no,cellular,jul,tue,246,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,entrepreneur,single,university.degree,no,yes,no,cellular,jul,tue,654,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,retired,married,basic.4y,unknown,no,no,cellular,jul,tue,112,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,blue-collar,married,basic.4y,no,no,no,telephone,jul,tue,204,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,self-employed,single,high.school,no,no,no,cellular,jul,tue,364,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,self-employed,single,high.school,no,no,yes,cellular,jul,tue,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,entrepreneur,divorced,professional.course,no,yes,no,cellular,jul,tue,211,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,blue-collar,divorced,unknown,no,yes,no,cellular,jul,tue,1029,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,married,university.degree,no,yes,no,telephone,jul,tue,135,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,jul,tue,115,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,admin.,married,high.school,no,no,no,cellular,jul,tue,443,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,blue-collar,single,basic.6y,no,no,yes,cellular,jul,tue,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,admin.,single,unknown,no,no,no,cellular,jul,tue,133,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+42,entrepreneur,married,university.degree,no,yes,no,cellular,jul,tue,578,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,admin.,single,unknown,no,no,no,cellular,jul,tue,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,services,single,high.school,no,unknown,unknown,cellular,jul,tue,24,12,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,blue-collar,single,basic.6y,no,no,no,cellular,jul,tue,1508,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+57,management,married,university.degree,no,no,no,cellular,jul,tue,101,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,management,married,university.degree,no,no,no,cellular,jul,tue,632,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,unemployed,married,basic.4y,unknown,yes,yes,cellular,jul,tue,212,17,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+51,entrepreneur,married,university.degree,unknown,yes,yes,cellular,jul,tue,140,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,technician,single,high.school,no,yes,no,cellular,jul,tue,662,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,admin.,married,university.degree,no,yes,no,cellular,jul,tue,263,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,blue-collar,married,unknown,unknown,yes,yes,cellular,jul,tue,97,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+52,retired,divorced,professional.course,no,no,no,cellular,jul,tue,867,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,entrepreneur,divorced,professional.course,no,yes,no,cellular,jul,tue,50,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,jul,tue,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,jul,tue,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,blue-collar,married,basic.4y,no,yes,no,telephone,jul,tue,563,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,admin.,single,high.school,no,no,no,cellular,jul,tue,385,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,self-employed,single,high.school,no,no,no,cellular,jul,tue,196,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,966,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+48,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,264,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,technician,single,high.school,no,yes,no,cellular,jul,tue,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,retired,married,basic.4y,no,no,no,cellular,jul,tue,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,services,married,high.school,unknown,no,no,cellular,jul,tue,210,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,unemployed,married,basic.4y,unknown,yes,no,telephone,jul,tue,275,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,admin.,married,high.school,no,unknown,unknown,cellular,jul,tue,502,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,blue-collar,married,high.school,no,no,no,cellular,jul,tue,405,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,entrepreneur,married,university.degree,no,no,no,cellular,jul,tue,289,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,unemployed,married,professional.course,no,no,no,cellular,jul,tue,182,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,technician,married,high.school,no,yes,no,telephone,jul,tue,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,admin.,single,university.degree,unknown,no,no,cellular,jul,tue,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,single,basic.4y,no,yes,no,cellular,jul,tue,160,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,married,professional.course,no,no,no,cellular,jul,tue,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,admin.,single,unknown,unknown,no,no,cellular,jul,tue,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,tue,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,blue-collar,divorced,basic.4y,no,no,yes,cellular,jul,tue,487,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,jul,tue,82,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+51,housemaid,married,basic.9y,no,yes,no,cellular,jul,tue,681,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,tue,283,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,technician,single,professional.course,unknown,yes,no,cellular,jul,tue,417,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,60,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,admin.,single,university.degree,unknown,yes,no,cellular,jul,tue,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,admin.,single,university.degree,unknown,yes,no,cellular,jul,tue,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,admin.,single,university.degree,unknown,yes,no,cellular,jul,tue,282,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,admin.,single,university.degree,unknown,yes,no,cellular,jul,tue,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,admin.,single,university.degree,unknown,no,no,cellular,jul,tue,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,admin.,single,university.degree,unknown,yes,no,cellular,jul,tue,261,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,student,single,unknown,no,yes,no,cellular,jul,tue,661,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,technician,single,high.school,no,no,no,cellular,jul,tue,206,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,married,university.degree,unknown,no,no,cellular,jul,tue,105,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,technician,single,high.school,no,yes,no,cellular,jul,tue,445,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,management,married,university.degree,no,yes,no,cellular,jul,tue,90,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+42,entrepreneur,married,university.degree,no,yes,no,cellular,jul,tue,370,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,blue-collar,divorced,unknown,no,yes,no,cellular,jul,tue,242,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,technician,single,professional.course,no,no,yes,cellular,jul,tue,1408,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,services,married,high.school,no,yes,no,telephone,jul,tue,514,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,tue,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+24,admin.,single,high.school,no,unknown,unknown,cellular,jul,tue,176,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,single,university.degree,no,no,yes,cellular,jul,tue,135,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,163,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,services,divorced,unknown,unknown,yes,yes,cellular,jul,tue,483,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,jul,tue,608,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,services,divorced,high.school,unknown,yes,no,cellular,jul,tue,100,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,admin.,married,basic.9y,no,yes,yes,cellular,jul,tue,145,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+51,housemaid,married,basic.9y,no,yes,no,cellular,jul,tue,160,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,blue-collar,divorced,unknown,no,yes,no,cellular,jul,tue,160,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,entrepreneur,married,university.degree,unknown,yes,no,cellular,jul,tue,261,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,entrepreneur,married,university.degree,unknown,yes,no,cellular,jul,tue,307,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,services,single,high.school,no,yes,no,cellular,jul,tue,236,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,tue,403,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,single,high.school,no,no,yes,cellular,jul,tue,241,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,387,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+23,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,211,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,services,single,unknown,no,yes,no,cellular,jul,tue,598,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+33,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,1206,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,admin.,single,high.school,no,no,yes,cellular,jul,tue,248,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,retired,married,basic.4y,no,no,no,cellular,jul,tue,139,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,management,married,university.degree,no,yes,no,cellular,jul,tue,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,retired,divorced,basic.4y,no,yes,no,cellular,jul,tue,237,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,management,married,university.degree,no,no,no,cellular,jul,tue,477,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,management,married,high.school,no,yes,no,cellular,jul,tue,312,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,housemaid,divorced,basic.4y,no,yes,no,cellular,jul,tue,727,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,single,high.school,no,yes,no,telephone,jul,tue,249,21,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,186,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,technician,married,university.degree,no,yes,no,cellular,jul,tue,459,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+24,blue-collar,married,professional.course,no,no,no,cellular,jul,tue,240,10,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,blue-collar,divorced,professional.course,no,no,no,cellular,jul,tue,107,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,admin.,single,university.degree,unknown,no,yes,telephone,jul,tue,287,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+60,housemaid,married,illiterate,unknown,yes,no,cellular,jul,tue,176,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,technician,single,professional.course,no,no,no,cellular,jul,tue,270,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,admin.,single,high.school,no,yes,no,cellular,jul,tue,470,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,services,divorced,unknown,unknown,yes,no,cellular,jul,tue,139,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,services,single,high.school,unknown,yes,no,cellular,jul,tue,560,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+37,services,single,high.school,no,no,yes,cellular,jul,tue,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,technician,single,high.school,no,no,no,cellular,jul,tue,100,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,entrepreneur,single,university.degree,no,no,yes,cellular,jul,tue,137,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,self-employed,single,unknown,no,yes,yes,cellular,jul,tue,55,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,admin.,single,university.degree,no,no,no,cellular,jul,tue,1237,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+27,blue-collar,single,unknown,no,unknown,unknown,cellular,jul,tue,81,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,246,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,blue-collar,married,unknown,no,no,yes,cellular,jul,tue,44,13,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,tue,493,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,blue-collar,married,basic.4y,no,no,no,cellular,jul,tue,345,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,retired,married,basic.4y,no,yes,no,cellular,jul,tue,216,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,technician,married,high.school,no,yes,no,cellular,jul,tue,187,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,retired,married,basic.4y,unknown,no,no,cellular,jul,tue,580,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+23,services,single,high.school,no,no,no,cellular,jul,tue,191,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,184,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,management,married,university.degree,no,no,no,cellular,jul,tue,443,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,blue-collar,single,unknown,unknown,yes,no,cellular,jul,tue,213,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,blue-collar,married,basic.9y,no,no,no,telephone,jul,tue,400,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,blue-collar,married,basic.6y,no,no,yes,cellular,jul,tue,289,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,services,single,unknown,unknown,no,no,cellular,jul,tue,717,13,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+51,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,156,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,entrepreneur,single,university.degree,no,no,no,cellular,jul,tue,149,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,89,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,self-employed,married,university.degree,no,yes,no,cellular,jul,tue,503,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+24,blue-collar,single,unknown,no,no,no,cellular,jul,tue,62,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,services,single,high.school,unknown,yes,no,cellular,jul,tue,282,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+20,services,single,high.school,no,no,no,telephone,jul,tue,97,15,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+24,blue-collar,single,unknown,no,no,no,cellular,jul,tue,39,17,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,102,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,management,married,university.degree,no,no,no,cellular,jul,tue,88,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,unknown,married,basic.6y,no,no,no,cellular,jul,tue,199,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,management,divorced,university.degree,no,yes,no,cellular,jul,tue,233,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,126,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,admin.,single,basic.9y,no,yes,no,cellular,jul,tue,44,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,blue-collar,single,unknown,unknown,yes,no,cellular,jul,tue,78,10,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,blue-collar,single,basic.6y,no,yes,yes,cellular,jul,tue,246,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,203,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+51,housemaid,married,basic.9y,no,no,no,cellular,jul,tue,209,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,112,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,blue-collar,married,basic.6y,no,no,no,cellular,jul,tue,728,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,services,divorced,high.school,no,yes,no,cellular,jul,tue,249,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,jul,tue,282,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+24,admin.,single,high.school,no,no,yes,cellular,jul,tue,210,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,jul,tue,1287,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,services,single,high.school,no,no,no,cellular,jul,tue,32,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,self-employed,divorced,professional.course,no,yes,no,cellular,jul,tue,437,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,36,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,services,single,high.school,unknown,yes,yes,telephone,jul,tue,1148,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,864,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+55,admin.,married,university.degree,no,yes,no,cellular,jul,tue,464,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,188,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+23,management,single,university.degree,no,yes,no,cellular,jul,tue,314,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,technician,married,high.school,no,yes,no,cellular,jul,tue,1037,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+41,blue-collar,divorced,unknown,no,yes,no,telephone,jul,tue,351,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+51,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,279,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,services,divorced,university.degree,no,yes,no,telephone,jul,tue,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,162,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+22,services,married,basic.9y,no,yes,no,cellular,jul,tue,209,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+20,student,single,high.school,no,yes,yes,cellular,jul,tue,136,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,technician,divorced,professional.course,no,no,no,cellular,jul,tue,624,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+52,entrepreneur,married,university.degree,unknown,yes,no,cellular,jul,tue,167,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,housemaid,married,basic.4y,no,yes,no,cellular,jul,tue,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,housemaid,married,basic.4y,no,no,yes,cellular,jul,tue,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,single,high.school,no,no,no,telephone,jul,tue,802,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+28,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,143,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,262,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,254,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,entrepreneur,married,university.degree,no,no,no,cellular,jul,tue,1226,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,technician,married,professional.course,unknown,no,no,cellular,jul,tue,113,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,714,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,tue,282,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,tue,534,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,services,married,unknown,unknown,yes,yes,cellular,jul,tue,174,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,blue-collar,single,basic.9y,unknown,yes,yes,cellular,jul,tue,532,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,admin.,single,unknown,unknown,yes,no,cellular,jul,tue,319,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,married,unknown,unknown,no,no,cellular,jul,tue,1608,13,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+31,admin.,single,university.degree,no,unknown,unknown,cellular,jul,wed,61,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,management,married,university.degree,no,no,no,cellular,jul,wed,84,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,wed,127,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+59,technician,divorced,basic.9y,no,yes,no,cellular,jul,wed,85,13,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,487,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,management,married,university.degree,no,yes,no,cellular,jul,wed,217,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,services,single,basic.9y,no,no,no,cellular,jul,wed,439,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,admin.,married,unknown,no,yes,no,cellular,jul,wed,170,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,411,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,wed,71,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+21,services,single,basic.9y,no,yes,no,cellular,jul,wed,285,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,wed,442,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,married,unknown,no,no,no,cellular,jul,wed,59,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,services,married,unknown,unknown,no,no,cellular,jul,wed,100,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+59,retired,married,unknown,unknown,no,no,cellular,jul,wed,133,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,entrepreneur,married,university.degree,no,yes,no,cellular,jul,wed,40,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,187,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,married,university.degree,no,no,yes,cellular,jul,wed,70,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+21,blue-collar,married,basic.9y,no,no,yes,cellular,jul,wed,89,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,services,single,high.school,no,yes,no,cellular,jul,wed,75,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,services,single,high.school,no,yes,no,cellular,jul,wed,284,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,221,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,jul,wed,97,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,housemaid,married,basic.4y,unknown,no,yes,cellular,jul,wed,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,wed,364,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,married,professional.course,no,yes,no,cellular,jul,wed,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,wed,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+43,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,management,married,university.degree,no,no,yes,cellular,jul,wed,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,services,married,basic.9y,no,yes,yes,cellular,jul,wed,51,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,housemaid,single,basic.4y,unknown,no,yes,cellular,jul,wed,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,technician,married,basic.9y,no,no,no,cellular,jul,wed,500,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+59,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,wed,569,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,services,single,high.school,no,yes,no,cellular,jul,wed,318,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,entrepreneur,married,university.degree,no,no,no,telephone,jul,wed,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,entrepreneur,married,university.degree,no,no,yes,cellular,jul,wed,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,entrepreneur,married,university.degree,no,no,no,telephone,jul,wed,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,self-employed,married,university.degree,no,yes,no,cellular,jul,wed,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+45,retired,married,basic.4y,no,no,no,cellular,jul,wed,390,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,admin.,single,high.school,no,yes,no,cellular,jul,wed,926,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+31,blue-collar,single,high.school,no,yes,yes,cellular,jul,wed,870,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+24,services,single,basic.9y,no,no,no,cellular,jul,wed,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,services,single,basic.9y,no,yes,no,cellular,jul,wed,411,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,married,basic.6y,no,yes,no,telephone,jul,wed,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,admin.,single,professional.course,no,no,no,cellular,jul,wed,141,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,admin.,single,professional.course,no,no,no,cellular,jul,wed,187,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,admin.,single,professional.course,no,yes,no,cellular,jul,wed,245,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,admin.,single,professional.course,no,no,yes,cellular,jul,wed,190,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,admin.,single,professional.course,no,yes,no,cellular,jul,wed,58,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,admin.,single,professional.course,no,no,no,cellular,jul,wed,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+59,retired,married,unknown,unknown,no,no,cellular,jul,wed,177,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,admin.,single,professional.course,no,yes,no,cellular,jul,wed,429,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,management,divorced,university.degree,no,yes,no,cellular,jul,wed,256,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,admin.,single,high.school,no,yes,no,cellular,jul,wed,271,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,blue-collar,married,basic.4y,no,yes,no,telephone,jul,wed,157,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,single,high.school,no,no,no,cellular,jul,wed,107,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,admin.,single,university.degree,no,no,no,cellular,jul,wed,285,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,services,married,basic.4y,unknown,yes,no,cellular,jul,wed,205,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,technician,married,basic.9y,no,yes,no,cellular,jul,wed,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,admin.,single,university.degree,no,yes,no,telephone,jul,wed,40,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,services,single,high.school,no,no,yes,cellular,jul,wed,237,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,wed,145,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,technician,single,basic.9y,no,yes,no,cellular,jul,wed,74,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,technician,married,professional.course,no,no,no,cellular,jul,wed,244,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,single,high.school,no,yes,no,cellular,jul,wed,730,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,married,high.school,no,no,no,cellular,jul,wed,223,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,admin.,married,basic.6y,unknown,yes,no,cellular,jul,wed,138,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,retired,married,basic.4y,no,yes,no,cellular,jul,wed,498,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,admin.,married,basic.6y,unknown,yes,no,cellular,jul,wed,327,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,divorced,basic.6y,unknown,yes,no,telephone,jul,wed,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,single,high.school,no,yes,yes,cellular,jul,wed,376,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,94,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,admin.,married,basic.6y,no,yes,no,cellular,jul,wed,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,379,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,retired,married,basic.4y,no,no,no,cellular,jul,wed,761,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+24,services,single,basic.9y,no,yes,no,telephone,jul,wed,108,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,technician,divorced,professional.course,no,yes,yes,cellular,jul,wed,232,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,high.school,no,yes,yes,cellular,jul,wed,302,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,management,married,university.degree,unknown,no,no,cellular,jul,wed,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,high.school,no,yes,no,cellular,jul,wed,77,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,single,high.school,no,yes,no,cellular,jul,wed,229,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,admin.,married,basic.6y,unknown,no,no,cellular,jul,wed,1176,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+42,admin.,married,university.degree,no,unknown,unknown,cellular,jul,wed,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+21,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,281,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,admin.,divorced,university.degree,no,unknown,unknown,cellular,jul,wed,145,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,wed,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,blue-collar,married,unknown,no,yes,no,telephone,jul,wed,142,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+59,technician,divorced,basic.9y,no,yes,no,cellular,jul,wed,142,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,admin.,single,high.school,no,no,yes,cellular,jul,wed,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,admin.,single,university.degree,no,yes,no,cellular,jul,wed,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,495,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+21,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,160,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,married,professional.course,no,yes,no,cellular,jul,wed,84,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,167,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,services,married,high.school,no,no,no,cellular,jul,wed,235,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,unemployed,single,basic.9y,unknown,yes,yes,cellular,jul,wed,633,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+32,services,single,high.school,no,yes,no,telephone,jul,wed,272,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,management,married,basic.9y,no,no,no,cellular,jul,wed,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,technician,single,university.degree,no,yes,yes,cellular,jul,wed,1089,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,management,married,university.degree,no,yes,yes,telephone,jul,wed,43,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.9y,unknown,yes,yes,cellular,jul,wed,16,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,services,married,unknown,unknown,yes,no,cellular,jul,wed,40,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,services,single,high.school,no,yes,yes,cellular,jul,wed,87,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,jul,wed,336,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+43,admin.,divorced,university.degree,no,no,no,cellular,jul,wed,471,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,unemployed,married,professional.course,unknown,yes,no,cellular,jul,wed,59,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,blue-collar,single,basic.9y,unknown,yes,no,telephone,jul,wed,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,services,married,basic.9y,no,yes,no,cellular,jul,wed,18,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,services,single,basic.9y,no,yes,no,telephone,jul,wed,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,services,married,basic.9y,no,yes,no,cellular,jul,wed,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,services,single,basic.9y,no,no,no,cellular,jul,wed,250,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,technician,married,professional.course,no,no,no,cellular,jul,wed,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,blue-collar,single,basic.4y,no,yes,yes,telephone,jul,wed,18,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,blue-collar,single,basic.6y,no,no,no,telephone,jul,wed,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,housemaid,single,high.school,no,yes,yes,cellular,jul,wed,61,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,technician,married,unknown,no,yes,no,cellular,jul,wed,644,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,services,married,high.school,no,yes,yes,telephone,jul,wed,36,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,421,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,admin.,divorced,high.school,no,yes,no,cellular,jul,wed,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,unknown,married,basic.6y,no,no,no,cellular,jul,wed,884,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,single,university.degree,no,yes,no,cellular,jul,wed,156,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,high.school,no,no,no,cellular,jul,wed,238,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,blue-collar,married,high.school,no,no,no,cellular,jul,wed,319,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,blue-collar,married,basic.4y,no,yes,yes,cellular,jul,wed,371,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,jul,wed,670,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,services,married,high.school,no,yes,no,cellular,jul,wed,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,management,single,university.degree,no,yes,no,cellular,jul,wed,35,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,284,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,jul,wed,182,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+57,admin.,married,basic.9y,no,no,yes,cellular,jul,wed,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,entrepreneur,married,university.degree,no,no,yes,cellular,jul,wed,56,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,wed,375,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,technician,married,university.degree,no,yes,no,telephone,jul,wed,31,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,admin.,married,university.degree,no,no,no,cellular,jul,wed,73,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,housemaid,single,high.school,no,no,yes,cellular,jul,wed,952,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,services,married,high.school,no,no,no,cellular,jul,wed,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,wed,213,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,services,married,unknown,unknown,no,no,cellular,jul,wed,146,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+57,admin.,single,basic.9y,no,yes,no,cellular,jul,wed,158,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,services,single,basic.9y,no,yes,no,telephone,jul,wed,163,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+21,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,150,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,single,basic.6y,no,yes,no,cellular,jul,wed,423,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,admin.,married,basic.6y,no,no,no,cellular,jul,wed,368,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,management,married,university.degree,no,yes,no,cellular,jul,wed,280,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,services,married,high.school,unknown,no,no,cellular,jul,wed,79,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,single,high.school,no,no,no,telephone,jul,wed,40,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,married,high.school,no,yes,no,cellular,jul,wed,122,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,blue-collar,single,basic.6y,no,no,no,cellular,jul,wed,123,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,married,professional.course,no,no,yes,cellular,jul,wed,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,639,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+22,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,123,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,admin.,divorced,unknown,no,no,no,cellular,jul,wed,222,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,blue-collar,single,basic.4y,unknown,yes,no,telephone,jul,wed,70,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+47,self-employed,single,unknown,no,yes,no,cellular,jul,wed,202,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,services,single,high.school,no,yes,no,cellular,jul,wed,190,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,services,single,high.school,no,no,no,cellular,jul,wed,172,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,basic.9y,no,no,yes,cellular,jul,wed,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,admin.,married,basic.6y,no,no,no,cellular,jul,wed,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,blue-collar,single,basic.9y,unknown,no,no,telephone,jul,wed,173,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,unemployed,married,university.degree,no,yes,no,cellular,jul,wed,387,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,74,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,management,married,high.school,no,yes,no,cellular,jul,wed,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,blue-collar,single,university.degree,no,no,no,cellular,jul,wed,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,admin.,married,unknown,no,yes,no,cellular,jul,wed,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,married,university.degree,no,no,yes,cellular,jul,wed,690,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+53,services,married,high.school,no,no,yes,cellular,jul,wed,159,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,services,single,high.school,no,no,no,cellular,jul,wed,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,management,married,university.degree,no,no,yes,cellular,jul,wed,465,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,student,single,high.school,no,no,yes,cellular,jul,wed,312,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,married,university.degree,no,yes,no,telephone,jul,wed,717,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,technician,single,university.degree,no,no,yes,telephone,jul,wed,355,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,entrepreneur,married,university.degree,no,yes,no,cellular,jul,wed,191,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,entrepreneur,married,university.degree,no,yes,no,cellular,jul,wed,538,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,admin.,single,university.degree,no,no,no,cellular,jul,wed,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,married,university.degree,no,no,no,cellular,jul,wed,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,services,divorced,high.school,no,no,no,telephone,jul,wed,197,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,retired,married,basic.4y,unknown,yes,no,cellular,jul,wed,374,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,admin.,married,unknown,no,yes,yes,cellular,jul,wed,130,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,entrepreneur,divorced,university.degree,no,yes,no,cellular,jul,wed,97,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,married,university.degree,no,yes,no,cellular,jul,wed,529,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+49,unemployed,married,high.school,no,yes,no,cellular,jul,wed,98,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+59,retired,married,university.degree,unknown,no,no,cellular,jul,wed,108,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,273,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,services,married,unknown,unknown,unknown,unknown,cellular,jul,wed,140,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,married,university.degree,no,no,no,cellular,jul,wed,179,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,retired,married,professional.course,no,no,no,cellular,jul,wed,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,admin.,married,university.degree,no,no,no,cellular,jul,wed,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,married,professional.course,no,no,no,cellular,jul,wed,511,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,management,single,university.degree,no,no,no,cellular,jul,wed,435,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,admin.,single,university.degree,no,no,no,telephone,jul,wed,36,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,self-employed,divorced,university.degree,no,no,yes,cellular,jul,wed,207,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,management,married,university.degree,no,unknown,unknown,cellular,jul,wed,173,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,admin.,divorced,university.degree,no,no,no,cellular,jul,wed,366,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+52,admin.,divorced,university.degree,no,no,yes,cellular,jul,wed,216,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,technician,married,professional.course,no,no,no,cellular,jul,wed,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,wed,297,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,housemaid,married,unknown,no,yes,no,cellular,jul,wed,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,management,single,university.degree,no,no,no,cellular,jul,wed,76,17,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,wed,99,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,management,married,university.degree,no,no,no,cellular,jul,wed,103,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,services,single,high.school,no,yes,yes,cellular,jul,wed,158,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,blue-collar,married,high.school,no,no,no,telephone,jul,wed,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,married,basic.6y,no,no,yes,cellular,jul,wed,1152,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+27,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,335,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,self-employed,divorced,university.degree,no,yes,no,cellular,jul,wed,126,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,439,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,technician,single,professional.course,no,no,no,cellular,jul,wed,169,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,admin.,single,university.degree,no,no,yes,cellular,jul,wed,979,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,unknown,married,university.degree,no,yes,no,cellular,jul,wed,92,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,blue-collar,married,high.school,unknown,yes,no,telephone,jul,wed,203,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,technician,single,university.degree,no,yes,no,cellular,jul,wed,256,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,blue-collar,married,unknown,no,yes,no,cellular,jul,wed,167,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,admin.,married,university.degree,no,yes,no,cellular,jul,wed,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,married,professional.course,no,yes,no,cellular,jul,wed,172,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,entrepreneur,divorced,university.degree,no,no,no,telephone,jul,wed,383,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,services,single,high.school,no,unknown,unknown,telephone,jul,wed,588,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,152,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,blue-collar,married,basic.4y,no,no,yes,telephone,jul,wed,25,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,874,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,admin.,married,university.degree,no,yes,no,cellular,jul,wed,396,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,self-employed,married,professional.course,unknown,no,no,cellular,jul,wed,434,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,wed,322,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,545,24,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+59,retired,divorced,unknown,no,no,no,cellular,jul,wed,413,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,admin.,married,university.degree,no,no,no,telephone,jul,wed,34,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+47,technician,married,professional.course,no,yes,no,cellular,jul,wed,586,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,services,single,university.degree,no,no,no,cellular,jul,wed,698,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,services,single,basic.9y,no,yes,no,cellular,jul,wed,73,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,admin.,divorced,high.school,no,no,no,cellular,jul,wed,1960,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+28,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,wed,186,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,admin.,married,basic.6y,no,no,no,cellular,jul,wed,212,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,admin.,married,university.degree,no,no,no,cellular,jul,wed,1331,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,admin.,divorced,high.school,no,no,no,cellular,jul,wed,1776,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,admin.,married,basic.6y,unknown,no,no,cellular,jul,wed,312,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,single,basic.6y,no,no,no,cellular,jul,wed,638,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,services,married,high.school,no,no,no,cellular,jul,wed,98,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,technician,married,high.school,unknown,no,no,cellular,jul,wed,517,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,services,married,basic.9y,no,no,no,cellular,jul,wed,271,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,single,professional.course,no,yes,no,cellular,jul,wed,100,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,services,married,high.school,no,no,no,cellular,jul,wed,206,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,technician,single,university.degree,no,yes,yes,cellular,jul,wed,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,services,married,high.school,unknown,yes,no,cellular,jul,wed,671,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,technician,single,university.degree,no,no,no,cellular,jul,wed,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,management,married,university.degree,no,yes,no,cellular,jul,wed,957,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+31,technician,single,professional.course,no,no,no,telephone,jul,wed,296,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,entrepreneur,married,basic.9y,no,yes,yes,telephone,jul,wed,85,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,unknown,married,unknown,unknown,yes,no,cellular,jul,wed,323,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,technician,single,university.degree,no,yes,no,cellular,jul,wed,438,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,wed,218,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,retired,married,basic.4y,unknown,no,no,cellular,jul,wed,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,admin.,single,professional.course,no,yes,no,cellular,jul,wed,332,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+57,technician,married,basic.4y,unknown,no,no,cellular,jul,wed,158,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,125,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,services,single,university.degree,no,unknown,unknown,cellular,jul,wed,288,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+43,management,married,unknown,no,yes,no,cellular,jul,wed,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,self-employed,divorced,university.degree,unknown,yes,no,cellular,jul,wed,544,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,blue-collar,single,university.degree,no,no,no,cellular,jul,wed,91,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,entrepreneur,married,basic.4y,unknown,yes,no,cellular,jul,wed,448,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,services,single,basic.9y,no,no,no,cellular,jul,wed,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,admin.,single,university.degree,no,no,no,cellular,jul,wed,203,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,technician,divorced,professional.course,no,yes,no,cellular,jul,wed,118,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,admin.,single,professional.course,no,yes,no,cellular,jul,wed,902,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+39,blue-collar,married,unknown,unknown,yes,no,cellular,jul,wed,123,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,management,divorced,high.school,no,no,yes,cellular,jul,wed,361,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,high.school,no,no,no,cellular,jul,wed,248,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,services,single,basic.9y,no,no,no,cellular,jul,wed,711,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,55,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,jul,wed,1327,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+30,management,married,university.degree,no,yes,no,telephone,jul,wed,90,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,single,high.school,no,no,no,telephone,jul,wed,239,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,admin.,married,university.degree,unknown,no,yes,cellular,jul,wed,122,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,1090,12,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,entrepreneur,married,university.degree,no,yes,no,telephone,jul,wed,82,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,technician,single,professional.course,no,unknown,unknown,cellular,jul,wed,361,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,admin.,single,university.degree,no,no,no,telephone,jul,wed,67,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+21,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,2078,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+36,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,339,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,services,married,professional.course,no,yes,no,cellular,jul,wed,185,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,technician,single,university.degree,no,no,yes,telephone,jul,wed,203,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,technician,single,university.degree,no,no,yes,telephone,jul,wed,1118,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,admin.,divorced,high.school,no,no,yes,cellular,jul,wed,400,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,admin.,single,professional.course,no,no,no,cellular,jul,wed,580,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,179,17,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,blue-collar,single,basic.4y,no,no,no,cellular,jul,wed,475,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,technician,single,high.school,no,no,no,cellular,jul,wed,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,management,married,university.degree,no,yes,yes,cellular,jul,wed,229,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,530,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,497,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,technician,married,basic.9y,no,yes,no,cellular,jul,wed,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,362,19,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,unknown,married,university.degree,no,no,yes,cellular,jul,wed,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,admin.,single,professional.course,no,no,yes,cellular,jul,wed,206,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,self-employed,married,university.degree,no,no,no,telephone,jul,wed,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,wed,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,self-employed,married,university.degree,no,no,no,cellular,jul,wed,673,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,self-employed,divorced,university.degree,no,yes,no,cellular,jul,wed,1124,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+51,admin.,married,basic.9y,unknown,yes,no,cellular,jul,wed,228,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+30,technician,divorced,professional.course,no,no,no,cellular,jul,wed,180,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,technician,divorced,professional.course,no,no,yes,cellular,jul,wed,808,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+28,admin.,married,university.degree,no,yes,no,cellular,jul,wed,510,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,technician,married,university.degree,no,yes,no,cellular,jul,wed,162,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,jul,wed,413,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+54,housemaid,unknown,basic.4y,no,yes,no,cellular,jul,wed,198,13,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,management,married,basic.9y,no,yes,no,cellular,jul,wed,421,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,services,single,basic.9y,no,no,no,telephone,jul,wed,350,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,married,professional.course,no,yes,no,cellular,jul,wed,322,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,admin.,married,high.school,no,no,no,cellular,jul,wed,201,16,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,638,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+28,admin.,single,high.school,no,no,yes,cellular,jul,wed,437,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,services,divorced,basic.9y,unknown,no,no,cellular,jul,wed,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,single,university.degree,no,yes,no,cellular,jul,wed,147,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,services,married,high.school,no,no,no,telephone,jul,wed,248,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+57,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,wed,108,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,management,married,university.degree,no,yes,no,cellular,jul,wed,110,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,328,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,retired,married,professional.course,no,yes,no,cellular,jul,wed,1066,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,305,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+22,admin.,single,high.school,no,yes,no,telephone,jul,wed,293,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,technician,married,professional.course,no,unknown,unknown,cellular,jul,wed,68,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,services,married,unknown,no,yes,yes,telephone,jul,wed,329,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,married,basic.6y,no,yes,yes,telephone,jul,wed,329,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,609,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,admin.,married,high.school,no,no,no,cellular,jul,wed,652,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,services,married,unknown,unknown,yes,yes,cellular,jul,wed,1201,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+35,services,married,basic.9y,no,yes,yes,cellular,jul,wed,252,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,wed,1309,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+48,technician,divorced,professional.course,no,no,no,cellular,jul,wed,127,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,admin.,married,high.school,no,yes,yes,cellular,jul,wed,205,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+59,services,married,high.school,unknown,yes,no,cellular,jul,wed,476,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,158,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,services,single,high.school,no,no,no,cellular,jul,wed,74,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,admin.,married,high.school,no,no,no,cellular,jul,wed,419,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,married,basic.6y,no,yes,no,telephone,jul,wed,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,management,single,unknown,no,yes,yes,cellular,jul,wed,408,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,housemaid,single,basic.4y,unknown,no,no,telephone,jul,wed,135,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,services,single,high.school,no,unknown,unknown,cellular,jul,wed,1300,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+52,housemaid,married,high.school,unknown,yes,no,cellular,jul,wed,41,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,entrepreneur,married,university.degree,no,yes,no,telephone,jul,wed,83,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,divorced,basic.6y,no,no,no,cellular,jul,wed,144,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+60,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,293,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,blue-collar,divorced,basic.9y,no,no,no,telephone,jul,wed,161,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,admin.,married,university.degree,unknown,yes,no,telephone,jul,wed,173,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,services,single,high.school,no,yes,no,cellular,jul,wed,156,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,wed,280,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+47,self-employed,married,basic.9y,no,yes,no,cellular,jul,wed,1359,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+43,admin.,married,university.degree,no,yes,no,telephone,jul,wed,122,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+60,self-employed,married,university.degree,no,yes,no,cellular,jul,wed,416,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+27,technician,married,professional.course,no,no,no,telephone,jul,wed,36,15,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,admin.,single,university.degree,no,unknown,unknown,cellular,jul,wed,623,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,blue-collar,single,basic.4y,no,no,no,cellular,jul,wed,53,17,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,279,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,services,divorced,high.school,no,no,no,cellular,jul,wed,532,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+48,services,married,basic.9y,no,yes,no,cellular,jul,wed,107,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,wed,933,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,management,married,university.degree,no,no,no,cellular,jul,wed,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,790,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,admin.,divorced,university.degree,no,no,no,telephone,jul,wed,97,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,blue-collar,single,basic.9y,unknown,yes,yes,cellular,jul,wed,171,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,blue-collar,single,professional.course,no,yes,no,cellular,jul,wed,505,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,married,professional.course,no,no,no,cellular,jul,wed,495,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,technician,married,unknown,unknown,no,no,cellular,jul,wed,799,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,111,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,self-employed,married,professional.course,unknown,yes,yes,cellular,jul,wed,683,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+24,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,84,13,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,technician,divorced,professional.course,no,yes,yes,cellular,jul,wed,547,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,admin.,married,high.school,no,yes,no,telephone,jul,wed,103,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,236,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,services,married,basic.9y,no,yes,no,telephone,jul,wed,71,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,admin.,divorced,university.degree,no,no,no,telephone,jul,wed,192,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,services,single,basic.6y,no,yes,no,cellular,jul,wed,476,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,thu,50,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,technician,single,high.school,no,no,no,cellular,jul,thu,54,29,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,admin.,married,high.school,no,no,no,cellular,jul,thu,42,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,retired,married,basic.4y,no,no,no,cellular,jul,thu,57,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,blue-collar,single,basic.9y,unknown,no,yes,telephone,jul,thu,70,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,blue-collar,married,basic.4y,no,no,yes,cellular,jul,thu,265,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,services,married,high.school,unknown,yes,no,cellular,jul,thu,117,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,entrepreneur,married,university.degree,no,unknown,unknown,cellular,jul,thu,430,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+47,technician,divorced,high.school,no,no,no,cellular,jul,thu,202,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,technician,single,university.degree,no,no,no,cellular,jul,thu,537,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,admin.,married,high.school,no,no,yes,cellular,jul,thu,219,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,blue-collar,married,basic.4y,no,yes,no,telephone,jul,thu,48,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,retired,married,basic.4y,unknown,unknown,unknown,cellular,jul,thu,143,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,blue-collar,married,high.school,no,yes,yes,cellular,jul,thu,241,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,services,married,high.school,no,no,no,cellular,jul,thu,63,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,jul,thu,357,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,entrepreneur,single,high.school,no,yes,yes,cellular,jul,thu,21,20,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,entrepreneur,married,university.degree,unknown,no,yes,cellular,jul,thu,13,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,services,single,high.school,no,yes,no,telephone,jul,thu,32,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,technician,married,high.school,no,no,no,cellular,jul,thu,73,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,services,single,high.school,no,yes,no,cellular,jul,thu,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,services,single,high.school,no,yes,no,cellular,jul,thu,46,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,housemaid,divorced,basic.6y,unknown,no,yes,cellular,jul,thu,53,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,119,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,blue-collar,single,basic.6y,no,yes,no,cellular,jul,thu,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,married,basic.6y,no,unknown,unknown,cellular,jul,thu,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,services,single,university.degree,no,no,yes,cellular,jul,thu,200,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,divorced,high.school,no,no,no,cellular,jul,thu,42,24,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,services,divorced,high.school,no,no,yes,cellular,jul,thu,187,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,services,divorced,high.school,no,no,yes,cellular,jul,thu,208,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,admin.,married,high.school,no,no,no,cellular,jul,thu,125,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,management,married,professional.course,no,no,no,cellular,jul,thu,162,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,jul,thu,281,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,single,university.degree,no,no,yes,cellular,jul,thu,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,services,divorced,high.school,no,no,yes,cellular,jul,thu,481,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,101,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,services,married,high.school,unknown,no,yes,cellular,jul,thu,205,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,single,university.degree,no,no,yes,cellular,jul,thu,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,311,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,technician,single,university.degree,no,no,no,cellular,jul,thu,186,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,single,high.school,no,yes,no,cellular,jul,thu,66,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,technician,married,professional.course,no,yes,yes,cellular,jul,thu,137,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,technician,single,high.school,no,no,no,cellular,jul,thu,91,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,admin.,married,high.school,no,no,no,cellular,jul,thu,544,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,thu,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,management,single,university.degree,unknown,yes,no,cellular,jul,thu,211,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,technician,single,university.degree,no,yes,yes,cellular,jul,thu,78,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,entrepreneur,single,high.school,no,no,no,cellular,jul,thu,67,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,entrepreneur,single,high.school,no,no,no,cellular,jul,thu,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,blue-collar,single,basic.6y,no,no,no,cellular,jul,thu,326,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,entrepreneur,single,high.school,no,yes,no,telephone,jul,thu,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,entrepreneur,married,university.degree,unknown,no,no,cellular,jul,thu,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,blue-collar,married,basic.6y,no,no,no,cellular,jul,thu,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,thu,76,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,housemaid,divorced,basic.6y,unknown,yes,yes,cellular,jul,thu,97,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,technician,married,university.degree,unknown,no,yes,cellular,jul,thu,459,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,technician,single,university.degree,no,no,no,cellular,jul,thu,196,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,thu,71,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,thu,212,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,admin.,married,professional.course,no,no,no,cellular,jul,thu,458,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,services,married,high.school,unknown,no,no,telephone,jul,thu,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,single,basic.9y,no,no,no,telephone,jul,thu,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,student,single,high.school,no,yes,no,cellular,jul,thu,853,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+57,management,married,university.degree,no,no,no,cellular,jul,thu,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,entrepreneur,married,high.school,no,yes,no,cellular,jul,thu,380,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,jul,thu,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,entrepreneur,single,high.school,no,yes,no,cellular,jul,thu,1204,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+31,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,467,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,services,single,university.degree,no,no,no,cellular,jul,thu,55,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,services,married,high.school,unknown,no,yes,cellular,jul,thu,338,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,technician,married,professional.course,no,no,yes,cellular,jul,thu,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,technician,married,professional.course,unknown,no,yes,cellular,jul,thu,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,management,single,university.degree,no,no,no,cellular,jul,thu,528,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,technician,married,professional.course,no,no,no,cellular,jul,thu,464,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,self-employed,married,university.degree,no,yes,yes,telephone,jul,thu,152,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,services,single,high.school,no,yes,no,cellular,jul,thu,211,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,self-employed,married,university.degree,no,no,no,cellular,jul,thu,313,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,services,married,high.school,unknown,yes,no,telephone,jul,thu,279,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,divorced,high.school,no,yes,no,cellular,jul,thu,335,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,technician,single,high.school,no,yes,no,cellular,jul,thu,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,services,married,high.school,unknown,no,yes,cellular,jul,thu,775,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,services,married,basic.9y,unknown,no,no,cellular,jul,thu,63,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,married,university.degree,no,no,no,cellular,jul,thu,561,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,technician,married,basic.4y,no,yes,no,cellular,jul,thu,197,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,entrepreneur,single,university.degree,no,yes,no,cellular,jul,thu,329,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,technician,married,professional.course,no,no,yes,cellular,jul,thu,70,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,blue-collar,married,high.school,unknown,yes,no,cellular,jul,thu,53,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,divorced,high.school,no,yes,no,cellular,jul,thu,43,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,technician,single,basic.9y,no,no,no,cellular,jul,thu,142,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+23,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,523,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,technician,married,high.school,unknown,yes,yes,telephone,jul,thu,193,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,admin.,married,university.degree,no,yes,no,cellular,jul,thu,604,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,technician,married,basic.9y,no,yes,no,cellular,jul,thu,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,entrepreneur,married,university.degree,no,yes,no,cellular,jul,thu,302,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,205,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,admin.,married,basic.4y,unknown,yes,no,cellular,jul,thu,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,admin.,married,basic.4y,unknown,no,no,cellular,jul,thu,142,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,services,married,basic.9y,unknown,yes,no,cellular,jul,thu,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,divorced,high.school,no,yes,no,cellular,jul,thu,100,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,retired,single,basic.9y,no,no,no,telephone,jul,thu,239,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,technician,married,high.school,unknown,no,no,cellular,jul,thu,1756,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,services,married,high.school,no,no,no,cellular,jul,thu,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,services,single,basic.9y,no,no,yes,cellular,jul,thu,169,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,self-employed,married,university.degree,no,no,yes,cellular,jul,thu,1441,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+52,technician,married,professional.course,no,no,no,cellular,jul,thu,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,technician,married,unknown,no,yes,no,cellular,jul,thu,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,technician,married,professional.course,no,no,no,cellular,jul,thu,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,services,single,high.school,unknown,no,no,cellular,jul,thu,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,divorced,high.school,no,yes,no,cellular,jul,thu,149,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,blue-collar,married,unknown,unknown,unknown,unknown,telephone,jul,thu,747,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,admin.,married,university.degree,no,no,no,cellular,jul,thu,186,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,technician,divorced,university.degree,no,yes,no,cellular,jul,thu,223,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,management,married,university.degree,no,yes,yes,telephone,jul,thu,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,60,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,services,divorced,high.school,no,no,no,cellular,jul,thu,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,admin.,divorced,high.school,no,no,no,cellular,jul,thu,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,technician,married,university.degree,no,yes,no,cellular,jul,thu,185,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,technician,married,professional.course,no,yes,no,cellular,jul,thu,224,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,management,married,unknown,unknown,yes,no,cellular,jul,thu,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,services,married,high.school,unknown,unknown,unknown,cellular,jul,thu,84,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,admin.,married,basic.4y,no,no,no,cellular,jul,thu,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,self-employed,married,basic.4y,no,yes,yes,cellular,jul,thu,164,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,technician,married,professional.course,no,yes,no,cellular,jul,thu,15,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,386,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,401,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,housemaid,divorced,high.school,no,yes,yes,cellular,jul,thu,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,services,married,high.school,unknown,no,no,cellular,jul,thu,200,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,thu,225,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,services,married,high.school,unknown,yes,yes,cellular,jul,thu,379,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,married,unknown,unknown,yes,no,cellular,jul,thu,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,technician,married,professional.course,no,yes,no,cellular,jul,thu,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,married,unknown,unknown,no,no,cellular,jul,thu,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,self-employed,single,high.school,no,no,no,cellular,jul,thu,168,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,married,unknown,unknown,yes,no,cellular,jul,thu,651,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+57,blue-collar,married,basic.4y,no,yes,no,telephone,jul,thu,305,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,blue-collar,married,high.school,unknown,yes,no,cellular,jul,thu,497,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,entrepreneur,single,high.school,no,yes,no,cellular,jul,thu,205,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,housemaid,married,basic.4y,no,yes,no,telephone,jul,thu,179,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,services,divorced,high.school,no,no,no,telephone,jul,thu,212,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,blue-collar,married,unknown,no,no,yes,cellular,jul,thu,36,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,jul,thu,39,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+24,services,single,high.school,no,yes,no,cellular,jul,thu,576,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,blue-collar,married,basic.6y,no,yes,yes,cellular,jul,thu,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,unknown,no,yes,no,cellular,jul,thu,240,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,technician,married,professional.course,no,yes,no,cellular,jul,thu,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,technician,married,high.school,no,yes,no,cellular,jul,thu,604,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,technician,married,professional.course,unknown,yes,no,telephone,jul,thu,193,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,211,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,blue-collar,married,unknown,no,yes,no,cellular,jul,thu,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,entrepreneur,married,high.school,no,yes,no,cellular,jul,thu,169,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,divorced,basic.6y,no,yes,no,cellular,jul,thu,1491,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+53,blue-collar,married,unknown,no,no,no,cellular,jul,thu,131,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,unknown,single,unknown,no,yes,no,cellular,jul,thu,343,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,services,divorced,high.school,no,yes,yes,cellular,jul,thu,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+23,blue-collar,single,basic.9y,no,yes,no,telephone,jul,thu,308,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,retired,married,basic.4y,unknown,no,no,cellular,jul,thu,408,14,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,technician,single,university.degree,no,yes,no,telephone,jul,thu,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,married,unknown,unknown,yes,no,cellular,jul,thu,418,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,blue-collar,married,unknown,no,no,yes,cellular,jul,thu,821,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,99,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,16,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,78,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,unemployed,married,professional.course,unknown,yes,yes,cellular,jul,thu,225,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,married,university.degree,no,yes,yes,cellular,jul,thu,604,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,management,married,unknown,unknown,yes,no,cellular,jul,thu,250,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,208,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,technician,single,professional.course,no,yes,no,cellular,jul,thu,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,thu,23,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,single,professional.course,no,yes,no,cellular,jul,thu,498,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,blue-collar,married,basic.6y,unknown,unknown,unknown,cellular,jul,thu,78,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,management,married,high.school,no,no,no,cellular,jul,thu,204,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,entrepreneur,single,high.school,no,yes,no,cellular,jul,thu,90,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,services,divorced,high.school,no,no,no,cellular,jul,thu,539,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,entrepreneur,divorced,unknown,no,no,yes,cellular,jul,thu,273,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,107,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,management,married,university.degree,no,no,no,cellular,jul,thu,650,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,university.degree,no,no,no,cellular,jul,thu,48,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,management,married,university.degree,no,no,no,cellular,jul,thu,91,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,admin.,married,university.degree,unknown,no,no,cellular,jul,thu,229,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,high.school,no,yes,no,cellular,jul,thu,304,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,services,single,high.school,no,no,no,cellular,jul,thu,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,divorced,high.school,no,no,no,cellular,jul,thu,537,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,self-employed,married,university.degree,no,yes,no,cellular,jul,thu,915,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,admin.,married,high.school,no,yes,no,cellular,jul,thu,903,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+53,retired,married,basic.9y,no,yes,yes,cellular,jul,thu,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,admin.,single,university.degree,no,yes,no,telephone,jul,thu,122,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,jul,thu,873,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+35,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,jul,thu,248,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,unknown,married,basic.4y,no,yes,no,cellular,jul,thu,1298,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+41,entrepreneur,single,high.school,no,yes,no,cellular,jul,thu,149,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,management,married,university.degree,unknown,no,no,cellular,jul,thu,717,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,divorced,high.school,no,yes,no,telephone,jul,thu,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+21,unemployed,married,high.school,no,yes,yes,cellular,jul,thu,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,technician,married,basic.4y,unknown,yes,yes,cellular,jul,thu,709,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+32,technician,single,university.degree,no,yes,no,cellular,jul,thu,72,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,unknown,married,basic.4y,no,no,yes,cellular,jul,thu,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,blue-collar,single,basic.9y,no,no,no,telephone,jul,thu,28,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,retired,married,basic.9y,no,yes,no,cellular,jul,thu,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,blue-collar,married,unknown,no,yes,no,cellular,jul,thu,172,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,blue-collar,divorced,basic.4y,no,no,no,cellular,jul,thu,150,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,single,unknown,unknown,yes,no,cellular,jul,thu,51,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,management,married,university.degree,no,yes,yes,cellular,jul,thu,90,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,services,married,basic.9y,unknown,yes,no,cellular,jul,thu,1206,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,divorced,high.school,no,no,yes,cellular,jul,thu,1869,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,unknown,married,unknown,no,yes,no,cellular,jul,thu,52,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,technician,single,professional.course,no,no,no,telephone,jul,thu,575,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,blue-collar,married,basic.6y,unknown,no,yes,cellular,jul,thu,256,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,technician,married,basic.6y,no,yes,no,cellular,jul,thu,823,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,484,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,management,married,professional.course,no,unknown,unknown,cellular,jul,thu,230,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,technician,married,basic.6y,no,no,no,cellular,jul,thu,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,81,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,services,divorced,high.school,no,yes,no,cellular,jul,thu,56,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,management,divorced,university.degree,unknown,no,no,cellular,jul,thu,245,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,332,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,technician,married,unknown,unknown,yes,no,cellular,jul,thu,988,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,blue-collar,single,basic.9y,no,no,yes,cellular,jul,thu,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,132,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,218,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,unemployed,married,university.degree,no,yes,no,cellular,jul,thu,773,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,single,high.school,unknown,no,no,cellular,jul,thu,147,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,953,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,divorced,high.school,no,yes,no,cellular,jul,thu,43,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,high.school,no,yes,no,cellular,jul,thu,1259,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,unemployed,married,basic.6y,no,yes,no,cellular,jul,thu,267,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,entrepreneur,married,university.degree,no,yes,yes,cellular,jul,thu,736,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,management,married,university.degree,unknown,no,no,cellular,jul,thu,901,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+43,entrepreneur,married,high.school,no,no,no,cellular,jul,thu,362,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,technician,single,basic.9y,no,no,no,cellular,jul,thu,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,196,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,technician,single,professional.course,no,no,yes,cellular,jul,thu,346,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,79,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,unemployed,married,basic.6y,no,no,no,cellular,jul,thu,1850,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+46,blue-collar,married,high.school,unknown,no,no,cellular,jul,thu,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,management,married,basic.9y,no,yes,yes,cellular,jul,thu,217,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,admin.,married,high.school,no,yes,no,cellular,jul,thu,119,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,347,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,technician,single,professional.course,no,yes,yes,cellular,jul,thu,559,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,admin.,married,university.degree,unknown,yes,no,cellular,jul,thu,141,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,married,unknown,unknown,yes,no,telephone,jul,thu,27,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,blue-collar,married,high.school,no,yes,yes,cellular,jul,thu,126,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,services,single,high.school,no,no,no,telephone,jul,thu,101,14,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,entrepreneur,married,university.degree,unknown,yes,yes,cellular,jul,thu,62,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,services,divorced,high.school,no,yes,yes,cellular,jul,thu,464,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,631,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+22,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,retired,single,professional.course,unknown,yes,no,cellular,jul,thu,306,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,services,married,basic.9y,unknown,yes,no,cellular,jul,thu,318,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,entrepreneur,married,high.school,no,yes,no,cellular,jul,thu,810,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,admin.,married,high.school,unknown,yes,no,cellular,jul,thu,273,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,retired,single,professional.course,unknown,yes,no,telephone,jul,thu,780,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,admin.,married,university.degree,no,yes,yes,cellular,jul,thu,844,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,admin.,married,university.degree,no,yes,no,cellular,jul,thu,947,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,328,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+22,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,448,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,management,married,high.school,no,no,no,telephone,jul,thu,258,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,technician,married,university.degree,unknown,no,no,cellular,jul,thu,213,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,management,married,university.degree,no,yes,no,cellular,jul,thu,161,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,entrepreneur,married,basic.4y,no,yes,no,cellular,jul,thu,82,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,blue-collar,married,unknown,no,no,no,cellular,jul,thu,730,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,blue-collar,married,unknown,unknown,yes,no,cellular,jul,thu,180,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,management,married,university.degree,unknown,unknown,unknown,cellular,jul,thu,367,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,housemaid,divorced,high.school,no,yes,no,cellular,jul,thu,870,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,1820,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,technician,single,basic.9y,no,yes,no,cellular,jul,thu,144,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,732,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,divorced,high.school,no,yes,no,cellular,jul,thu,303,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,married,basic.4y,no,yes,no,telephone,jul,thu,553,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,management,married,high.school,unknown,yes,no,cellular,jul,thu,90,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,technician,divorced,university.degree,no,yes,no,cellular,jul,thu,137,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,technician,married,professional.course,no,no,yes,cellular,jul,thu,268,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,divorced,high.school,no,yes,no,cellular,jul,thu,828,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,services,single,basic.9y,no,yes,no,cellular,jul,thu,136,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,jul,thu,180,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,367,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+38,admin.,single,university.degree,no,yes,yes,cellular,jul,thu,513,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,admin.,married,basic.9y,no,yes,no,cellular,jul,thu,347,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,unemployed,married,university.degree,no,yes,no,cellular,jul,thu,1173,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,entrepreneur,single,high.school,no,yes,no,telephone,jul,thu,153,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,admin.,married,university.degree,no,yes,no,cellular,jul,thu,73,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,unemployed,married,unknown,no,no,no,telephone,jul,thu,626,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,services,single,basic.9y,no,yes,no,cellular,jul,thu,123,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,technician,married,professional.course,no,yes,yes,cellular,jul,thu,77,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,unemployed,married,university.degree,no,yes,no,cellular,jul,thu,263,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,technician,divorced,university.degree,no,no,no,cellular,jul,thu,91,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,retired,single,high.school,no,yes,no,cellular,jul,thu,577,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,divorced,high.school,no,no,yes,cellular,jul,thu,417,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,divorced,high.school,no,no,no,telephone,jul,thu,393,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,unknown,married,basic.4y,no,yes,no,cellular,jul,thu,633,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,self-employed,married,university.degree,no,no,no,cellular,jul,thu,568,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,technician,divorced,high.school,no,yes,no,cellular,jul,thu,237,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,180,19,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,management,single,university.degree,no,no,no,cellular,jul,thu,257,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,unemployed,married,professional.course,unknown,no,no,cellular,jul,thu,144,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,212,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,technician,single,university.degree,no,no,no,telephone,jul,thu,447,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,technician,married,professional.course,unknown,no,yes,cellular,jul,thu,92,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,self-employed,married,university.degree,no,no,no,telephone,jul,thu,552,16,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,housemaid,divorced,high.school,no,yes,no,cellular,jul,thu,241,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,unemployed,married,basic.4y,unknown,yes,no,cellular,jul,thu,458,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+37,admin.,married,basic.6y,no,yes,yes,cellular,jul,thu,1602,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+57,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,42,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,technician,married,basic.6y,unknown,no,no,cellular,jul,fri,130,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,technician,married,professional.course,unknown,no,no,cellular,jul,fri,197,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,admin.,single,high.school,no,no,no,cellular,jul,fri,52,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,single,high.school,no,no,no,cellular,jul,fri,441,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,blue-collar,married,unknown,unknown,yes,no,cellular,jul,fri,31,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,single,high.school,no,no,no,telephone,jul,fri,219,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,179,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,fri,1492,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+43,admin.,married,basic.9y,no,no,no,cellular,jul,fri,72,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,technician,divorced,unknown,unknown,no,no,cellular,jul,fri,64,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,entrepreneur,single,university.degree,no,no,yes,cellular,jul,fri,210,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+60,retired,married,high.school,unknown,no,no,telephone,jul,fri,133,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,admin.,divorced,high.school,no,no,no,cellular,jul,fri,203,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,admin.,married,basic.9y,unknown,no,no,cellular,jul,fri,823,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,fri,682,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,technician,married,professional.course,no,yes,no,cellular,jul,fri,154,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,management,married,university.degree,no,yes,no,telephone,jul,fri,150,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,technician,married,professional.course,no,yes,no,cellular,jul,fri,13,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,technician,single,high.school,no,yes,no,cellular,jul,fri,1422,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+52,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,fri,114,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,divorced,high.school,no,no,yes,cellular,jul,fri,186,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,entrepreneur,divorced,university.degree,no,yes,yes,cellular,jul,fri,57,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,technician,divorced,professional.course,no,yes,no,telephone,jul,fri,159,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,entrepreneur,divorced,university.degree,no,no,no,cellular,jul,fri,123,16,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,single,high.school,no,no,no,cellular,jul,fri,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,services,married,high.school,no,yes,yes,cellular,jul,fri,65,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,technician,married,university.degree,no,no,no,telephone,jul,fri,78,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,services,married,high.school,no,yes,no,cellular,jul,fri,303,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,divorced,professional.course,no,no,yes,cellular,jul,fri,43,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,admin.,married,university.degree,no,no,no,cellular,jul,fri,44,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,single,high.school,no,yes,no,cellular,jul,fri,212,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,admin.,single,university.degree,unknown,yes,no,cellular,jul,fri,111,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,retired,single,professional.course,unknown,yes,no,cellular,jul,fri,161,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,married,university.degree,no,no,yes,cellular,jul,fri,979,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+42,admin.,married,university.degree,no,no,no,cellular,jul,fri,591,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,602,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,entrepreneur,married,basic.6y,unknown,no,no,cellular,jul,fri,190,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,services,single,high.school,no,no,yes,cellular,jul,fri,616,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+42,admin.,single,high.school,no,no,yes,cellular,jul,fri,295,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,admin.,married,professional.course,no,no,no,cellular,jul,fri,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,management,married,university.degree,no,no,yes,cellular,jul,fri,153,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,fri,110,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,technician,single,high.school,no,no,no,cellular,jul,fri,198,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,management,married,university.degree,no,yes,no,cellular,jul,fri,136,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,technician,married,unknown,no,no,no,cellular,jul,fri,173,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,divorced,high.school,no,no,no,cellular,jul,fri,294,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,technician,single,high.school,no,yes,no,cellular,jul,fri,784,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+40,admin.,married,university.degree,no,yes,no,cellular,jul,fri,310,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,blue-collar,single,basic.4y,no,yes,yes,cellular,jul,fri,107,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,self-employed,married,university.degree,no,yes,no,cellular,jul,fri,298,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,single,high.school,no,yes,no,cellular,jul,fri,110,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,single,unknown,no,no,yes,cellular,jul,fri,1000,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+39,admin.,single,high.school,no,yes,no,cellular,jul,fri,361,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,retired,married,professional.course,no,yes,no,cellular,jul,fri,695,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+52,blue-collar,single,unknown,unknown,no,yes,cellular,jul,fri,137,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,single,high.school,no,yes,no,cellular,jul,fri,335,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,admin.,married,unknown,no,no,no,cellular,jul,fri,735,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+28,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,unemployed,married,high.school,no,yes,yes,cellular,jul,fri,57,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,159,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,single,high.school,no,yes,no,cellular,jul,fri,337,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,technician,married,university.degree,no,no,yes,cellular,jul,fri,337,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,267,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,803,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,technician,married,university.degree,no,yes,no,cellular,jul,fri,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,282,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,married,professional.course,no,yes,no,telephone,jul,fri,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,married,unknown,unknown,no,no,cellular,jul,fri,18,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,admin.,married,university.degree,no,no,no,cellular,jul,fri,54,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,technician,single,unknown,no,yes,no,cellular,jul,fri,172,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,married,professional.course,no,no,no,cellular,jul,fri,256,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,technician,single,high.school,no,no,yes,cellular,jul,fri,112,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,services,single,high.school,no,yes,no,cellular,jul,fri,862,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+45,technician,divorced,unknown,unknown,no,no,cellular,jul,fri,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,admin.,married,high.school,no,no,no,cellular,jul,fri,324,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,married,basic.4y,no,yes,no,cellular,jul,fri,65,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,admin.,single,university.degree,no,yes,no,cellular,jul,fri,250,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,admin.,single,university.degree,no,yes,no,cellular,jul,fri,198,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,admin.,single,university.degree,no,no,no,telephone,jul,fri,241,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+60,retired,married,high.school,unknown,yes,no,cellular,jul,fri,79,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,blue-collar,single,basic.4y,no,yes,no,cellular,jul,fri,112,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,technician,married,unknown,unknown,yes,no,cellular,jul,fri,86,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,admin.,married,university.degree,no,yes,no,cellular,jul,fri,127,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,fri,246,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,retired,married,basic.9y,unknown,yes,no,cellular,jul,fri,50,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,single,high.school,no,yes,no,cellular,jul,fri,71,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,services,single,basic.9y,no,no,no,cellular,jul,fri,61,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,self-employed,married,basic.6y,no,yes,no,cellular,jul,fri,40,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,retired,married,high.school,no,no,no,cellular,jul,fri,720,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,technician,married,professional.course,no,no,no,cellular,jul,fri,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,technician,married,professional.course,no,no,no,cellular,jul,fri,234,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,married,university.degree,no,yes,no,cellular,jul,fri,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,married,university.degree,no,unknown,unknown,cellular,jul,fri,352,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,blue-collar,married,unknown,unknown,no,no,cellular,jul,fri,227,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,married,high.school,no,yes,no,cellular,jul,fri,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,self-employed,married,basic.9y,unknown,no,no,cellular,jul,fri,571,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,married,basic.4y,no,no,no,telephone,jul,fri,110,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+29,services,single,university.degree,no,no,no,cellular,jul,fri,246,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,technician,divorced,professional.course,no,no,no,cellular,jul,fri,63,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,113,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,jul,fri,188,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,technician,married,university.degree,no,yes,no,cellular,jul,fri,133,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,technician,single,professional.course,no,yes,no,cellular,jul,fri,98,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,fri,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,blue-collar,married,basic.9y,no,no,no,telephone,jul,fri,286,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,technician,single,unknown,no,yes,no,cellular,jul,fri,238,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,married,professional.course,no,no,no,cellular,jul,fri,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,management,married,university.degree,no,no,no,cellular,jul,fri,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,admin.,single,high.school,no,no,yes,cellular,jul,fri,18,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,admin.,married,high.school,no,no,no,cellular,jul,fri,795,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,technician,divorced,university.degree,unknown,yes,no,telephone,jul,fri,1946,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+56,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,560,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,married,high.school,no,yes,no,cellular,jul,fri,172,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,fri,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,admin.,married,university.degree,no,no,no,cellular,jul,fri,99,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+60,retired,married,high.school,unknown,yes,no,telephone,jul,fri,297,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+60,retired,married,basic.6y,unknown,no,no,cellular,jul,fri,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+60,retired,married,basic.6y,unknown,no,no,cellular,jul,fri,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,fri,182,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,high.school,no,no,no,cellular,jul,fri,168,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,technician,divorced,unknown,unknown,yes,no,cellular,jul,fri,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,blue-collar,married,basic.4y,no,no,no,cellular,jul,fri,46,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,married,professional.course,no,no,no,cellular,jul,fri,1106,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,81,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,blue-collar,married,unknown,no,no,no,cellular,jul,fri,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,236,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,blue-collar,married,high.school,no,yes,yes,cellular,jul,fri,132,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,entrepreneur,married,university.degree,no,yes,no,cellular,jul,fri,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,unemployed,married,high.school,unknown,no,no,cellular,jul,fri,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,single,basic.9y,no,no,yes,cellular,jul,fri,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,technician,married,university.degree,no,no,no,cellular,jul,fri,146,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,retired,single,basic.4y,no,no,no,telephone,jul,fri,102,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,married,high.school,no,no,no,cellular,jul,fri,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,technician,married,university.degree,no,yes,no,cellular,jul,fri,367,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,admin.,married,basic.6y,no,yes,no,cellular,jul,fri,426,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,800,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,retired,married,professional.course,no,yes,no,cellular,jul,fri,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,technician,divorced,university.degree,no,no,yes,cellular,jul,fri,165,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,357,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,self-employed,married,basic.9y,no,yes,no,cellular,jul,fri,177,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,technician,married,professional.course,unknown,no,no,cellular,jul,fri,69,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,retired,married,professional.course,no,yes,no,cellular,jul,fri,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,technician,married,professional.course,unknown,no,no,cellular,jul,fri,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,retired,divorced,basic.9y,unknown,yes,no,telephone,jul,fri,362,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+40,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,fri,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,fri,135,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,fri,132,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,technician,married,unknown,unknown,yes,no,cellular,jul,fri,177,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,married,university.degree,no,no,no,cellular,jul,fri,67,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,admin.,married,high.school,no,no,yes,cellular,jul,fri,204,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,admin.,single,unknown,no,yes,no,cellular,jul,fri,153,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,services,married,high.school,unknown,yes,yes,cellular,jul,fri,239,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,technician,single,unknown,no,no,no,cellular,jul,fri,337,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,technician,married,professional.course,no,yes,no,telephone,jul,fri,149,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,admin.,married,basic.9y,unknown,yes,no,cellular,jul,fri,471,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,admin.,single,high.school,no,yes,yes,telephone,jul,fri,214,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,technician,married,professional.course,no,no,no,cellular,jul,fri,796,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,retired,married,professional.course,no,yes,no,cellular,jul,fri,51,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,management,married,basic.9y,no,yes,no,telephone,jul,fri,106,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,211,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,admin.,married,high.school,no,yes,no,cellular,jul,fri,311,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,technician,married,university.degree,no,yes,yes,cellular,jul,fri,483,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,retired,married,professional.course,no,yes,yes,cellular,jul,fri,605,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,blue-collar,married,basic.9y,unknown,yes,yes,cellular,jul,fri,110,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,276,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,admin.,married,university.degree,no,no,no,telephone,jul,fri,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,retired,married,professional.course,no,no,yes,cellular,jul,fri,39,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,married,university.degree,no,yes,no,cellular,jul,fri,127,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,retired,divorced,university.degree,no,no,no,telephone,jul,fri,87,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,66,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,admin.,single,high.school,no,no,no,cellular,jul,fri,163,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,unemployed,married,high.school,unknown,yes,no,cellular,jul,fri,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,technician,divorced,unknown,unknown,no,no,telephone,jul,fri,511,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,technician,single,unknown,no,yes,no,cellular,jul,fri,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,services,single,basic.9y,no,no,no,cellular,jul,fri,102,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,53,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,married,university.degree,no,no,no,cellular,jul,fri,743,13,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+55,retired,married,basic.4y,unknown,yes,no,cellular,jul,fri,129,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,retired,married,basic.4y,unknown,yes,yes,cellular,jul,fri,258,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,2015,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+56,admin.,married,university.degree,unknown,no,no,cellular,jul,fri,98,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,self-employed,divorced,professional.course,no,no,no,telephone,jul,fri,657,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,management,married,university.degree,no,yes,no,telephone,jul,fri,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,261,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,services,married,high.school,no,yes,no,cellular,jul,fri,442,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+60,management,married,university.degree,no,no,no,cellular,jul,fri,241,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,technician,married,professional.course,unknown,yes,yes,cellular,jul,fri,152,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,single,high.school,no,yes,no,cellular,jul,fri,147,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,unemployed,married,high.school,no,yes,yes,cellular,jul,fri,730,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,36,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,technician,married,high.school,no,no,no,cellular,jul,fri,1161,26,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,admin.,married,basic.9y,no,no,no,cellular,jul,fri,90,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,technician,married,university.degree,no,no,no,cellular,jul,fri,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,blue-collar,married,high.school,no,no,no,cellular,jul,fri,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,admin.,married,university.degree,no,yes,yes,cellular,jul,fri,374,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,services,married,high.school,no,no,no,cellular,jul,fri,468,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,entrepreneur,married,basic.6y,unknown,no,no,cellular,jul,fri,141,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,entrepreneur,divorced,university.degree,no,no,no,cellular,jul,fri,155,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,housemaid,married,basic.4y,unknown,unknown,unknown,cellular,jul,fri,356,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,technician,divorced,university.degree,no,no,no,cellular,jul,fri,147,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,married,basic.6y,no,no,yes,cellular,jul,fri,268,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,admin.,married,university.degree,no,no,no,cellular,jul,fri,84,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,admin.,married,basic.9y,unknown,no,no,telephone,jul,fri,259,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,entrepreneur,divorced,high.school,no,unknown,unknown,cellular,jul,fri,360,13,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,retired,married,professional.course,no,yes,no,cellular,jul,fri,1031,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+46,technician,married,professional.course,no,unknown,unknown,cellular,jul,fri,1368,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,services,married,high.school,unknown,yes,no,cellular,jul,fri,507,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,admin.,married,university.degree,unknown,no,no,cellular,jul,fri,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,technician,single,unknown,no,yes,no,cellular,jul,fri,266,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,unknown,single,unknown,no,no,no,cellular,jul,fri,295,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,services,married,high.school,no,no,no,cellular,jul,fri,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,technician,single,high.school,no,yes,no,cellular,jul,fri,270,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+33,services,married,high.school,no,yes,no,cellular,jul,fri,396,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,services,single,high.school,no,yes,no,cellular,jul,fri,273,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,services,married,high.school,no,yes,no,cellular,jul,fri,72,30,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,blue-collar,single,basic.4y,no,unknown,unknown,telephone,jul,fri,385,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,admin.,divorced,high.school,no,no,no,cellular,jul,fri,87,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,technician,married,professional.course,no,no,no,cellular,jul,fri,161,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,entrepreneur,married,basic.6y,unknown,yes,no,cellular,jul,fri,92,15,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,retired,married,professional.course,no,no,no,cellular,jul,fri,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,self-employed,married,university.degree,no,no,no,cellular,jul,fri,356,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,technician,married,professional.course,unknown,no,no,cellular,jul,fri,394,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,admin.,married,university.degree,no,no,no,cellular,jul,fri,293,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,admin.,single,high.school,no,no,no,cellular,jul,fri,135,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+60,technician,married,high.school,no,no,no,cellular,jul,fri,590,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+28,services,married,high.school,no,no,yes,cellular,jul,fri,200,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,student,single,unknown,no,yes,no,cellular,jul,fri,587,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,retired,married,basic.9y,unknown,no,no,cellular,jul,fri,1330,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+45,blue-collar,married,basic.4y,no,no,no,cellular,jul,fri,194,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,238,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,admin.,married,university.degree,no,no,yes,cellular,jul,fri,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,unemployed,single,basic.9y,no,no,no,cellular,jul,fri,936,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,management,divorced,university.degree,no,no,no,cellular,jul,fri,210,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,single,university.degree,no,no,yes,cellular,jul,fri,83,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,services,married,high.school,unknown,yes,no,cellular,jul,fri,946,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+31,services,married,high.school,no,no,yes,cellular,jul,fri,1319,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,entrepreneur,married,university.degree,no,no,yes,cellular,jul,fri,250,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,technician,married,basic.4y,unknown,no,yes,cellular,jul,fri,103,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,admin.,married,unknown,unknown,yes,no,cellular,jul,fri,150,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,admin.,married,university.degree,unknown,no,no,cellular,jul,fri,67,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,entrepreneur,married,basic.6y,unknown,yes,yes,cellular,jul,fri,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,fri,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,retired,single,basic.4y,no,no,yes,telephone,jul,fri,93,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,retired,married,high.school,no,yes,no,cellular,jul,fri,99,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,retired,married,high.school,no,yes,no,cellular,jul,fri,1448,17,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+52,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,fri,432,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,admin.,single,high.school,no,yes,no,telephone,jul,fri,143,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,unemployed,single,basic.9y,no,yes,yes,cellular,jul,fri,50,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,self-employed,married,basic.4y,unknown,yes,no,cellular,jul,fri,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,services,married,high.school,no,no,yes,cellular,jul,fri,87,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,admin.,married,university.degree,no,no,yes,cellular,jul,fri,400,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,student,single,unknown,no,yes,no,telephone,jul,fri,279,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+44,blue-collar,married,basic.9y,no,no,yes,cellular,jul,fri,185,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,admin.,divorced,high.school,no,yes,yes,cellular,jul,fri,164,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,admin.,married,university.degree,no,no,yes,cellular,jul,fri,188,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,technician,married,professional.course,unknown,no,yes,cellular,jul,fri,118,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,admin.,married,high.school,unknown,yes,no,cellular,jul,fri,661,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+57,admin.,single,unknown,no,no,no,cellular,jul,fri,137,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,admin.,single,high.school,no,yes,no,cellular,jul,fri,237,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,unemployed,divorced,high.school,unknown,no,no,cellular,jul,fri,195,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,blue-collar,married,basic.6y,unknown,yes,yes,cellular,jul,fri,138,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+25,management,single,university.degree,no,yes,yes,cellular,jul,fri,114,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,management,married,high.school,no,yes,no,cellular,jul,fri,96,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,technician,divorced,university.degree,unknown,no,no,cellular,jul,fri,65,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,blue-collar,married,basic.4y,no,no,no,cellular,jul,fri,144,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,198,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,blue-collar,married,unknown,unknown,yes,no,cellular,jul,fri,386,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,admin.,single,university.degree,no,no,no,telephone,jul,fri,163,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,admin.,single,high.school,no,no,yes,cellular,jul,fri,63,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,technician,married,unknown,unknown,yes,yes,cellular,jul,fri,84,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,technician,married,basic.9y,unknown,no,no,cellular,jul,fri,188,14,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,admin.,divorced,basic.9y,no,yes,yes,cellular,jul,fri,481,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+28,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,1369,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+39,admin.,married,university.degree,no,no,no,cellular,jul,fri,653,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+50,retired,married,professional.course,no,yes,yes,cellular,jul,fri,460,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,41,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,fri,282,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,technician,married,professional.course,no,no,yes,telephone,jul,fri,395,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,technician,married,professional.course,no,yes,no,cellular,jul,fri,190,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,71,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,admin.,divorced,professional.course,unknown,no,no,cellular,jul,mon,68,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,admin.,married,high.school,unknown,yes,no,cellular,jul,mon,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,high.school,no,yes,yes,cellular,jul,mon,32,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,management,married,high.school,unknown,yes,no,cellular,jul,mon,102,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,divorced,professional.course,no,yes,no,cellular,jul,mon,147,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,unknown,single,university.degree,unknown,yes,no,cellular,jul,mon,93,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,29,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,services,married,high.school,no,yes,yes,telephone,jul,mon,63,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,40,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,230,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,unknown,married,unknown,no,yes,no,cellular,jul,mon,33,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,housemaid,divorced,university.degree,unknown,yes,no,cellular,jul,mon,57,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,technician,married,basic.6y,no,yes,no,cellular,jul,mon,177,17,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,mon,52,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,entrepreneur,single,university.degree,no,no,no,cellular,jul,mon,49,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,entrepreneur,single,university.degree,no,no,no,cellular,jul,mon,123,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,admin.,divorced,high.school,no,yes,yes,cellular,jul,mon,44,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,self-employed,married,university.degree,no,no,no,cellular,jul,mon,243,30,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,mon,41,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,management,divorced,university.degree,no,no,no,cellular,jul,mon,60,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,technician,divorced,university.degree,unknown,yes,yes,telephone,jul,mon,31,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,admin.,divorced,high.school,no,yes,yes,cellular,jul,mon,52,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,student,married,unknown,no,yes,no,cellular,jul,mon,110,17,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,technician,married,basic.9y,unknown,yes,yes,cellular,jul,mon,33,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,unknown,unknown,unknown,unknown,yes,yes,cellular,jul,mon,49,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,admin.,married,high.school,unknown,no,no,cellular,jul,mon,327,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,single,professional.course,no,yes,no,cellular,jul,mon,108,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,services,married,high.school,no,yes,yes,cellular,jul,mon,95,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,services,divorced,high.school,no,no,no,cellular,jul,mon,119,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,admin.,divorced,basic.6y,unknown,no,yes,cellular,jul,mon,234,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,management,single,university.degree,unknown,no,no,cellular,jul,mon,261,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,management,married,basic.9y,no,yes,no,cellular,jul,mon,180,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,services,married,high.school,no,yes,no,cellular,jul,mon,56,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,retired,divorced,professional.course,no,yes,no,cellular,jul,mon,70,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,admin.,married,basic.9y,unknown,yes,no,cellular,jul,mon,163,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,basic.6y,no,yes,no,cellular,jul,mon,62,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,admin.,married,university.degree,unknown,yes,no,cellular,jul,mon,110,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,married,high.school,unknown,yes,no,cellular,jul,mon,386,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,married,high.school,no,yes,no,cellular,jul,mon,295,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,458,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+51,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,117,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,admin.,married,high.school,no,yes,no,cellular,jul,mon,69,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,single,university.degree,no,yes,no,cellular,jul,mon,48,20,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,57,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,management,divorced,university.degree,no,no,no,cellular,jul,mon,983,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+47,technician,single,professional.course,no,yes,no,cellular,jul,mon,365,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+42,self-employed,married,university.degree,unknown,no,yes,cellular,jul,mon,95,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,31,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,technician,married,university.degree,no,yes,no,cellular,jul,mon,55,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,services,married,high.school,unknown,yes,no,cellular,jul,mon,49,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,single,high.school,unknown,no,no,telephone,jul,mon,193,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,married,basic.4y,unknown,no,no,telephone,jul,mon,36,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,retired,married,university.degree,no,yes,no,cellular,jul,mon,664,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+40,blue-collar,married,professional.course,no,yes,no,cellular,jul,mon,108,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,technician,married,professional.course,no,no,no,cellular,jul,mon,110,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,services,married,high.school,unknown,no,no,cellular,jul,mon,57,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,management,married,university.degree,no,no,no,cellular,jul,mon,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,single,high.school,unknown,no,no,cellular,jul,mon,699,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+37,admin.,divorced,high.school,no,no,yes,cellular,jul,mon,131,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,services,married,basic.6y,unknown,no,no,cellular,jul,mon,463,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,services,married,basic.6y,unknown,yes,yes,cellular,jul,mon,228,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,management,single,university.degree,no,yes,no,cellular,jul,mon,30,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,admin.,married,high.school,no,yes,no,cellular,jul,mon,700,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+53,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,management,married,university.degree,unknown,no,yes,cellular,jul,mon,219,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,services,married,professional.course,no,yes,yes,cellular,jul,mon,307,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,services,married,high.school,no,yes,no,cellular,jul,mon,82,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,management,single,university.degree,unknown,yes,no,cellular,jul,mon,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,retired,married,unknown,unknown,yes,no,telephone,jul,mon,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,services,married,high.school,no,yes,yes,cellular,jul,mon,115,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,services,married,basic.6y,unknown,unknown,unknown,cellular,jul,mon,939,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+51,management,married,university.degree,unknown,no,no,cellular,jul,mon,60,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,divorced,university.degree,no,yes,yes,cellular,jul,mon,340,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,technician,married,professional.course,unknown,yes,no,cellular,jul,mon,54,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,technician,divorced,university.degree,unknown,no,no,cellular,jul,mon,73,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,retired,divorced,basic.4y,unknown,yes,no,cellular,jul,mon,362,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,management,married,university.degree,unknown,yes,yes,cellular,jul,mon,746,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,retired,married,unknown,unknown,yes,no,telephone,jul,mon,22,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,admin.,divorced,basic.4y,unknown,yes,yes,cellular,jul,mon,745,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+38,admin.,married,high.school,no,yes,no,cellular,jul,mon,319,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,married,high.school,no,no,no,cellular,jul,mon,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,technician,divorced,high.school,no,yes,yes,cellular,jul,mon,200,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,retired,married,unknown,unknown,yes,no,cellular,jul,mon,174,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,technician,married,basic.9y,unknown,no,no,cellular,jul,mon,136,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,technician,divorced,university.degree,unknown,no,no,cellular,jul,mon,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,professional.course,no,no,no,telephone,jul,mon,108,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,management,married,university.degree,no,no,no,cellular,jul,mon,87,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,technician,married,professional.course,no,no,no,cellular,jul,mon,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,self-employed,married,university.degree,unknown,unknown,unknown,telephone,jul,mon,644,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,mon,108,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,housemaid,married,basic.4y,unknown,yes,no,telephone,jul,mon,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,services,married,university.degree,no,no,no,cellular,jul,mon,139,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,84,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,professional.course,no,no,no,cellular,jul,mon,240,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,admin.,married,basic.9y,unknown,no,no,cellular,jul,mon,194,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,blue-collar,married,professional.course,no,yes,yes,cellular,jul,mon,330,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,admin.,single,unknown,unknown,no,no,telephone,jul,mon,228,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,management,married,university.degree,no,no,no,cellular,jul,mon,662,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+53,services,married,unknown,unknown,yes,no,cellular,jul,mon,60,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,self-employed,married,university.degree,unknown,yes,no,telephone,jul,mon,40,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,unknown,unknown,unknown,unknown,yes,no,cellular,jul,mon,230,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,jul,mon,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,housemaid,married,basic.4y,unknown,no,no,cellular,jul,mon,78,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,retired,married,basic.9y,no,no,no,cellular,jul,mon,551,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,management,divorced,university.degree,no,no,no,telephone,jul,mon,130,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,admin.,single,unknown,unknown,no,yes,cellular,jul,mon,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,blue-collar,married,unknown,unknown,no,no,cellular,jul,mon,295,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,housemaid,married,basic.4y,unknown,no,no,cellular,jul,mon,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,management,married,high.school,unknown,yes,no,telephone,jul,mon,13,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,mon,367,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,management,married,high.school,unknown,no,no,telephone,jul,mon,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,self-employed,married,university.degree,no,no,no,cellular,jul,mon,97,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,admin.,married,university.degree,no,no,no,cellular,jul,mon,73,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,management,married,high.school,unknown,yes,no,cellular,jul,mon,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,management,married,high.school,unknown,no,no,cellular,jul,mon,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,single,university.degree,no,yes,no,cellular,jul,mon,50,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,admin.,married,university.degree,no,no,no,cellular,jul,mon,24,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,self-employed,married,university.degree,no,no,no,cellular,jul,mon,84,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,services,married,basic.6y,unknown,no,no,cellular,jul,mon,547,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,management,married,high.school,unknown,no,yes,cellular,jul,mon,292,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,unknown,married,unknown,unknown,no,no,cellular,jul,mon,53,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,241,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,management,married,high.school,unknown,yes,no,cellular,jul,mon,418,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,services,divorced,high.school,no,yes,yes,telephone,jul,mon,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,retired,married,basic.4y,unknown,no,yes,cellular,jul,mon,65,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,admin.,married,high.school,no,yes,yes,telephone,jul,mon,388,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,unemployed,married,basic.6y,unknown,no,no,cellular,jul,mon,273,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,housemaid,divorced,unknown,unknown,no,no,cellular,jul,mon,103,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,services,divorced,high.school,no,yes,yes,cellular,jul,mon,1169,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+46,admin.,divorced,university.degree,no,yes,no,telephone,jul,mon,59,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,professional.course,no,yes,yes,cellular,jul,mon,431,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+50,unknown,married,unknown,unknown,yes,no,cellular,jul,mon,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,services,married,basic.6y,unknown,yes,yes,cellular,jul,mon,405,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,admin.,married,high.school,no,yes,yes,cellular,jul,mon,263,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,self-employed,married,unknown,unknown,no,no,cellular,jul,mon,143,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,admin.,divorced,high.school,no,no,no,cellular,jul,mon,837,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+45,services,married,professional.course,no,yes,no,cellular,jul,mon,19,23,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,63,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,married,high.school,unknown,no,yes,telephone,jul,mon,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,services,married,high.school,unknown,yes,no,telephone,jul,mon,596,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+37,admin.,married,university.degree,unknown,yes,no,cellular,jul,mon,35,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,housemaid,married,basic.4y,unknown,no,no,cellular,jul,mon,71,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,services,married,high.school,no,no,no,cellular,jul,mon,337,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,services,married,basic.6y,unknown,yes,no,cellular,jul,mon,65,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,unknown,married,unknown,no,yes,no,cellular,jul,mon,48,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,services,married,high.school,unknown,no,no,cellular,jul,mon,174,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,married,high.school,unknown,yes,no,cellular,jul,mon,201,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,divorced,basic.6y,no,no,yes,telephone,jul,mon,296,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+35,entrepreneur,single,university.degree,no,no,no,cellular,jul,mon,180,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,admin.,married,university.degree,unknown,no,no,cellular,jul,mon,332,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,55,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,married,high.school,unknown,no,yes,cellular,jul,mon,301,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,admin.,divorced,university.degree,no,no,no,telephone,jul,mon,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,54,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,technician,married,basic.9y,unknown,yes,no,cellular,jul,mon,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,admin.,divorced,high.school,no,yes,no,cellular,jul,mon,86,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,404,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,blue-collar,single,high.school,no,yes,no,cellular,jul,mon,435,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,admin.,married,university.degree,no,no,yes,cellular,jul,mon,231,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,basic.4y,no,yes,yes,telephone,jul,mon,40,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,single,university.degree,no,yes,no,cellular,jul,mon,73,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,divorced,high.school,no,no,no,cellular,jul,mon,300,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,services,married,high.school,unknown,yes,no,cellular,jul,mon,193,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,management,married,high.school,unknown,no,yes,telephone,jul,mon,73,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,retired,married,basic.4y,unknown,no,no,cellular,jul,mon,22,18,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,technician,married,basic.9y,no,yes,no,cellular,jul,mon,502,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,self-employed,married,university.degree,no,no,yes,cellular,jul,mon,83,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,289,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,management,divorced,professional.course,no,no,no,cellular,jul,mon,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,services,married,high.school,no,no,no,cellular,jul,mon,157,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,438,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,technician,married,professional.course,no,no,no,telephone,jul,mon,155,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,professional.course,no,no,no,cellular,jul,mon,189,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,professional.course,no,yes,no,cellular,jul,mon,96,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,single,university.degree,no,yes,yes,cellular,jul,mon,25,18,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,services,divorced,high.school,no,yes,yes,cellular,jul,mon,395,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,blue-collar,single,high.school,unknown,yes,no,cellular,jul,mon,246,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,admin.,divorced,high.school,unknown,no,yes,cellular,jul,mon,630,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+37,admin.,married,university.degree,no,no,no,cellular,jul,mon,60,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,technician,married,basic.9y,unknown,no,no,cellular,jul,mon,116,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,self-employed,married,unknown,unknown,no,no,telephone,jul,mon,1025,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,admin.,married,university.degree,unknown,yes,no,cellular,jul,mon,231,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,services,married,basic.6y,unknown,yes,yes,cellular,jul,mon,76,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,unemployed,married,basic.6y,unknown,yes,no,cellular,jul,mon,131,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,470,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,management,divorced,university.degree,no,no,no,cellular,jul,mon,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,mon,60,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,technician,married,professional.course,no,yes,no,cellular,jul,mon,383,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+36,services,single,high.school,no,no,no,cellular,jul,mon,719,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,unemployed,married,basic.9y,unknown,yes,no,cellular,jul,mon,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,admin.,divorced,basic.6y,unknown,no,no,cellular,jul,mon,70,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,234,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,professional.course,no,no,no,cellular,jul,mon,81,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+59,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,mon,106,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,self-employed,married,university.degree,unknown,no,no,cellular,jul,mon,83,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,82,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,services,divorced,high.school,unknown,yes,no,cellular,jul,mon,118,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,admin.,married,high.school,no,no,no,cellular,jul,mon,76,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,technician,single,university.degree,unknown,no,no,telephone,jul,mon,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,blue-collar,married,professional.course,no,no,no,cellular,jul,mon,86,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,blue-collar,married,high.school,unknown,no,no,cellular,jul,mon,33,29,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,1339,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,technician,married,professional.course,no,yes,no,cellular,jul,mon,359,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,professional.course,no,no,no,cellular,jul,mon,102,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,mon,59,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,high.school,no,yes,no,cellular,jul,mon,128,22,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,services,married,high.school,unknown,yes,no,cellular,jul,mon,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,technician,divorced,professional.course,no,yes,no,cellular,jul,mon,112,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,professional.course,no,no,no,cellular,jul,mon,674,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,admin.,married,university.degree,no,no,no,telephone,jul,mon,1009,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+55,self-employed,married,unknown,unknown,no,no,cellular,jul,mon,136,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,admin.,married,university.degree,unknown,yes,no,cellular,jul,mon,121,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,self-employed,married,unknown,unknown,yes,no,telephone,jul,mon,81,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,management,divorced,university.degree,unknown,yes,no,cellular,jul,mon,141,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,services,divorced,high.school,no,yes,no,cellular,jul,mon,158,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,technician,married,unknown,no,yes,no,cellular,jul,mon,1096,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+42,self-employed,married,university.degree,no,unknown,unknown,cellular,jul,mon,624,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,management,married,university.degree,unknown,no,no,cellular,jul,mon,93,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,technician,married,professional.course,no,yes,no,cellular,jul,mon,534,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,unemployed,divorced,basic.9y,no,no,no,cellular,jul,mon,117,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,housemaid,divorced,basic.4y,no,yes,yes,cellular,jul,mon,78,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,247,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,services,married,university.degree,unknown,yes,no,telephone,jul,mon,317,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,admin.,divorced,high.school,no,yes,no,telephone,jul,mon,75,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,management,married,unknown,no,yes,yes,cellular,jul,mon,88,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,services,divorced,university.degree,no,yes,no,cellular,jul,mon,63,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,318,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,married,unknown,no,no,no,cellular,jul,mon,246,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,867,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+43,unemployed,divorced,basic.9y,no,yes,yes,telephone,jul,mon,41,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,unknown,married,unknown,unknown,yes,no,cellular,jul,mon,207,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,services,divorced,high.school,unknown,yes,no,cellular,jul,mon,761,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,admin.,married,high.school,no,yes,yes,cellular,jul,mon,234,15,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,management,single,university.degree,no,no,no,cellular,jul,mon,310,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,self-employed,married,high.school,unknown,yes,yes,cellular,jul,mon,88,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,admin.,married,high.school,no,yes,yes,cellular,jul,mon,283,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,admin.,single,basic.9y,unknown,yes,no,cellular,jul,mon,418,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,self-employed,divorced,university.degree,no,no,no,cellular,jul,mon,179,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,single,high.school,no,no,no,cellular,jul,mon,419,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,housemaid,married,basic.4y,no,yes,no,cellular,jul,mon,88,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,management,divorced,high.school,no,no,no,cellular,jul,mon,121,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,divorced,unknown,no,no,no,cellular,jul,mon,42,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,services,married,high.school,unknown,no,yes,telephone,jul,mon,187,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,admin.,single,university.degree,no,yes,yes,cellular,jul,mon,141,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,admin.,married,university.degree,no,yes,no,cellular,jul,mon,320,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,technician,divorced,professional.course,no,yes,yes,cellular,jul,mon,154,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,admin.,married,high.school,no,no,no,cellular,jul,mon,339,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,admin.,divorced,high.school,no,no,no,cellular,jul,mon,493,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,admin.,married,high.school,no,no,yes,cellular,jul,mon,551,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+50,self-employed,married,professional.course,no,yes,yes,cellular,jul,mon,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,239,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,technician,single,university.degree,unknown,no,no,cellular,jul,mon,644,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,retired,married,university.degree,no,yes,no,cellular,jul,mon,322,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,admin.,divorced,unknown,no,yes,yes,cellular,jul,mon,269,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,jul,mon,124,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,technician,single,university.degree,unknown,yes,no,cellular,jul,mon,333,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,admin.,married,high.school,no,no,no,cellular,jul,mon,180,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+32,blue-collar,single,basic.4y,no,no,no,cellular,jul,mon,160,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,services,divorced,high.school,no,yes,no,cellular,jul,mon,192,19,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,management,married,university.degree,unknown,yes,no,telephone,jul,mon,182,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,housemaid,married,basic.4y,no,yes,no,cellular,jul,mon,76,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,self-employed,divorced,university.degree,unknown,yes,no,cellular,jul,mon,433,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,technician,divorced,basic.6y,no,yes,no,cellular,jul,mon,120,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+27,admin.,married,high.school,no,yes,no,cellular,jul,mon,290,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,admin.,married,university.degree,no,yes,no,cellular,jul,mon,118,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,divorced,high.school,no,yes,no,cellular,jul,mon,58,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,admin.,married,high.school,no,yes,no,cellular,jul,mon,149,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,114,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,student,single,unknown,unknown,no,no,cellular,jul,mon,91,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,unemployed,divorced,basic.9y,no,no,no,cellular,jul,mon,398,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,services,married,basic.4y,no,no,no,cellular,jul,mon,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,divorced,unknown,no,no,yes,cellular,jul,mon,117,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,services,married,basic.6y,no,yes,no,cellular,jul,mon,159,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,management,married,university.degree,unknown,yes,no,cellular,jul,mon,37,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,technician,divorced,university.degree,no,no,yes,cellular,jul,mon,127,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,housemaid,married,basic.4y,no,no,no,cellular,jul,mon,90,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,admin.,divorced,professional.course,no,no,yes,cellular,jul,mon,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+37,services,married,high.school,no,no,yes,cellular,jul,mon,264,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,unemployed,divorced,high.school,no,no,no,cellular,jul,mon,377,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,retired,married,high.school,no,no,no,cellular,jul,mon,73,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,housemaid,married,university.degree,unknown,yes,no,cellular,jul,mon,71,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,blue-collar,married,unknown,unknown,no,no,cellular,jul,mon,118,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,admin.,married,university.degree,unknown,no,no,cellular,jul,mon,257,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,married,unknown,no,no,no,cellular,jul,mon,234,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,blue-collar,divorced,basic.6y,unknown,no,no,cellular,jul,mon,1065,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+55,services,divorced,high.school,no,yes,no,cellular,jul,mon,499,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,married,unknown,no,no,no,cellular,jul,mon,220,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+30,admin.,married,unknown,no,no,no,cellular,jul,mon,270,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,mon,213,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,divorced,basic.6y,unknown,no,no,telephone,jul,mon,1037,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,housemaid,married,basic.4y,no,no,no,cellular,jul,mon,262,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,self-employed,married,university.degree,no,no,no,cellular,jul,mon,22,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,management,married,unknown,no,no,no,cellular,jul,mon,123,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,management,married,basic.9y,unknown,no,no,cellular,jul,mon,83,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,blue-collar,divorced,basic.9y,no,yes,yes,cellular,jul,mon,138,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,self-employed,married,university.degree,unknown,no,no,cellular,jul,mon,191,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,technician,single,university.degree,unknown,yes,no,cellular,jul,mon,267,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,retired,divorced,high.school,no,no,no,cellular,jul,mon,609,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,retired,divorced,basic.9y,no,no,no,telephone,jul,mon,313,16,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,admin.,married,high.school,no,yes,no,cellular,jul,mon,170,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,retired,single,unknown,unknown,no,no,cellular,jul,mon,117,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+38,student,single,unknown,unknown,yes,yes,cellular,jul,mon,76,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,retired,married,basic.4y,unknown,no,yes,cellular,jul,mon,780,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,mon,165,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,technician,married,professional.course,no,no,no,cellular,jul,mon,314,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,housemaid,married,university.degree,no,yes,no,cellular,jul,mon,306,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+52,housemaid,married,basic.9y,no,yes,no,cellular,jul,mon,83,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,services,married,basic.6y,no,yes,no,cellular,jul,mon,320,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,unemployed,divorced,basic.9y,no,no,no,cellular,jul,mon,39,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,technician,divorced,unknown,unknown,yes,no,cellular,jul,mon,341,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+34,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,151,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,retired,married,high.school,no,no,no,cellular,jul,mon,377,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+51,entrepreneur,divorced,university.degree,no,unknown,unknown,cellular,jul,mon,19,14,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,admin.,married,high.school,no,yes,yes,cellular,jul,mon,76,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,technician,married,basic.9y,unknown,yes,no,cellular,jul,mon,72,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,admin.,married,university.degree,unknown,yes,no,cellular,jul,mon,194,24,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,self-employed,divorced,university.degree,no,no,yes,cellular,jul,mon,890,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+43,services,married,high.school,no,yes,yes,telephone,jul,mon,118,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+45,self-employed,divorced,university.degree,no,yes,no,cellular,jul,mon,168,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,technician,married,professional.course,no,no,yes,telephone,jul,mon,76,18,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,services,divorced,high.school,no,no,no,cellular,jul,mon,167,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,admin.,single,university.degree,no,no,no,cellular,jul,mon,472,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,self-employed,divorced,high.school,unknown,no,no,telephone,jul,mon,178,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,admin.,divorced,professional.course,no,yes,no,cellular,jul,mon,276,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,technician,married,university.degree,no,no,no,cellular,jul,mon,147,15,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+60,retired,divorced,professional.course,no,no,no,cellular,jul,mon,131,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+56,blue-collar,divorced,basic.9y,no,yes,yes,cellular,jul,mon,123,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,housemaid,divorced,basic.4y,no,yes,no,cellular,jul,mon,50,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,admin.,divorced,university.degree,unknown,no,yes,cellular,jul,mon,85,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+41,unknown,unknown,unknown,no,yes,no,cellular,jul,mon,91,13,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,209,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+58,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,97,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,admin.,married,university.degree,no,no,no,telephone,jul,mon,1076,17,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes
+46,self-employed,married,university.degree,no,yes,no,cellular,jul,mon,152,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,technician,divorced,professional.course,no,no,yes,telephone,jul,mon,107,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,housemaid,married,basic.9y,unknown,no,no,cellular,jul,mon,100,16,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+46,management,married,basic.9y,unknown,yes,yes,cellular,jul,mon,488,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+43,unemployed,divorced,basic.9y,no,yes,no,cellular,jul,mon,265,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,retired,single,unknown,unknown,yes,yes,cellular,jul,mon,174,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,504,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+26,admin.,single,university.degree,no,no,no,telephone,jul,mon,127,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,blue-collar,married,high.school,no,no,yes,cellular,jul,mon,136,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+55,services,divorced,high.school,no,no,no,cellular,jul,mon,164,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,retired,married,basic.4y,unknown,no,no,cellular,jul,mon,110,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+53,blue-collar,married,high.school,no,yes,yes,cellular,jul,mon,243,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+36,housemaid,married,basic.4y,no,yes,yes,cellular,jul,mon,120,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+57,admin.,married,professional.course,no,unknown,unknown,cellular,jul,mon,127,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+42,housemaid,married,basic.4y,unknown,yes,no,telephone,jul,mon,122,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+40,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,206,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+44,technician,divorced,professional.course,no,yes,yes,telephone,jul,mon,90,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+48,retired,married,basic.4y,unknown,yes,yes,telephone,jul,mon,27,17,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,divorced,high.school,no,no,no,telephone,jul,mon,210,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,technician,married,high.school,no,yes,no,telephone,jul,mon,126,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+54,housemaid,married,basic.4y,unknown,no,no,cellular,jul,mon,125,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+39,admin.,single,high.school,no,yes,no,telephone,jul,mon,215,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+50,technician,single,professional.course,no,no,yes,cellular,jul,mon,173,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+49,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,jul,mon,786,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no
+47,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,38,16,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,retired,married,high.school,no,no,no,cellular,jul,tue,193,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,215,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,tue,393,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,retired,divorced,university.degree,no,yes,no,cellular,jul,tue,62,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,self-employed,married,high.school,no,yes,no,telephone,jul,tue,121,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,entrepreneur,divorced,university.degree,no,no,no,telephone,jul,tue,345,16,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,technician,married,high.school,no,yes,no,cellular,jul,tue,88,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,technician,married,professional.course,no,no,yes,cellular,jul,tue,178,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,admin.,divorced,high.school,no,no,no,cellular,jul,tue,858,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,tue,82,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,self-employed,married,high.school,no,yes,no,cellular,jul,tue,119,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,blue-collar,single,high.school,no,no,no,telephone,jul,tue,480,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+42,technician,single,professional.course,no,yes,no,cellular,jul,tue,179,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,single,unknown,no,yes,no,cellular,jul,tue,95,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,admin.,single,university.degree,no,yes,yes,cellular,jul,tue,62,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,technician,single,unknown,no,no,no,cellular,jul,tue,117,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,unemployed,married,basic.4y,unknown,yes,no,cellular,jul,tue,176,20,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,admin.,married,professional.course,no,yes,no,cellular,jul,tue,47,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+42,services,single,unknown,unknown,yes,no,telephone,jul,tue,105,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,admin.,married,high.school,unknown,yes,yes,cellular,jul,tue,10,22,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,technician,single,professional.course,no,yes,no,cellular,jul,tue,62,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,admin.,married,university.degree,unknown,yes,yes,telephone,jul,tue,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,admin.,single,university.degree,no,no,no,cellular,jul,tue,60,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,technician,single,professional.course,no,no,no,cellular,jul,tue,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,technician,married,basic.9y,unknown,yes,no,cellular,jul,tue,234,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,management,divorced,university.degree,no,yes,yes,cellular,jul,tue,192,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,blue-collar,married,high.school,no,yes,no,cellular,jul,tue,118,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+51,services,married,high.school,unknown,no,no,cellular,jul,tue,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,single,professional.course,no,no,yes,telephone,jul,tue,186,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,married,university.degree,no,yes,yes,cellular,jul,tue,82,20,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+42,services,divorced,high.school,no,yes,yes,cellular,jul,tue,148,14,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,admin.,married,high.school,no,no,no,cellular,jul,tue,215,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,jul,tue,54,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,management,divorced,high.school,no,no,no,cellular,jul,tue,36,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,admin.,single,university.degree,no,yes,yes,cellular,jul,tue,146,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,housemaid,married,professional.course,no,no,no,cellular,jul,tue,604,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,entrepreneur,married,university.degree,no,yes,no,cellular,jul,tue,303,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,unknown,married,unknown,unknown,no,no,cellular,jul,tue,156,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,retired,married,basic.4y,unknown,no,no,cellular,jul,tue,32,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,874,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+41,services,married,unknown,no,no,no,cellular,jul,tue,99,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+60,retired,divorced,basic.4y,no,yes,no,telephone,jul,tue,50,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,tue,648,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+54,management,married,university.degree,no,yes,yes,telephone,jul,tue,44,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,technician,married,professional.course,no,no,no,cellular,jul,tue,71,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,admin.,married,university.degree,no,yes,no,cellular,jul,tue,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,109,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,management,divorced,university.degree,no,yes,no,cellular,jul,tue,76,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,admin.,single,university.degree,no,no,no,cellular,jul,tue,90,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,management,married,university.degree,no,no,yes,cellular,jul,tue,218,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,blue-collar,married,basic.6y,no,no,no,cellular,jul,tue,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,technician,married,basic.9y,no,unknown,unknown,cellular,jul,tue,1569,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,admin.,married,university.degree,no,yes,no,telephone,jul,tue,7,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,self-employed,divorced,university.degree,no,no,no,cellular,jul,tue,69,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,entrepreneur,divorced,university.degree,no,no,no,cellular,jul,tue,122,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,admin.,divorced,high.school,unknown,yes,no,cellular,jul,tue,162,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,housemaid,divorced,basic.4y,no,unknown,unknown,cellular,jul,tue,179,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+42,management,married,high.school,unknown,no,no,cellular,jul,tue,179,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,blue-collar,married,illiterate,unknown,yes,yes,cellular,jul,tue,83,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+59,retired,divorced,university.degree,unknown,yes,no,cellular,jul,tue,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,services,married,high.school,no,no,no,cellular,jul,tue,301,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+59,retired,divorced,university.degree,unknown,yes,no,cellular,jul,tue,466,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,services,married,high.school,no,yes,no,cellular,jul,tue,117,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,services,divorced,professional.course,no,yes,no,telephone,jul,tue,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,blue-collar,married,unknown,unknown,no,yes,cellular,jul,tue,25,21,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,services,divorced,professional.course,no,no,no,cellular,jul,tue,318,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,112,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,housemaid,married,basic.4y,no,yes,no,cellular,jul,tue,241,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+52,entrepreneur,divorced,high.school,unknown,yes,no,cellular,jul,tue,710,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+55,blue-collar,divorced,basic.9y,no,yes,yes,cellular,jul,tue,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,technician,married,professional.course,unknown,yes,no,cellular,jul,tue,116,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,retired,divorced,high.school,no,yes,no,cellular,jul,tue,609,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,technician,married,professional.course,unknown,no,yes,cellular,jul,tue,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,164,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,housemaid,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,services,divorced,basic.4y,no,no,no,cellular,jul,tue,149,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+60,retired,divorced,basic.4y,no,yes,no,cellular,jul,tue,600,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+46,admin.,single,university.degree,no,no,no,cellular,jul,tue,206,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+60,retired,divorced,high.school,unknown,yes,yes,cellular,jul,tue,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+42,admin.,married,basic.9y,unknown,no,no,telephone,jul,tue,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,technician,divorced,professional.course,no,no,no,cellular,jul,tue,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,entrepreneur,married,university.degree,unknown,yes,no,cellular,jul,tue,893,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+47,services,single,high.school,no,yes,no,cellular,jul,tue,43,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+42,admin.,married,basic.9y,unknown,no,yes,cellular,jul,tue,336,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,unknown,married,unknown,unknown,yes,no,cellular,jul,tue,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,services,married,basic.9y,no,no,no,cellular,jul,tue,70,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,55,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,services,single,high.school,no,no,no,cellular,jul,tue,293,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,admin.,married,university.degree,no,no,no,cellular,jul,tue,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,unknown,married,unknown,unknown,yes,no,telephone,jul,tue,237,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+60,technician,married,professional.course,unknown,no,no,cellular,jul,tue,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,services,married,university.degree,no,yes,no,cellular,jul,tue,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,blue-collar,married,unknown,unknown,yes,no,cellular,jul,tue,299,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,admin.,married,university.degree,no,yes,no,cellular,jul,tue,24,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,admin.,married,university.degree,no,no,no,cellular,jul,tue,497,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,admin.,married,university.degree,unknown,no,no,cellular,jul,tue,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,services,married,high.school,no,yes,no,cellular,jul,tue,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,admin.,married,high.school,no,yes,no,cellular,jul,tue,60,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,admin.,single,high.school,no,no,no,cellular,jul,tue,48,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,admin.,divorced,unknown,no,no,no,cellular,jul,tue,109,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,housemaid,married,university.degree,no,no,no,cellular,jul,tue,132,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,housemaid,divorced,professional.course,unknown,no,no,cellular,jul,tue,167,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,admin.,married,high.school,no,yes,no,cellular,jul,tue,197,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,admin.,married,high.school,no,yes,no,cellular,jul,tue,98,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,admin.,married,university.degree,no,no,no,cellular,jul,tue,345,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,services,married,high.school,unknown,no,no,cellular,jul,tue,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,admin.,single,university.degree,no,yes,no,cellular,jul,tue,69,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+60,technician,married,professional.course,unknown,no,no,telephone,jul,tue,55,15,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,admin.,married,high.school,no,no,no,telephone,jul,tue,647,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,admin.,single,university.degree,no,no,no,cellular,jul,tue,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,admin.,single,university.degree,no,yes,no,cellular,jul,tue,33,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,technician,single,basic.4y,unknown,yes,no,cellular,jul,tue,96,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,management,married,university.degree,no,yes,no,cellular,jul,tue,100,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,blue-collar,single,unknown,no,yes,no,cellular,jul,tue,91,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,services,married,high.school,unknown,no,yes,cellular,jul,tue,285,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,married,professional.course,no,no,no,cellular,jul,tue,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,tue,155,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,blue-collar,divorced,basic.4y,no,no,no,cellular,jul,tue,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,blue-collar,divorced,basic.4y,no,no,no,cellular,jul,tue,305,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,technician,divorced,unknown,unknown,yes,no,cellular,jul,tue,261,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,blue-collar,divorced,basic.4y,no,no,yes,cellular,jul,tue,446,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+51,technician,married,professional.course,no,yes,no,cellular,jul,tue,248,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,admin.,married,high.school,unknown,yes,no,cellular,jul,tue,103,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,technician,single,university.degree,unknown,no,no,cellular,jul,tue,86,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,housemaid,married,basic.4y,unknown,unknown,unknown,cellular,jul,tue,105,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,services,divorced,high.school,no,no,no,cellular,jul,tue,57,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,services,divorced,university.degree,no,no,no,cellular,jul,tue,221,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,jul,tue,2516,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+48,housemaid,married,basic.4y,unknown,yes,yes,cellular,jul,tue,72,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,retired,married,university.degree,unknown,no,no,cellular,jul,tue,361,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,admin.,married,high.school,no,yes,no,cellular,jul,tue,247,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+29,services,divorced,high.school,unknown,no,no,cellular,jul,tue,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,self-employed,married,university.degree,no,yes,no,cellular,jul,tue,146,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,married,unknown,no,no,yes,cellular,jul,tue,64,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,522,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,admin.,divorced,university.degree,no,no,no,cellular,jul,tue,213,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+52,housemaid,married,university.degree,no,no,yes,cellular,jul,tue,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,admin.,married,university.degree,no,yes,yes,telephone,jul,tue,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,admin.,single,university.degree,no,no,no,cellular,jul,tue,57,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,services,married,basic.6y,no,no,no,cellular,jul,tue,100,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,technician,married,professional.course,no,yes,no,cellular,jul,tue,208,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,married,professional.course,no,no,no,cellular,jul,tue,735,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,technician,married,basic.9y,no,no,no,cellular,jul,tue,94,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+59,retired,divorced,university.degree,unknown,no,no,cellular,jul,tue,46,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,unemployed,married,high.school,unknown,no,no,telephone,jul,tue,28,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,technician,divorced,professional.course,no,yes,no,cellular,jul,tue,121,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,admin.,single,university.degree,no,yes,yes,cellular,jul,tue,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,retired,married,high.school,no,yes,yes,cellular,jul,tue,394,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,retired,single,unknown,unknown,yes,no,cellular,jul,tue,189,19,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,technician,divorced,professional.course,no,yes,yes,cellular,jul,tue,797,14,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,services,divorced,high.school,unknown,no,no,cellular,jul,tue,204,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,admin.,single,university.degree,no,no,no,cellular,jul,tue,212,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,admin.,married,university.degree,no,no,yes,cellular,jul,tue,255,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,blue-collar,divorced,basic.4y,no,no,yes,cellular,jul,tue,196,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,admin.,divorced,high.school,unknown,yes,no,telephone,jul,tue,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,admin.,married,university.degree,no,yes,no,telephone,jul,tue,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,housemaid,married,basic.4y,no,no,no,telephone,jul,tue,81,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+60,retired,divorced,professional.course,no,no,no,cellular,jul,tue,47,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,technician,single,unknown,no,yes,yes,telephone,jul,tue,24,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,housemaid,married,basic.4y,unknown,yes,no,telephone,jul,tue,35,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,tue,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,blue-collar,divorced,high.school,no,yes,no,cellular,jul,tue,538,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,services,married,high.school,no,yes,no,cellular,jul,tue,520,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,admin.,married,university.degree,no,no,no,cellular,jul,tue,283,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+24,student,single,high.school,no,yes,no,cellular,jul,tue,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+51,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,82,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,unknown,married,unknown,unknown,yes,no,cellular,jul,tue,198,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,533,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,admin.,married,professional.course,no,yes,no,cellular,jul,tue,60,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+24,student,single,high.school,no,no,no,cellular,jul,tue,569,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,entrepreneur,married,high.school,no,yes,no,cellular,jul,tue,300,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,entrepreneur,married,high.school,no,no,no,cellular,jul,tue,422,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,married,high.school,no,no,no,cellular,jul,tue,100,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,admin.,divorced,high.school,no,no,yes,cellular,jul,tue,129,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,admin.,single,university.degree,no,no,no,cellular,jul,tue,57,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,technician,divorced,university.degree,no,no,no,cellular,jul,tue,199,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,admin.,divorced,university.degree,no,yes,no,cellular,jul,tue,56,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,technician,married,professional.course,no,no,no,cellular,jul,tue,281,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,207,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,admin.,married,professional.course,no,yes,yes,cellular,jul,tue,1186,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+60,retired,divorced,professional.course,no,no,no,cellular,jul,tue,454,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+48,blue-collar,married,basic.6y,no,no,yes,cellular,jul,tue,337,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,unemployed,married,basic.4y,unknown,yes,no,telephone,jul,tue,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,unemployed,married,basic.4y,unknown,no,no,cellular,jul,tue,195,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,63,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,blue-collar,married,high.school,no,yes,no,cellular,jul,tue,20,18,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,admin.,divorced,high.school,no,no,no,cellular,jul,tue,52,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,student,single,unknown,unknown,no,yes,cellular,jul,tue,113,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,technician,single,professional.course,no,no,no,cellular,jul,tue,328,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,admin.,divorced,university.degree,no,yes,no,cellular,jul,tue,86,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,unemployed,married,basic.4y,unknown,no,no,cellular,jul,tue,1058,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+49,entrepreneur,married,university.degree,no,no,no,cellular,jul,tue,114,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,admin.,divorced,high.school,no,no,no,cellular,jul,tue,121,17,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,self-employed,married,university.degree,no,yes,yes,cellular,jul,tue,45,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,unemployed,divorced,basic.9y,no,yes,no,cellular,jul,tue,187,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,369,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,admin.,single,university.degree,unknown,no,no,telephone,jul,tue,143,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+59,housemaid,divorced,basic.4y,unknown,no,no,cellular,jul,tue,277,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+42,blue-collar,single,basic.6y,unknown,yes,yes,cellular,jul,tue,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,admin.,married,high.school,unknown,no,no,cellular,jul,tue,96,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+42,blue-collar,single,basic.6y,unknown,no,no,telephone,jul,tue,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,admin.,divorced,high.school,no,yes,yes,cellular,jul,tue,180,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,housemaid,married,high.school,unknown,no,no,telephone,jul,tue,317,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,admin.,single,university.degree,no,no,no,cellular,jul,tue,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,admin.,married,high.school,no,yes,no,cellular,jul,tue,104,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,housemaid,married,basic.4y,no,yes,no,cellular,jul,tue,665,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,services,single,high.school,no,no,yes,cellular,jul,tue,125,12,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,services,divorced,high.school,no,no,yes,cellular,jul,tue,246,17,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,admin.,divorced,university.degree,no,no,no,cellular,jul,tue,33,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,technician,single,professional.course,no,yes,no,cellular,jul,tue,95,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,retired,married,professional.course,no,yes,no,cellular,jul,tue,277,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,married,high.school,no,yes,no,cellular,jul,tue,127,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,technician,single,university.degree,unknown,no,no,telephone,jul,tue,38,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+52,admin.,married,high.school,no,no,no,telephone,jul,tue,790,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,admin.,single,high.school,no,yes,no,cellular,jul,tue,635,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,housemaid,married,university.degree,no,yes,no,cellular,jul,tue,597,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,single,high.school,no,yes,no,telephone,jul,tue,77,34,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,technician,married,university.degree,no,no,no,cellular,jul,tue,62,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,management,single,professional.course,unknown,no,no,cellular,jul,tue,72,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,single,professional.course,no,no,yes,cellular,jul,tue,171,13,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,technician,divorced,professional.course,unknown,no,no,telephone,jul,tue,665,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+50,services,single,high.school,no,yes,no,cellular,jul,tue,110,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,technician,divorced,professional.course,no,no,no,cellular,jul,tue,77,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+59,housemaid,divorced,university.degree,no,yes,no,cellular,jul,tue,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+59,housemaid,divorced,university.degree,no,no,no,cellular,jul,tue,367,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+56,retired,married,basic.6y,no,yes,no,cellular,jul,tue,509,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+49,retired,married,high.school,no,yes,no,cellular,jul,tue,228,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,married,high.school,no,no,no,cellular,jul,tue,935,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,services,divorced,high.school,no,yes,no,telephone,jul,tue,129,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,admin.,single,high.school,no,no,no,cellular,jul,tue,313,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,80,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,admin.,divorced,university.degree,unknown,yes,no,telephone,jul,tue,375,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,blue-collar,single,basic.9y,unknown,no,yes,cellular,jul,tue,194,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,housemaid,divorced,basic.9y,no,yes,no,cellular,jul,tue,94,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,admin.,married,professional.course,unknown,yes,no,cellular,jul,tue,97,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,services,married,high.school,no,yes,yes,cellular,jul,tue,197,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,admin.,divorced,university.degree,no,no,no,cellular,jul,tue,403,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,technician,married,professional.course,no,yes,no,telephone,jul,tue,616,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+42,admin.,divorced,high.school,no,yes,yes,telephone,jul,tue,207,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+57,admin.,divorced,university.degree,unknown,yes,yes,cellular,jul,tue,816,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+54,entrepreneur,divorced,high.school,unknown,no,yes,cellular,jul,tue,268,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,admin.,married,high.school,no,no,no,telephone,jul,tue,99,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,admin.,married,university.degree,no,no,no,cellular,jul,tue,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+36,technician,married,high.school,no,yes,no,cellular,jul,tue,123,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+59,housemaid,divorced,unknown,no,unknown,unknown,cellular,jul,tue,246,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,unemployed,married,high.school,no,unknown,unknown,cellular,jul,tue,263,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,services,single,high.school,unknown,yes,no,cellular,jul,tue,109,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+60,retired,married,basic.6y,unknown,yes,no,cellular,jul,tue,122,13,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+52,technician,married,basic.9y,no,no,no,cellular,jul,tue,162,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,services,divorced,high.school,no,no,no,cellular,jul,tue,69,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+39,blue-collar,married,unknown,no,yes,no,cellular,jul,tue,82,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,single,high.school,no,yes,no,cellular,jul,tue,205,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+52,admin.,divorced,high.school,unknown,yes,no,cellular,jul,tue,136,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+28,technician,single,university.degree,unknown,no,no,cellular,jul,tue,808,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+37,admin.,single,high.school,no,yes,no,cellular,jul,tue,316,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,entrepreneur,married,high.school,no,no,no,telephone,jul,tue,259,12,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+33,technician,married,professional.course,no,yes,yes,cellular,jul,tue,110,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,services,married,basic.6y,unknown,yes,no,cellular,jul,tue,64,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,services,married,high.school,no,yes,no,cellular,jul,tue,110,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,entrepreneur,divorced,university.degree,no,no,yes,telephone,jul,tue,119,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,336,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,admin.,married,high.school,no,no,no,cellular,jul,tue,327,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+48,technician,married,professional.course,no,no,no,telephone,jul,tue,316,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,blue-collar,single,basic.9y,no,yes,no,telephone,jul,tue,1127,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes
+55,housemaid,married,basic.4y,unknown,no,no,telephone,jul,tue,1140,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+43,retired,married,basic.9y,no,yes,no,cellular,jul,tue,284,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,management,divorced,university.degree,no,yes,no,cellular,jul,tue,543,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+54,retired,divorced,basic.4y,unknown,no,yes,cellular,jul,tue,189,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,single,high.school,no,yes,no,cellular,jul,tue,52,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,single,high.school,no,no,yes,cellular,jul,tue,223,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,housemaid,married,university.degree,unknown,no,yes,cellular,jul,tue,468,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+26,unemployed,married,high.school,no,no,no,cellular,jul,tue,322,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+51,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,61,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+41,housemaid,divorced,high.school,unknown,yes,yes,cellular,jul,tue,185,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,services,married,high.school,no,no,yes,cellular,jul,tue,347,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,divorced,university.degree,no,yes,no,telephone,jul,tue,399,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,admin.,married,university.degree,no,no,no,cellular,jul,tue,340,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,637,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+58,retired,divorced,professional.course,no,no,no,cellular,jul,tue,60,24,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+25,admin.,single,high.school,no,no,yes,cellular,jul,tue,234,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+53,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,165,20,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,housemaid,married,basic.4y,unknown,yes,yes,telephone,jul,tue,308,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,single,professional.course,no,no,no,cellular,jul,tue,75,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+45,admin.,married,university.degree,no,no,no,cellular,jul,tue,242,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,management,married,basic.4y,unknown,no,yes,cellular,jul,tue,142,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,unknown,married,high.school,unknown,no,no,cellular,jul,tue,153,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+55,housemaid,married,basic.4y,unknown,yes,no,telephone,jul,tue,481,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,admin.,single,university.degree,no,no,no,telephone,jul,tue,128,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+46,admin.,married,university.degree,no,no,no,telephone,jul,tue,53,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,single,high.school,no,yes,no,cellular,jul,tue,234,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+44,technician,divorced,unknown,no,no,no,telephone,jul,tue,222,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,186,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,technician,married,professional.course,no,no,no,cellular,jul,tue,333,19,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,single,high.school,no,no,no,cellular,jul,tue,333,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+52,admin.,married,university.degree,no,yes,no,cellular,jul,tue,79,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,blue-collar,married,unknown,no,no,no,cellular,jul,tue,112,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,services,married,high.school,unknown,yes,no,telephone,jul,tue,157,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,101,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+32,admin.,married,high.school,no,no,no,cellular,jul,tue,193,14,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+47,retired,married,university.degree,no,no,no,telephone,jul,tue,863,10,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+35,management,single,university.degree,no,yes,no,cellular,jul,tue,590,23,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,jul,tue,92,30,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+52,admin.,single,high.school,unknown,yes,no,cellular,jul,tue,153,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+40,housemaid,married,basic.6y,no,yes,no,telephone,jul,tue,225,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+37,admin.,single,high.school,no,yes,no,telephone,jul,tue,49,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+27,services,single,basic.9y,no,yes,yes,cellular,jul,tue,88,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+31,blue-collar,single,professional.course,no,yes,no,cellular,jul,tue,825,13,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+30,entrepreneur,single,university.degree,no,no,no,telephone,jul,tue,254,21,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,jul,wed,11,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+45,admin.,married,university.degree,no,no,no,cellular,jul,wed,520,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,technician,married,basic.4y,unknown,yes,yes,cellular,jul,wed,138,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,wed,44,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,services,single,university.degree,no,yes,no,cellular,jul,wed,142,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,services,single,high.school,unknown,yes,yes,cellular,jul,wed,984,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,services,married,basic.9y,no,yes,no,telephone,jul,wed,78,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,management,married,university.degree,no,yes,yes,cellular,jul,wed,329,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,admin.,single,high.school,no,yes,no,cellular,jul,wed,353,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+47,housemaid,married,basic.4y,unknown,no,no,cellular,jul,wed,189,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,housemaid,single,high.school,no,yes,no,cellular,jul,wed,125,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+60,blue-collar,divorced,basic.4y,unknown,no,no,cellular,jul,wed,105,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,334,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,housemaid,married,basic.4y,unknown,no,yes,cellular,jul,wed,68,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,management,single,professional.course,unknown,no,no,cellular,jul,wed,76,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,admin.,married,university.degree,no,yes,no,cellular,jul,wed,28,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+45,housemaid,divorced,basic.4y,unknown,yes,no,cellular,jul,wed,458,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,services,single,high.school,no,yes,no,cellular,jul,wed,142,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,admin.,married,high.school,no,no,no,cellular,jul,wed,189,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,blue-collar,married,high.school,no,yes,yes,cellular,jul,wed,70,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,unemployed,divorced,university.degree,no,yes,no,cellular,jul,wed,18,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+45,technician,married,professional.course,no,no,no,cellular,jul,wed,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,admin.,single,university.degree,no,yes,yes,cellular,jul,wed,59,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,services,single,basic.9y,no,yes,no,cellular,jul,wed,31,20,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,admin.,single,university.degree,no,yes,no,cellular,jul,wed,150,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,retired,married,basic.6y,no,yes,no,telephone,jul,wed,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,admin.,single,university.degree,no,yes,no,cellular,jul,wed,258,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,admin.,single,university.degree,no,yes,no,cellular,jul,wed,305,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+47,services,divorced,basic.4y,unknown,no,no,cellular,jul,wed,67,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,admin.,married,high.school,no,yes,no,telephone,jul,wed,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,services,single,high.school,no,yes,no,cellular,jul,wed,99,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,admin.,divorced,basic.9y,no,no,no,cellular,jul,wed,39,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,admin.,divorced,basic.9y,no,yes,no,cellular,jul,wed,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,married,university.degree,no,no,yes,cellular,jul,wed,112,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,services,single,high.school,unknown,yes,no,cellular,jul,wed,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,student,married,unknown,unknown,yes,yes,cellular,jul,wed,69,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,retired,married,basic.6y,no,no,no,cellular,jul,wed,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+59,retired,married,high.school,unknown,yes,no,cellular,jul,wed,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,services,divorced,basic.6y,no,no,yes,cellular,jul,wed,684,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+37,admin.,single,university.degree,no,no,yes,cellular,jul,wed,312,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,technician,married,university.degree,no,yes,yes,telephone,jul,wed,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,services,married,high.school,unknown,yes,yes,cellular,jul,wed,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,services,single,high.school,unknown,yes,yes,cellular,jul,wed,843,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+38,technician,married,university.degree,no,yes,yes,cellular,jul,wed,150,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,admin.,single,university.degree,no,yes,no,cellular,jul,wed,834,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,technician,married,basic.9y,no,yes,no,cellular,jul,wed,528,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,technician,married,basic.9y,no,no,no,cellular,jul,wed,516,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,services,married,high.school,unknown,yes,no,cellular,jul,wed,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,services,divorced,high.school,no,yes,no,cellular,jul,wed,652,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,housemaid,married,basic.6y,no,yes,no,cellular,jul,wed,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,entrepreneur,single,unknown,no,no,no,cellular,jul,wed,295,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,services,married,high.school,no,no,no,cellular,jul,wed,650,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+25,services,single,high.school,unknown,no,no,telephone,jul,wed,273,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,admin.,single,high.school,no,no,no,telephone,jul,wed,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,single,professional.course,unknown,yes,no,cellular,jul,wed,409,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,services,divorced,high.school,no,no,no,cellular,jul,wed,160,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+45,admin.,single,professional.course,no,yes,no,cellular,jul,wed,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,services,married,high.school,no,no,no,cellular,jul,wed,65,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,blue-collar,single,basic.4y,no,yes,yes,cellular,jul,wed,132,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,services,single,high.school,unknown,yes,no,cellular,jul,wed,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,entrepreneur,single,university.degree,no,yes,yes,cellular,jul,wed,192,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+45,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,entrepreneur,single,unknown,unknown,no,no,telephone,jul,wed,542,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+27,services,single,basic.9y,no,no,no,telephone,jul,wed,120,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,unknown,married,unknown,unknown,yes,no,cellular,jul,wed,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,blue-collar,married,basic.6y,no,yes,yes,telephone,jul,wed,47,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,admin.,married,high.school,no,yes,no,cellular,jul,wed,93,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,services,divorced,high.school,no,no,no,cellular,jul,wed,32,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+52,management,married,university.degree,no,no,no,cellular,jul,wed,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,self-employed,married,university.degree,no,yes,no,cellular,jul,wed,229,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+43,admin.,married,high.school,no,yes,no,cellular,jul,wed,25,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,unknown,married,high.school,unknown,yes,no,telephone,jul,wed,195,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,entrepreneur,married,university.degree,no,yes,no,telephone,jul,wed,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,management,married,university.degree,no,yes,yes,telephone,jul,wed,270,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,married,professional.course,no,yes,no,cellular,jul,wed,173,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,self-employed,married,university.degree,no,yes,no,cellular,jul,wed,695,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,wed,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,admin.,divorced,university.degree,no,yes,no,cellular,jul,wed,594,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,admin.,married,university.degree,no,yes,no,cellular,jul,wed,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,101,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,single,high.school,no,yes,no,cellular,jul,wed,605,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,entrepreneur,divorced,university.degree,no,yes,no,cellular,jul,wed,537,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+22,services,married,basic.9y,unknown,no,no,telephone,jul,wed,42,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,self-employed,single,university.degree,no,yes,no,telephone,jul,wed,51,19,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,admin.,single,high.school,no,no,no,cellular,jul,wed,71,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,technician,married,university.degree,no,yes,no,cellular,jul,wed,141,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+43,admin.,married,high.school,no,yes,yes,cellular,jul,wed,351,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,jul,wed,50,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,technician,single,professional.course,no,no,no,cellular,jul,wed,76,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,admin.,married,university.degree,unknown,no,no,cellular,jul,wed,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,married,professional.course,no,yes,no,cellular,jul,wed,58,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,housemaid,divorced,basic.9y,unknown,no,no,cellular,jul,wed,141,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,married,professional.course,no,no,no,cellular,jul,wed,187,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,jul,wed,55,22,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,admin.,married,high.school,no,yes,yes,cellular,jul,wed,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,technician,single,professional.course,no,yes,no,cellular,jul,wed,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,technician,single,unknown,no,yes,no,telephone,jul,wed,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+52,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,wed,292,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,technician,single,professional.course,no,no,no,cellular,jul,wed,14,29,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,220,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,services,single,high.school,no,yes,no,telephone,jul,wed,340,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,unemployed,single,high.school,no,yes,no,cellular,jul,wed,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,blue-collar,married,high.school,unknown,yes,no,cellular,jul,wed,105,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,management,married,university.degree,no,no,yes,telephone,jul,wed,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,wed,83,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,wed,138,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,244,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,unemployed,single,high.school,no,yes,no,cellular,jul,wed,597,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,unemployed,divorced,university.degree,no,no,no,cellular,jul,wed,161,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,admin.,married,university.degree,unknown,unknown,unknown,telephone,jul,wed,171,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,services,single,high.school,no,no,no,cellular,jul,wed,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,unemployed,divorced,university.degree,no,yes,no,cellular,jul,wed,1373,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+47,unknown,married,unknown,no,yes,no,cellular,jul,wed,133,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,housemaid,divorced,basic.9y,unknown,no,yes,cellular,jul,wed,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,admin.,single,university.degree,no,yes,no,cellular,jul,wed,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,management,single,university.degree,no,yes,no,cellular,jul,wed,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,self-employed,married,basic.9y,unknown,yes,no,cellular,jul,wed,41,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,admin.,married,university.degree,no,no,no,cellular,jul,wed,29,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,self-employed,married,university.degree,no,no,no,cellular,jul,wed,86,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,jul,wed,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,blue-collar,married,professional.course,no,yes,no,cellular,jul,wed,218,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,admin.,married,university.degree,unknown,yes,no,telephone,jul,wed,197,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,married,high.school,no,no,no,cellular,jul,wed,788,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+31,housemaid,single,high.school,no,yes,no,cellular,jul,wed,380,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,988,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+25,admin.,single,high.school,no,no,no,cellular,jul,wed,55,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,services,single,high.school,no,no,no,cellular,jul,wed,129,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,student,married,high.school,no,no,no,cellular,jul,wed,622,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,technician,divorced,professional.course,no,no,no,telephone,jul,wed,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,admin.,married,high.school,no,no,no,cellular,jul,wed,227,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,services,divorced,high.school,no,no,no,cellular,jul,wed,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,services,married,high.school,unknown,yes,no,cellular,jul,wed,149,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,technician,married,professional.course,no,yes,no,cellular,jul,wed,144,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,single,university.degree,no,yes,yes,cellular,jul,wed,126,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,technician,single,university.degree,no,yes,no,telephone,jul,wed,185,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,services,single,basic.9y,no,yes,no,cellular,jul,wed,197,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,married,university.degree,no,no,no,cellular,jul,wed,543,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+37,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,99,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,single,professional.course,no,yes,no,cellular,jul,wed,156,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,management,single,high.school,no,no,no,cellular,jul,wed,94,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,wed,87,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,single,high.school,no,yes,no,telephone,jul,wed,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,student,single,university.degree,no,yes,yes,cellular,jul,wed,77,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,services,single,basic.9y,no,no,yes,cellular,jul,wed,444,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,housemaid,married,basic.6y,no,no,no,telephone,jul,wed,34,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,single,high.school,no,no,yes,cellular,jul,wed,287,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,student,married,high.school,no,no,yes,cellular,jul,wed,73,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,jul,wed,152,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,technician,married,professional.course,no,yes,no,cellular,jul,wed,69,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,74,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,services,single,basic.9y,no,yes,no,cellular,jul,wed,535,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,student,single,university.degree,no,yes,no,cellular,jul,wed,209,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,technician,single,university.degree,no,yes,no,cellular,jul,wed,72,15,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,housemaid,married,high.school,no,yes,no,cellular,jul,wed,44,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+52,admin.,married,basic.9y,no,no,no,cellular,jul,wed,1171,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+41,services,divorced,high.school,no,no,yes,cellular,jul,wed,72,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,entrepreneur,divorced,professional.course,no,no,no,telephone,jul,wed,117,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,wed,729,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+57,admin.,single,university.degree,no,no,no,cellular,jul,wed,341,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+28,self-employed,married,university.degree,no,yes,yes,cellular,jul,wed,186,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,technician,married,professional.course,no,no,no,cellular,jul,wed,96,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,services,single,basic.9y,no,yes,no,cellular,jul,wed,509,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+32,admin.,married,professional.course,no,yes,no,telephone,jul,wed,166,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,single,professional.course,no,yes,no,cellular,jul,wed,1078,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,married,basic.9y,no,no,yes,telephone,jul,wed,27,16,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,services,married,high.school,no,yes,no,cellular,jul,wed,698,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,admin.,single,high.school,no,no,no,cellular,jul,wed,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,admin.,married,university.degree,unknown,yes,no,telephone,jul,wed,340,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,admin.,married,high.school,no,yes,no,cellular,jul,wed,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,admin.,married,university.degree,unknown,yes,no,cellular,jul,wed,424,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,services,married,high.school,no,yes,no,cellular,jul,wed,436,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,159,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,self-employed,single,university.degree,no,no,no,cellular,jul,wed,208,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,admin.,married,high.school,no,no,no,cellular,jul,wed,96,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,services,married,basic.6y,no,no,no,cellular,jul,wed,69,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,blue-collar,married,high.school,no,no,no,cellular,jul,wed,259,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,blue-collar,married,unknown,no,yes,yes,cellular,jul,wed,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,admin.,married,high.school,no,yes,yes,telephone,jul,wed,1089,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+40,technician,married,professional.course,no,no,no,cellular,jul,wed,65,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,technician,married,professional.course,no,no,yes,cellular,jul,wed,266,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,self-employed,single,university.degree,no,no,no,cellular,jul,wed,1211,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+44,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,50,18,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+57,management,married,unknown,no,no,no,cellular,jul,wed,178,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,admin.,single,high.school,no,no,no,telephone,jul,wed,130,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,housemaid,divorced,basic.9y,unknown,no,no,cellular,jul,wed,118,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,divorced,basic.9y,no,no,no,telephone,jul,wed,109,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,admin.,single,basic.9y,unknown,no,yes,cellular,jul,wed,94,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,647,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+55,blue-collar,married,professional.course,no,yes,no,cellular,jul,wed,120,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,admin.,married,high.school,no,yes,no,cellular,jul,wed,136,13,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,married,professional.course,no,yes,no,cellular,jul,wed,458,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+48,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,wed,438,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,self-employed,married,university.degree,no,yes,no,cellular,jul,wed,225,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,student,single,unknown,unknown,no,no,cellular,jul,wed,103,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,services,single,high.school,no,yes,no,cellular,jul,wed,112,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,admin.,single,high.school,unknown,yes,no,cellular,jul,wed,145,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,technician,single,university.degree,no,no,no,cellular,jul,wed,31,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,technician,divorced,professional.course,no,yes,no,telephone,jul,wed,216,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,admin.,married,high.school,no,no,no,telephone,jul,wed,156,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,services,single,high.school,no,no,yes,cellular,jul,wed,52,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,married,high.school,no,yes,no,cellular,jul,wed,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,technician,married,high.school,no,no,no,cellular,jul,wed,1165,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+50,services,single,high.school,no,no,no,cellular,jul,wed,117,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,admin.,married,university.degree,no,yes,no,cellular,jul,wed,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,unemployed,single,university.degree,no,yes,yes,cellular,jul,wed,266,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,jul,wed,107,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,admin.,married,university.degree,no,yes,no,cellular,jul,wed,486,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,72,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,technician,married,university.degree,no,yes,yes,cellular,jul,wed,63,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,admin.,married,high.school,no,no,no,telephone,jul,wed,100,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,management,married,university.degree,no,no,no,cellular,jul,wed,174,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+25,admin.,single,high.school,no,yes,no,cellular,jul,wed,62,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,admin.,single,professional.course,no,yes,no,cellular,jul,wed,520,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+45,admin.,married,university.degree,no,yes,no,cellular,jul,wed,103,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,single,high.school,no,no,yes,cellular,jul,wed,233,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,technician,single,university.degree,no,no,yes,cellular,jul,wed,109,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,married,professional.course,unknown,yes,no,cellular,jul,wed,64,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,unemployed,married,high.school,no,yes,yes,cellular,jul,wed,41,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,professional.course,no,unknown,unknown,cellular,jul,wed,153,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,admin.,divorced,high.school,no,unknown,unknown,cellular,jul,wed,57,17,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,housemaid,married,high.school,no,yes,no,cellular,jul,wed,335,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,retired,divorced,basic.4y,no,no,yes,cellular,jul,wed,246,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,single,high.school,no,no,no,cellular,jul,wed,86,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,retired,divorced,professional.course,no,no,no,cellular,jul,wed,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,unemployed,divorced,university.degree,no,yes,yes,cellular,jul,wed,104,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+57,admin.,married,university.degree,unknown,no,no,cellular,jul,wed,35,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,services,married,high.school,no,yes,yes,cellular,jul,wed,149,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,blue-collar,single,basic.9y,no,no,yes,cellular,jul,wed,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,admin.,married,high.school,unknown,no,no,cellular,jul,wed,82,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,blue-collar,married,basic.6y,unknown,no,no,telephone,jul,wed,350,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,self-employed,single,university.degree,no,no,no,cellular,jul,wed,540,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+29,technician,married,university.degree,no,yes,no,cellular,jul,wed,115,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,management,married,basic.9y,no,no,no,cellular,jul,wed,109,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+43,management,married,unknown,no,yes,yes,cellular,jul,wed,595,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,self-employed,married,university.degree,no,no,no,cellular,jul,wed,155,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,technician,married,professional.course,no,yes,no,telephone,jul,wed,242,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,288,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,admin.,married,university.degree,unknown,yes,no,cellular,jul,wed,163,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,self-employed,married,professional.course,no,yes,no,telephone,jul,wed,339,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,services,married,high.school,no,no,no,telephone,jul,wed,29,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,services,married,high.school,no,no,no,telephone,jul,wed,139,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,admin.,divorced,university.degree,unknown,yes,yes,cellular,jul,wed,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,technician,married,professional.course,no,no,no,cellular,jul,wed,72,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,management,single,university.degree,no,no,yes,cellular,jul,wed,352,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,admin.,divorced,university.degree,unknown,yes,yes,cellular,jul,wed,103,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,retired,divorced,high.school,no,yes,no,cellular,jul,wed,173,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,blue-collar,single,high.school,no,yes,no,telephone,jul,wed,168,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,management,married,university.degree,no,no,yes,cellular,jul,wed,50,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,services,single,basic.9y,no,yes,no,cellular,jul,wed,22,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+53,technician,married,professional.course,unknown,no,no,telephone,jul,wed,191,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,entrepreneur,divorced,high.school,no,no,yes,cellular,jul,wed,245,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,admin.,single,high.school,no,no,no,cellular,jul,wed,251,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,student,single,high.school,no,yes,no,cellular,jul,wed,139,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,admin.,single,university.degree,no,unknown,unknown,cellular,jul,wed,95,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+23,services,single,high.school,no,no,yes,cellular,jul,wed,207,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,single,high.school,unknown,yes,no,cellular,jul,wed,88,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,technician,married,high.school,unknown,no,no,cellular,jul,wed,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,admin.,single,high.school,no,yes,yes,cellular,jul,wed,100,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,housemaid,married,basic.4y,no,yes,no,cellular,jul,wed,638,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,blue-collar,married,high.school,no,no,no,cellular,jul,wed,142,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,technician,divorced,professional.course,no,yes,no,cellular,jul,wed,90,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,admin.,married,university.degree,no,no,no,cellular,jul,wed,695,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+39,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,53,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,admin.,divorced,high.school,no,yes,no,cellular,jul,wed,269,17,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,services,married,professional.course,unknown,yes,yes,cellular,jul,wed,354,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,single,high.school,no,no,no,cellular,jul,wed,251,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+43,admin.,divorced,high.school,no,no,no,cellular,jul,wed,764,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+40,services,married,high.school,no,yes,yes,cellular,jul,wed,251,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,services,single,high.school,no,yes,no,cellular,jul,wed,411,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,1065,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+33,unemployed,married,high.school,unknown,yes,no,cellular,jul,wed,590,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,self-employed,married,university.degree,no,no,no,telephone,jul,wed,100,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,admin.,married,high.school,no,no,no,cellular,jul,wed,184,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+43,technician,divorced,professional.course,unknown,yes,yes,cellular,jul,wed,180,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+45,unknown,single,high.school,no,yes,no,cellular,jul,wed,83,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,technician,married,university.degree,no,no,no,cellular,jul,wed,130,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+41,management,married,university.degree,no,no,no,telephone,jul,wed,300,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,admin.,divorced,high.school,no,yes,yes,cellular,jul,wed,70,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,technician,married,professional.course,no,yes,yes,cellular,jul,wed,126,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,technician,single,university.degree,no,no,no,cellular,jul,wed,141,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,technician,married,basic.9y,unknown,yes,no,cellular,jul,wed,130,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+34,technician,married,professional.course,unknown,yes,no,cellular,jul,wed,75,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+43,housemaid,married,basic.6y,unknown,yes,no,cellular,jul,wed,61,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,single,high.school,no,no,no,cellular,jul,wed,95,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,1259,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,70,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,services,married,high.school,no,no,no,cellular,jul,wed,356,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+58,unknown,married,high.school,unknown,no,no,cellular,jul,wed,258,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,admin.,married,unknown,no,no,yes,cellular,jul,wed,311,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,services,single,high.school,no,no,no,cellular,jul,wed,239,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,married,university.degree,no,yes,no,telephone,jul,wed,2692,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+28,services,married,high.school,no,yes,yes,telephone,jul,wed,79,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+49,technician,married,basic.9y,unknown,yes,no,cellular,jul,wed,117,17,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,admin.,divorced,university.degree,no,yes,no,cellular,jul,wed,121,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,management,single,university.degree,no,no,no,cellular,jul,wed,675,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+51,management,married,basic.9y,no,no,no,cellular,jul,wed,71,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,103,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+45,services,divorced,high.school,no,yes,yes,cellular,jul,wed,230,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,admin.,married,professional.course,unknown,no,no,cellular,jul,wed,100,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,services,married,professional.course,no,yes,no,cellular,jul,wed,192,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,admin.,married,unknown,no,yes,no,cellular,jul,wed,87,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+56,technician,divorced,university.degree,unknown,yes,yes,cellular,jul,wed,448,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,unemployed,married,high.school,unknown,yes,yes,cellular,jul,wed,285,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+54,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,wed,92,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,54,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,management,married,basic.9y,no,yes,no,cellular,jul,wed,154,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,wed,184,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+30,admin.,single,high.school,no,yes,no,telephone,jul,wed,196,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,admin.,married,high.school,no,no,no,cellular,jul,wed,185,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+40,self-employed,single,university.degree,no,yes,yes,telephone,jul,wed,98,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+24,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,590,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,services,married,professional.course,no,no,no,cellular,jul,wed,782,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+26,admin.,single,university.degree,no,no,no,telephone,jul,wed,342,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,jul,wed,151,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+44,admin.,single,basic.6y,unknown,no,no,telephone,jul,wed,383,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+33,admin.,divorced,high.school,no,no,no,cellular,jul,wed,249,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,management,married,university.degree,no,no,yes,cellular,jul,wed,93,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+58,retired,married,basic.4y,no,yes,no,cellular,jul,wed,134,23,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+27,self-employed,married,university.degree,no,no,no,telephone,jul,wed,215,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,housemaid,single,professional.course,no,yes,no,cellular,jul,wed,60,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+39,technician,married,high.school,no,no,no,cellular,jul,wed,188,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+37,blue-collar,married,professional.course,no,yes,no,cellular,jul,wed,83,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+46,technician,divorced,professional.course,no,no,no,cellular,jul,wed,187,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,management,married,university.degree,no,no,no,cellular,jul,wed,777,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+30,admin.,single,university.degree,no,no,no,telephone,jul,wed,84,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+31,services,single,high.school,no,yes,no,cellular,jul,wed,21,20,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+29,admin.,single,high.school,no,yes,yes,cellular,jul,wed,160,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+32,technician,single,university.degree,no,no,no,cellular,jul,wed,61,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,53,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+22,unemployed,single,high.school,no,no,no,telephone,jul,wed,82,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+51,management,married,basic.9y,no,yes,no,telephone,jul,wed,208,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+36,technician,married,professional.course,no,no,no,cellular,jul,wed,84,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,962,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+43,services,married,high.school,unknown,no,yes,cellular,jul,wed,105,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+48,services,married,professional.course,unknown,yes,yes,cellular,jul,wed,98,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,admin.,married,high.school,no,no,no,cellular,jul,wed,166,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+26,blue-collar,single,high.school,no,no,yes,cellular,jul,wed,111,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no
+38,admin.,married,unknown,no,yes,no,cellular,jul,wed,481,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes
+44,management,married,university.degree,unknown,yes,no,cellular,jul,thu,148,15,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+40,admin.,married,basic.9y,no,yes,no,cellular,jul,thu,106,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+55,technician,married,professional.course,no,yes,yes,cellular,jul,thu,101,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+44,admin.,divorced,high.school,no,yes,yes,cellular,jul,thu,75,11,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+49,technician,married,basic.9y,unknown,yes,no,cellular,jul,thu,75,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+27,admin.,single,professional.course,unknown,yes,no,cellular,jul,thu,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+42,admin.,married,university.degree,no,yes,no,telephone,jul,thu,24,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+56,entrepreneur,married,basic.4y,unknown,yes,no,cellular,jul,thu,20,20,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,blue-collar,single,high.school,no,no,no,telephone,jul,thu,234,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,services,married,high.school,no,no,no,cellular,jul,thu,15,14,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,admin.,single,university.degree,no,yes,no,cellular,jul,thu,13,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+41,self-employed,divorced,university.degree,no,no,no,cellular,jul,thu,81,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+41,admin.,single,university.degree,no,yes,no,cellular,jul,thu,435,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+52,retired,married,basic.9y,unknown,no,no,cellular,jul,thu,59,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,admin.,married,high.school,no,no,no,cellular,jul,thu,175,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+54,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,150,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+47,admin.,married,basic.9y,no,yes,yes,telephone,jul,thu,43,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+37,services,single,high.school,no,no,no,cellular,jul,thu,52,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+40,unknown,married,unknown,no,yes,yes,cellular,jul,thu,67,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,self-employed,married,university.degree,no,no,no,telephone,jul,thu,11,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+30,admin.,single,high.school,no,no,no,cellular,jul,thu,13,27,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,technician,married,university.degree,no,no,no,cellular,jul,thu,153,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,admin.,single,high.school,no,yes,no,cellular,jul,thu,87,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+42,admin.,divorced,university.degree,no,no,yes,telephone,jul,thu,46,17,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,admin.,single,high.school,no,yes,yes,cellular,jul,thu,283,16,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,services,married,high.school,no,yes,no,cellular,jul,thu,69,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,unemployed,married,university.degree,no,no,no,cellular,jul,thu,616,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+58,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jul,thu,69,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+30,admin.,single,high.school,no,no,no,cellular,jul,thu,160,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+46,technician,divorced,professional.course,no,yes,no,cellular,jul,thu,165,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+56,technician,divorced,university.degree,unknown,no,yes,cellular,jul,thu,13,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+42,admin.,married,high.school,unknown,no,yes,cellular,jul,thu,141,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+37,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,thu,346,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,admin.,married,university.degree,no,yes,no,cellular,jul,thu,79,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+37,admin.,married,university.degree,no,no,yes,cellular,jul,thu,175,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+56,retired,divorced,high.school,no,yes,no,cellular,jul,thu,11,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+37,services,divorced,high.school,no,no,no,cellular,jul,thu,98,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+50,technician,single,high.school,unknown,no,no,telephone,jul,thu,125,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,11,16,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+29,technician,married,university.degree,no,no,no,cellular,jul,thu,5,23,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,technician,married,professional.course,no,unknown,unknown,cellular,jul,thu,12,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+37,entrepreneur,divorced,high.school,no,yes,no,cellular,jul,thu,812,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes
+36,blue-collar,single,high.school,no,yes,no,cellular,jul,thu,8,24,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,jul,thu,194,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+29,admin.,single,high.school,no,no,yes,cellular,jul,thu,130,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,services,married,high.school,no,yes,no,cellular,jul,thu,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,blue-collar,single,high.school,no,yes,no,cellular,jul,thu,110,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+43,technician,divorced,professional.course,no,yes,no,cellular,jul,thu,87,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,517,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,management,married,university.degree,no,yes,no,cellular,jul,thu,350,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+40,technician,married,professional.course,unknown,no,yes,telephone,jul,thu,921,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+40,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,217,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,admin.,single,university.degree,no,no,yes,cellular,jul,thu,749,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,services,married,professional.course,no,yes,yes,cellular,jul,thu,630,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes
+32,admin.,divorced,high.school,no,unknown,unknown,cellular,jul,thu,81,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,technician,married,university.degree,no,no,no,cellular,jul,thu,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+29,admin.,married,high.school,no,no,no,cellular,jul,thu,468,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+48,services,married,professional.course,unknown,yes,no,cellular,jul,thu,55,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,technician,married,high.school,no,no,no,cellular,jul,thu,28,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,jul,thu,207,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,jul,thu,27,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+42,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,1088,14,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes
+37,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,thu,1150,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes
+35,technician,married,professional.course,no,yes,no,cellular,jul,thu,570,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,technician,married,high.school,no,yes,no,cellular,jul,thu,404,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+46,admin.,single,high.school,unknown,no,no,cellular,jul,thu,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,technician,married,high.school,no,no,no,cellular,jul,thu,232,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+50,technician,married,high.school,no,no,no,cellular,jul,thu,190,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+46,admin.,single,high.school,no,unknown,unknown,cellular,jul,thu,37,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+27,admin.,married,high.school,unknown,no,no,cellular,jul,thu,84,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+52,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+56,technician,divorced,university.degree,unknown,no,no,cellular,jul,thu,384,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,admin.,single,university.degree,no,no,no,cellular,jul,thu,321,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+52,blue-collar,married,unknown,no,no,no,cellular,jul,thu,394,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+27,blue-collar,single,basic.4y,no,no,no,cellular,jul,thu,451,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,jul,thu,117,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+27,blue-collar,single,basic.4y,no,no,no,cellular,jul,thu,508,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+22,unemployed,single,high.school,no,no,no,cellular,jul,thu,60,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+48,entrepreneur,married,university.degree,no,yes,no,cellular,jul,thu,207,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+31,blue-collar,single,high.school,no,yes,no,cellular,jul,thu,107,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+45,admin.,married,university.degree,no,no,no,cellular,jul,thu,196,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,admin.,married,high.school,no,no,yes,cellular,jul,thu,106,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+48,entrepreneur,married,university.degree,no,yes,no,cellular,jul,thu,413,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,technician,married,professional.course,no,no,yes,cellular,jul,thu,15,23,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,services,married,high.school,no,unknown,unknown,cellular,jul,thu,81,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,student,divorced,university.degree,no,no,yes,cellular,jul,thu,125,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,jul,thu,543,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+45,admin.,married,university.degree,no,yes,no,telephone,jul,thu,91,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+56,entrepreneur,married,basic.4y,unknown,yes,yes,cellular,jul,thu,14,20,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+44,admin.,single,basic.6y,unknown,yes,no,cellular,jul,thu,130,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,services,married,professional.course,no,no,yes,cellular,jul,thu,151,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+29,admin.,single,high.school,no,yes,yes,cellular,jul,thu,104,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+45,admin.,married,university.degree,no,no,yes,cellular,jul,thu,468,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+59,housemaid,married,basic.4y,no,yes,yes,cellular,jul,thu,69,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+43,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,thu,79,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+47,admin.,married,high.school,unknown,no,yes,telephone,jul,thu,225,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+45,blue-collar,single,university.degree,no,yes,no,cellular,jul,thu,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+49,technician,married,basic.9y,no,yes,no,cellular,jul,thu,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+42,technician,married,university.degree,no,no,yes,cellular,jul,thu,65,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,admin.,single,university.degree,no,no,no,cellular,jul,thu,395,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+45,blue-collar,single,university.degree,no,no,no,cellular,jul,thu,291,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,self-employed,married,professional.course,no,no,no,cellular,jul,thu,49,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+41,services,divorced,high.school,no,yes,no,cellular,jul,thu,474,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+50,management,married,university.degree,unknown,no,no,cellular,jul,thu,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+50,management,married,university.degree,unknown,yes,no,telephone,jul,thu,30,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,management,married,university.degree,unknown,yes,no,telephone,jul,thu,28,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+50,management,married,university.degree,unknown,yes,no,cellular,jul,thu,221,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+42,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,30,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+45,entrepreneur,divorced,university.degree,no,no,yes,cellular,jul,thu,216,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,technician,single,high.school,no,yes,no,cellular,jul,thu,149,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,technician,married,high.school,no,no,no,telephone,jul,thu,110,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+44,services,married,high.school,unknown,no,no,cellular,jul,thu,374,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,housemaid,married,high.school,no,yes,no,cellular,jul,thu,108,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,entrepreneur,married,high.school,no,yes,no,cellular,jul,thu,244,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+50,technician,married,high.school,no,yes,no,cellular,jul,thu,196,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,services,married,high.school,no,no,yes,cellular,jul,thu,74,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,services,married,high.school,no,no,no,cellular,jul,thu,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,thu,19,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+43,services,married,high.school,unknown,no,no,cellular,jul,thu,126,19,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,jul,thu,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,services,divorced,high.school,no,no,yes,cellular,jul,thu,51,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,jul,thu,61,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,admin.,married,university.degree,no,no,no,cellular,jul,thu,100,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,574,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes
+32,technician,single,professional.course,no,no,yes,telephone,jul,thu,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,admin.,married,high.school,no,yes,yes,cellular,jul,thu,23,22,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+27,admin.,single,university.degree,no,no,yes,cellular,jul,thu,242,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,technician,single,professional.course,no,no,no,cellular,jul,thu,167,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,technician,single,professional.course,no,no,no,cellular,jul,thu,35,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+40,admin.,married,professional.course,no,yes,yes,cellular,jul,thu,203,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,jul,thu,140,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,technician,single,professional.course,no,yes,no,cellular,jul,thu,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,technician,single,professional.course,no,yes,no,cellular,jul,thu,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,technician,single,professional.course,no,no,no,cellular,jul,thu,119,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,technician,single,professional.course,no,yes,yes,cellular,jul,thu,234,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+30,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,56,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,technician,single,high.school,no,no,no,cellular,jul,thu,27,16,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+31,entrepreneur,single,university.degree,unknown,no,yes,telephone,jul,thu,15,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+37,unemployed,single,university.degree,no,yes,no,cellular,jul,thu,47,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,admin.,married,university.degree,no,no,no,cellular,jul,thu,46,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+53,technician,married,professional.course,no,yes,no,telephone,jul,thu,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+47,blue-collar,married,basic.4y,no,unknown,unknown,telephone,jul,thu,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,blue-collar,married,basic.6y,unknown,no,no,telephone,jul,thu,208,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+41,admin.,single,university.degree,no,yes,yes,telephone,jul,thu,180,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,jul,thu,307,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+43,admin.,married,unknown,no,yes,no,cellular,jul,thu,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+43,admin.,married,unknown,no,yes,no,telephone,jul,thu,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,services,married,high.school,no,yes,no,cellular,jul,thu,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,services,married,high.school,no,yes,no,telephone,jul,thu,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,services,married,high.school,no,no,no,cellular,jul,thu,127,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,technician,married,university.degree,no,no,yes,cellular,jul,thu,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+40,admin.,married,professional.course,unknown,no,no,cellular,jul,thu,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+24,admin.,single,high.school,no,yes,no,cellular,jul,thu,725,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes
+35,technician,single,professional.course,unknown,yes,no,cellular,jul,thu,105,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,services,married,high.school,no,yes,no,telephone,jul,thu,115,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+42,management,married,basic.9y,no,no,no,cellular,jul,thu,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+42,management,married,basic.9y,no,no,no,telephone,jul,thu,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,jul,thu,6,14,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,technician,married,high.school,no,yes,no,cellular,jul,thu,123,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+56,management,married,university.degree,no,yes,no,cellular,jul,thu,22,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+42,management,married,basic.9y,no,yes,no,cellular,jul,thu,253,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+56,management,married,university.degree,no,no,no,cellular,jul,thu,57,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,jul,thu,126,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+48,technician,married,professional.course,no,no,no,cellular,jul,thu,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+48,technician,married,professional.course,no,no,no,telephone,jul,thu,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+42,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,thu,349,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+53,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,thu,36,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,services,married,high.school,no,yes,no,cellular,jul,thu,543,29,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+52,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,thu,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+26,blue-collar,married,high.school,no,yes,no,cellular,jul,thu,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,technician,married,professional.course,unknown,no,no,cellular,jul,thu,61,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,technician,single,professional.course,no,yes,no,cellular,jul,thu,81,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+56,management,married,university.degree,no,yes,no,cellular,jul,thu,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+37,admin.,married,high.school,no,unknown,unknown,cellular,jul,thu,56,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,technician,single,professional.course,unknown,yes,no,cellular,jul,thu,53,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,unemployed,married,high.school,no,unknown,unknown,cellular,jul,thu,94,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+56,management,married,university.degree,no,yes,no,cellular,jul,thu,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,unemployed,married,high.school,no,yes,yes,cellular,jul,thu,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+46,technician,divorced,professional.course,no,no,no,cellular,jul,thu,60,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+56,technician,divorced,university.degree,unknown,yes,no,cellular,jul,thu,227,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,admin.,married,high.school,no,no,no,cellular,jul,thu,662,11,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes
+28,admin.,single,university.degree,no,no,no,cellular,jul,thu,727,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes
+49,technician,married,professional.course,unknown,yes,no,telephone,jul,thu,219,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+53,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,79,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,admin.,single,high.school,no,yes,no,cellular,jul,thu,231,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+56,technician,divorced,university.degree,unknown,yes,no,cellular,jul,thu,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+29,technician,married,university.degree,no,yes,yes,cellular,jul,thu,201,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+44,technician,married,professional.course,no,no,no,cellular,jul,thu,221,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+44,technician,married,professional.course,no,yes,no,telephone,jul,thu,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+29,technician,married,university.degree,no,yes,no,telephone,jul,thu,258,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+29,technician,married,university.degree,no,no,no,telephone,jul,thu,240,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+43,admin.,married,basic.4y,no,yes,yes,telephone,jul,thu,119,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+56,technician,divorced,university.degree,unknown,no,no,cellular,jul,thu,59,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+52,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,156,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+30,technician,single,university.degree,no,no,no,cellular,jul,thu,131,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,admin.,married,university.degree,no,no,no,cellular,jul,thu,189,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,entrepreneur,married,university.degree,unknown,yes,no,cellular,jul,thu,107,13,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+40,technician,married,university.degree,no,no,no,cellular,jul,thu,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,self-employed,single,basic.4y,no,no,no,telephone,jul,thu,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,services,married,high.school,no,yes,no,cellular,jul,thu,216,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,self-employed,single,basic.4y,no,no,no,cellular,jul,thu,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,technician,married,professional.course,unknown,no,no,telephone,jul,thu,46,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,services,married,high.school,no,no,no,cellular,jul,thu,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+41,self-employed,divorced,university.degree,no,no,yes,cellular,jul,thu,52,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+57,admin.,married,university.degree,unknown,no,no,cellular,jul,thu,38,15,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+60,retired,married,basic.6y,unknown,no,no,cellular,jul,thu,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+29,admin.,married,university.degree,no,yes,yes,cellular,jul,thu,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,self-employed,single,university.degree,no,yes,no,cellular,jul,thu,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+42,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,62,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,technician,married,professional.course,no,no,no,telephone,jul,thu,45,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,technician,married,professional.course,no,no,no,cellular,jul,thu,53,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+27,blue-collar,single,basic.4y,no,yes,no,cellular,jul,thu,225,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,unemployed,married,high.school,unknown,unknown,unknown,cellular,jul,thu,268,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+48,management,married,university.degree,no,no,no,cellular,jul,thu,52,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,self-employed,single,university.degree,no,no,no,cellular,jul,thu,609,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+27,blue-collar,single,basic.4y,no,no,yes,cellular,jul,thu,83,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+51,management,married,basic.9y,no,yes,yes,cellular,jul,thu,79,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,services,married,high.school,no,no,no,cellular,jul,thu,462,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+40,technician,married,professional.course,unknown,yes,no,cellular,jul,thu,847,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,services,married,high.school,no,no,no,cellular,jul,thu,857,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes
+43,housemaid,married,basic.6y,unknown,yes,no,cellular,jul,thu,188,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,services,married,high.school,no,no,yes,telephone,jul,thu,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+37,housemaid,single,professional.course,no,no,yes,cellular,jul,thu,50,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+37,housemaid,single,professional.course,no,yes,no,cellular,jul,thu,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+46,services,married,high.school,no,no,no,cellular,jul,thu,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,management,married,high.school,no,no,yes,cellular,jul,thu,245,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,admin.,divorced,high.school,no,no,yes,cellular,jul,thu,83,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,entrepreneur,married,university.degree,unknown,yes,no,cellular,jul,thu,55,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+58,self-employed,divorced,university.degree,no,yes,no,cellular,jul,thu,548,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+44,admin.,divorced,high.school,no,yes,no,cellular,jul,thu,281,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,services,single,high.school,no,no,yes,cellular,jul,thu,81,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+57,admin.,single,high.school,unknown,yes,no,telephone,jul,thu,35,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,admin.,single,university.degree,no,no,no,cellular,jul,thu,69,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+53,admin.,married,university.degree,no,yes,no,cellular,jul,thu,51,33,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,admin.,single,university.degree,no,no,no,cellular,jul,thu,829,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes
+42,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,367,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,services,married,high.school,no,no,no,cellular,jul,thu,612,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes
+38,technician,single,professional.course,no,no,no,cellular,jul,thu,25,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,services,married,high.school,no,no,no,cellular,jul,thu,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,unemployed,married,high.school,no,no,no,cellular,jul,thu,284,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+31,admin.,married,high.school,no,no,no,cellular,jul,thu,187,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,jul,thu,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+29,technician,single,professional.course,no,yes,no,cellular,jul,thu,150,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+46,technician,married,university.degree,no,no,no,cellular,jul,thu,124,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+51,management,married,basic.4y,no,yes,no,cellular,jul,thu,47,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+53,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,249,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,married,high.school,no,yes,no,cellular,jul,thu,74,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,self-employed,divorced,basic.9y,no,yes,yes,cellular,jul,thu,119,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+37,blue-collar,married,basic.9y,unknown,no,yes,telephone,jul,thu,88,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,admin.,married,high.school,no,yes,no,cellular,jul,thu,434,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,blue-collar,single,high.school,no,no,no,cellular,jul,thu,288,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+24,admin.,single,high.school,no,yes,yes,cellular,jul,thu,109,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+47,technician,married,high.school,no,yes,no,cellular,jul,thu,388,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,technician,married,high.school,no,yes,no,cellular,jul,thu,1461,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes
+44,admin.,divorced,university.degree,no,yes,no,cellular,jul,thu,155,11,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,172,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,services,single,high.school,no,no,no,cellular,jul,thu,465,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,services,single,high.school,no,yes,no,cellular,jul,thu,91,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+31,management,single,university.degree,no,yes,no,cellular,jul,thu,166,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+44,unknown,married,unknown,no,yes,no,cellular,jul,thu,716,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,33,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,technician,married,high.school,no,no,no,cellular,jul,thu,266,9,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+42,technician,married,professional.course,unknown,yes,no,cellular,jul,thu,721,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,admin.,single,unknown,no,no,no,cellular,jul,thu,99,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+40,admin.,married,high.school,no,no,no,cellular,jul,thu,228,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+27,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,36,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+50,unemployed,married,professional.course,no,no,no,cellular,jul,thu,74,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+58,unknown,married,high.school,unknown,no,no,cellular,jul,thu,222,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+22,unemployed,single,high.school,no,yes,no,cellular,jul,thu,361,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes
+48,admin.,divorced,university.degree,no,yes,no,cellular,jul,thu,294,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+53,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,thu,247,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,jul,thu,109,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+54,admin.,married,university.degree,unknown,yes,no,cellular,jul,thu,324,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+47,technician,married,professional.course,no,no,no,cellular,jul,thu,223,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+59,services,married,high.school,no,yes,no,cellular,jul,thu,362,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+59,services,married,high.school,no,yes,no,cellular,jul,thu,300,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,admin.,married,high.school,no,no,no,cellular,jul,thu,66,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,admin.,married,basic.6y,no,no,no,cellular,jul,thu,169,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+45,management,married,university.degree,no,yes,no,cellular,jul,thu,391,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+57,technician,single,professional.course,no,yes,no,cellular,jul,thu,155,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,management,divorced,basic.9y,unknown,yes,no,cellular,jul,thu,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+45,blue-collar,married,basic.9y,no,unknown,unknown,cellular,jul,thu,151,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+55,management,married,university.degree,no,yes,yes,cellular,jul,thu,345,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+45,management,married,university.degree,no,no,no,cellular,jul,thu,843,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+44,blue-collar,divorced,professional.course,no,yes,yes,cellular,jul,thu,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,75,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,admin.,single,basic.9y,no,no,no,cellular,jul,thu,198,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,admin.,single,basic.9y,no,no,no,cellular,jul,thu,81,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+30,unemployed,married,high.school,no,yes,no,cellular,jul,thu,34,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+53,admin.,married,high.school,unknown,no,no,cellular,jul,thu,61,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+60,management,married,professional.course,unknown,yes,no,cellular,jul,thu,241,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,services,married,high.school,no,yes,no,cellular,jul,thu,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,married,university.degree,no,no,no,cellular,jul,thu,1739,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,services,married,high.school,no,yes,no,telephone,jul,thu,345,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,technician,single,professional.course,no,no,no,cellular,jul,thu,111,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+37,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+54,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,28,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+55,admin.,divorced,university.degree,no,no,no,cellular,jul,thu,119,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+55,admin.,divorced,university.degree,no,yes,yes,cellular,jul,thu,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,services,married,high.school,no,no,no,telephone,jul,thu,733,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,44,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,admin.,single,basic.9y,no,no,no,cellular,jul,thu,18,29,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+30,services,single,high.school,no,no,no,telephone,jul,thu,444,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,jul,thu,744,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+29,management,married,university.degree,no,yes,no,cellular,jul,thu,196,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,technician,divorced,unknown,no,yes,no,telephone,jul,thu,190,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+31,self-employed,married,university.degree,no,no,no,cellular,jul,thu,245,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+48,blue-collar,married,professional.course,no,no,no,cellular,jul,thu,22,25,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+30,blue-collar,single,high.school,no,yes,no,telephone,jul,thu,13,16,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+31,services,single,high.school,no,yes,no,cellular,jul,thu,59,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,108,9,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,admin.,single,professional.course,no,yes,no,cellular,jul,thu,134,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,technician,single,university.degree,no,yes,no,cellular,jul,thu,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+58,management,married,university.degree,no,no,yes,cellular,jul,thu,32,20,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+45,admin.,married,university.degree,no,no,no,cellular,jul,thu,9,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+48,technician,married,professional.course,unknown,no,yes,telephone,jul,thu,37,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,technician,married,university.degree,no,yes,no,cellular,jul,thu,90,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+54,admin.,married,university.degree,unknown,yes,no,cellular,jul,thu,20,27,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,jul,thu,33,33,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,yes,yes,telephone,jul,thu,18,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+44,blue-collar,divorced,professional.course,no,no,no,cellular,jul,thu,66,31,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,technician,married,professional.course,no,yes,no,cellular,jul,thu,23,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,jul,thu,19,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,admin.,single,basic.9y,no,yes,yes,cellular,jul,thu,37,17,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,admin.,married,high.school,no,yes,no,telephone,jul,thu,51,18,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+48,technician,married,professional.course,no,yes,no,cellular,jul,thu,21,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,admin.,married,basic.6y,no,yes,no,cellular,jul,thu,294,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,technician,married,university.degree,no,no,no,telephone,jul,thu,65,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+59,services,married,high.school,no,yes,no,cellular,jul,thu,70,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,technician,married,high.school,no,yes,yes,cellular,jul,thu,18,34,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+50,self-employed,married,professional.course,no,yes,no,cellular,jul,thu,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+54,admin.,married,university.degree,no,no,no,cellular,jul,thu,9,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+41,housemaid,married,basic.4y,unknown,no,no,cellular,jul,thu,17,24,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+52,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,393,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,jul,thu,22,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+31,services,single,high.school,no,no,no,cellular,jul,thu,10,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+30,services,single,high.school,unknown,no,no,telephone,jul,thu,454,18,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,technician,married,university.degree,no,no,no,cellular,jul,thu,89,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,technician,married,professional.course,no,yes,no,cellular,jul,thu,11,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+59,retired,married,basic.4y,no,no,no,telephone,jul,thu,37,27,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+44,technician,single,unknown,unknown,no,yes,cellular,jul,thu,48,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+53,admin.,married,high.school,unknown,no,no,cellular,jul,thu,10,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,admin.,married,university.degree,unknown,no,no,cellular,jul,thu,67,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,technician,single,university.degree,no,no,no,cellular,jul,thu,58,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+30,unemployed,married,high.school,no,yes,no,cellular,jul,thu,272,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,technician,single,professional.course,no,yes,yes,cellular,jul,thu,164,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+48,admin.,single,university.degree,no,yes,yes,telephone,jul,thu,55,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+26,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,530,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,admin.,single,basic.9y,no,yes,no,cellular,jul,thu,17,18,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+31,services,single,high.school,no,no,no,cellular,jul,thu,16,35,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,admin.,single,basic.9y,no,yes,no,cellular,jul,thu,14,28,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+47,technician,married,professional.course,no,yes,no,cellular,jul,thu,153,18,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,technician,divorced,unknown,no,yes,yes,cellular,jul,thu,8,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,admin.,married,basic.6y,no,yes,no,cellular,jul,thu,69,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,admin.,single,basic.9y,no,yes,yes,cellular,jul,thu,8,21,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+37,technician,married,professional.course,no,no,no,telephone,jul,thu,43,32,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,jul,thu,106,27,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+55,self-employed,married,university.degree,unknown,no,no,cellular,jul,thu,255,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,technician,divorced,unknown,no,yes,no,telephone,jul,thu,251,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+47,technician,married,professional.course,no,yes,no,cellular,jul,thu,30,33,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,21,14,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+55,retired,married,basic.9y,unknown,yes,no,cellular,jul,thu,55,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+55,retired,married,basic.9y,unknown,no,no,telephone,jul,thu,16,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+30,admin.,single,professional.course,no,yes,yes,cellular,jul,thu,9,18,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,technician,single,professional.course,no,no,no,telephone,jul,thu,237,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+47,technician,married,professional.course,no,yes,yes,cellular,jul,thu,58,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,admin.,single,basic.9y,no,yes,no,cellular,jul,thu,115,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,unemployed,single,unknown,unknown,no,no,cellular,jul,thu,189,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+42,admin.,married,university.degree,no,no,yes,cellular,jul,thu,56,25,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,blue-collar,single,basic.6y,no,no,no,telephone,jul,thu,114,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,admin.,married,basic.6y,no,no,no,cellular,jul,thu,213,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+30,services,single,high.school,no,yes,no,cellular,jul,thu,70,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+52,admin.,married,university.degree,no,no,no,cellular,jul,thu,368,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,jul,thu,10,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,admin.,married,basic.6y,no,yes,no,cellular,jul,thu,135,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,no,no,cellular,jul,thu,48,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,admin.,married,basic.6y,no,no,no,cellular,jul,thu,35,25,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+27,admin.,single,high.school,no,yes,no,telephone,jul,thu,14,23,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+43,admin.,married,professional.course,unknown,yes,no,cellular,jul,thu,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+59,retired,married,basic.4y,no,no,yes,telephone,jul,thu,22,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+41,blue-collar,married,basic.6y,no,no,no,telephone,jul,thu,5,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+49,technician,married,unknown,unknown,yes,no,cellular,jul,thu,160,14,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+40,services,married,basic.9y,no,no,no,telephone,jul,thu,21,35,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+41,blue-collar,married,basic.6y,no,yes,no,cellular,jul,thu,5,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,admin.,married,university.degree,unknown,yes,no,cellular,jul,thu,33,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+49,admin.,single,high.school,no,no,no,telephone,jul,thu,6,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+55,retired,married,basic.9y,unknown,no,no,cellular,jul,thu,149,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,technician,divorced,unknown,no,no,no,cellular,jul,thu,40,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,technician,divorced,unknown,no,yes,no,cellular,jul,thu,46,21,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,admin.,single,high.school,no,no,no,cellular,jul,thu,9,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,admin.,single,basic.9y,no,no,no,cellular,jul,thu,39,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,jul,thu,280,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+41,housemaid,married,basic.4y,unknown,yes,no,telephone,jul,thu,350,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+54,admin.,married,university.degree,unknown,yes,no,cellular,jul,thu,65,43,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+37,technician,married,professional.course,no,no,no,cellular,jul,thu,37,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+48,blue-collar,married,professional.course,no,yes,no,cellular,jul,thu,49,16,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,technician,divorced,unknown,no,yes,yes,cellular,jul,thu,470,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,admin.,married,basic.6y,no,no,no,cellular,jul,thu,262,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+43,services,married,basic.6y,no,no,yes,cellular,jul,thu,124,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+42,entrepreneur,married,professional.course,no,yes,no,cellular,jul,thu,576,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+56,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,10,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+58,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,306,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,admin.,married,university.degree,unknown,yes,no,cellular,jul,thu,101,9,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,technician,married,unknown,no,yes,no,cellular,jul,thu,108,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,no,no,cellular,jul,thu,67,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,yes,no,telephone,jul,thu,16,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,admin.,married,university.degree,unknown,no,no,telephone,jul,thu,94,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+49,admin.,single,high.school,no,yes,no,cellular,jul,thu,24,13,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,admin.,married,basic.6y,no,no,no,cellular,jul,thu,18,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+54,admin.,married,university.degree,unknown,yes,no,cellular,jul,thu,77,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+43,admin.,married,professional.course,unknown,yes,no,cellular,jul,thu,747,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+24,technician,single,university.degree,no,no,no,cellular,jul,thu,299,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+31,services,single,high.school,no,yes,no,telephone,jul,thu,42,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+46,services,married,basic.9y,no,yes,no,cellular,jul,thu,40,9,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+27,admin.,single,high.school,no,no,no,cellular,jul,thu,10,20,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+31,services,single,high.school,no,no,yes,cellular,jul,thu,9,17,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+45,blue-collar,married,basic.6y,no,no,yes,cellular,jul,thu,92,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+30,services,single,high.school,no,yes,no,cellular,jul,thu,92,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+59,technician,married,high.school,unknown,no,no,telephone,jul,thu,130,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,no,no,cellular,jul,thu,18,40,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,admin.,single,basic.9y,no,yes,no,cellular,jul,thu,83,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+49,management,married,basic.9y,unknown,no,yes,cellular,jul,thu,8,16,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,technician,single,professional.course,no,no,no,cellular,jul,thu,28,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,admin.,single,basic.9y,no,yes,yes,cellular,jul,thu,14,30,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,admin.,single,basic.9y,no,yes,no,cellular,jul,thu,8,27,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,technician,married,university.degree,no,yes,no,telephone,jul,thu,443,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,admin.,married,basic.6y,no,yes,no,telephone,jul,thu,214,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,technician,married,university.degree,no,yes,no,cellular,jul,thu,258,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+54,services,married,basic.6y,no,yes,no,cellular,jul,thu,86,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+30,services,single,high.school,no,yes,no,cellular,jul,thu,248,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,jul,thu,536,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,jul,thu,148,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,married,high.school,no,no,yes,cellular,jul,thu,18,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,management,single,university.degree,no,no,no,cellular,jul,thu,90,13,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,no,no,cellular,jul,thu,78,16,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,admin.,married,university.degree,no,yes,no,cellular,jul,thu,60,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+32,technician,married,university.degree,no,yes,yes,telephone,jul,thu,50,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,no,no,telephone,jul,thu,9,13,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+31,services,single,high.school,no,no,no,cellular,jul,thu,61,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+48,technician,married,professional.course,unknown,yes,no,cellular,jul,thu,5,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+27,admin.,single,high.school,no,yes,no,cellular,jul,thu,5,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,yes,yes,cellular,jul,thu,12,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+42,admin.,married,university.degree,no,no,no,cellular,jul,thu,1142,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes
+29,self-employed,single,university.degree,no,yes,yes,cellular,jul,thu,22,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,services,married,high.school,no,yes,yes,telephone,jul,thu,576,17,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,28,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,6,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,blue-collar,single,basic.4y,unknown,yes,no,cellular,jul,thu,6,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,technician,divorced,unknown,no,yes,no,cellular,jul,thu,420,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,blue-collar,married,professional.course,no,yes,no,cellular,jul,thu,55,15,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,technician,married,university.degree,no,yes,no,cellular,jul,thu,76,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,blue-collar,married,unknown,no,yes,no,telephone,jul,thu,15,25,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,services,married,high.school,no,yes,yes,cellular,jul,thu,1721,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes
+38,admin.,married,basic.6y,no,yes,no,telephone,jul,thu,39,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+25,student,single,high.school,no,no,no,cellular,jul,thu,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+55,retired,married,high.school,no,yes,no,cellular,jul,thu,32,24,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+58,blue-collar,married,basic.6y,unknown,yes,yes,telephone,jul,thu,31,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+53,self-employed,married,professional.course,no,yes,no,cellular,jul,thu,9,31,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,technician,married,university.degree,no,yes,no,cellular,jul,thu,52,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+45,technician,married,basic.9y,unknown,no,no,cellular,jul,thu,31,22,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+31,services,single,high.school,no,yes,no,cellular,jul,thu,45,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+47,services,married,unknown,no,yes,no,cellular,jul,thu,43,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,technician,married,professional.course,no,no,no,cellular,jul,thu,84,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+38,admin.,married,basic.6y,no,yes,no,cellular,jul,thu,17,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+56,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,28,21,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+31,services,single,high.school,no,yes,no,cellular,jul,thu,34,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+31,services,single,high.school,no,yes,no,cellular,jul,thu,48,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+37,admin.,married,high.school,no,yes,no,telephone,jul,thu,29,14,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,technician,divorced,unknown,no,yes,no,cellular,jul,thu,27,13,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+29,technician,married,university.degree,no,no,no,cellular,jul,thu,652,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+51,retired,married,university.degree,unknown,no,no,cellular,jul,thu,110,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+35,admin.,married,university.degree,no,no,no,cellular,jul,thu,19,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+34,technician,divorced,unknown,no,no,no,telephone,jul,thu,41,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+48,technician,married,professional.course,unknown,no,yes,cellular,jul,thu,6,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+48,blue-collar,married,professional.course,no,yes,no,cellular,jul,thu,12,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+33,admin.,single,professional.course,no,yes,no,cellular,jul,thu,143,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,services,married,high.school,no,yes,no,cellular,jul,thu,14,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+54,management,married,university.degree,unknown,yes,no,telephone,jul,thu,11,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+46,services,married,basic.9y,no,no,no,cellular,jul,thu,153,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+36,admin.,single,university.degree,no,no,yes,cellular,jul,thu,35,11,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+50,self-employed,married,professional.course,no,no,no,cellular,jul,thu,73,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+27,admin.,single,high.school,no,no,no,telephone,jul,thu,135,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+54,technician,married,basic.9y,no,no,yes,cellular,jul,thu,50,9,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+59,housemaid,married,basic.4y,no,no,yes,cellular,jul,thu,7,21,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+43,admin.,married,professional.course,unknown,no,no,cellular,jul,thu,127,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+28,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,thu,29,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+39,blue-collar,single,basic.4y,unknown,no,no,telephone,jul,thu,9,21,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no
+48,housemaid,married,basic.4y,unknown,no,yes,cellular,aug,mon,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+45,management,divorced,high.school,no,no,yes,cellular,aug,mon,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,aug,mon,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+34,technician,single,university.degree,no,no,no,cellular,aug,mon,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+41,technician,married,university.degree,no,unknown,unknown,cellular,aug,mon,531,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+38,blue-collar,single,high.school,no,yes,no,cellular,aug,mon,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+43,admin.,married,university.degree,no,no,no,cellular,aug,mon,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+43,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,149,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+45,management,divorced,high.school,no,yes,no,cellular,aug,mon,272,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+44,admin.,single,university.degree,no,no,no,cellular,aug,mon,208,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+50,self-employed,married,basic.4y,unknown,no,no,cellular,aug,mon,222,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+50,self-employed,married,basic.4y,unknown,yes,no,cellular,aug,mon,311,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,mon,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+41,technician,married,university.degree,no,yes,no,cellular,aug,mon,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+41,technician,married,university.degree,no,yes,no,cellular,aug,mon,53,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+41,technician,married,university.degree,no,yes,no,cellular,aug,mon,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+41,technician,married,university.degree,no,yes,no,cellular,aug,mon,227,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+57,unknown,married,unknown,unknown,yes,no,cellular,aug,mon,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+46,admin.,married,university.degree,no,yes,no,cellular,aug,mon,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+58,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,436,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,mon,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+58,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,498,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+36,admin.,married,university.degree,no,no,no,cellular,aug,mon,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+58,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,846,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,yes
+48,blue-collar,married,university.degree,no,no,no,cellular,aug,mon,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+49,services,married,high.school,no,no,no,cellular,aug,mon,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,mon,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,mon,243,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+48,blue-collar,married,basic.9y,no,no,yes,cellular,aug,mon,221,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+53,management,married,university.degree,no,yes,no,cellular,aug,mon,629,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+56,admin.,married,basic.6y,no,yes,no,cellular,aug,mon,240,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+53,services,married,basic.9y,unknown,no,no,cellular,aug,mon,79,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+53,services,married,basic.9y,unknown,yes,no,cellular,aug,mon,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+53,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,mon,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+37,student,married,professional.course,no,no,no,cellular,aug,mon,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+56,blue-collar,married,basic.9y,no,unknown,unknown,cellular,aug,mon,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+47,services,married,high.school,no,no,no,cellular,aug,mon,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+51,technician,married,professional.course,no,no,no,cellular,aug,mon,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+55,blue-collar,married,basic.4y,no,yes,no,telephone,aug,mon,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+55,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,149,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+42,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,151,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+58,retired,married,professional.course,no,yes,no,cellular,aug,mon,302,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+42,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,408,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+56,retired,married,university.degree,no,yes,no,cellular,aug,mon,270,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+46,technician,married,university.degree,unknown,no,no,cellular,aug,mon,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+49,technician,married,professional.course,unknown,yes,yes,cellular,aug,mon,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+33,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+53,services,married,basic.9y,unknown,yes,no,cellular,aug,mon,136,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+46,housemaid,married,high.school,no,yes,no,cellular,aug,mon,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+46,housemaid,married,high.school,no,yes,no,telephone,aug,mon,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,aug,mon,167,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+60,retired,married,university.degree,unknown,no,no,cellular,aug,mon,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+60,retired,married,university.degree,unknown,yes,no,cellular,aug,mon,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,mon,39,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+35,technician,divorced,university.degree,no,yes,yes,cellular,aug,mon,142,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+57,admin.,married,high.school,unknown,yes,no,cellular,aug,mon,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+39,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,417,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+47,entrepreneur,married,university.degree,no,yes,yes,cellular,aug,mon,216,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+33,admin.,divorced,university.degree,no,no,yes,cellular,aug,mon,119,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+35,management,married,university.degree,unknown,yes,no,cellular,aug,mon,372,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+38,technician,married,professional.course,no,no,no,cellular,aug,mon,606,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,mon,200,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+49,technician,married,professional.course,no,no,no,cellular,aug,mon,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,mon,244,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+30,technician,single,high.school,no,no,no,cellular,aug,mon,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+31,technician,married,professional.course,unknown,no,no,cellular,aug,mon,107,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+39,technician,single,professional.course,unknown,no,no,cellular,aug,mon,198,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+48,unknown,married,basic.9y,no,no,no,cellular,aug,mon,307,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+44,services,married,professional.course,no,no,yes,cellular,aug,mon,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+44,services,married,professional.course,no,no,no,cellular,aug,mon,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+34,technician,single,professional.course,no,yes,yes,telephone,aug,mon,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+34,technician,single,professional.course,no,yes,no,cellular,aug,mon,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+60,retired,married,basic.6y,no,no,no,cellular,aug,mon,79,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+36,admin.,married,professional.course,no,no,no,cellular,aug,mon,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+41,unknown,married,unknown,no,yes,no,cellular,aug,mon,230,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+33,technician,divorced,professional.course,no,no,yes,cellular,aug,mon,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+57,retired,married,basic.4y,no,yes,no,telephone,aug,mon,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+33,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,413,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+33,technician,divorced,professional.course,no,yes,yes,cellular,aug,mon,679,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+45,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,mon,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+49,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,mon,315,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+50,admin.,married,high.school,no,no,no,cellular,aug,mon,20,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+57,retired,married,basic.4y,no,no,no,cellular,aug,mon,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+46,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,488,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+46,technician,single,professional.course,unknown,no,no,cellular,aug,mon,824,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+47,technician,married,professional.course,no,yes,no,cellular,aug,mon,506,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+57,admin.,married,high.school,unknown,yes,no,cellular,aug,mon,166,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+35,technician,single,professional.course,no,no,yes,cellular,aug,mon,50,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,432,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+45,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,372,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+33,student,divorced,professional.course,no,no,no,cellular,aug,mon,1110,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,yes
+35,technician,single,professional.course,no,yes,no,cellular,aug,mon,184,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+35,technician,single,professional.course,no,no,no,cellular,aug,mon,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+41,unknown,married,unknown,no,yes,no,cellular,aug,mon,166,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+50,unknown,married,unknown,unknown,yes,no,cellular,aug,mon,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+52,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,551,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+46,blue-collar,married,high.school,no,no,no,cellular,aug,mon,422,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+48,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,mon,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+46,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+46,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+37,technician,single,professional.course,no,yes,no,cellular,aug,mon,44,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+41,technician,married,professional.course,no,no,no,cellular,aug,mon,157,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+41,unknown,married,unknown,no,yes,yes,cellular,aug,mon,653,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+37,management,married,university.degree,unknown,no,no,cellular,aug,mon,149,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+37,management,married,university.degree,unknown,no,no,cellular,aug,mon,161,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+41,technician,married,university.degree,no,yes,yes,cellular,aug,mon,58,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+54,technician,divorced,high.school,no,no,no,cellular,aug,mon,86,4,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+57,admin.,married,high.school,no,yes,no,cellular,aug,mon,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+57,admin.,married,high.school,no,yes,no,cellular,aug,mon,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+39,technician,single,university.degree,no,yes,no,cellular,aug,mon,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+29,technician,single,professional.course,no,no,no,cellular,aug,mon,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+39,housemaid,married,basic.4y,no,no,yes,cellular,aug,mon,357,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+36,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,282,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+49,admin.,married,high.school,no,no,no,cellular,aug,mon,144,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+41,unknown,married,unknown,no,no,no,cellular,aug,mon,258,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+44,services,married,professional.course,no,no,no,cellular,aug,mon,341,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+53,blue-collar,married,unknown,no,no,no,cellular,aug,mon,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+56,admin.,married,university.degree,no,yes,no,cellular,aug,mon,178,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,298,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+39,admin.,married,university.degree,no,no,no,cellular,aug,mon,154,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+35,management,single,university.degree,no,yes,no,cellular,aug,mon,151,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+50,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,333,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+54,blue-collar,married,unknown,no,no,no,cellular,aug,mon,143,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+44,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,135,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+41,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,182,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+50,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,mon,36,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+58,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,mon,328,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+44,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,378,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+58,retired,married,professional.course,unknown,no,no,cellular,aug,mon,244,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+49,admin.,divorced,professional.course,no,yes,yes,cellular,aug,mon,230,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+57,admin.,married,high.school,no,no,no,cellular,aug,mon,958,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+30,unknown,married,university.degree,no,yes,no,cellular,aug,mon,171,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+44,admin.,divorced,high.school,no,yes,no,cellular,aug,mon,99,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+30,unknown,married,university.degree,no,yes,no,cellular,aug,mon,190,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+33,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,170,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+45,technician,divorced,high.school,no,yes,yes,cellular,aug,mon,482,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,mon,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,mon,151,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+58,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,190,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+47,services,married,high.school,no,yes,no,cellular,aug,mon,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+37,management,married,university.degree,unknown,no,no,cellular,aug,mon,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+45,technician,married,high.school,no,yes,no,cellular,aug,mon,84,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+54,technician,married,professional.course,unknown,no,yes,cellular,aug,mon,281,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+50,admin.,married,high.school,no,no,no,cellular,aug,mon,67,6,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,mon,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+60,retired,married,university.degree,unknown,yes,no,cellular,aug,mon,368,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+60,retired,married,university.degree,unknown,yes,yes,cellular,aug,mon,146,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+40,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,198,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+59,retired,married,high.school,no,yes,no,cellular,aug,mon,370,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+35,admin.,married,university.degree,no,no,no,cellular,aug,mon,337,4,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+34,admin.,single,university.degree,no,no,yes,cellular,aug,mon,230,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+33,technician,divorced,professional.course,no,no,no,cellular,aug,mon,686,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+54,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,365,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,597,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+48,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,mon,441,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,mon,857,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+30,admin.,married,university.degree,no,no,yes,cellular,aug,mon,753,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+41,technician,married,university.degree,no,yes,no,cellular,aug,mon,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+44,services,married,professional.course,no,no,no,cellular,aug,mon,186,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+58,retired,married,professional.course,unknown,yes,no,cellular,aug,mon,410,4,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+60,retired,married,university.degree,unknown,no,no,cellular,aug,mon,430,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+48,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,mon,251,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+59,retired,married,basic.4y,no,no,no,cellular,aug,mon,357,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+45,unemployed,married,university.degree,no,yes,no,cellular,aug,mon,211,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+54,technician,married,university.degree,no,yes,no,telephone,aug,mon,652,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,yes
+34,admin.,single,university.degree,no,no,no,cellular,aug,mon,177,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+30,unknown,married,university.degree,no,yes,no,cellular,aug,mon,183,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+52,management,married,university.degree,no,no,no,cellular,aug,mon,1488,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,yes
+40,entrepreneur,married,university.degree,no,yes,no,cellular,aug,mon,145,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+45,services,married,high.school,unknown,yes,no,cellular,aug,mon,413,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+50,technician,divorced,university.degree,unknown,no,no,cellular,aug,mon,114,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+47,technician,married,professional.course,no,no,no,cellular,aug,mon,428,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no
+32,technician,married,professional.course,no,yes,no,cellular,aug,tue,133,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,technician,married,university.degree,no,yes,no,cellular,aug,tue,142,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+38,blue-collar,single,high.school,no,no,no,cellular,aug,tue,250,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,admin.,married,basic.9y,no,no,no,cellular,aug,tue,125,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,technician,single,high.school,no,yes,no,cellular,aug,tue,276,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+56,retired,married,university.degree,no,yes,no,cellular,aug,tue,377,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+47,entrepreneur,married,university.degree,no,no,no,cellular,aug,tue,487,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+47,entrepreneur,married,university.degree,no,yes,no,cellular,aug,tue,641,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+52,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,126,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,admin.,married,high.school,no,no,yes,cellular,aug,tue,519,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+53,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+43,admin.,single,university.degree,no,yes,no,cellular,aug,tue,837,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+57,retired,married,basic.6y,no,no,no,cellular,aug,tue,222,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,unknown,married,basic.9y,no,no,no,cellular,aug,tue,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,services,married,high.school,no,no,no,cellular,aug,tue,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+58,admin.,married,high.school,no,yes,yes,cellular,aug,tue,314,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+58,admin.,married,high.school,no,yes,no,cellular,aug,tue,553,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+52,admin.,married,unknown,no,yes,no,cellular,aug,tue,976,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+38,technician,single,professional.course,no,yes,no,cellular,aug,tue,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,technician,divorced,university.degree,no,no,no,cellular,aug,tue,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,technician,divorced,university.degree,no,no,yes,cellular,aug,tue,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,admin.,married,unknown,no,no,no,cellular,aug,tue,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,aug,tue,36,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,admin.,married,unknown,no,no,no,cellular,aug,tue,422,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,technician,divorced,university.degree,no,no,yes,cellular,aug,tue,794,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+47,admin.,married,high.school,no,yes,no,cellular,aug,tue,145,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,technician,divorced,professional.course,no,no,no,cellular,aug,tue,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+53,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,241,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,technician,divorced,professional.course,no,no,no,cellular,aug,tue,69,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,technician,divorced,professional.course,no,no,no,cellular,aug,tue,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+47,services,married,high.school,no,yes,no,cellular,aug,tue,836,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+41,technician,married,professional.course,no,no,no,cellular,aug,tue,269,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,tue,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,tue,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,housemaid,married,basic.4y,unknown,no,no,cellular,aug,tue,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,housemaid,married,basic.4y,unknown,no,no,cellular,aug,tue,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,aug,tue,448,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,technician,married,professional.course,unknown,no,no,cellular,aug,tue,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,335,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,tue,140,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+58,blue-collar,married,basic.9y,no,no,no,cellular,aug,tue,171,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,aug,tue,356,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,aug,tue,130,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+51,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,545,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,management,married,high.school,unknown,no,no,cellular,aug,tue,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,1134,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+57,retired,married,professional.course,unknown,yes,no,cellular,aug,tue,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+42,technician,married,high.school,no,yes,no,cellular,aug,tue,188,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+44,technician,single,professional.course,no,yes,no,cellular,aug,tue,164,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+42,technician,married,high.school,no,yes,no,cellular,aug,tue,409,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+42,technician,married,professional.course,no,yes,no,cellular,aug,tue,607,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+39,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,328,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,aug,tue,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+47,management,married,university.degree,no,no,no,cellular,aug,tue,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+47,management,married,university.degree,no,no,no,cellular,aug,tue,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,technician,married,university.degree,no,yes,yes,cellular,aug,tue,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,146,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+51,technician,divorced,high.school,unknown,no,no,cellular,aug,tue,162,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,technician,single,professional.course,no,yes,no,cellular,aug,tue,54,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,technician,single,professional.course,no,no,no,cellular,aug,tue,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+40,technician,married,professional.course,no,yes,no,cellular,aug,tue,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+43,management,married,university.degree,unknown,yes,no,cellular,aug,tue,268,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+40,technician,married,professional.course,no,yes,no,cellular,aug,tue,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+40,technician,married,professional.course,no,no,no,cellular,aug,tue,348,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+53,blue-collar,married,basic.4y,unknown,yes,no,telephone,aug,tue,1186,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+58,services,married,unknown,unknown,yes,no,cellular,aug,tue,197,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,198,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+53,technician,married,professional.course,no,yes,no,cellular,aug,tue,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,admin.,married,university.degree,no,yes,no,cellular,aug,tue,790,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,technician,married,professional.course,no,no,no,cellular,aug,tue,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,technician,married,professional.course,unknown,no,no,cellular,aug,tue,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+59,retired,married,university.degree,no,yes,no,cellular,aug,tue,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,tue,174,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,183,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,tue,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,tue,196,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,self-employed,married,basic.9y,unknown,yes,no,cellular,aug,tue,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+55,admin.,married,professional.course,no,yes,yes,cellular,aug,tue,482,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,technician,married,professional.course,no,no,no,cellular,aug,tue,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,technician,married,professional.course,no,yes,no,cellular,aug,tue,297,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,229,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,services,divorced,basic.6y,no,yes,no,cellular,aug,tue,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+53,technician,married,high.school,no,yes,no,cellular,aug,tue,231,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+53,technician,married,high.school,no,yes,no,cellular,aug,tue,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+53,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,238,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+33,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,178,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,278,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+40,technician,married,professional.course,no,no,no,cellular,aug,tue,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+44,admin.,married,basic.4y,unknown,yes,yes,cellular,aug,tue,286,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+53,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,334,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+44,admin.,married,basic.4y,unknown,yes,no,cellular,aug,tue,222,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,unknown,married,university.degree,no,yes,no,cellular,aug,tue,95,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,unknown,married,basic.9y,no,yes,no,cellular,aug,tue,148,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+59,admin.,married,university.degree,no,yes,no,cellular,aug,tue,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,104,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,admin.,single,high.school,no,yes,no,cellular,aug,tue,195,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+56,admin.,married,high.school,unknown,yes,no,cellular,aug,tue,182,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,housemaid,married,basic.6y,no,no,no,cellular,aug,tue,56,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,technician,single,university.degree,no,no,no,cellular,aug,tue,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,tue,297,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+44,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,720,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+44,technician,married,university.degree,no,yes,no,cellular,aug,tue,231,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+44,blue-collar,married,basic.6y,no,no,no,cellular,aug,tue,67,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+33,technician,married,university.degree,no,yes,no,cellular,aug,tue,316,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,202,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+33,admin.,married,university.degree,no,no,yes,cellular,aug,tue,149,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,tue,168,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,services,divorced,basic.6y,no,yes,no,cellular,aug,tue,683,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,tue,176,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,66,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,tue,935,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+45,technician,married,professional.course,unknown,no,no,cellular,aug,tue,320,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+43,technician,single,professional.course,no,no,no,cellular,aug,tue,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,services,married,high.school,unknown,no,no,cellular,aug,tue,241,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,aug,tue,199,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,622,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,services,married,high.school,no,yes,no,cellular,aug,tue,158,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+43,admin.,married,university.degree,no,yes,no,cellular,aug,tue,531,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+42,technician,divorced,university.degree,no,yes,no,cellular,aug,tue,141,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,admin.,married,university.degree,no,no,yes,cellular,aug,tue,414,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+38,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,339,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+42,admin.,married,university.degree,no,no,no,cellular,aug,tue,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,123,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,admin.,married,university.degree,no,no,no,cellular,aug,tue,766,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+41,technician,married,university.degree,no,yes,no,cellular,aug,tue,27,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,admin.,married,university.degree,no,no,no,cellular,aug,tue,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+33,unknown,married,unknown,unknown,yes,no,cellular,aug,tue,229,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+36,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,112,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,tue,704,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,management,married,university.degree,no,no,no,cellular,aug,tue,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,management,married,university.degree,no,yes,no,cellular,aug,tue,409,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+53,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,aug,tue,1311,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+37,admin.,single,professional.course,no,no,no,cellular,aug,tue,223,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,technician,married,professional.course,no,no,yes,cellular,aug,tue,166,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+58,technician,married,professional.course,unknown,no,no,cellular,aug,tue,287,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,aug,tue,109,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,housemaid,married,professional.course,no,yes,yes,cellular,aug,tue,291,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,unemployed,divorced,university.degree,unknown,no,no,cellular,aug,tue,307,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+40,technician,married,professional.course,no,no,no,cellular,aug,tue,451,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,unemployed,married,university.degree,no,yes,no,cellular,aug,tue,33,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+57,housemaid,married,unknown,no,no,no,cellular,aug,tue,318,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+42,admin.,married,university.degree,no,no,no,cellular,aug,tue,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,admin.,married,high.school,no,no,no,cellular,aug,tue,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+44,technician,divorced,university.degree,unknown,no,no,cellular,aug,tue,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,blue-collar,married,high.school,no,no,no,cellular,aug,tue,193,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+36,self-employed,married,basic.9y,no,no,no,cellular,aug,tue,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+51,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,132,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,services,married,high.school,no,no,no,cellular,aug,tue,203,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,services,married,high.school,no,no,no,cellular,aug,tue,344,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,services,married,high.school,no,yes,no,cellular,aug,tue,197,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,self-employed,married,basic.4y,unknown,no,no,telephone,aug,tue,112,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,technician,divorced,professional.course,no,no,no,cellular,aug,tue,101,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+43,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,1332,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+54,technician,divorced,university.degree,no,no,no,cellular,aug,tue,155,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+40,admin.,married,university.degree,no,no,no,cellular,aug,tue,618,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+30,admin.,single,university.degree,no,no,no,cellular,aug,tue,1110,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+40,admin.,married,university.degree,no,no,yes,cellular,aug,tue,445,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,technician,married,professional.course,unknown,yes,yes,cellular,aug,tue,504,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,aug,tue,385,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,technician,married,professional.course,no,yes,no,cellular,aug,tue,425,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+38,technician,married,high.school,no,no,no,cellular,aug,tue,134,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+43,entrepreneur,married,professional.course,no,no,no,cellular,aug,tue,56,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,technician,married,high.school,no,no,no,cellular,aug,tue,121,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,unknown,married,unknown,no,yes,no,cellular,aug,tue,214,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,admin.,married,university.degree,no,no,yes,cellular,aug,tue,129,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,aug,tue,146,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,admin.,divorced,university.degree,no,yes,yes,cellular,aug,tue,211,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,technician,single,professional.course,no,no,no,cellular,aug,tue,513,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,blue-collar,married,unknown,unknown,no,no,cellular,aug,tue,371,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,tue,419,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+37,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,210,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,housemaid,married,basic.9y,no,yes,no,cellular,aug,tue,459,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,management,married,university.degree,no,yes,no,cellular,aug,tue,263,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,aug,tue,332,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,blue-collar,married,professional.course,no,no,yes,cellular,aug,tue,150,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,technician,married,professional.course,unknown,no,no,cellular,aug,tue,131,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,1227,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+51,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,507,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,admin.,married,university.degree,no,yes,no,cellular,aug,tue,608,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+38,housemaid,married,university.degree,no,yes,no,cellular,aug,tue,295,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+51,admin.,married,high.school,no,no,no,cellular,aug,tue,178,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+51,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,147,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,housemaid,married,basic.4y,unknown,yes,yes,cellular,aug,tue,307,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+40,technician,married,professional.course,no,yes,no,cellular,aug,tue,109,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+59,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,1197,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,1208,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+47,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,tue,78,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,aug,tue,223,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,professional.course,no,yes,no,cellular,aug,tue,996,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,blue-collar,married,basic.4y,no,yes,no,cellular,aug,wed,92,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+57,retired,married,high.school,no,no,no,cellular,aug,wed,115,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+48,technician,divorced,professional.course,no,yes,no,cellular,aug,wed,78,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+44,self-employed,married,professional.course,no,yes,no,telephone,aug,wed,116,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+45,admin.,married,university.degree,no,yes,no,cellular,aug,wed,314,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+53,admin.,married,university.degree,no,no,no,cellular,aug,wed,384,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+33,housemaid,single,university.degree,unknown,yes,no,cellular,aug,wed,46,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+46,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,1357,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+44,admin.,married,basic.4y,unknown,yes,no,cellular,aug,wed,125,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+44,admin.,married,university.degree,unknown,yes,yes,cellular,aug,wed,376,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+34,technician,single,university.degree,no,yes,yes,cellular,aug,wed,455,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+41,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,146,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,technician,single,professional.course,no,no,no,cellular,aug,wed,81,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+36,technician,married,high.school,no,yes,no,cellular,aug,wed,205,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+46,blue-collar,divorced,professional.course,no,yes,no,cellular,aug,wed,192,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+58,retired,married,university.degree,unknown,yes,yes,cellular,aug,wed,269,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+53,services,married,high.school,no,yes,no,cellular,aug,wed,406,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+32,technician,single,professional.course,no,no,no,cellular,aug,wed,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+58,housemaid,married,basic.4y,no,no,no,cellular,aug,wed,84,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+46,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+37,management,married,university.degree,no,no,no,cellular,aug,wed,902,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+46,admin.,married,university.degree,no,no,no,cellular,aug,wed,273,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,management,married,university.degree,no,no,yes,cellular,aug,wed,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,management,married,university.degree,no,no,no,cellular,aug,wed,347,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+38,technician,married,professional.course,no,no,yes,cellular,aug,wed,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+45,self-employed,married,basic.9y,no,no,no,cellular,aug,wed,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,technician,married,professional.course,no,no,no,cellular,aug,wed,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,218,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,admin.,single,university.degree,unknown,yes,yes,cellular,aug,wed,43,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,admin.,single,university.degree,unknown,no,no,cellular,aug,wed,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+44,blue-collar,married,unknown,no,yes,no,cellular,aug,wed,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+47,services,married,high.school,unknown,yes,no,cellular,aug,wed,277,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,wed,898,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+51,technician,married,high.school,unknown,unknown,unknown,cellular,aug,wed,637,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+46,admin.,married,high.school,no,unknown,unknown,cellular,aug,wed,251,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,technician,single,high.school,no,no,no,cellular,aug,wed,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+53,management,married,university.degree,no,yes,no,cellular,aug,wed,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,wed,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+39,technician,single,university.degree,no,yes,no,cellular,aug,wed,224,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+39,technician,single,university.degree,no,no,no,cellular,aug,wed,254,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+45,technician,married,professional.course,unknown,no,no,cellular,aug,wed,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+46,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,wed,189,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,admin.,married,professional.course,no,yes,no,cellular,aug,wed,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+45,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,wed,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+48,services,married,high.school,unknown,yes,yes,cellular,aug,wed,190,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+45,blue-collar,married,basic.6y,unknown,yes,yes,cellular,aug,wed,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+49,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,wed,311,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+42,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+49,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,wed,501,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+52,technician,married,high.school,no,yes,yes,cellular,aug,wed,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+44,unemployed,married,high.school,unknown,yes,no,cellular,aug,wed,209,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+39,technician,single,university.degree,no,no,no,cellular,aug,wed,50,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+56,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,58,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,182,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,technician,single,professional.course,no,yes,no,cellular,aug,wed,499,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,technician,single,professional.course,no,no,no,cellular,aug,wed,720,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+34,admin.,married,university.degree,no,no,no,cellular,aug,wed,224,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,technician,single,high.school,no,yes,yes,cellular,aug,wed,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,technician,single,professional.course,no,yes,yes,cellular,aug,wed,952,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+31,blue-collar,single,basic.9y,no,no,no,cellular,aug,wed,38,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+51,admin.,married,high.school,no,yes,no,cellular,aug,wed,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+33,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,wed,184,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+49,unemployed,married,professional.course,unknown,yes,no,cellular,aug,wed,397,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+46,self-employed,married,basic.9y,unknown,yes,yes,cellular,aug,wed,102,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+41,technician,married,high.school,no,yes,no,cellular,aug,wed,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,technician,single,professional.course,no,yes,no,cellular,aug,wed,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,194,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,technician,single,professional.course,no,yes,no,cellular,aug,wed,281,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+37,self-employed,married,university.degree,no,yes,yes,cellular,aug,wed,585,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+52,technician,married,professional.course,unknown,no,no,cellular,aug,wed,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+52,technician,married,professional.course,unknown,no,no,cellular,aug,wed,244,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+52,technician,married,professional.course,unknown,no,no,cellular,aug,wed,219,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+40,admin.,divorced,university.degree,no,yes,yes,cellular,aug,wed,65,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+40,admin.,divorced,university.degree,no,no,yes,cellular,aug,wed,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+55,technician,married,university.degree,no,no,yes,cellular,aug,wed,358,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+55,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+36,technician,divorced,professional.course,no,yes,yes,cellular,aug,wed,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+50,admin.,divorced,high.school,unknown,no,no,cellular,aug,wed,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+50,admin.,divorced,high.school,unknown,no,yes,cellular,aug,wed,359,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,technician,married,high.school,unknown,no,no,cellular,aug,wed,211,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+37,technician,single,high.school,no,yes,no,cellular,aug,wed,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+46,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,131,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+50,technician,married,professional.course,no,no,no,cellular,aug,wed,467,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+29,technician,single,university.degree,no,yes,yes,cellular,aug,wed,225,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+41,technician,married,high.school,no,no,no,cellular,aug,wed,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+37,technician,single,high.school,no,yes,yes,cellular,aug,wed,763,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+31,technician,married,professional.course,no,yes,yes,cellular,aug,wed,184,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,admin.,married,university.degree,no,unknown,unknown,cellular,aug,wed,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+33,technician,married,university.degree,no,no,no,cellular,aug,wed,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+48,admin.,married,high.school,no,yes,no,cellular,aug,wed,103,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,management,married,university.degree,no,yes,yes,cellular,aug,wed,649,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+50,admin.,single,university.degree,no,yes,no,cellular,aug,wed,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+47,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,wed,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+51,technician,married,professional.course,no,no,no,cellular,aug,wed,221,9,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,admin.,single,university.degree,no,no,yes,cellular,aug,wed,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,166,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+34,technician,single,university.degree,no,no,no,cellular,aug,wed,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+42,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,aug,wed,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+53,technician,married,high.school,no,yes,no,cellular,aug,wed,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+53,technician,married,high.school,no,yes,no,cellular,aug,wed,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+40,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,302,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+50,unemployed,married,high.school,unknown,yes,yes,cellular,aug,wed,400,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,375,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+53,technician,married,high.school,no,yes,no,cellular,aug,wed,329,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+48,blue-collar,married,professional.course,no,yes,no,cellular,aug,wed,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+37,technician,single,professional.course,no,no,no,cellular,aug,wed,341,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+38,admin.,single,high.school,no,yes,no,cellular,aug,wed,246,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+38,admin.,single,high.school,no,no,no,cellular,aug,wed,181,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+39,admin.,single,university.degree,no,no,no,cellular,aug,wed,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+33,technician,married,high.school,unknown,no,yes,cellular,aug,wed,212,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,wed,547,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+46,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+59,housemaid,married,basic.4y,unknown,no,no,cellular,aug,wed,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+48,unknown,married,unknown,no,yes,no,cellular,aug,wed,174,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,technician,single,high.school,no,yes,no,cellular,aug,wed,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+42,admin.,married,university.degree,no,no,no,cellular,aug,wed,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,technician,single,high.school,no,no,no,cellular,aug,wed,232,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+57,blue-collar,married,unknown,unknown,yes,no,cellular,aug,wed,376,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,aug,wed,199,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+48,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,179,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+42,admin.,married,university.degree,no,no,no,cellular,aug,wed,150,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+39,admin.,single,university.degree,no,yes,no,cellular,aug,wed,2191,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+57,retired,married,basic.4y,unknown,no,no,cellular,aug,wed,185,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,technician,married,professional.course,no,yes,no,cellular,aug,wed,166,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+44,technician,married,professional.course,unknown,unknown,unknown,cellular,aug,wed,275,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+34,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,388,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+53,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+55,retired,married,basic.4y,unknown,yes,yes,cellular,aug,wed,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+59,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,wed,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+46,blue-collar,divorced,professional.course,no,yes,no,cellular,aug,wed,254,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+50,unemployed,married,high.school,unknown,yes,no,cellular,aug,wed,344,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+46,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,1044,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+33,technician,single,professional.course,no,yes,no,cellular,aug,wed,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+33,technician,single,professional.course,no,yes,no,cellular,aug,wed,244,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+33,technician,single,professional.course,no,yes,no,cellular,aug,wed,84,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+33,technician,single,professional.course,no,yes,no,cellular,aug,wed,290,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+33,technician,single,professional.course,no,yes,no,cellular,aug,wed,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+51,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,365,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+47,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,384,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,aug,wed,732,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+51,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+52,technician,divorced,university.degree,no,yes,yes,cellular,aug,wed,100,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+47,admin.,married,high.school,unknown,yes,no,cellular,aug,wed,136,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+51,admin.,married,high.school,no,no,no,cellular,aug,wed,301,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,technician,single,university.degree,no,no,no,cellular,aug,wed,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,technician,single,university.degree,no,unknown,unknown,cellular,aug,wed,184,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+29,technician,single,university.degree,no,yes,yes,cellular,aug,wed,44,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+45,retired,married,basic.9y,no,yes,no,cellular,aug,wed,45,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,technician,single,university.degree,no,yes,no,cellular,aug,wed,411,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+43,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+56,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,188,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+52,technician,single,professional.course,no,yes,no,cellular,aug,wed,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+49,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+51,entrepreneur,married,basic.9y,no,no,no,cellular,aug,wed,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+51,entrepreneur,married,basic.9y,no,no,no,cellular,aug,wed,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+56,retired,married,basic.4y,unknown,yes,no,cellular,aug,wed,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+48,admin.,married,professional.course,no,no,no,cellular,aug,wed,265,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+56,retired,married,basic.4y,unknown,yes,no,cellular,aug,wed,198,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+41,admin.,divorced,high.school,no,no,no,cellular,aug,wed,170,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+33,technician,married,university.degree,no,yes,no,cellular,aug,wed,312,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+44,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,438,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+45,retired,married,basic.9y,no,yes,no,cellular,aug,wed,601,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+45,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,83,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,aug,wed,39,6,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+45,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+45,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+58,blue-collar,married,basic.4y,no,yes,no,cellular,aug,wed,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+37,management,married,university.degree,unknown,no,no,cellular,aug,wed,168,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+46,blue-collar,married,high.school,no,no,no,cellular,aug,wed,64,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+47,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,wed,55,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+59,technician,married,professional.course,no,no,no,cellular,aug,wed,378,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+55,admin.,married,university.degree,unknown,no,yes,cellular,aug,wed,308,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,432,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+56,retired,married,basic.4y,no,yes,no,cellular,aug,wed,240,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,technician,single,professional.course,no,yes,no,telephone,aug,wed,115,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+45,technician,married,professional.course,no,no,no,cellular,aug,wed,851,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+59,housemaid,married,basic.4y,unknown,no,no,cellular,aug,wed,291,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,technician,married,university.degree,no,yes,no,cellular,aug,wed,224,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+60,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+52,blue-collar,married,basic.4y,no,yes,no,cellular,aug,wed,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+37,admin.,married,university.degree,no,no,no,cellular,aug,wed,996,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+34,technician,married,university.degree,no,yes,yes,cellular,aug,wed,83,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+51,technician,married,high.school,unknown,no,no,cellular,aug,wed,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+36,self-employed,married,basic.4y,unknown,yes,no,cellular,aug,wed,175,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+50,admin.,married,university.degree,no,no,no,cellular,aug,wed,536,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+44,technician,divorced,professional.course,no,yes,no,cellular,aug,wed,1552,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+48,blue-collar,married,unknown,no,yes,yes,cellular,aug,wed,742,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+54,technician,married,professional.course,no,no,no,cellular,aug,wed,171,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+48,admin.,married,university.degree,no,yes,no,cellular,aug,wed,203,7,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+41,admin.,single,university.degree,unknown,yes,yes,cellular,aug,wed,132,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+42,management,married,high.school,no,no,no,cellular,aug,wed,588,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+34,unknown,married,unknown,unknown,no,no,cellular,aug,wed,245,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+46,admin.,single,university.degree,no,unknown,unknown,cellular,aug,wed,311,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+37,technician,single,professional.course,no,no,yes,cellular,aug,wed,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+47,management,married,university.degree,no,yes,no,cellular,aug,wed,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+34,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,184,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+34,admin.,single,university.degree,unknown,no,no,cellular,aug,wed,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+45,admin.,divorced,high.school,no,yes,yes,cellular,aug,wed,192,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+36,technician,single,professional.course,no,no,no,cellular,aug,wed,275,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+46,blue-collar,married,basic.4y,no,yes,no,cellular,aug,wed,269,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+41,technician,married,high.school,no,no,no,cellular,aug,wed,209,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,wed,130,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+34,admin.,married,professional.course,no,yes,no,cellular,aug,wed,276,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+37,management,married,university.degree,no,yes,no,cellular,aug,wed,54,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+33,entrepreneur,married,university.degree,no,no,no,cellular,aug,wed,83,7,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+37,management,married,university.degree,no,yes,no,cellular,aug,wed,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,459,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+37,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,739,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+42,admin.,married,university.degree,no,no,no,cellular,aug,wed,21,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,aug,wed,252,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+46,management,married,high.school,no,no,no,cellular,aug,wed,322,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+43,technician,married,professional.course,unknown,no,no,cellular,aug,wed,54,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+58,retired,married,professional.course,no,yes,no,cellular,aug,wed,406,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,wed,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,aug,wed,395,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+42,admin.,single,university.degree,no,no,no,cellular,aug,wed,286,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+57,blue-collar,married,basic.6y,no,no,no,cellular,aug,wed,433,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+43,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,57,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+59,retired,married,high.school,no,no,no,cellular,aug,wed,292,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+48,admin.,married,high.school,unknown,no,no,cellular,aug,wed,562,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+34,admin.,divorced,high.school,no,no,no,cellular,aug,wed,176,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+53,technician,single,professional.course,no,no,no,cellular,aug,wed,293,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+54,retired,married,high.school,no,no,no,cellular,aug,wed,543,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+42,technician,married,professional.course,no,yes,no,cellular,aug,wed,685,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+33,technician,married,high.school,no,yes,yes,cellular,aug,wed,45,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+45,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,61,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+35,self-employed,married,basic.4y,unknown,unknown,unknown,cellular,aug,wed,227,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+43,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,79,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+37,admin.,married,university.degree,no,no,no,cellular,aug,wed,426,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,services,married,professional.course,unknown,no,yes,cellular,aug,wed,80,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,236,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+29,technician,single,university.degree,no,yes,yes,cellular,aug,wed,626,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+41,technician,married,high.school,no,yes,yes,cellular,aug,wed,105,6,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,275,9,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+49,management,married,university.degree,no,unknown,unknown,cellular,aug,wed,178,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+55,admin.,married,university.degree,no,no,no,cellular,aug,wed,54,6,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,wed,226,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+29,management,married,university.degree,no,no,yes,cellular,aug,wed,181,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+47,entrepreneur,married,basic.6y,unknown,no,no,telephone,aug,wed,244,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+30,self-employed,single,university.degree,no,yes,yes,cellular,aug,wed,131,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+39,technician,married,high.school,no,yes,yes,cellular,aug,wed,132,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+47,management,married,university.degree,no,yes,yes,cellular,aug,wed,135,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+49,housemaid,married,university.degree,no,yes,no,cellular,aug,wed,210,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+31,technician,single,university.degree,no,yes,yes,cellular,aug,wed,107,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+52,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,wed,1250,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+42,technician,married,professional.course,no,yes,yes,cellular,aug,wed,40,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no
+43,admin.,single,university.degree,no,no,yes,cellular,aug,wed,1471,7,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+46,management,married,high.school,no,yes,yes,cellular,aug,wed,1456,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes
+35,technician,married,professional.course,no,yes,yes,cellular,aug,thu,122,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+42,technician,married,professional.course,no,yes,no,cellular,aug,thu,108,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,technician,divorced,professional.course,no,no,no,cellular,aug,thu,110,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,unemployed,married,high.school,no,no,no,cellular,aug,thu,186,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+43,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,297,7,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,technician,married,high.school,no,no,no,cellular,aug,thu,157,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,technician,married,unknown,unknown,yes,yes,cellular,aug,thu,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,technician,married,high.school,unknown,no,no,cellular,aug,thu,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,technician,single,university.degree,no,yes,yes,cellular,aug,thu,1288,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+36,admin.,married,university.degree,no,no,no,cellular,aug,thu,187,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+33,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,59,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+44,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,420,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+47,technician,married,professional.course,no,yes,no,cellular,aug,thu,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+47,blue-collar,married,basic.4y,no,no,no,cellular,aug,thu,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,technician,single,professional.course,no,no,no,cellular,aug,thu,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,technician,single,professional.course,no,yes,no,cellular,aug,thu,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,technician,single,university.degree,no,no,no,cellular,aug,thu,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,thu,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+47,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,267,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,thu,74,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,technician,married,university.degree,no,no,yes,cellular,aug,thu,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,thu,318,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,technician,single,university.degree,unknown,yes,no,cellular,aug,thu,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,thu,402,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,technician,single,university.degree,unknown,yes,no,cellular,aug,thu,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,technician,single,university.degree,unknown,yes,no,cellular,aug,thu,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,technician,single,university.degree,unknown,no,no,cellular,aug,thu,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,51,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,technician,married,high.school,no,no,no,cellular,aug,thu,51,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,technician,single,university.degree,no,no,no,cellular,aug,thu,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,technician,single,university.degree,unknown,no,no,cellular,aug,thu,666,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,thu,395,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+38,admin.,married,university.degree,no,no,no,cellular,aug,thu,326,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,technician,single,university.degree,no,yes,no,cellular,aug,thu,292,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,admin.,married,high.school,no,no,no,cellular,aug,thu,663,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+51,housemaid,married,basic.4y,unknown,no,yes,cellular,aug,thu,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,student,single,university.degree,no,no,no,cellular,aug,thu,387,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+29,admin.,married,university.degree,no,no,no,cellular,aug,thu,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+56,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,thu,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,technician,single,professional.course,no,yes,no,cellular,aug,thu,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,85,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,thu,287,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+44,blue-collar,married,basic.9y,no,no,no,cellular,aug,thu,1056,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+46,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,thu,48,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,technician,married,professional.course,no,yes,no,cellular,aug,thu,253,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+38,services,single,high.school,no,yes,no,cellular,aug,thu,228,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,thu,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,student,single,university.degree,no,yes,yes,cellular,aug,thu,358,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,self-employed,married,basic.4y,no,no,yes,cellular,aug,thu,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,84,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,admin.,married,unknown,no,no,no,cellular,aug,thu,262,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,224,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,274,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+36,technician,married,university.degree,no,yes,yes,cellular,aug,thu,22,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+54,blue-collar,married,basic.4y,unknown,yes,no,telephone,aug,thu,309,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,technician,single,professional.course,no,no,no,cellular,aug,thu,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+36,technician,married,university.degree,no,yes,no,cellular,aug,thu,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,technician,single,university.degree,no,yes,no,cellular,aug,thu,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,technician,single,university.degree,no,yes,no,cellular,aug,thu,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,self-employed,married,basic.4y,unknown,yes,no,cellular,aug,thu,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,technician,single,university.degree,no,yes,yes,cellular,aug,thu,30,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,1462,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,technician,single,university.degree,no,yes,yes,cellular,aug,thu,205,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,technician,single,university.degree,no,no,no,cellular,aug,thu,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,blue-collar,married,basic.9y,no,yes,no,cellular,aug,thu,152,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+29,technician,single,high.school,no,no,no,cellular,aug,thu,225,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,thu,228,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+44,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,36,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+29,technician,single,professional.course,no,yes,no,cellular,aug,thu,199,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,aug,thu,154,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+44,admin.,married,university.degree,unknown,yes,yes,cellular,aug,thu,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,admin.,single,university.degree,unknown,yes,no,cellular,aug,thu,566,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+45,blue-collar,married,professional.course,no,yes,no,cellular,aug,thu,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+33,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,1834,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,blue-collar,married,professional.course,no,no,no,cellular,aug,thu,398,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,housemaid,married,university.degree,no,yes,yes,cellular,aug,thu,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,aug,thu,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+56,retired,married,high.school,unknown,yes,no,cellular,aug,thu,674,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+43,admin.,single,university.degree,no,no,yes,cellular,aug,thu,306,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+33,admin.,married,university.degree,no,no,yes,cellular,aug,thu,196,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,1327,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+31,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,46,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+38,services,single,high.school,no,yes,no,cellular,aug,thu,235,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,359,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+59,retired,married,professional.course,no,no,no,cellular,aug,thu,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+58,retired,married,professional.course,no,yes,yes,cellular,aug,thu,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,technician,divorced,university.degree,no,yes,yes,cellular,aug,thu,526,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+33,technician,married,high.school,no,no,yes,cellular,aug,thu,401,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+48,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,thu,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,technician,divorced,university.degree,no,no,no,cellular,aug,thu,140,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,technician,divorced,university.degree,no,yes,no,cellular,aug,thu,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,technician,divorced,university.degree,no,no,no,cellular,aug,thu,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+40,housemaid,divorced,basic.9y,no,yes,no,cellular,aug,thu,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,admin.,single,university.degree,unknown,no,yes,cellular,aug,thu,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,admin.,single,university.degree,unknown,yes,no,cellular,aug,thu,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,technician,single,university.degree,no,no,no,cellular,aug,thu,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,management,married,university.degree,unknown,yes,yes,cellular,aug,thu,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,technician,married,university.degree,no,no,no,cellular,aug,thu,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,technician,married,university.degree,no,no,no,cellular,aug,thu,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+42,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,85,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,technician,married,university.degree,no,no,no,cellular,aug,thu,251,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,services,married,basic.4y,unknown,no,no,cellular,aug,thu,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,services,married,basic.4y,unknown,yes,no,cellular,aug,thu,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,admin.,single,high.school,no,yes,no,cellular,aug,thu,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,admin.,single,high.school,no,no,yes,cellular,aug,thu,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,admin.,single,high.school,no,unknown,unknown,cellular,aug,thu,125,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,admin.,single,high.school,no,no,no,cellular,aug,thu,257,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+55,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,admin.,married,basic.9y,unknown,no,yes,cellular,aug,thu,86,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,management,married,university.degree,no,yes,no,cellular,aug,thu,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,aug,thu,493,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+56,admin.,married,basic.6y,unknown,no,no,cellular,aug,thu,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,admin.,married,high.school,unknown,yes,no,cellular,aug,thu,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+44,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,services,married,basic.6y,no,yes,no,cellular,aug,thu,181,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+53,blue-collar,married,basic.9y,unknown,yes,yes,cellular,aug,thu,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+47,admin.,single,university.degree,no,yes,no,cellular,aug,thu,156,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,blue-collar,single,high.school,no,yes,no,cellular,aug,thu,296,7,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,admin.,married,high.school,no,no,no,cellular,aug,thu,57,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,aug,thu,14,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,technician,single,university.degree,no,no,no,cellular,aug,thu,185,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,technician,married,professional.course,no,yes,no,cellular,aug,thu,306,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+29,admin.,single,high.school,no,yes,no,cellular,aug,thu,61,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,unemployed,divorced,university.degree,unknown,yes,no,cellular,aug,thu,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+29,admin.,single,high.school,no,yes,yes,cellular,aug,thu,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,unemployed,divorced,university.degree,unknown,yes,no,cellular,aug,thu,229,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,technician,single,university.degree,unknown,yes,no,cellular,aug,thu,103,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+36,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,thu,203,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+36,admin.,married,university.degree,unknown,no,no,cellular,aug,thu,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+36,admin.,married,university.degree,unknown,no,no,cellular,aug,thu,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,thu,106,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,self-employed,married,basic.4y,no,no,no,cellular,aug,thu,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,admin.,married,university.degree,unknown,no,no,cellular,aug,thu,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,244,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+59,retired,married,high.school,no,unknown,unknown,telephone,aug,thu,204,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+36,technician,divorced,university.degree,no,yes,no,cellular,aug,thu,197,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,technician,single,university.degree,no,no,no,cellular,aug,thu,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,admin.,married,university.degree,no,no,no,cellular,aug,thu,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+38,housemaid,married,basic.4y,no,no,no,cellular,aug,thu,231,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,technician,married,high.school,no,yes,no,cellular,aug,thu,112,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,admin.,single,high.school,no,no,yes,cellular,aug,thu,216,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+56,retired,married,high.school,unknown,yes,no,cellular,aug,thu,252,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+33,admin.,married,university.degree,unknown,yes,yes,cellular,aug,thu,259,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,services,married,professional.course,unknown,yes,no,cellular,aug,thu,133,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+56,blue-collar,married,basic.9y,no,yes,no,cellular,aug,thu,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+53,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,thu,504,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,blue-collar,married,basic.9y,no,yes,no,cellular,aug,thu,84,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+44,admin.,married,university.degree,no,no,no,cellular,aug,thu,84,10,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,services,married,basic.4y,unknown,no,yes,cellular,aug,thu,187,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,self-employed,married,basic.4y,no,yes,yes,cellular,aug,thu,266,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,admin.,married,high.school,no,no,no,cellular,aug,thu,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+29,services,single,professional.course,no,yes,yes,cellular,aug,thu,99,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+29,technician,single,high.school,no,yes,no,cellular,aug,thu,643,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,technician,married,professional.course,no,yes,no,cellular,aug,thu,107,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,admin.,married,university.degree,no,yes,no,cellular,aug,thu,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,technician,married,professional.course,no,yes,no,cellular,aug,thu,122,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,thu,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+42,management,married,university.degree,unknown,yes,no,cellular,aug,thu,109,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,228,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,thu,30,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,management,married,university.degree,no,yes,no,cellular,aug,thu,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,management,married,university.degree,no,no,no,cellular,aug,thu,1321,6,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+45,self-employed,married,basic.4y,no,yes,yes,cellular,aug,thu,797,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+50,admin.,married,university.degree,no,no,no,cellular,aug,thu,407,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+47,management,married,high.school,no,no,no,cellular,aug,thu,276,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,thu,59,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,aug,thu,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,services,married,unknown,no,yes,no,cellular,aug,thu,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,admin.,divorced,university.degree,no,no,yes,cellular,aug,thu,205,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,admin.,married,university.degree,no,no,no,cellular,aug,thu,436,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+56,technician,married,professional.course,unknown,no,yes,cellular,aug,thu,190,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+56,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,360,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+54,admin.,single,university.degree,unknown,no,no,cellular,aug,thu,218,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,thu,174,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,entrepreneur,married,university.degree,no,no,no,cellular,aug,thu,254,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,admin.,married,basic.9y,no,no,no,cellular,aug,thu,73,6,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+58,admin.,married,high.school,no,yes,no,cellular,aug,thu,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+58,admin.,married,high.school,no,no,no,cellular,aug,thu,214,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,management,married,university.degree,no,no,yes,cellular,aug,thu,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,self-employed,married,basic.4y,no,no,no,cellular,aug,thu,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,thu,194,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,blue-collar,married,basic.9y,no,no,no,cellular,aug,thu,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,services,married,basic.4y,unknown,no,no,cellular,aug,thu,118,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+44,unemployed,married,professional.course,unknown,no,no,cellular,aug,thu,105,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,technician,married,professional.course,no,no,no,cellular,aug,thu,139,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,student,married,professional.course,unknown,yes,no,cellular,aug,thu,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,student,married,professional.course,unknown,no,no,cellular,aug,thu,266,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,admin.,single,university.degree,no,no,no,telephone,aug,thu,118,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+47,management,married,high.school,no,no,no,cellular,aug,thu,3422,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+49,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,238,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+33,unknown,married,unknown,unknown,no,no,cellular,aug,thu,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,thu,159,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+47,management,married,university.degree,no,yes,no,cellular,aug,thu,20,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+47,management,married,university.degree,no,no,no,cellular,aug,thu,152,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,self-employed,married,university.degree,no,no,no,cellular,aug,thu,314,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,technician,single,professional.course,no,yes,yes,cellular,aug,thu,414,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+38,services,single,high.school,no,yes,no,cellular,aug,thu,122,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+56,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,thu,163,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,115,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,thu,83,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,technician,single,university.degree,unknown,yes,no,cellular,aug,thu,108,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+57,technician,married,high.school,no,no,no,cellular,aug,thu,1230,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,thu,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,technician,divorced,high.school,no,yes,no,cellular,aug,thu,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+36,admin.,single,university.degree,no,no,no,cellular,aug,thu,110,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,aug,thu,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+57,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,74,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+36,admin.,married,high.school,unknown,yes,no,cellular,aug,thu,165,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+53,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,446,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+54,admin.,married,university.degree,no,yes,no,cellular,aug,thu,201,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,housemaid,married,high.school,unknown,no,no,cellular,aug,thu,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,housemaid,married,high.school,unknown,yes,no,cellular,aug,thu,481,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,technician,married,professional.course,unknown,no,no,cellular,aug,thu,166,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+54,self-employed,married,basic.9y,unknown,yes,no,cellular,aug,thu,429,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+57,admin.,single,university.degree,no,no,no,cellular,aug,thu,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,admin.,single,university.degree,no,yes,no,cellular,aug,thu,408,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,198,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,180,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,entrepreneur,married,professional.course,no,yes,yes,cellular,aug,thu,184,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+41,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,339,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+51,technician,married,professional.course,no,yes,no,cellular,aug,thu,291,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,admin.,married,high.school,no,yes,no,cellular,aug,thu,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,aug,thu,162,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,management,married,high.school,no,no,no,cellular,aug,thu,402,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+47,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,235,7,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+36,admin.,married,high.school,unknown,no,no,cellular,aug,thu,324,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,admin.,married,high.school,no,no,no,cellular,aug,thu,876,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+48,admin.,married,university.degree,no,yes,no,cellular,aug,thu,321,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,aug,thu,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,blue-collar,married,basic.9y,no,no,no,cellular,aug,thu,524,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,thu,122,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,housemaid,married,basic.4y,no,no,no,cellular,aug,thu,235,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,housemaid,married,basic.4y,no,yes,no,cellular,aug,thu,248,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,technician,married,university.degree,unknown,yes,no,cellular,aug,thu,409,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,unknown,unknown,unknown,unknown,cellular,aug,thu,642,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,admin.,married,basic.9y,no,yes,no,cellular,aug,thu,61,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,admin.,married,basic.9y,no,no,no,cellular,aug,thu,84,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+55,retired,married,professional.course,no,yes,no,cellular,aug,thu,181,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,thu,1934,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,technician,married,professional.course,no,yes,no,cellular,aug,thu,88,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+38,technician,married,high.school,no,yes,no,cellular,aug,thu,452,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,admin.,married,basic.9y,no,no,no,cellular,aug,thu,524,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+56,technician,married,professional.course,no,yes,no,cellular,aug,thu,124,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+42,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,51,7,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+52,technician,single,professional.course,no,yes,no,cellular,aug,thu,365,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,management,married,high.school,no,no,no,cellular,aug,thu,82,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,thu,90,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+60,retired,married,professional.course,no,yes,no,cellular,aug,thu,448,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,admin.,divorced,university.degree,no,yes,no,telephone,aug,thu,262,7,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,37,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+39,admin.,married,university.degree,no,yes,no,cellular,aug,thu,217,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+40,admin.,single,university.degree,no,yes,no,cellular,aug,thu,123,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,aug,thu,336,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+55,admin.,married,unknown,unknown,yes,no,cellular,aug,thu,197,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+44,self-employed,married,university.degree,no,no,no,cellular,aug,thu,242,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,blue-collar,married,basic.9y,no,yes,no,cellular,aug,thu,773,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+49,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,142,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+58,unemployed,married,professional.course,unknown,yes,no,cellular,aug,thu,147,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,admin.,single,university.degree,no,no,no,cellular,aug,thu,161,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,thu,1336,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+45,blue-collar,married,high.school,unknown,no,no,cellular,aug,thu,124,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+56,admin.,married,university.degree,no,no,yes,cellular,aug,thu,260,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,thu,111,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+48,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,96,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+58,unemployed,married,professional.course,unknown,yes,no,cellular,aug,thu,191,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+50,entrepreneur,married,professional.course,unknown,yes,no,cellular,aug,thu,293,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+44,self-employed,married,university.degree,no,no,no,cellular,aug,thu,107,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+37,housemaid,married,high.school,unknown,no,yes,cellular,aug,thu,534,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+51,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,158,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+38,housemaid,married,basic.6y,no,yes,no,cellular,aug,thu,256,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+58,unemployed,married,professional.course,unknown,no,no,cellular,aug,thu,123,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,thu,259,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,admin.,single,university.degree,no,no,yes,cellular,aug,thu,173,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,thu,452,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes
+36,admin.,married,high.school,unknown,yes,yes,cellular,aug,thu,163,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,technician,married,university.degree,no,no,no,telephone,aug,thu,430,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+32,admin.,married,university.degree,no,no,no,cellular,aug,thu,258,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+45,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,thu,163,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,technician,married,university.degree,no,yes,yes,cellular,aug,thu,265,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+38,management,married,university.degree,no,yes,no,telephone,aug,thu,35,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,thu,191,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,thu,152,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,thu,93,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,aug,thu,385,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+59,unemployed,married,professional.course,no,no,no,cellular,aug,thu,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+31,admin.,married,university.degree,no,no,no,cellular,aug,thu,112,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,thu,419,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+56,admin.,married,basic.4y,no,no,no,cellular,aug,thu,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,admin.,married,high.school,no,no,no,cellular,aug,thu,390,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+30,admin.,single,university.degree,no,no,yes,cellular,aug,thu,185,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,services,married,basic.6y,no,yes,no,cellular,aug,thu,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+51,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,218,6,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+46,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,721,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,fri,201,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+39,management,married,high.school,no,no,no,cellular,aug,fri,215,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,technician,married,high.school,unknown,yes,no,cellular,aug,fri,152,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,self-employed,married,university.degree,no,no,no,cellular,aug,fri,36,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,blue-collar,married,professional.course,no,no,no,cellular,aug,fri,90,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,aug,fri,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,aug,fri,231,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,fri,129,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,technician,single,professional.course,no,no,no,cellular,aug,fri,193,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+31,entrepreneur,married,university.degree,no,yes,no,cellular,aug,fri,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,entrepreneur,married,university.degree,no,no,no,cellular,aug,fri,188,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,191,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,entrepreneur,married,professional.course,unknown,yes,no,cellular,aug,fri,1306,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+35,technician,married,high.school,no,no,no,telephone,aug,fri,243,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+31,admin.,married,university.degree,no,no,yes,cellular,aug,fri,96,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+37,technician,married,professional.course,no,no,no,cellular,aug,fri,188,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,admin.,married,professional.course,unknown,yes,no,cellular,aug,fri,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,aug,fri,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,married,high.school,no,no,no,cellular,aug,fri,52,8,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,550,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,services,married,high.school,no,no,no,cellular,aug,fri,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+57,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,161,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,technician,divorced,professional.course,no,no,yes,cellular,aug,fri,50,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,unemployed,married,professional.course,unknown,no,no,cellular,aug,fri,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,207,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,unemployed,married,professional.course,unknown,yes,no,cellular,aug,fri,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+57,retired,married,professional.course,no,yes,no,cellular,aug,fri,282,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,high.school,unknown,no,no,cellular,aug,fri,442,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,aug,fri,299,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,self-employed,married,basic.9y,no,yes,no,cellular,aug,fri,146,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,housemaid,married,basic.9y,no,yes,no,cellular,aug,fri,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,technician,married,university.degree,unknown,no,no,cellular,aug,fri,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,technician,married,professional.course,no,yes,no,cellular,aug,fri,31,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,fri,292,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,technician,married,professional.course,no,no,no,cellular,aug,fri,161,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,blue-collar,married,high.school,no,no,no,cellular,aug,fri,161,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,entrepreneur,married,basic.9y,no,no,no,cellular,aug,fri,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,207,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,205,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,management,married,university.degree,no,yes,no,cellular,aug,fri,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,admin.,married,high.school,no,yes,no,cellular,aug,fri,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+45,technician,married,high.school,no,yes,yes,cellular,aug,fri,243,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,fri,60,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+58,retired,married,high.school,no,yes,no,cellular,aug,fri,166,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,services,married,high.school,no,yes,no,cellular,aug,fri,207,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,fri,193,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+54,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,129,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,services,married,high.school,no,yes,yes,cellular,aug,fri,502,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+39,technician,married,professional.course,unknown,no,no,cellular,aug,fri,49,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,fri,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+39,management,married,university.degree,no,no,no,cellular,aug,fri,31,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+39,management,married,university.degree,no,no,no,cellular,aug,fri,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,technician,married,professional.course,unknown,no,no,cellular,aug,fri,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,admin.,divorced,university.degree,no,no,no,cellular,aug,fri,85,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,admin.,divorced,high.school,no,no,no,cellular,aug,fri,215,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+53,technician,divorced,professional.course,no,no,no,cellular,aug,fri,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,fri,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+45,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,191,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,fri,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+56,housemaid,married,basic.4y,unknown,no,no,cellular,aug,fri,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,102,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,management,married,university.degree,no,no,no,cellular,aug,fri,261,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+40,technician,single,university.degree,no,yes,yes,cellular,aug,fri,150,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,blue-collar,married,professional.course,no,no,no,cellular,aug,fri,258,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,services,married,high.school,no,yes,no,cellular,aug,fri,241,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,technician,married,professional.course,no,no,no,cellular,aug,fri,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+48,technician,married,university.degree,unknown,no,no,cellular,aug,fri,109,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,self-employed,married,basic.9y,no,yes,no,cellular,aug,fri,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+45,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,994,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+57,technician,married,high.school,unknown,no,yes,cellular,aug,fri,257,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,fri,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,admin.,single,university.degree,no,no,no,cellular,aug,fri,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,admin.,married,professional.course,no,no,no,cellular,aug,fri,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,admin.,married,professional.course,no,no,no,cellular,aug,fri,172,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,management,married,high.school,unknown,yes,no,cellular,aug,fri,41,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,admin.,married,university.degree,unknown,no,no,cellular,aug,fri,169,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,married,university.degree,no,no,no,cellular,aug,fri,198,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+56,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,151,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+45,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,507,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+36,technician,married,professional.course,no,yes,no,cellular,aug,fri,197,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,admin.,married,professional.course,no,yes,no,cellular,aug,fri,130,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,admin.,single,university.degree,no,no,no,cellular,aug,fri,84,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,self-employed,single,university.degree,no,yes,no,cellular,aug,fri,118,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,admin.,single,university.degree,unknown,no,no,cellular,aug,fri,257,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+57,technician,married,high.school,unknown,no,no,cellular,aug,fri,784,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+37,admin.,single,university.degree,no,no,no,cellular,aug,fri,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,housemaid,married,basic.4y,no,no,no,cellular,aug,fri,172,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+49,admin.,married,high.school,no,no,no,cellular,aug,fri,151,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+49,admin.,married,high.school,no,yes,no,cellular,aug,fri,183,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,fri,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+37,admin.,married,high.school,unknown,no,no,cellular,aug,fri,45,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,249,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,aug,fri,472,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+45,admin.,married,high.school,unknown,yes,yes,cellular,aug,fri,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,married,university.degree,unknown,no,no,cellular,aug,fri,298,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,technician,single,high.school,no,no,no,cellular,aug,fri,31,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+42,admin.,single,university.degree,no,no,no,cellular,aug,fri,353,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,technician,married,professional.course,unknown,no,no,cellular,aug,fri,201,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,technician,single,high.school,no,no,no,cellular,aug,fri,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,admin.,married,university.degree,no,unknown,unknown,cellular,aug,fri,74,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,admin.,married,professional.course,no,yes,no,cellular,aug,fri,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,housemaid,married,university.degree,unknown,no,yes,cellular,aug,fri,189,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,admin.,married,professional.course,no,no,no,cellular,aug,fri,385,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,fri,233,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+58,admin.,married,university.degree,no,yes,no,cellular,aug,fri,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,entrepreneur,married,high.school,no,unknown,unknown,cellular,aug,fri,86,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,services,married,basic.4y,no,no,no,cellular,aug,fri,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,services,married,high.school,unknown,yes,yes,cellular,aug,fri,34,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,services,married,high.school,unknown,yes,yes,cellular,aug,fri,324,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,admin.,single,university.degree,unknown,no,no,cellular,aug,fri,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,admin.,single,university.degree,unknown,yes,no,cellular,aug,fri,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,admin.,single,university.degree,unknown,yes,no,cellular,aug,fri,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,admin.,single,university.degree,unknown,yes,no,cellular,aug,fri,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,fri,235,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+49,technician,married,professional.course,unknown,unknown,unknown,cellular,aug,fri,254,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,admin.,divorced,university.degree,no,unknown,unknown,cellular,aug,fri,316,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,151,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,blue-collar,married,basic.9y,no,no,no,cellular,aug,fri,809,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+60,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,technician,married,professional.course,no,yes,no,cellular,aug,fri,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,technician,married,professional.course,no,yes,no,cellular,aug,fri,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,admin.,married,university.degree,unknown,no,no,cellular,aug,fri,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,admin.,married,high.school,unknown,no,no,cellular,aug,fri,49,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+53,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,523,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+39,management,married,university.degree,no,no,no,cellular,aug,fri,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+42,technician,married,university.degree,no,no,no,cellular,aug,fri,321,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+39,management,married,university.degree,no,no,no,cellular,aug,fri,224,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+54,self-employed,married,professional.course,no,no,no,cellular,aug,fri,309,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,admin.,married,basic.9y,no,no,no,cellular,aug,fri,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,admin.,married,basic.9y,no,yes,no,cellular,aug,fri,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+55,admin.,married,professional.course,no,yes,no,cellular,aug,fri,348,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,blue-collar,married,basic.6y,no,yes,no,cellular,aug,fri,433,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,technician,married,university.degree,no,yes,no,cellular,aug,fri,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,technician,married,university.degree,no,yes,no,cellular,aug,fri,167,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,technician,married,university.degree,no,unknown,unknown,cellular,aug,fri,248,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+42,technician,married,university.degree,no,yes,no,cellular,aug,fri,103,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,aug,fri,417,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,fri,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+40,admin.,married,university.degree,no,no,yes,cellular,aug,fri,200,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,technician,married,professional.course,no,yes,no,cellular,aug,fri,189,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,technician,married,professional.course,no,yes,no,cellular,aug,fri,201,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,technician,married,professional.course,no,yes,no,cellular,aug,fri,50,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+54,admin.,married,high.school,no,yes,no,cellular,aug,fri,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,technician,married,professional.course,no,no,no,cellular,aug,fri,192,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,admin.,single,university.degree,unknown,no,no,cellular,aug,fri,521,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,housemaid,married,basic.4y,unknown,no,no,cellular,aug,fri,253,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,fri,172,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,technician,married,professional.course,no,no,no,cellular,aug,fri,63,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+37,technician,married,professional.course,no,yes,no,cellular,aug,fri,73,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+40,technician,married,high.school,no,yes,no,cellular,aug,fri,419,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+34,technician,married,professional.course,no,no,yes,cellular,aug,fri,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+53,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,admin.,single,university.degree,unknown,yes,no,cellular,aug,fri,142,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,aug,fri,385,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+45,admin.,married,high.school,unknown,unknown,unknown,cellular,aug,fri,215,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,single,professional.course,no,no,yes,cellular,aug,fri,100,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+40,technician,single,university.degree,no,yes,no,cellular,aug,fri,117,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,services,married,high.school,unknown,yes,no,cellular,aug,fri,629,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,fri,82,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+41,technician,married,university.degree,no,no,yes,cellular,aug,fri,133,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+40,admin.,single,university.degree,unknown,yes,no,cellular,aug,fri,876,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,admin.,married,high.school,unknown,no,no,cellular,aug,fri,61,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,single,professional.course,no,yes,yes,cellular,aug,fri,125,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,technician,single,high.school,no,yes,no,cellular,aug,fri,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+53,services,married,high.school,no,yes,no,cellular,aug,fri,236,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,aug,fri,194,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,technician,divorced,high.school,unknown,yes,no,cellular,aug,fri,229,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,fri,445,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+53,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,148,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,admin.,single,university.degree,unknown,no,no,cellular,aug,fri,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,admin.,divorced,university.degree,no,no,no,cellular,aug,fri,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+42,technician,married,university.degree,no,no,yes,cellular,aug,fri,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+58,admin.,married,basic.9y,unknown,no,no,cellular,aug,fri,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,admin.,single,university.degree,no,no,yes,telephone,aug,fri,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,blue-collar,married,basic.4y,no,yes,no,cellular,aug,fri,362,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,services,married,basic.6y,no,yes,no,cellular,aug,fri,16,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,high.school,no,no,no,cellular,aug,fri,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+60,admin.,married,university.degree,no,no,no,cellular,aug,fri,176,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,admin.,married,university.degree,no,yes,no,cellular,aug,fri,51,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,blue-collar,married,unknown,unknown,yes,no,cellular,aug,fri,310,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+57,retired,married,unknown,unknown,no,no,cellular,aug,fri,153,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+37,technician,divorced,professional.course,no,no,no,cellular,aug,fri,780,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+48,technician,married,university.degree,unknown,no,no,cellular,aug,fri,66,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,technician,single,high.school,unknown,no,no,telephone,aug,fri,46,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,married,professional.course,unknown,no,no,cellular,aug,fri,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,married,professional.course,unknown,no,no,cellular,aug,fri,185,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,fri,255,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,fri,459,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+30,technician,single,professional.course,no,no,no,cellular,aug,fri,153,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,single,professional.course,no,yes,no,cellular,aug,fri,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+37,admin.,single,university.degree,no,no,no,cellular,aug,fri,62,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,fri,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,admin.,married,university.degree,no,no,no,cellular,aug,fri,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,admin.,single,university.degree,unknown,no,no,cellular,aug,fri,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,professional.course,no,no,no,cellular,aug,fri,335,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,blue-collar,married,basic.6y,no,yes,no,cellular,aug,fri,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,self-employed,married,basic.9y,unknown,no,no,cellular,aug,fri,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,admin.,divorced,high.school,no,no,no,cellular,aug,fri,178,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+45,management,married,university.degree,no,yes,no,cellular,aug,fri,156,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,services,married,professional.course,no,no,yes,cellular,aug,fri,173,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,technician,married,university.degree,no,no,no,cellular,aug,fri,74,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,aug,fri,79,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,aug,fri,193,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+41,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,self-employed,married,basic.9y,unknown,no,no,cellular,aug,fri,1000,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+35,admin.,married,university.degree,no,yes,no,cellular,aug,fri,494,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,fri,172,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,273,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+41,technician,divorced,university.degree,no,no,no,cellular,aug,fri,519,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+41,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,167,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,admin.,divorced,university.degree,no,no,no,cellular,aug,fri,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+41,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,191,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,admin.,divorced,high.school,no,yes,yes,cellular,aug,fri,63,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,admin.,divorced,university.degree,no,yes,yes,cellular,aug,fri,204,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+48,entrepreneur,married,university.degree,no,no,no,cellular,aug,fri,83,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,fri,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,technician,married,university.degree,no,no,no,cellular,aug,fri,52,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+49,housemaid,married,basic.4y,no,yes,no,cellular,aug,fri,448,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+58,admin.,married,high.school,no,no,no,cellular,aug,fri,528,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,fri,140,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,blue-collar,married,basic.6y,no,no,no,cellular,aug,fri,733,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+52,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,fri,88,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,technician,single,high.school,no,yes,no,cellular,aug,fri,580,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+38,technician,married,professional.course,no,no,no,cellular,aug,fri,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,technician,married,professional.course,no,yes,no,cellular,aug,fri,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,technician,single,professional.course,no,no,no,cellular,aug,fri,72,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,fri,258,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,married,professional.course,no,yes,no,cellular,aug,fri,848,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+58,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,173,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,admin.,single,high.school,no,yes,no,cellular,aug,fri,406,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,professional.course,no,yes,no,cellular,aug,fri,229,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,blue-collar,married,basic.6y,no,yes,no,cellular,aug,fri,604,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+58,self-employed,married,university.degree,no,no,no,cellular,aug,fri,1242,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+53,entrepreneur,married,university.degree,no,yes,no,cellular,aug,fri,899,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+49,services,married,high.school,unknown,yes,no,cellular,aug,fri,889,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,unemployed,married,university.degree,no,yes,no,cellular,aug,fri,420,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,divorced,university.degree,no,yes,yes,cellular,aug,fri,515,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,79,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+48,housemaid,married,basic.6y,unknown,no,no,cellular,aug,fri,71,8,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+57,retired,married,basic.9y,unknown,yes,no,cellular,aug,fri,27,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,blue-collar,married,high.school,no,no,no,cellular,aug,fri,358,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,married,professional.course,unknown,no,yes,cellular,aug,fri,498,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,admin.,married,university.degree,no,unknown,unknown,cellular,aug,fri,114,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+42,self-employed,married,university.degree,no,no,yes,cellular,aug,fri,327,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,self-employed,married,professional.course,no,unknown,unknown,cellular,aug,fri,179,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,married,university.degree,no,yes,no,cellular,aug,fri,306,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+57,retired,married,basic.9y,unknown,yes,no,cellular,aug,fri,189,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,455,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,technician,married,high.school,no,yes,yes,cellular,aug,fri,390,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+43,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,209,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+40,management,married,university.degree,no,no,no,cellular,aug,fri,231,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,professional.course,no,no,no,cellular,aug,fri,922,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+42,self-employed,married,university.degree,no,no,no,cellular,aug,fri,1206,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+42,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,219,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,technician,divorced,professional.course,no,no,no,cellular,aug,fri,424,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,entrepreneur,married,university.degree,no,unknown,unknown,cellular,aug,fri,188,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,492,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,divorced,high.school,no,no,no,cellular,aug,fri,174,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,admin.,married,high.school,unknown,yes,no,cellular,aug,fri,453,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+42,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,59,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,admin.,divorced,high.school,no,yes,no,cellular,aug,fri,263,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,admin.,divorced,high.school,no,yes,no,cellular,aug,fri,57,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,aug,fri,329,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,fri,166,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+58,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,72,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+45,management,married,university.degree,no,yes,no,cellular,aug,fri,334,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+39,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,108,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+53,admin.,divorced,high.school,no,no,yes,cellular,aug,fri,1567,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,blue-collar,married,high.school,no,yes,no,cellular,aug,fri,765,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+41,technician,divorced,university.degree,no,yes,yes,cellular,aug,fri,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+43,admin.,married,university.degree,unknown,no,no,cellular,aug,fri,170,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,technician,married,high.school,no,no,no,cellular,aug,fri,314,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,admin.,married,university.degree,no,no,yes,cellular,aug,fri,14,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+42,self-employed,married,university.degree,no,no,no,cellular,aug,fri,148,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+41,technician,divorced,university.degree,no,yes,yes,cellular,aug,fri,116,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+37,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,17,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,retired,married,high.school,no,yes,no,cellular,aug,fri,293,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+39,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,445,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,admin.,married,high.school,unknown,no,no,cellular,aug,fri,262,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,professional.course,no,no,no,cellular,aug,fri,45,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,aug,mon,120,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,technician,married,high.school,no,no,no,cellular,aug,mon,46,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,entrepreneur,married,university.degree,unknown,yes,no,cellular,aug,mon,343,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,technician,married,professional.course,no,yes,no,telephone,aug,mon,697,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,retired,married,basic.4y,no,yes,no,cellular,aug,mon,67,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,technician,divorced,high.school,no,yes,no,cellular,aug,mon,171,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,admin.,married,university.degree,no,yes,no,cellular,aug,mon,57,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,326,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,technician,married,high.school,no,no,no,cellular,aug,mon,70,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,mon,716,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+44,blue-collar,married,basic.6y,no,no,no,cellular,aug,mon,67,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,blue-collar,married,basic.4y,no,no,no,cellular,aug,mon,209,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,367,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,mon,255,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,aug,mon,258,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,management,single,university.degree,no,yes,no,cellular,aug,mon,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,management,married,university.degree,no,yes,no,cellular,aug,mon,99,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,technician,married,professional.course,no,no,no,cellular,aug,mon,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,technician,single,high.school,no,no,no,cellular,aug,mon,177,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,management,single,university.degree,no,no,no,cellular,aug,mon,413,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,married,high.school,unknown,yes,yes,telephone,aug,mon,144,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,technician,divorced,high.school,no,no,no,cellular,aug,mon,102,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,mon,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,145,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,technician,married,high.school,no,yes,no,cellular,aug,mon,77,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+43,admin.,married,high.school,no,yes,no,cellular,aug,mon,210,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,professional.course,no,yes,yes,cellular,aug,mon,106,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,married,professional.course,no,yes,yes,cellular,aug,mon,98,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,mon,588,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,management,married,university.degree,no,yes,no,cellular,aug,mon,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,unknown,married,basic.4y,no,yes,no,cellular,aug,mon,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,admin.,married,high.school,no,no,no,cellular,aug,mon,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,single,high.school,no,yes,no,cellular,aug,mon,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,single,professional.course,no,yes,no,cellular,aug,mon,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,303,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,39,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,217,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,55,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+43,admin.,married,university.degree,no,unknown,unknown,cellular,aug,mon,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,retired,married,basic.9y,unknown,no,yes,cellular,aug,mon,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,667,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,admin.,married,university.degree,no,no,no,cellular,aug,mon,347,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,services,married,high.school,unknown,no,no,cellular,aug,mon,33,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,services,married,high.school,no,no,no,cellular,aug,mon,212,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,admin.,married,university.degree,no,no,no,cellular,aug,mon,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,services,married,high.school,no,yes,yes,cellular,aug,mon,382,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,admin.,married,university.degree,no,yes,no,cellular,aug,mon,226,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,married,high.school,no,yes,no,cellular,aug,mon,47,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,housemaid,married,university.degree,unknown,no,yes,cellular,aug,mon,103,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,unemployed,single,university.degree,no,no,no,cellular,aug,mon,386,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+36,technician,married,professional.course,no,yes,no,cellular,aug,mon,45,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,admin.,married,high.school,no,no,no,cellular,aug,mon,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,admin.,married,high.school,no,no,no,cellular,aug,mon,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,technician,married,professional.course,unknown,no,yes,cellular,aug,mon,607,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+43,management,divorced,university.degree,no,yes,no,cellular,aug,mon,269,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,technician,married,professional.course,no,yes,no,cellular,aug,mon,505,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,married,university.degree,no,no,no,cellular,aug,mon,218,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,admin.,married,high.school,no,yes,no,cellular,aug,mon,758,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+32,admin.,married,university.degree,no,no,no,cellular,aug,mon,270,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,mon,187,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,services,married,high.school,no,no,no,cellular,aug,mon,565,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,mon,226,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,mon,172,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,aug,mon,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,married,high.school,no,yes,no,cellular,aug,mon,55,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,self-employed,married,professional.course,no,no,no,cellular,aug,mon,69,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,self-employed,married,professional.course,no,yes,no,cellular,aug,mon,323,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,married,university.degree,no,no,no,cellular,aug,mon,123,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,services,married,high.school,unknown,no,no,cellular,aug,mon,138,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,admin.,married,university.degree,unknown,yes,yes,cellular,aug,mon,243,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,retired,married,basic.4y,unknown,yes,no,cellular,aug,mon,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,single,professional.course,no,no,no,cellular,aug,mon,166,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,technician,married,professional.course,no,no,no,cellular,aug,mon,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,single,high.school,unknown,yes,no,cellular,aug,mon,102,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,retired,married,basic.4y,unknown,no,no,cellular,aug,mon,555,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+50,admin.,married,basic.4y,unknown,yes,no,cellular,aug,mon,179,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,technician,married,professional.course,no,no,no,cellular,aug,mon,187,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,services,married,high.school,unknown,no,no,cellular,aug,mon,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,257,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,aug,mon,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,275,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,single,high.school,no,no,no,cellular,aug,mon,111,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,services,married,high.school,unknown,yes,no,cellular,aug,mon,99,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,technician,married,university.degree,no,yes,no,cellular,aug,mon,57,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,technician,single,university.degree,no,yes,no,cellular,aug,mon,101,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,blue-collar,married,basic.6y,no,yes,yes,cellular,aug,mon,104,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,housemaid,married,basic.6y,no,no,no,cellular,aug,mon,210,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,technician,divorced,high.school,no,yes,no,cellular,aug,mon,384,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+51,technician,married,professional.course,unknown,yes,yes,cellular,aug,mon,273,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,technician,single,professional.course,no,no,no,cellular,aug,mon,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,retired,married,basic.4y,no,no,no,cellular,aug,mon,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,admin.,married,university.degree,no,no,no,cellular,aug,mon,237,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,retired,married,basic.4y,no,no,no,cellular,aug,mon,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,technician,single,high.school,no,yes,no,cellular,aug,mon,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,admin.,married,university.degree,no,no,yes,cellular,aug,mon,170,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,217,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,professional.course,no,yes,no,cellular,aug,mon,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,admin.,married,university.degree,no,no,no,cellular,aug,mon,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,technician,divorced,high.school,no,no,no,cellular,aug,mon,79,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,high.school,no,yes,no,cellular,aug,mon,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,mon,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,aug,mon,56,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,aug,mon,149,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,mon,246,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,admin.,single,university.degree,unknown,no,yes,cellular,aug,mon,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,retired,married,basic.4y,unknown,no,no,cellular,aug,mon,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,technician,single,high.school,no,no,no,cellular,aug,mon,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,mon,356,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,aug,mon,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,mon,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,mon,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,single,university.degree,no,no,yes,cellular,aug,mon,309,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,management,married,university.degree,no,yes,no,cellular,aug,mon,250,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,single,university.degree,no,no,yes,cellular,aug,mon,545,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+39,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,316,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,management,married,university.degree,no,no,no,cellular,aug,mon,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,retired,married,basic.9y,no,yes,no,cellular,aug,mon,230,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,technician,single,professional.course,no,yes,no,cellular,aug,mon,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,technician,married,university.degree,no,yes,no,cellular,aug,mon,204,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,professional.course,no,yes,yes,cellular,aug,mon,61,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,technician,married,professional.course,no,unknown,unknown,cellular,aug,mon,52,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,married,university.degree,no,yes,no,cellular,aug,mon,242,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,mon,194,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,single,high.school,no,yes,no,cellular,aug,mon,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,mon,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,technician,married,professional.course,no,no,no,cellular,aug,mon,126,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,mon,317,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,married,professional.course,no,yes,no,cellular,aug,mon,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,married,professional.course,no,yes,yes,cellular,aug,mon,228,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,single,professional.course,no,yes,no,cellular,aug,mon,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,single,professional.course,no,yes,yes,cellular,aug,mon,149,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,single,professional.course,no,yes,yes,cellular,aug,mon,331,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,technician,single,professional.course,no,yes,no,cellular,aug,mon,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,mon,1070,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+36,technician,single,professional.course,no,no,no,cellular,aug,mon,209,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,married,university.degree,no,no,no,cellular,aug,mon,610,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+34,technician,married,professional.course,unknown,no,no,cellular,aug,mon,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,140,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,management,married,university.degree,unknown,no,no,cellular,aug,mon,139,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,single,professional.course,unknown,yes,no,cellular,aug,mon,51,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,management,married,university.degree,unknown,yes,no,cellular,aug,mon,699,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+45,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,mon,591,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,technician,married,high.school,no,no,no,cellular,aug,mon,452,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,technician,married,high.school,no,no,no,cellular,aug,mon,225,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,management,married,high.school,no,no,no,cellular,aug,mon,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,housemaid,married,basic.6y,no,no,no,cellular,aug,mon,53,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,single,high.school,no,yes,yes,cellular,aug,mon,102,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,management,married,university.degree,no,yes,no,cellular,aug,mon,389,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,176,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,917,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+37,technician,married,professional.course,no,no,no,cellular,aug,mon,275,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,services,married,high.school,unknown,no,no,cellular,aug,mon,36,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,self-employed,married,university.degree,no,no,no,cellular,aug,mon,247,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,married,university.degree,no,no,no,cellular,aug,mon,63,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,housemaid,married,basic.6y,no,no,no,cellular,aug,mon,104,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,housemaid,married,basic.6y,no,no,no,cellular,aug,mon,55,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,272,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,management,single,university.degree,no,no,no,cellular,aug,mon,1099,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,married,university.degree,no,no,yes,cellular,aug,mon,331,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,single,high.school,no,no,no,cellular,aug,mon,79,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,mon,108,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,married,university.degree,no,no,no,cellular,aug,mon,83,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,admin.,married,university.degree,no,no,no,cellular,aug,mon,79,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,admin.,married,university.degree,no,yes,no,cellular,aug,mon,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,technician,married,professional.course,no,yes,no,cellular,aug,mon,146,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,single,high.school,no,yes,no,cellular,aug,mon,104,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,aug,mon,103,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+43,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,145,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,management,married,university.degree,no,yes,no,cellular,aug,mon,230,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,technician,married,high.school,no,yes,no,cellular,aug,mon,289,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,admin.,married,university.degree,no,no,no,cellular,aug,mon,216,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,aug,mon,189,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,self-employed,married,high.school,unknown,yes,no,cellular,aug,mon,130,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,services,married,basic.9y,no,no,no,cellular,aug,mon,744,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+35,technician,married,professional.course,no,yes,no,cellular,aug,mon,185,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,admin.,married,university.degree,no,no,no,cellular,aug,mon,608,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+35,technician,married,professional.course,no,yes,no,cellular,aug,mon,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,married,high.school,no,yes,no,cellular,aug,mon,214,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,services,married,high.school,unknown,no,no,cellular,aug,mon,33,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,entrepreneur,married,university.degree,no,yes,no,cellular,aug,mon,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,mon,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,management,married,high.school,no,yes,no,telephone,aug,mon,80,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,single,high.school,no,yes,no,cellular,aug,mon,566,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,technician,single,professional.course,no,no,no,cellular,aug,mon,468,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,182,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,mon,317,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,single,professional.course,no,no,no,cellular,aug,mon,370,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,120,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,blue-collar,married,high.school,no,yes,no,cellular,aug,mon,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,divorced,professional.course,no,yes,yes,cellular,aug,mon,63,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,admin.,married,university.degree,no,yes,no,cellular,aug,mon,27,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,management,single,university.degree,no,no,no,cellular,aug,mon,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,1141,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+50,technician,married,professional.course,unknown,no,no,cellular,aug,mon,378,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,92,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,technician,single,high.school,unknown,no,no,cellular,aug,mon,135,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,management,married,university.degree,unknown,yes,no,cellular,aug,mon,734,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+56,retired,married,basic.4y,no,yes,no,cellular,aug,mon,153,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,blue-collar,married,basic.6y,no,no,no,cellular,aug,mon,133,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,technician,single,university.degree,no,no,no,cellular,aug,mon,262,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,married,university.degree,no,no,no,cellular,aug,mon,1238,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+32,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,149,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,382,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,unemployed,single,university.degree,no,yes,no,cellular,aug,mon,55,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,blue-collar,married,basic.6y,no,no,no,cellular,aug,mon,383,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,blue-collar,married,basic.6y,no,yes,yes,cellular,aug,mon,280,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,technician,married,professional.course,no,yes,no,telephone,aug,mon,93,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,management,married,university.degree,no,no,no,cellular,aug,mon,76,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,admin.,married,high.school,no,no,no,cellular,aug,mon,121,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,married,university.degree,no,no,no,cellular,aug,mon,176,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,married,professional.course,no,yes,no,cellular,aug,mon,187,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,246,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,single,university.degree,no,no,no,cellular,aug,mon,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,single,university.degree,no,no,yes,cellular,aug,mon,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,mon,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,admin.,married,professional.course,no,no,no,cellular,aug,mon,381,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,unemployed,married,university.degree,no,yes,no,cellular,aug,mon,445,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,single,high.school,unknown,no,no,cellular,aug,mon,129,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,71,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,housemaid,married,basic.4y,unknown,no,no,cellular,aug,mon,80,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,single,university.degree,no,yes,no,cellular,aug,mon,720,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+44,admin.,married,high.school,no,yes,yes,cellular,aug,mon,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,retired,married,professional.course,no,no,yes,cellular,aug,mon,190,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,unknown,yes,yes,cellular,aug,mon,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,technician,married,professional.course,no,unknown,unknown,cellular,aug,mon,139,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,admin.,single,university.degree,no,no,no,cellular,aug,mon,549,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,technician,single,high.school,unknown,yes,yes,cellular,aug,mon,265,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,technician,married,high.school,no,yes,no,cellular,aug,mon,61,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,technician,married,high.school,no,yes,no,cellular,aug,mon,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,blue-collar,married,basic.9y,unknown,yes,yes,cellular,aug,mon,126,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,admin.,married,high.school,no,no,yes,cellular,aug,mon,429,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,married,university.degree,no,no,yes,cellular,aug,mon,117,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,admin.,married,high.school,no,yes,no,cellular,aug,mon,154,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,technician,married,professional.course,no,no,no,cellular,aug,mon,77,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+60,retired,married,basic.4y,unknown,no,no,cellular,aug,mon,221,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,blue-collar,married,high.school,unknown,yes,no,cellular,aug,mon,148,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,118,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,married,professional.course,no,yes,no,cellular,aug,mon,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,mon,214,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,retired,married,basic.9y,no,no,no,cellular,aug,mon,248,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,240,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,management,married,university.degree,no,yes,no,cellular,aug,mon,385,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,housemaid,married,basic.6y,no,yes,no,cellular,aug,mon,249,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,mon,104,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,technician,single,high.school,unknown,yes,no,cellular,aug,mon,124,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,117,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,no,no,yes,cellular,aug,mon,312,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,no,no,no,cellular,aug,mon,271,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,entrepreneur,married,university.degree,no,no,no,cellular,aug,mon,95,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,single,professional.course,no,no,no,cellular,aug,mon,157,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,technician,married,professional.course,no,yes,no,cellular,aug,mon,1144,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,admin.,married,university.degree,no,no,no,cellular,aug,mon,67,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,married,university.degree,unknown,yes,yes,cellular,aug,mon,108,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,technician,single,professional.course,no,no,no,cellular,aug,mon,345,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,technician,married,university.degree,no,no,no,cellular,aug,mon,101,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,technician,single,professional.course,no,no,no,cellular,aug,mon,304,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,entrepreneur,married,university.degree,unknown,yes,yes,cellular,aug,mon,38,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,technician,married,professional.course,no,no,no,cellular,aug,mon,663,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+38,technician,single,high.school,unknown,no,no,cellular,aug,mon,95,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,blue-collar,married,basic.9y,no,no,yes,cellular,aug,mon,268,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,married,high.school,no,no,no,telephone,aug,mon,133,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,single,high.school,unknown,no,no,cellular,aug,mon,339,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,mon,106,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,aug,mon,209,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,management,married,university.degree,no,no,no,cellular,aug,mon,94,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,married,high.school,no,yes,no,cellular,aug,mon,862,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,technician,married,professional.course,no,yes,no,cellular,aug,mon,236,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,technician,single,professional.course,no,no,no,cellular,aug,mon,444,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+32,technician,married,professional.course,no,no,no,cellular,aug,mon,239,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,married,university.degree,unknown,no,no,cellular,aug,mon,418,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+30,management,married,university.degree,no,yes,no,cellular,aug,mon,277,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,divorced,professional.course,no,no,no,cellular,aug,mon,231,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,single,high.school,unknown,no,no,cellular,aug,mon,481,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,mon,157,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,277,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,housemaid,married,high.school,no,yes,no,cellular,aug,mon,101,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,management,married,university.degree,no,no,no,cellular,aug,mon,154,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,admin.,single,university.degree,no,unknown,unknown,cellular,aug,mon,295,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,married,university.degree,no,no,no,cellular,aug,mon,247,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,housemaid,married,basic.9y,unknown,yes,no,cellular,aug,mon,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,self-employed,single,university.degree,no,no,no,cellular,aug,mon,270,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,1080,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+36,admin.,single,university.degree,unknown,yes,no,cellular,aug,mon,159,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,single,university.degree,no,yes,no,cellular,aug,mon,217,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,admin.,married,high.school,no,yes,no,cellular,aug,mon,40,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,blue-collar,married,basic.6y,no,yes,yes,cellular,aug,mon,179,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,1504,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,retired,married,professional.course,unknown,no,yes,cellular,aug,mon,85,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,blue-collar,married,basic.4y,no,unknown,unknown,cellular,aug,mon,320,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,self-employed,married,basic.9y,no,no,no,cellular,aug,mon,48,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,management,married,university.degree,no,yes,yes,cellular,aug,mon,342,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,mon,566,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,single,professional.course,no,no,no,cellular,aug,mon,356,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,technician,married,university.degree,no,yes,yes,cellular,aug,mon,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,technician,married,professional.course,no,yes,no,cellular,aug,mon,479,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+40,management,married,high.school,unknown,yes,no,cellular,aug,tue,236,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+54,blue-collar,married,professional.course,unknown,yes,yes,cellular,aug,tue,226,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+56,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,91,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,tue,154,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+43,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+58,retired,married,basic.4y,no,no,no,cellular,aug,tue,509,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,admin.,single,university.degree,no,no,no,cellular,aug,tue,161,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+37,technician,married,high.school,unknown,no,no,cellular,aug,tue,204,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,tue,64,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+53,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,506,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+51,housemaid,married,basic.4y,unknown,no,no,cellular,aug,tue,80,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,admin.,married,university.degree,no,no,no,cellular,aug,tue,219,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,admin.,married,high.school,no,no,yes,cellular,aug,tue,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,246,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+41,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,blue-collar,married,professional.course,unknown,no,no,cellular,aug,tue,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,aug,tue,359,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,management,married,university.degree,no,yes,no,cellular,aug,tue,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+58,retired,married,university.degree,no,no,yes,cellular,aug,tue,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,technician,married,university.degree,no,yes,no,cellular,aug,tue,614,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+58,retired,married,university.degree,no,yes,no,cellular,aug,tue,327,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,management,married,university.degree,no,yes,no,cellular,aug,tue,439,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,housemaid,married,basic.6y,no,no,no,cellular,aug,tue,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,housemaid,married,basic.6y,no,yes,no,cellular,aug,tue,56,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,housemaid,married,basic.6y,no,yes,no,cellular,aug,tue,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,housemaid,married,basic.6y,no,yes,no,cellular,aug,tue,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,technician,single,high.school,no,yes,no,cellular,aug,tue,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,housemaid,single,university.degree,no,yes,no,cellular,aug,tue,348,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,blue-collar,married,basic.6y,no,no,no,cellular,aug,tue,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,technician,single,high.school,no,no,no,cellular,aug,tue,191,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,technician,single,high.school,no,yes,yes,cellular,aug,tue,428,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,blue-collar,married,basic.9y,no,no,no,cellular,aug,tue,172,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,married,university.degree,no,no,no,cellular,aug,tue,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,technician,single,high.school,no,yes,yes,cellular,aug,tue,768,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+39,management,married,university.degree,no,unknown,unknown,cellular,aug,tue,185,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,admin.,married,university.degree,no,no,no,cellular,aug,tue,336,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,housemaid,married,basic.6y,no,yes,no,cellular,aug,tue,1134,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+38,technician,married,university.degree,no,yes,yes,cellular,aug,tue,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,services,married,professional.course,no,yes,yes,cellular,aug,tue,81,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,aug,tue,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,professional.course,no,yes,no,cellular,aug,tue,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+37,technician,single,university.degree,no,yes,no,cellular,aug,tue,178,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+42,technician,divorced,professional.course,no,yes,yes,cellular,aug,tue,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,unemployed,single,university.degree,no,yes,no,cellular,aug,tue,51,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+56,retired,married,high.school,no,unknown,unknown,cellular,aug,tue,235,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,technician,married,professional.course,no,yes,no,cellular,aug,tue,256,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+53,entrepreneur,married,basic.9y,unknown,yes,no,cellular,aug,tue,1282,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+47,technician,married,professional.course,no,no,no,cellular,aug,tue,364,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,technician,single,professional.course,no,no,no,cellular,aug,tue,168,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,married,high.school,no,no,no,cellular,aug,tue,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,high.school,no,yes,no,cellular,aug,tue,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,technician,married,professional.course,no,yes,no,cellular,aug,tue,96,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,married,high.school,no,unknown,unknown,cellular,aug,tue,234,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,married,high.school,no,yes,no,cellular,aug,tue,237,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,single,university.degree,no,yes,no,cellular,aug,tue,181,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,services,married,university.degree,no,no,no,cellular,aug,tue,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,technician,single,professional.course,no,yes,no,cellular,aug,tue,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,services,married,university.degree,no,no,no,cellular,aug,tue,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,tue,52,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,tue,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,tue,815,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+52,management,married,university.degree,unknown,no,no,cellular,aug,tue,95,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,admin.,married,university.degree,no,no,no,cellular,aug,tue,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+39,technician,married,high.school,no,no,no,cellular,aug,tue,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,tue,365,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,technician,single,high.school,no,no,no,cellular,aug,tue,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,admin.,married,university.degree,no,yes,no,cellular,aug,tue,250,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,housemaid,single,professional.course,unknown,yes,yes,cellular,aug,tue,213,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,services,married,high.school,no,yes,no,cellular,aug,tue,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,services,married,high.school,no,no,no,cellular,aug,tue,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,services,married,high.school,no,yes,no,cellular,aug,tue,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,professional.course,no,no,no,cellular,aug,tue,74,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,unemployed,single,university.degree,no,yes,no,cellular,aug,tue,77,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,29,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,professional.course,no,yes,no,cellular,aug,tue,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,admin.,married,university.degree,no,yes,no,cellular,aug,tue,867,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+40,admin.,married,university.degree,no,yes,no,cellular,aug,tue,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+40,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+37,technician,single,professional.course,unknown,yes,no,cellular,aug,tue,971,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+40,admin.,married,university.degree,no,no,no,cellular,aug,tue,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+45,technician,married,professional.course,no,yes,no,cellular,aug,tue,196,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+45,technician,married,professional.course,no,no,no,cellular,aug,tue,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,aug,tue,193,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,management,married,university.degree,no,yes,no,cellular,aug,tue,227,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+49,blue-collar,married,basic.6y,no,yes,no,cellular,aug,tue,232,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+37,technician,married,professional.course,no,yes,yes,cellular,aug,tue,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+48,admin.,married,university.degree,no,no,no,cellular,aug,tue,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+39,admin.,married,high.school,no,yes,no,cellular,aug,tue,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+59,technician,married,professional.course,no,no,yes,cellular,aug,tue,138,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,entrepreneur,married,basic.4y,unknown,no,no,cellular,aug,tue,148,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,single,professional.course,no,yes,no,cellular,aug,tue,396,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+51,management,married,high.school,no,no,no,cellular,aug,tue,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,unemployed,single,university.degree,no,yes,no,cellular,aug,tue,174,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,technician,single,professional.course,no,no,no,cellular,aug,tue,603,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+37,technician,married,high.school,unknown,yes,no,cellular,aug,tue,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,technician,married,high.school,no,no,no,cellular,aug,tue,87,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,tue,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,single,high.school,unknown,no,yes,cellular,aug,tue,100,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,tue,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,338,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,tue,507,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+45,self-employed,married,basic.4y,unknown,unknown,unknown,cellular,aug,tue,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,unemployed,single,university.degree,no,no,no,cellular,aug,tue,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,services,married,unknown,no,no,no,cellular,aug,tue,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,admin.,divorced,professional.course,no,no,yes,cellular,aug,tue,207,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,technician,married,high.school,no,no,no,cellular,aug,tue,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,services,married,professional.course,no,yes,no,cellular,aug,tue,126,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,tue,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,technician,married,high.school,no,yes,no,cellular,aug,tue,603,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,66,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,single,university.degree,unknown,no,no,cellular,aug,tue,240,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,married,high.school,no,yes,no,cellular,aug,tue,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,technician,single,university.degree,no,yes,no,cellular,aug,tue,439,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+36,technician,single,professional.course,no,unknown,unknown,cellular,aug,tue,217,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,tue,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,married,professional.course,no,no,no,cellular,aug,tue,252,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,technician,single,university.degree,unknown,no,no,cellular,aug,tue,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,61,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+60,services,married,high.school,unknown,no,no,cellular,aug,tue,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+39,technician,divorced,professional.course,no,yes,yes,cellular,aug,tue,80,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,married,high.school,no,no,no,cellular,aug,tue,197,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,tue,171,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,aug,tue,436,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,tue,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,professional.course,no,no,no,cellular,aug,tue,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+41,technician,married,professional.course,no,no,no,cellular,aug,tue,152,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+41,technician,married,professional.course,no,no,no,cellular,aug,tue,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+54,admin.,married,high.school,no,no,yes,cellular,aug,tue,150,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+45,admin.,married,high.school,unknown,yes,no,cellular,aug,tue,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,blue-collar,married,basic.6y,no,no,no,cellular,aug,tue,56,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,blue-collar,married,basic.6y,no,yes,no,cellular,aug,tue,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,84,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,services,married,high.school,unknown,yes,no,cellular,aug,tue,157,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,tue,312,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,management,married,university.degree,no,no,no,cellular,aug,tue,231,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+41,admin.,single,university.degree,unknown,no,no,cellular,aug,tue,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+40,technician,married,high.school,no,no,no,cellular,aug,tue,370,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,self-employed,married,university.degree,no,no,no,cellular,aug,tue,201,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+51,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,tue,234,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+37,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,191,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,technician,single,university.degree,no,yes,yes,cellular,aug,tue,433,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+48,admin.,married,basic.9y,no,yes,no,cellular,aug,tue,1181,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+48,admin.,married,basic.9y,no,yes,no,cellular,aug,tue,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+53,management,married,university.degree,no,yes,no,cellular,aug,tue,1133,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+37,technician,married,high.school,unknown,yes,no,cellular,aug,tue,76,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+42,self-employed,married,university.degree,unknown,yes,no,cellular,aug,tue,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,536,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,high.school,no,no,no,cellular,aug,tue,398,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,single,high.school,unknown,no,no,cellular,aug,tue,104,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+49,management,married,university.degree,no,no,yes,cellular,aug,tue,297,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,technician,single,high.school,no,yes,no,cellular,aug,tue,193,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,technician,single,professional.course,no,yes,yes,cellular,aug,tue,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,admin.,married,university.degree,no,no,yes,cellular,aug,tue,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+50,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,tue,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+48,admin.,married,university.degree,no,yes,no,telephone,aug,tue,58,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+43,technician,married,professional.course,unknown,no,no,cellular,aug,tue,926,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+35,unemployed,married,university.degree,no,no,no,cellular,aug,tue,117,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,admin.,divorced,university.degree,no,yes,yes,cellular,aug,tue,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,married,university.degree,no,no,yes,cellular,aug,tue,226,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+37,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,355,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,professional.course,no,no,yes,cellular,aug,tue,587,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+43,admin.,divorced,university.degree,unknown,no,no,cellular,aug,tue,111,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+39,self-employed,married,basic.9y,no,no,no,cellular,aug,tue,139,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,tue,83,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+45,self-employed,married,basic.4y,unknown,no,no,cellular,aug,tue,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+45,admin.,married,university.degree,no,no,no,cellular,aug,tue,632,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,management,married,university.degree,no,no,no,cellular,aug,tue,186,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,self-employed,married,university.degree,no,no,no,cellular,aug,tue,112,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,225,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,management,married,university.degree,no,no,no,cellular,aug,tue,253,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,technician,married,high.school,unknown,no,no,cellular,aug,tue,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,management,married,university.degree,no,yes,no,cellular,aug,tue,284,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,technician,married,high.school,unknown,no,yes,cellular,aug,tue,306,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,management,married,university.degree,no,unknown,unknown,cellular,aug,tue,696,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+33,admin.,married,university.degree,no,no,no,cellular,aug,tue,66,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,tue,114,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+42,admin.,single,university.degree,no,no,no,cellular,aug,tue,105,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+42,technician,single,university.degree,no,yes,no,cellular,aug,tue,578,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+29,management,married,university.degree,no,yes,yes,cellular,aug,tue,116,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+59,retired,married,basic.9y,unknown,yes,no,cellular,aug,tue,464,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,134,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+53,admin.,married,basic.9y,no,yes,no,cellular,aug,tue,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,tue,645,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+46,services,married,university.degree,no,no,no,cellular,aug,tue,246,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,single,professional.course,no,yes,no,cellular,aug,tue,473,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+50,admin.,married,university.degree,no,yes,no,cellular,aug,tue,304,8,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,technician,single,high.school,no,yes,yes,cellular,aug,tue,559,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+32,technician,single,university.degree,no,no,no,cellular,aug,tue,264,12,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,management,married,basic.9y,no,yes,no,cellular,aug,tue,100,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,single,university.degree,no,no,yes,cellular,aug,tue,1092,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+41,technician,married,professional.course,no,no,no,cellular,aug,tue,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+41,technician,married,professional.course,no,yes,no,cellular,aug,tue,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+49,retired,divorced,professional.course,no,yes,yes,telephone,aug,tue,128,8,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,aug,tue,1344,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+41,technician,married,professional.course,no,yes,no,cellular,aug,tue,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,technician,single,university.degree,no,no,no,cellular,aug,tue,218,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+53,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,178,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,services,single,university.degree,unknown,yes,no,cellular,aug,tue,1307,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+56,admin.,married,university.degree,no,yes,no,cellular,aug,tue,153,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+41,technician,married,professional.course,no,yes,no,cellular,aug,tue,1344,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+58,housemaid,married,basic.4y,no,no,no,cellular,aug,tue,168,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+48,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,tue,213,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,978,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+54,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,781,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,married,university.degree,no,no,no,cellular,aug,tue,588,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,75,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,housemaid,married,basic.4y,no,no,no,cellular,aug,tue,145,8,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,42,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+54,services,married,basic.4y,no,yes,no,cellular,aug,tue,50,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,single,university.degree,no,no,no,cellular,aug,tue,432,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+40,management,married,university.degree,no,no,yes,cellular,aug,tue,454,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,tue,1613,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+31,admin.,married,university.degree,no,no,no,cellular,aug,tue,141,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+54,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,tue,439,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,technician,single,university.degree,no,no,no,cellular,aug,tue,136,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+53,management,married,university.degree,no,no,no,cellular,aug,tue,864,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+49,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,tue,474,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+30,technician,single,professional.course,no,no,no,cellular,aug,tue,216,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,admin.,single,university.degree,no,no,yes,cellular,aug,tue,459,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,technician,single,university.degree,no,yes,no,cellular,aug,tue,128,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,418,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,tue,226,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,admin.,married,high.school,no,yes,no,cellular,aug,tue,252,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+48,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,134,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,housemaid,divorced,high.school,no,yes,no,cellular,aug,tue,140,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+39,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,180,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+52,services,married,basic.4y,no,yes,no,cellular,aug,tue,483,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,technician,single,university.degree,no,no,no,cellular,aug,tue,409,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,single,high.school,no,yes,no,cellular,aug,tue,222,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,university.degree,no,yes,no,cellular,aug,tue,664,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+57,admin.,married,university.degree,no,no,no,cellular,aug,tue,612,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,housemaid,married,basic.4y,no,no,yes,cellular,aug,tue,129,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+45,management,married,university.degree,no,yes,no,cellular,aug,tue,1735,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+54,admin.,married,university.degree,no,yes,no,cellular,aug,tue,243,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+56,blue-collar,married,unknown,no,yes,no,cellular,aug,tue,178,8,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+38,technician,married,professional.course,no,yes,no,cellular,aug,tue,124,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+44,management,married,basic.9y,no,yes,no,cellular,aug,tue,284,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,professional.course,no,no,no,cellular,aug,tue,129,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,admin.,married,high.school,no,yes,no,cellular,aug,tue,228,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+33,technician,married,professional.course,no,yes,no,cellular,aug,tue,940,10,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+32,admin.,single,university.degree,no,yes,no,cellular,aug,tue,460,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,796,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes
+54,services,married,high.school,no,yes,no,cellular,aug,tue,136,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,58,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,tue,465,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+54,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,tue,112,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+47,admin.,divorced,high.school,no,no,no,cellular,aug,tue,204,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+32,admin.,married,high.school,no,yes,yes,cellular,aug,tue,711,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+34,admin.,single,university.degree,no,no,no,cellular,aug,tue,121,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,tue,83,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+54,services,married,high.school,no,no,no,cellular,aug,tue,321,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+41,technician,married,professional.course,no,no,no,cellular,aug,tue,1476,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+35,technician,married,university.degree,no,no,yes,cellular,aug,tue,204,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+41,technician,married,professional.course,no,yes,no,cellular,aug,tue,161,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+36,technician,married,university.degree,no,yes,no,cellular,aug,tue,120,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+46,services,married,basic.4y,unknown,no,no,cellular,aug,tue,507,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no
+31,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,77,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+60,services,married,basic.4y,no,yes,no,telephone,aug,wed,767,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,wed,388,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,admin.,married,professional.course,no,yes,no,cellular,aug,wed,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,wed,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,management,married,university.degree,no,yes,yes,cellular,aug,wed,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,self-employed,married,basic.9y,no,no,no,cellular,aug,wed,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,unknown,high.school,no,yes,no,cellular,aug,wed,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,unknown,high.school,no,yes,no,cellular,aug,wed,536,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,295,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,224,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,admin.,married,university.degree,unknown,yes,yes,cellular,aug,wed,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,206,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,single,university.degree,no,no,no,cellular,aug,wed,317,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,married,high.school,no,no,no,cellular,aug,wed,176,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,married,professional.course,unknown,yes,yes,cellular,aug,wed,69,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,management,married,basic.9y,no,yes,no,cellular,aug,wed,244,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,technician,married,professional.course,no,yes,no,cellular,aug,wed,114,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,housemaid,married,basic.6y,unknown,no,no,cellular,aug,wed,186,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,married,professional.course,no,no,yes,cellular,aug,wed,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,married,professional.course,no,yes,no,cellular,aug,wed,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,blue-collar,married,basic.6y,no,no,no,cellular,aug,wed,128,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,married,professional.course,no,no,yes,cellular,aug,wed,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,aug,wed,1842,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+51,admin.,married,university.degree,unknown,unknown,unknown,cellular,aug,wed,332,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,wed,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,unknown,no,no,telephone,aug,wed,127,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,single,high.school,no,no,no,cellular,aug,wed,303,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,blue-collar,married,high.school,unknown,yes,no,cellular,aug,wed,969,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+59,retired,married,university.degree,no,no,yes,cellular,aug,wed,295,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,management,married,university.degree,no,no,no,cellular,aug,wed,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,wed,823,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+38,management,married,university.degree,no,no,no,cellular,aug,wed,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,high.school,no,no,no,cellular,aug,wed,703,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+43,admin.,married,university.degree,no,no,no,telephone,aug,wed,618,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+47,services,married,high.school,unknown,yes,no,cellular,aug,wed,370,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,services,single,university.degree,unknown,yes,no,cellular,aug,wed,55,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,admin.,married,university.degree,no,yes,no,cellular,aug,wed,225,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,admin.,married,university.degree,no,no,no,cellular,aug,wed,460,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,single,university.degree,no,yes,yes,cellular,aug,wed,93,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,married,university.degree,no,yes,no,cellular,aug,wed,455,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+51,admin.,single,university.degree,no,no,no,telephone,aug,wed,214,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,admin.,married,high.school,no,no,no,cellular,aug,wed,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,technician,divorced,professional.course,no,no,no,cellular,aug,wed,57,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,management,married,university.degree,unknown,no,yes,cellular,aug,wed,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,single,university.degree,no,no,no,cellular,aug,wed,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,admin.,married,university.degree,unknown,yes,yes,cellular,aug,wed,287,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,technician,married,professional.course,no,yes,yes,cellular,aug,wed,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,management,married,high.school,no,no,yes,cellular,aug,wed,258,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,185,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,technician,married,professional.course,no,no,no,cellular,aug,wed,458,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,services,married,basic.4y,no,no,no,cellular,aug,wed,211,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,admin.,single,university.degree,unknown,yes,yes,cellular,aug,wed,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,admin.,single,university.degree,unknown,yes,yes,cellular,aug,wed,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,services,married,basic.4y,no,yes,yes,cellular,aug,wed,900,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,admin.,single,university.degree,unknown,yes,yes,cellular,aug,wed,143,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,334,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,admin.,single,university.degree,unknown,no,no,cellular,aug,wed,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,entrepreneur,divorced,high.school,unknown,no,no,cellular,aug,wed,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,married,university.degree,no,yes,yes,cellular,aug,wed,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,single,professional.course,no,yes,yes,cellular,aug,wed,106,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,technician,married,professional.course,unknown,yes,yes,cellular,aug,wed,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,admin.,married,university.degree,no,yes,no,cellular,aug,wed,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,aug,wed,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,846,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+42,admin.,married,university.degree,no,yes,no,cellular,aug,wed,334,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,divorced,university.degree,no,yes,yes,cellular,aug,wed,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,unemployed,married,university.degree,unknown,no,yes,cellular,aug,wed,110,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,admin.,married,university.degree,no,no,no,cellular,aug,wed,233,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,unemployed,married,basic.4y,unknown,yes,no,cellular,aug,wed,57,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,married,university.degree,unknown,no,yes,cellular,aug,wed,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,admin.,married,university.degree,no,no,no,cellular,aug,wed,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,admin.,married,university.degree,unknown,no,yes,cellular,aug,wed,227,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,management,married,university.degree,unknown,no,no,cellular,aug,wed,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,divorced,university.degree,unknown,yes,yes,cellular,aug,wed,283,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,admin.,single,university.degree,no,yes,no,cellular,aug,wed,104,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,admin.,married,university.degree,no,yes,no,cellular,aug,wed,206,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,married,high.school,no,yes,no,cellular,aug,wed,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,married,high.school,no,yes,no,cellular,aug,wed,170,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,admin.,married,university.degree,no,yes,no,cellular,aug,wed,460,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,single,university.degree,unknown,unknown,unknown,cellular,aug,wed,690,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,self-employed,married,basic.6y,no,yes,no,cellular,aug,wed,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,192,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,aug,wed,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,married,professional.course,no,yes,no,cellular,aug,wed,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,married,university.degree,no,no,no,cellular,aug,wed,183,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,married,university.degree,no,no,yes,cellular,aug,wed,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,technician,married,university.degree,unknown,no,no,cellular,aug,wed,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,technician,married,professional.course,no,no,no,cellular,aug,wed,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,86,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,269,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,261,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,married,professional.course,no,yes,no,cellular,aug,wed,409,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,wed,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,60,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,wed,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,325,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,aug,wed,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,married,university.degree,no,no,no,cellular,aug,wed,201,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,admin.,married,university.degree,no,no,no,cellular,aug,wed,182,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,403,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,admin.,married,university.degree,no,yes,no,cellular,aug,wed,1149,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+39,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,130,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,single,university.degree,no,yes,no,telephone,aug,wed,827,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+40,management,married,high.school,no,no,yes,cellular,aug,wed,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,management,married,high.school,no,yes,no,cellular,aug,wed,286,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,management,married,high.school,no,no,no,cellular,aug,wed,271,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,admin.,single,university.degree,no,yes,no,cellular,aug,wed,169,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,married,high.school,no,yes,no,cellular,aug,wed,143,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,145,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,641,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+34,technician,single,university.degree,no,no,no,cellular,aug,wed,62,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,wed,151,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,married,professional.course,no,yes,no,cellular,aug,wed,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,married,university.degree,no,no,no,cellular,aug,wed,202,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,wed,270,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,married,high.school,unknown,yes,no,cellular,aug,wed,299,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,404,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+39,technician,married,professional.course,no,yes,yes,cellular,aug,wed,657,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+58,retired,married,basic.4y,no,no,no,cellular,aug,wed,180,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,technician,married,professional.course,no,yes,yes,cellular,aug,wed,203,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,66,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,management,married,university.degree,no,yes,no,cellular,aug,wed,78,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,78,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,admin.,married,university.degree,no,yes,no,cellular,aug,wed,79,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,services,married,basic.4y,no,yes,yes,cellular,aug,wed,250,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+60,retired,married,basic.9y,unknown,no,no,cellular,aug,wed,707,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+32,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,141,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,services,married,high.school,no,yes,no,cellular,aug,wed,737,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+55,technician,married,university.degree,unknown,yes,no,cellular,aug,wed,150,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,324,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,aug,wed,156,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,married,professional.course,no,no,no,cellular,aug,wed,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,admin.,married,university.degree,no,yes,no,cellular,aug,wed,328,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,married,university.degree,no,yes,yes,cellular,aug,wed,156,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,married,university.degree,no,yes,no,cellular,aug,wed,376,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,management,married,basic.9y,no,yes,no,cellular,aug,wed,260,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,admin.,married,high.school,no,no,yes,cellular,aug,wed,871,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+32,technician,married,university.degree,no,yes,yes,cellular,aug,wed,89,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,admin.,married,high.school,no,yes,no,cellular,aug,wed,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,wed,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,wed,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,wed,145,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,entrepreneur,married,unknown,no,yes,no,cellular,aug,wed,98,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,entrepreneur,married,unknown,no,no,no,cellular,aug,wed,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,management,married,high.school,no,no,no,cellular,aug,wed,838,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+34,entrepreneur,married,unknown,no,yes,yes,cellular,aug,wed,684,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,wed,310,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,unemployed,married,basic.9y,unknown,no,no,cellular,aug,wed,98,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,self-employed,single,university.degree,no,no,no,telephone,aug,wed,79,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,blue-collar,married,basic.6y,no,no,no,cellular,aug,wed,15,12,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,wed,1038,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+52,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,559,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,admin.,married,professional.course,no,yes,no,cellular,aug,wed,136,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,married,professional.course,no,yes,yes,cellular,aug,wed,733,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,unknown,married,basic.6y,no,yes,no,cellular,aug,wed,713,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,unknown,high.school,no,yes,no,cellular,aug,wed,243,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,single,high.school,unknown,no,no,cellular,aug,wed,104,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,management,married,university.degree,no,no,no,cellular,aug,wed,517,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,housemaid,married,basic.6y,unknown,no,no,cellular,aug,wed,217,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,blue-collar,married,basic.6y,no,no,no,cellular,aug,wed,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,management,married,university.degree,no,yes,no,cellular,aug,wed,343,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,housemaid,single,university.degree,no,yes,no,cellular,aug,wed,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,technician,divorced,university.degree,no,yes,no,cellular,aug,wed,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,university.degree,no,yes,no,cellular,aug,wed,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,management,married,high.school,unknown,no,no,cellular,aug,wed,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,blue-collar,married,basic.9y,unknown,no,yes,cellular,aug,wed,92,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,entrepreneur,married,professional.course,no,no,no,cellular,aug,wed,327,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,management,married,university.degree,no,no,yes,cellular,aug,wed,990,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+48,admin.,married,university.degree,unknown,yes,yes,cellular,aug,wed,523,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,self-employed,married,basic.9y,no,yes,no,cellular,aug,wed,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,aug,wed,152,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,unknown,university.degree,no,no,no,cellular,aug,wed,69,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,single,professional.course,no,yes,no,cellular,aug,wed,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,unknown,university.degree,no,yes,no,cellular,aug,wed,529,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+55,housemaid,married,university.degree,no,no,no,cellular,aug,wed,363,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,technician,married,professional.course,no,no,no,cellular,aug,wed,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,blue-collar,married,basic.4y,no,yes,no,cellular,aug,wed,342,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,management,married,university.degree,no,yes,no,telephone,aug,wed,306,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+33,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,31,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,75,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,wed,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,blue-collar,single,university.degree,no,yes,no,cellular,aug,wed,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,technician,married,professional.course,no,no,no,cellular,aug,wed,1148,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+29,admin.,single,high.school,no,yes,no,cellular,aug,wed,257,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,admin.,single,university.degree,no,yes,no,cellular,aug,wed,99,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,admin.,married,university.degree,no,no,no,cellular,aug,wed,356,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,single,high.school,no,yes,no,cellular,aug,wed,212,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,wed,139,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,blue-collar,married,basic.9y,unknown,no,no,telephone,aug,wed,490,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,retired,married,basic.4y,unknown,yes,no,cellular,aug,wed,175,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,130,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,wed,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,technician,married,university.degree,no,yes,no,cellular,aug,wed,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,management,married,university.degree,unknown,no,no,cellular,aug,wed,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,84,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,wed,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,retired,married,university.degree,no,no,no,cellular,aug,wed,388,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,99,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,technician,divorced,professional.course,unknown,yes,yes,cellular,aug,wed,418,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,wed,222,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,entrepreneur,married,professional.course,no,yes,no,cellular,aug,wed,73,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,wed,202,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,retired,married,basic.9y,unknown,yes,no,cellular,aug,wed,394,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,wed,109,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,management,married,high.school,unknown,yes,no,cellular,aug,wed,233,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,management,married,university.degree,unknown,no,no,cellular,aug,wed,338,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,technician,single,university.degree,unknown,yes,no,cellular,aug,wed,107,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,wed,163,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,86,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,retired,married,university.degree,unknown,yes,no,cellular,aug,wed,83,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,blue-collar,married,high.school,unknown,yes,no,cellular,aug,wed,399,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,274,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,technician,divorced,professional.course,no,yes,no,cellular,aug,wed,150,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,wed,209,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,wed,67,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,wed,75,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,181,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,413,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,technician,married,high.school,no,no,no,cellular,aug,wed,58,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,management,married,university.degree,no,yes,no,cellular,aug,wed,399,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,blue-collar,married,basic.6y,no,no,yes,cellular,aug,wed,48,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,technician,single,university.degree,no,yes,yes,cellular,aug,wed,275,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,wed,449,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,aug,wed,536,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,wed,158,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,management,married,university.degree,no,no,no,cellular,aug,wed,113,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,admin.,single,university.degree,no,no,no,cellular,aug,wed,127,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,wed,740,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,university.degree,no,no,no,cellular,aug,thu,75,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,technician,single,university.degree,no,yes,no,cellular,aug,thu,178,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,single,university.degree,no,no,yes,cellular,aug,thu,65,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,technician,married,high.school,no,no,no,cellular,aug,thu,152,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,services,married,high.school,no,no,no,cellular,aug,thu,464,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,admin.,married,high.school,no,no,no,cellular,aug,thu,96,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,aug,thu,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,services,married,high.school,unknown,yes,no,cellular,aug,thu,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,management,married,university.degree,no,yes,no,cellular,aug,thu,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,entrepreneur,married,basic.4y,unknown,no,no,cellular,aug,thu,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,single,professional.course,no,no,no,cellular,aug,thu,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,aug,thu,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,thu,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,thu,152,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,aug,thu,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,aug,thu,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,thu,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,technician,married,professional.course,no,yes,no,cellular,aug,thu,110,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,aug,thu,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,technician,single,professional.course,no,yes,no,cellular,aug,thu,719,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,professional.course,no,yes,no,cellular,aug,thu,125,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,technician,married,university.degree,no,no,no,cellular,aug,thu,259,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,admin.,married,professional.course,unknown,yes,no,cellular,aug,thu,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,professional.course,no,yes,no,cellular,aug,thu,373,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,admin.,married,professional.course,unknown,no,yes,cellular,aug,thu,36,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,admin.,married,professional.course,unknown,yes,yes,cellular,aug,thu,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,admin.,married,professional.course,unknown,yes,no,cellular,aug,thu,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,unknown,divorced,university.degree,no,no,yes,cellular,aug,thu,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,professional.course,no,yes,no,cellular,aug,thu,707,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+31,admin.,single,high.school,no,yes,no,cellular,aug,thu,144,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,thu,360,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,single,professional.course,no,yes,yes,cellular,aug,thu,55,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+23,entrepreneur,married,university.degree,no,yes,no,cellular,aug,thu,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,admin.,married,university.degree,no,yes,no,cellular,aug,thu,266,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,services,married,high.school,unknown,yes,no,cellular,aug,thu,149,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,married,university.degree,no,no,no,cellular,aug,thu,366,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,professional.course,no,no,no,cellular,aug,thu,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,admin.,married,university.degree,no,no,yes,cellular,aug,thu,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,85,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,self-employed,married,basic.4y,unknown,unknown,unknown,cellular,aug,thu,169,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,services,married,high.school,no,yes,no,cellular,aug,thu,250,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,thu,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,206,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,professional.course,no,no,no,cellular,aug,thu,184,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,admin.,married,high.school,no,yes,no,cellular,aug,thu,41,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,technician,married,university.degree,no,yes,no,cellular,aug,thu,252,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,married,professional.course,no,yes,no,cellular,aug,thu,154,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,unknown,no,yes,cellular,aug,thu,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,thu,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,aug,thu,238,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,married,university.degree,no,no,no,cellular,aug,thu,55,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,125,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,thu,98,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,housemaid,married,high.school,unknown,yes,no,cellular,aug,thu,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,aug,thu,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,151,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,169,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,self-employed,married,basic.9y,unknown,yes,no,cellular,aug,thu,167,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,blue-collar,married,basic.4y,no,unknown,unknown,cellular,aug,thu,114,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,technician,married,high.school,no,yes,no,cellular,aug,thu,50,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,thu,47,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,thu,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,thu,228,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,housemaid,married,basic.4y,unknown,yes,no,telephone,aug,thu,293,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,technician,married,professional.course,no,yes,no,cellular,aug,thu,98,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,205,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,housemaid,married,basic.4y,unknown,no,no,cellular,aug,thu,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,single,university.degree,no,no,no,cellular,aug,thu,260,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,thu,152,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,divorced,university.degree,unknown,no,no,cellular,aug,thu,200,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,technician,divorced,high.school,no,yes,no,cellular,aug,thu,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,married,university.degree,unknown,yes,no,cellular,aug,thu,10,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,thu,273,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,married,university.degree,unknown,no,yes,cellular,aug,thu,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,465,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,self-employed,married,university.degree,no,yes,yes,cellular,aug,thu,145,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,self-employed,married,basic.9y,unknown,yes,yes,cellular,aug,thu,593,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+50,self-employed,married,basic.9y,no,yes,no,cellular,aug,thu,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,self-employed,married,university.degree,no,yes,no,cellular,aug,thu,141,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,self-employed,married,university.degree,no,yes,no,cellular,aug,thu,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,thu,370,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,thu,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,aug,thu,1217,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,single,university.degree,no,yes,no,telephone,aug,thu,313,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,aug,thu,38,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,technician,single,university.degree,no,yes,no,cellular,aug,thu,213,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,thu,297,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,blue-collar,married,university.degree,unknown,yes,no,cellular,aug,thu,128,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,aug,thu,812,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+32,admin.,single,university.degree,no,no,no,cellular,aug,thu,356,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,605,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,technician,divorced,university.degree,unknown,yes,no,cellular,aug,thu,86,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,technician,single,university.degree,no,yes,no,cellular,aug,thu,935,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,married,high.school,no,yes,no,cellular,aug,thu,143,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,retired,married,basic.4y,no,yes,no,cellular,aug,thu,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,married,university.degree,unknown,yes,no,cellular,aug,thu,414,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,yes,no,cellular,aug,thu,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,single,university.degree,no,yes,no,cellular,aug,thu,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,high.school,no,no,no,cellular,aug,thu,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,unknown,no,no,cellular,aug,thu,69,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,high.school,no,no,no,cellular,aug,thu,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,self-employed,married,university.degree,unknown,yes,no,cellular,aug,thu,148,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,services,married,basic.9y,unknown,yes,yes,cellular,aug,thu,110,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,yes,no,cellular,aug,thu,515,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,yes,no,cellular,aug,thu,214,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,457,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,admin.,single,university.degree,no,no,no,cellular,aug,thu,421,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,240,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,unknown,no,no,cellular,aug,thu,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,admin.,married,university.degree,no,yes,no,cellular,aug,thu,374,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,married,university.degree,unknown,yes,no,cellular,aug,thu,423,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,thu,503,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,unknown,yes,no,cellular,aug,thu,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,thu,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,thu,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,married,university.degree,no,no,no,cellular,aug,thu,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,thu,230,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,thu,113,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,admin.,single,high.school,no,no,no,cellular,aug,thu,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,106,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,management,married,university.degree,no,yes,no,cellular,aug,thu,294,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,thu,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,thu,59,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,entrepreneur,married,university.degree,no,yes,no,cellular,aug,thu,51,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,no,no,cellular,aug,thu,56,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,thu,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,technician,single,university.degree,no,yes,no,cellular,aug,thu,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,technician,single,university.degree,no,yes,no,cellular,aug,thu,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,management,married,university.degree,no,no,no,cellular,aug,thu,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,admin.,divorced,university.degree,unknown,no,no,cellular,aug,thu,146,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,self-employed,married,basic.9y,unknown,no,no,cellular,aug,thu,406,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,thu,518,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+30,admin.,single,university.degree,unknown,no,no,cellular,aug,thu,272,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,married,high.school,no,no,no,cellular,aug,thu,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,thu,314,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,admin.,married,university.degree,no,yes,no,cellular,aug,thu,260,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,professional.course,no,yes,no,telephone,aug,thu,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,admin.,married,university.degree,no,no,no,cellular,aug,thu,87,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,thu,90,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,admin.,single,university.degree,no,no,no,cellular,aug,thu,505,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+31,technician,married,professional.course,no,yes,no,cellular,aug,thu,104,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,married,university.degree,no,yes,no,cellular,aug,thu,511,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,services,married,high.school,unknown,yes,yes,telephone,aug,thu,187,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,yes,no,cellular,aug,thu,197,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,thu,118,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,343,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,married,high.school,no,yes,no,cellular,aug,thu,221,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,280,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,retired,married,basic.4y,no,yes,yes,cellular,aug,thu,265,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,admin.,divorced,university.degree,no,yes,yes,cellular,aug,thu,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,technician,married,high.school,unknown,no,no,cellular,aug,thu,206,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,thu,133,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,technician,married,professional.course,no,no,yes,cellular,aug,thu,924,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,thu,145,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,married,high.school,no,yes,no,cellular,aug,thu,85,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,technician,married,high.school,no,yes,yes,telephone,aug,thu,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,single,university.degree,no,no,no,telephone,aug,thu,214,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,services,married,high.school,no,yes,no,cellular,aug,thu,834,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+47,admin.,married,high.school,no,yes,yes,cellular,aug,thu,3322,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,married,high.school,unknown,no,yes,cellular,aug,thu,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,housemaid,married,basic.6y,no,no,no,cellular,aug,thu,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,366,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,technician,married,high.school,no,yes,no,cellular,aug,thu,260,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,married,professional.course,no,no,no,cellular,aug,thu,107,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,self-employed,married,basic.9y,unknown,no,no,cellular,aug,thu,1184,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+31,housemaid,married,university.degree,no,yes,yes,cellular,aug,thu,208,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,housemaid,married,basic.6y,no,yes,yes,telephone,aug,thu,698,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+49,technician,married,professional.course,no,yes,yes,cellular,aug,thu,11,14,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,technician,single,university.degree,unknown,yes,yes,cellular,aug,thu,433,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,blue-collar,married,basic.6y,unknown,unknown,unknown,cellular,aug,thu,134,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,management,married,university.degree,no,yes,no,cellular,aug,thu,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,technician,single,university.degree,unknown,yes,no,cellular,aug,thu,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,admin.,married,high.school,unknown,no,no,cellular,aug,thu,201,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,married,high.school,unknown,yes,yes,cellular,aug,thu,1151,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+33,technician,married,professional.course,no,no,yes,cellular,aug,thu,189,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,technician,married,professional.course,no,yes,yes,cellular,aug,thu,168,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,married,university.degree,no,yes,no,cellular,aug,thu,61,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,thu,388,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,married,university.degree,no,no,no,telephone,aug,thu,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,management,married,high.school,no,yes,no,cellular,aug,thu,448,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,admin.,married,university.degree,no,yes,no,telephone,aug,thu,60,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,married,university.degree,no,no,no,cellular,aug,thu,167,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,blue-collar,married,basic.4y,no,yes,no,telephone,aug,thu,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,technician,single,university.degree,no,yes,no,cellular,aug,thu,350,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,professional.course,no,no,no,cellular,aug,thu,449,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,blue-collar,married,basic.4y,no,yes,no,telephone,aug,thu,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,technician,divorced,professional.course,no,no,yes,cellular,aug,thu,388,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,technician,divorced,professional.course,unknown,yes,no,cellular,aug,thu,145,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,technician,married,professional.course,unknown,no,no,cellular,aug,thu,112,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,217,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,153,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,337,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,professional.course,no,yes,yes,cellular,aug,thu,94,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,blue-collar,married,basic.6y,no,yes,yes,cellular,aug,thu,425,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,technician,divorced,professional.course,unknown,no,no,cellular,aug,thu,377,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,self-employed,married,basic.4y,unknown,yes,no,cellular,aug,thu,52,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,yes,no,cellular,aug,thu,168,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,married,university.degree,no,unknown,unknown,cellular,aug,thu,1231,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+35,technician,single,professional.course,no,yes,yes,cellular,aug,thu,41,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,single,professional.course,no,yes,yes,cellular,aug,thu,347,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,management,married,university.degree,no,yes,no,cellular,aug,thu,789,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,aug,thu,636,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,married,professional.course,no,yes,yes,telephone,aug,thu,34,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,technician,married,university.degree,no,yes,no,cellular,aug,thu,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,professional.course,unknown,unknown,unknown,telephone,aug,thu,128,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,self-employed,married,university.degree,no,yes,no,cellular,aug,thu,884,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+46,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,thu,187,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,high.school,no,yes,no,cellular,aug,thu,170,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,blue-collar,married,basic.9y,unknown,yes,yes,cellular,aug,thu,129,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,thu,277,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,blue-collar,married,basic.9y,unknown,yes,yes,cellular,aug,thu,84,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,self-employed,married,basic.9y,no,yes,no,cellular,aug,thu,219,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,single,university.degree,no,yes,yes,cellular,aug,thu,38,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,aug,thu,244,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,technician,married,professional.course,no,no,no,cellular,aug,thu,155,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,retired,married,university.degree,unknown,no,no,cellular,aug,thu,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,professional.course,unknown,yes,yes,telephone,aug,thu,31,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,services,married,high.school,unknown,yes,no,cellular,aug,thu,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,admin.,divorced,university.degree,unknown,no,no,cellular,aug,thu,120,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,professional.course,unknown,yes,yes,cellular,aug,thu,49,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,married,university.degree,no,yes,no,telephone,aug,thu,365,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,thu,248,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,high.school,no,yes,yes,cellular,aug,thu,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,admin.,single,university.degree,no,no,yes,cellular,aug,thu,85,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,technician,married,professional.course,no,yes,no,cellular,aug,thu,178,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,thu,138,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,university.degree,no,yes,no,telephone,aug,thu,234,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,blue-collar,married,unknown,unknown,no,no,telephone,aug,thu,753,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+54,self-employed,married,high.school,no,yes,yes,cellular,aug,thu,904,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+54,technician,married,professional.course,no,no,no,cellular,aug,thu,478,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,high.school,no,no,no,cellular,aug,thu,124,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,blue-collar,married,unknown,unknown,yes,no,cellular,aug,thu,227,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,university.degree,no,yes,no,telephone,aug,thu,226,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,blue-collar,married,unknown,unknown,no,yes,cellular,aug,thu,163,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,housemaid,divorced,professional.course,no,no,yes,cellular,aug,thu,306,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,self-employed,married,high.school,no,no,no,cellular,aug,thu,89,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,married,university.degree,no,yes,no,telephone,aug,thu,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,management,married,university.degree,no,yes,no,cellular,aug,thu,244,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,technician,married,professional.course,no,yes,yes,cellular,aug,thu,64,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,management,married,university.degree,no,yes,no,cellular,aug,thu,386,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,housemaid,married,professional.course,no,yes,no,cellular,aug,thu,110,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,self-employed,married,high.school,no,yes,no,cellular,aug,thu,136,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,technician,single,professional.course,no,yes,no,cellular,aug,thu,286,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,university.degree,no,yes,no,telephone,aug,thu,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,109,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,86,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,thu,211,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,married,professional.course,no,yes,no,cellular,aug,thu,126,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,entrepreneur,married,university.degree,unknown,no,yes,cellular,aug,thu,314,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,blue-collar,married,basic.4y,no,no,no,cellular,aug,thu,253,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,unknown,married,basic.9y,no,no,no,cellular,aug,thu,390,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,self-employed,married,high.school,no,yes,no,cellular,aug,thu,204,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,married,professional.course,no,yes,no,cellular,aug,thu,45,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,109,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,blue-collar,married,professional.course,unknown,yes,no,cellular,aug,thu,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,thu,76,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,married,university.degree,no,unknown,unknown,cellular,aug,thu,1579,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+58,admin.,single,university.degree,no,no,no,cellular,aug,thu,96,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,1871,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,divorced,university.degree,unknown,no,no,cellular,aug,mon,125,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,aug,mon,618,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+33,unemployed,divorced,professional.course,no,no,no,cellular,aug,mon,90,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,aug,mon,773,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+50,technician,married,university.degree,no,unknown,unknown,cellular,aug,mon,762,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+35,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,139,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,services,married,basic.6y,no,yes,no,cellular,aug,mon,671,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+31,management,married,university.degree,no,yes,no,cellular,aug,mon,181,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,professional.course,no,yes,no,cellular,aug,mon,54,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,entrepreneur,married,university.degree,no,yes,no,cellular,aug,mon,59,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,single,university.degree,no,no,no,cellular,aug,mon,299,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,professional.course,no,yes,no,cellular,aug,mon,92,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,university.degree,no,unknown,unknown,cellular,aug,mon,73,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,high.school,no,no,no,cellular,aug,mon,638,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+35,technician,married,professional.course,no,no,no,cellular,aug,mon,594,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+41,technician,married,professional.course,no,yes,no,cellular,aug,mon,105,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,180,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,services,married,unknown,unknown,no,no,cellular,aug,mon,458,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,195,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,single,high.school,no,yes,no,cellular,aug,mon,87,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,unemployed,divorced,professional.course,no,no,no,cellular,aug,mon,197,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,married,professional.course,no,no,no,cellular,aug,mon,203,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,university.degree,unknown,no,no,cellular,aug,mon,131,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,married,university.degree,no,no,no,cellular,aug,mon,251,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,retired,married,basic.6y,no,no,no,cellular,aug,mon,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,109,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,admin.,single,university.degree,no,yes,no,cellular,aug,mon,114,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,housemaid,married,professional.course,no,yes,no,cellular,aug,mon,105,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,technician,married,professional.course,no,no,no,cellular,aug,mon,108,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+59,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,admin.,married,basic.9y,no,yes,no,cellular,aug,mon,161,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,self-employed,married,basic.6y,unknown,no,no,cellular,aug,mon,233,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,professional.course,no,yes,yes,cellular,aug,mon,882,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+48,services,married,high.school,no,no,no,cellular,aug,mon,115,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,married,professional.course,no,no,no,cellular,aug,mon,341,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,married,university.degree,no,no,no,cellular,aug,mon,145,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,single,high.school,no,no,no,cellular,aug,mon,26,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,admin.,single,university.degree,no,no,no,cellular,aug,mon,151,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,housemaid,married,basic.4y,unknown,yes,yes,cellular,aug,mon,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,313,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,university.degree,no,no,no,cellular,aug,mon,230,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,services,married,basic.6y,no,yes,yes,cellular,aug,mon,157,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,married,professional.course,no,yes,no,cellular,aug,mon,393,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,high.school,unknown,yes,no,cellular,aug,mon,111,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,unknown,yes,yes,cellular,aug,mon,84,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,single,university.degree,no,no,no,telephone,aug,mon,51,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,blue-collar,married,unknown,no,no,no,cellular,aug,mon,528,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+46,services,married,unknown,unknown,unknown,unknown,cellular,aug,mon,73,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,71,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,admin.,married,university.degree,no,no,no,cellular,aug,mon,70,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,mon,146,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,services,married,unknown,unknown,yes,no,cellular,aug,mon,151,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,mon,74,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,aug,mon,266,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,unemployed,married,university.degree,unknown,yes,no,cellular,aug,mon,452,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,347,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,114,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,management,married,university.degree,no,no,no,cellular,aug,mon,34,11,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,self-employed,married,university.degree,no,yes,no,cellular,aug,mon,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,professional.course,no,yes,no,cellular,aug,mon,122,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,admin.,single,high.school,no,yes,no,cellular,aug,mon,48,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,80,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,mon,104,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,admin.,married,university.degree,no,no,yes,cellular,aug,mon,94,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,professional.course,no,yes,no,cellular,aug,mon,70,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,management,married,university.degree,no,no,no,cellular,aug,mon,121,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,aug,mon,145,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,mon,61,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,university.degree,no,yes,no,cellular,aug,mon,143,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,172,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,management,married,high.school,unknown,yes,no,telephone,aug,mon,71,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,45,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,married,high.school,no,no,no,cellular,aug,mon,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,mon,513,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,management,married,university.degree,no,no,no,cellular,aug,mon,92,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,married,professional.course,no,yes,no,cellular,aug,mon,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,university.degree,no,yes,no,cellular,aug,mon,96,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,entrepreneur,single,university.degree,no,no,no,cellular,aug,mon,115,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,mon,121,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,unemployed,married,high.school,no,yes,no,cellular,aug,mon,119,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,aug,mon,176,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,self-employed,married,high.school,unknown,no,no,cellular,aug,mon,507,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,married,high.school,no,no,no,cellular,aug,mon,69,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,high.school,unknown,no,no,cellular,aug,mon,98,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,services,married,high.school,unknown,no,no,cellular,aug,mon,195,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,divorced,university.degree,no,no,no,cellular,aug,mon,104,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,mon,515,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,86,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,single,university.degree,no,yes,no,cellular,aug,mon,40,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,100,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,single,university.degree,unknown,no,yes,cellular,aug,mon,27,12,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,aug,mon,97,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,admin.,married,university.degree,no,yes,no,cellular,aug,mon,166,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,services,married,basic.4y,unknown,no,no,cellular,aug,mon,309,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+50,services,married,basic.9y,unknown,yes,no,cellular,aug,mon,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,married,university.degree,no,no,no,cellular,aug,mon,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,professional.course,no,yes,no,cellular,aug,mon,207,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,professional.course,no,yes,no,cellular,aug,mon,90,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,technician,married,professional.course,no,yes,no,cellular,aug,mon,100,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,married,university.degree,no,no,no,cellular,aug,mon,219,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,high.school,no,no,no,cellular,aug,mon,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,married,high.school,no,no,no,cellular,aug,mon,128,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,self-employed,single,university.degree,no,yes,no,cellular,aug,mon,75,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,divorced,university.degree,unknown,yes,no,cellular,aug,mon,67,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,services,married,unknown,unknown,yes,no,cellular,aug,mon,111,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,housemaid,married,basic.4y,unknown,no,no,cellular,aug,mon,498,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,management,married,university.degree,no,yes,yes,cellular,aug,mon,203,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,mon,96,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,111,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,technician,married,professional.course,no,yes,yes,cellular,aug,mon,245,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,housemaid,married,basic.4y,unknown,no,no,cellular,aug,mon,585,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,mon,140,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,240,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,235,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,mon,98,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,technician,single,professional.course,unknown,yes,no,cellular,aug,mon,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,mon,315,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,aug,mon,147,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,technician,married,university.degree,no,yes,no,cellular,aug,mon,134,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,married,professional.course,no,yes,no,cellular,aug,mon,95,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,blue-collar,married,unknown,no,no,no,telephone,aug,mon,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,mon,431,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,single,high.school,no,yes,no,cellular,aug,mon,29,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,mon,197,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,self-employed,married,university.degree,no,yes,yes,cellular,aug,mon,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,married,high.school,no,no,no,cellular,aug,mon,697,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+36,technician,married,professional.course,no,no,no,cellular,aug,mon,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,mon,280,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,aug,mon,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,professional.course,no,yes,no,telephone,aug,mon,209,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,201,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,management,married,university.degree,no,no,no,cellular,aug,mon,119,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,aug,mon,306,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,services,married,basic.6y,unknown,no,no,telephone,aug,mon,161,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,married,high.school,no,yes,yes,cellular,aug,mon,36,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,married,university.degree,unknown,no,no,telephone,aug,mon,29,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,technician,married,professional.course,no,no,no,telephone,aug,mon,79,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,aug,mon,192,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,married,university.degree,no,no,no,telephone,aug,mon,199,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,university.degree,no,yes,no,cellular,aug,mon,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,mon,702,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,unemployed,divorced,professional.course,no,yes,no,telephone,aug,mon,331,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,housemaid,single,professional.course,no,yes,yes,cellular,aug,mon,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,admin.,married,university.degree,no,no,yes,cellular,aug,mon,471,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,142,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,mon,58,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,mon,68,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,79,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,divorced,university.degree,unknown,no,no,cellular,aug,mon,102,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,87,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,management,married,university.degree,no,yes,yes,cellular,aug,mon,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,self-employed,married,high.school,unknown,yes,no,cellular,aug,mon,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,technician,married,professional.course,no,no,no,cellular,aug,mon,170,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,self-employed,married,high.school,unknown,yes,no,cellular,aug,mon,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,mon,263,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,married,professional.course,no,yes,yes,cellular,aug,mon,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,high.school,no,no,no,cellular,aug,mon,52,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,married,professional.course,no,yes,no,cellular,aug,mon,254,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+59,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,571,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,self-employed,married,university.degree,no,no,no,cellular,aug,mon,173,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,aug,mon,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,admin.,married,professional.course,unknown,yes,yes,cellular,aug,mon,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,204,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,aug,mon,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,mon,191,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,mon,65,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,781,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,professional.course,unknown,yes,yes,cellular,aug,mon,74,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,technician,married,professional.course,no,no,no,cellular,aug,mon,80,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,66,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,married,university.degree,no,no,no,telephone,aug,mon,280,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,956,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+48,blue-collar,married,unknown,no,yes,no,cellular,aug,mon,346,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,married,high.school,no,yes,yes,telephone,aug,mon,212,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,mon,143,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,high.school,no,no,no,cellular,aug,mon,93,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,technician,single,high.school,unknown,no,no,cellular,aug,mon,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,single,university.degree,unknown,no,yes,cellular,aug,mon,103,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,retired,divorced,professional.course,no,no,no,cellular,aug,mon,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,technician,married,professional.course,no,no,no,cellular,aug,mon,271,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,technician,married,professional.course,no,yes,yes,cellular,aug,mon,223,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,technician,married,professional.course,no,yes,yes,cellular,aug,mon,199,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,single,university.degree,unknown,no,no,cellular,aug,mon,1126,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,mon,514,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,admin.,married,university.degree,no,yes,no,cellular,aug,mon,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,admin.,married,professional.course,unknown,no,no,cellular,aug,mon,392,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,unemployed,divorced,professional.course,no,yes,no,cellular,aug,mon,150,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,unemployed,divorced,professional.course,no,yes,no,cellular,aug,mon,151,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,self-employed,single,professional.course,no,yes,no,cellular,aug,mon,215,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,aug,mon,547,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,divorced,university.degree,no,yes,no,cellular,aug,mon,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,management,married,university.degree,no,yes,yes,cellular,aug,mon,85,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,mon,180,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,university.degree,unknown,yes,no,cellular,aug,mon,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,married,professional.course,no,no,no,cellular,aug,mon,22,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,married,professional.course,no,yes,no,cellular,aug,mon,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,single,university.degree,unknown,yes,yes,cellular,aug,mon,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,retired,divorced,professional.course,no,unknown,unknown,cellular,aug,mon,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,married,professional.course,no,yes,no,cellular,aug,mon,984,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,services,married,basic.9y,unknown,yes,yes,cellular,aug,mon,256,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,university.degree,no,no,no,cellular,aug,mon,249,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,high.school,unknown,yes,no,cellular,aug,mon,48,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,university.degree,no,no,no,cellular,aug,mon,62,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,management,married,high.school,no,no,no,cellular,aug,mon,725,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,admin.,married,university.degree,no,no,no,cellular,aug,mon,384,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+41,self-employed,married,university.degree,no,yes,yes,cellular,aug,mon,377,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,single,university.degree,no,yes,no,cellular,aug,mon,417,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,single,high.school,no,yes,no,cellular,aug,mon,201,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,management,married,university.degree,unknown,yes,no,cellular,aug,mon,261,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,housemaid,married,university.degree,no,yes,no,cellular,aug,mon,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,unknown,yes,yes,cellular,aug,mon,128,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,103,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,management,married,university.degree,no,yes,no,cellular,aug,mon,178,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,blue-collar,married,unknown,no,yes,no,cellular,aug,mon,16,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,self-employed,married,university.degree,no,no,no,cellular,aug,mon,135,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,no,unknown,unknown,cellular,aug,mon,202,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,mon,37,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,housemaid,married,basic.4y,unknown,no,no,cellular,aug,mon,149,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,married,university.degree,no,no,yes,cellular,aug,mon,35,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,married,university.degree,no,no,no,cellular,aug,mon,1364,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,blue-collar,married,high.school,unknown,yes,yes,cellular,aug,mon,166,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,aug,mon,286,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,mon,213,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,59,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,207,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,high.school,unknown,yes,no,cellular,aug,mon,73,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,single,university.degree,unknown,no,yes,cellular,aug,mon,1559,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,admin.,married,high.school,no,yes,no,cellular,aug,mon,194,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+49,unknown,married,high.school,unknown,no,no,cellular,aug,mon,192,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,technician,married,high.school,no,no,no,cellular,aug,mon,304,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,admin.,single,university.degree,no,no,yes,cellular,aug,mon,89,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,admin.,married,high.school,no,yes,yes,cellular,aug,mon,124,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,married,professional.course,unknown,yes,yes,cellular,aug,mon,67,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,174,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,admin.,married,high.school,no,no,no,cellular,aug,mon,457,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,technician,married,university.degree,unknown,yes,yes,cellular,aug,mon,405,11,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,mon,350,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,mon,123,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,aug,mon,395,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,mon,312,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,services,married,basic.4y,unknown,yes,no,cellular,aug,mon,779,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,admin.,married,university.degree,no,yes,no,cellular,aug,mon,92,12,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,mon,374,12,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,admin.,married,high.school,unknown,yes,no,cellular,aug,mon,76,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,single,high.school,no,yes,no,cellular,aug,mon,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,married,professional.course,no,no,no,cellular,aug,mon,296,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,193,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,single,professional.course,no,yes,no,cellular,aug,mon,87,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,entrepreneur,married,basic.9y,unknown,yes,no,cellular,aug,mon,243,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,divorced,university.degree,no,yes,no,cellular,aug,mon,835,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,aug,mon,724,12,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+50,blue-collar,married,basic.4y,no,no,no,cellular,aug,mon,159,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,divorced,high.school,unknown,no,no,cellular,aug,mon,445,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,mon,244,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,mon,212,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,no,yes,cellular,aug,mon,119,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,single,university.degree,no,yes,yes,cellular,aug,mon,176,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,technician,married,high.school,unknown,yes,no,cellular,aug,mon,241,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,married,university.degree,no,yes,no,cellular,aug,mon,314,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,management,married,university.degree,unknown,yes,no,cellular,aug,mon,96,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,technician,married,professional.course,unknown,no,no,cellular,aug,mon,43,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,self-employed,married,university.degree,unknown,yes,yes,cellular,aug,mon,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,729,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,professional.course,no,no,yes,cellular,aug,mon,285,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,married,unknown,no,no,no,cellular,aug,mon,393,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,153,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,189,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,aug,mon,129,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,single,university.degree,no,no,no,cellular,aug,mon,195,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,mon,199,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,technician,married,high.school,no,no,no,cellular,aug,mon,298,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,divorced,university.degree,unknown,no,no,cellular,aug,mon,43,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,services,married,high.school,no,yes,yes,cellular,aug,mon,273,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,married,professional.course,unknown,no,no,cellular,aug,mon,37,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,self-employed,married,university.degree,unknown,yes,no,cellular,aug,mon,693,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,services,married,high.school,no,yes,no,telephone,aug,mon,575,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,tue,99,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,tue,247,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,139,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+27,admin.,married,university.degree,no,no,no,cellular,aug,tue,97,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,admin.,married,university.degree,no,no,no,cellular,aug,tue,151,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,tue,192,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,single,professional.course,no,yes,no,cellular,aug,tue,120,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,services,married,high.school,no,yes,no,cellular,aug,tue,607,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,blue-collar,married,basic.6y,no,no,no,cellular,aug,tue,141,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,unknown,no,no,cellular,aug,tue,116,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,aug,tue,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,aug,tue,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,management,married,university.degree,no,no,no,cellular,aug,tue,208,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,technician,single,university.degree,no,no,no,cellular,aug,tue,203,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,technician,single,university.degree,no,yes,no,cellular,aug,tue,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,aug,tue,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,technician,single,university.degree,no,yes,no,cellular,aug,tue,286,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+58,unknown,married,basic.4y,no,yes,no,cellular,aug,tue,645,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+44,blue-collar,married,basic.6y,no,no,yes,cellular,aug,tue,177,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,married,university.degree,no,yes,no,cellular,aug,tue,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,tue,83,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,tue,125,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,unknown,yes,no,cellular,aug,tue,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,unknown,yes,no,cellular,aug,tue,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,tue,74,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,unknown,married,high.school,unknown,yes,no,cellular,aug,tue,54,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,entrepreneur,divorced,professional.course,unknown,no,no,cellular,aug,tue,255,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,blue-collar,married,basic.6y,no,yes,yes,cellular,aug,tue,133,12,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,admin.,married,university.degree,no,yes,no,cellular,aug,tue,245,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,divorced,university.degree,no,yes,yes,cellular,aug,tue,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,university.degree,no,no,no,cellular,aug,tue,56,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,tue,787,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,269,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,technician,single,high.school,no,yes,no,cellular,aug,tue,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,technician,single,high.school,no,no,no,cellular,aug,tue,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,tue,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,admin.,married,university.degree,no,no,yes,cellular,aug,tue,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,self-employed,married,professional.course,unknown,no,no,cellular,aug,tue,432,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,retired,married,university.degree,no,no,no,cellular,aug,tue,331,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,technician,married,professional.course,unknown,no,no,cellular,aug,tue,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,technician,married,professional.course,unknown,no,no,cellular,aug,tue,222,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,technician,married,professional.course,unknown,no,no,cellular,aug,tue,213,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,technician,married,professional.course,unknown,no,no,cellular,aug,tue,166,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,tue,103,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,55,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,management,married,high.school,no,yes,no,cellular,aug,tue,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,professional.course,no,no,no,cellular,aug,tue,215,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,admin.,single,university.degree,no,yes,no,cellular,aug,tue,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,361,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,married,university.degree,no,yes,no,telephone,aug,tue,223,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,technician,married,professional.course,unknown,no,no,cellular,aug,tue,235,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+59,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,high.school,no,no,no,cellular,aug,tue,210,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,self-employed,married,university.degree,no,no,no,cellular,aug,tue,276,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,management,married,high.school,no,yes,no,cellular,aug,tue,671,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,management,married,university.degree,no,no,no,cellular,aug,tue,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,management,married,university.degree,no,yes,yes,cellular,aug,tue,83,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,management,married,university.degree,no,yes,no,cellular,aug,tue,189,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,management,married,university.degree,no,yes,yes,cellular,aug,tue,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,self-employed,single,professional.course,no,unknown,unknown,cellular,aug,tue,151,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,married,professional.course,no,no,no,cellular,aug,tue,51,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,services,single,professional.course,no,yes,no,cellular,aug,tue,161,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,married,professional.course,no,no,no,cellular,aug,tue,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,aug,tue,344,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,married,professional.course,no,yes,no,cellular,aug,tue,284,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,divorced,professional.course,no,no,yes,cellular,aug,tue,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,married,professional.course,no,no,no,cellular,aug,tue,298,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,141,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,university.degree,no,no,no,cellular,aug,tue,134,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,295,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,aug,tue,198,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,management,married,university.degree,no,yes,yes,cellular,aug,tue,199,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+58,retired,married,unknown,unknown,no,yes,cellular,aug,tue,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,management,married,university.degree,unknown,no,no,cellular,aug,tue,504,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,university.degree,no,yes,no,cellular,aug,tue,113,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,management,single,university.degree,no,no,no,cellular,aug,tue,189,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,121,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,management,single,university.degree,no,no,yes,cellular,aug,tue,264,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,admin.,married,high.school,no,yes,no,cellular,aug,tue,1293,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+31,admin.,single,university.degree,unknown,no,no,cellular,aug,tue,359,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,tue,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,tue,74,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,services,married,basic.4y,unknown,yes,no,cellular,aug,tue,227,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,admin.,married,high.school,no,yes,no,cellular,aug,tue,129,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,tue,125,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,323,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,unknown,married,basic.9y,unknown,no,no,cellular,aug,tue,234,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,professional.course,no,yes,no,cellular,aug,tue,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,professional.course,no,no,no,cellular,aug,tue,193,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,128,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,single,university.degree,no,no,no,cellular,aug,tue,260,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,housemaid,married,basic.4y,no,yes,no,cellular,aug,tue,133,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,tue,242,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,professional.course,no,no,yes,cellular,aug,tue,501,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,married,university.degree,no,no,no,cellular,aug,tue,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,technician,married,professional.course,no,yes,no,cellular,aug,tue,339,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,married,professional.course,no,yes,no,cellular,aug,tue,149,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,high.school,no,no,no,cellular,aug,tue,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,high.school,unknown,no,no,cellular,aug,tue,256,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,high.school,unknown,no,no,cellular,aug,tue,332,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,tue,111,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+58,admin.,divorced,high.school,no,no,no,cellular,aug,tue,290,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,self-employed,single,university.degree,no,no,no,cellular,aug,tue,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,tue,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,single,high.school,no,no,no,cellular,aug,tue,186,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,blue-collar,married,basic.6y,no,yes,no,cellular,aug,tue,195,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,self-employed,married,high.school,no,no,no,cellular,aug,tue,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,management,married,university.degree,no,no,no,cellular,aug,tue,115,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,admin.,married,university.degree,no,no,no,cellular,aug,tue,145,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,tue,145,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,aug,tue,126,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,aug,tue,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,tue,204,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,married,university.degree,no,yes,no,cellular,aug,tue,178,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,tue,202,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,housemaid,married,basic.4y,unknown,no,yes,cellular,aug,tue,41,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,technician,married,university.degree,no,no,no,cellular,aug,tue,125,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,married,professional.course,no,no,no,telephone,aug,tue,225,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,160,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,technician,married,university.degree,no,yes,no,cellular,aug,tue,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,tue,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,97,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,management,married,university.degree,no,yes,no,cellular,aug,tue,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,married,university.degree,no,no,no,cellular,aug,tue,391,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,tue,143,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,blue-collar,married,basic.6y,unknown,no,yes,cellular,aug,tue,166,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,admin.,married,basic.9y,no,yes,no,cellular,aug,tue,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,398,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,married,professional.course,no,yes,no,cellular,aug,tue,276,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,technician,single,university.degree,unknown,yes,no,cellular,aug,tue,159,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,married,professional.course,no,yes,no,cellular,aug,tue,452,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,professional.course,no,no,no,cellular,aug,tue,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,high.school,no,yes,no,cellular,aug,tue,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,high.school,no,yes,no,cellular,aug,tue,167,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+59,admin.,married,basic.4y,unknown,yes,no,cellular,aug,tue,306,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,single,university.degree,unknown,no,no,cellular,aug,tue,117,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,divorced,high.school,no,yes,yes,cellular,aug,tue,194,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,management,married,university.degree,no,no,no,cellular,aug,tue,133,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,technician,married,university.degree,no,yes,no,cellular,aug,tue,156,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,technician,married,high.school,unknown,no,no,cellular,aug,tue,679,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,175,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,married,high.school,no,no,no,cellular,aug,tue,190,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+58,technician,divorced,professional.course,unknown,yes,no,cellular,aug,tue,109,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,married,professional.course,no,yes,no,cellular,aug,tue,409,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,self-employed,single,university.degree,no,yes,no,cellular,aug,tue,176,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,services,married,basic.4y,no,yes,no,cellular,aug,tue,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,406,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+58,self-employed,married,university.degree,no,yes,yes,cellular,aug,tue,598,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,no,no,yes,cellular,aug,tue,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,no,no,yes,cellular,aug,tue,113,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,blue-collar,married,basic.6y,no,yes,yes,cellular,aug,tue,222,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,high.school,no,yes,no,cellular,aug,tue,183,13,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,high.school,unknown,no,no,cellular,aug,tue,188,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,275,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,tue,96,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,21,17,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,admin.,married,high.school,no,yes,no,cellular,aug,tue,163,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,28,13,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,entrepreneur,divorced,professional.course,unknown,unknown,unknown,cellular,aug,tue,950,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+42,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,56,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+58,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,679,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,single,professional.course,no,yes,no,cellular,aug,tue,99,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,single,high.school,no,yes,no,cellular,aug,tue,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,120,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,single,university.degree,no,no,yes,cellular,aug,tue,35,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,687,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+36,admin.,single,university.degree,no,yes,no,cellular,aug,tue,74,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,university.degree,no,no,no,cellular,aug,tue,224,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,married,university.degree,no,no,no,cellular,aug,tue,158,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,admin.,married,high.school,no,yes,no,cellular,aug,tue,292,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,admin.,married,university.degree,no,yes,no,cellular,aug,tue,208,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,self-employed,single,university.degree,no,yes,no,cellular,aug,tue,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,unknown,married,unknown,unknown,unknown,unknown,cellular,aug,tue,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,married,high.school,no,yes,no,cellular,aug,tue,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,services,single,professional.course,no,yes,no,cellular,aug,tue,73,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,admin.,married,university.degree,no,yes,no,cellular,aug,tue,469,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+59,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,146,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,married,professional.course,no,no,no,cellular,aug,tue,1241,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,blue-collar,married,basic.4y,no,no,yes,cellular,aug,tue,299,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,tue,128,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,admin.,married,university.degree,no,no,yes,cellular,aug,tue,209,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,admin.,married,university.degree,no,no,no,cellular,aug,tue,166,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,university.degree,no,yes,yes,cellular,aug,tue,131,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+58,retired,married,university.degree,unknown,no,no,cellular,aug,tue,587,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,single,university.degree,no,yes,no,cellular,aug,tue,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,tue,191,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,274,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,technician,married,high.school,unknown,yes,yes,cellular,aug,tue,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,technician,married,high.school,unknown,no,yes,cellular,aug,tue,171,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,married,university.degree,no,yes,no,cellular,aug,tue,95,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,married,university.degree,no,no,yes,cellular,aug,tue,128,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,services,married,basic.4y,no,yes,yes,cellular,aug,tue,220,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,aug,tue,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,no,yes,cellular,aug,tue,360,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,technician,married,professional.course,yes,no,no,cellular,aug,tue,66,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,technician,married,professional.course,yes,yes,no,cellular,aug,tue,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,12,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,admin.,married,high.school,no,yes,yes,cellular,aug,tue,120,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,unemployed,single,professional.course,no,yes,yes,telephone,aug,tue,69,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,admin.,married,high.school,no,no,no,cellular,aug,tue,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+59,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,258,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,admin.,married,high.school,no,yes,no,cellular,aug,tue,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,single,university.degree,no,no,no,cellular,aug,tue,696,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,434,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,admin.,married,high.school,no,yes,no,cellular,aug,tue,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,admin.,married,high.school,no,yes,yes,cellular,aug,tue,172,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,aug,tue,387,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,management,married,university.degree,no,yes,no,cellular,aug,tue,377,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,high.school,no,no,no,cellular,aug,tue,243,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,tue,60,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,unemployed,married,university.degree,no,no,no,cellular,aug,tue,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,unemployed,married,university.degree,no,yes,no,cellular,aug,tue,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,tue,281,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,management,married,university.degree,unknown,yes,no,cellular,aug,tue,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,unemployed,married,professional.course,unknown,yes,yes,cellular,aug,tue,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,married,professional.course,no,yes,no,cellular,aug,tue,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,unknown,married,high.school,unknown,no,yes,cellular,aug,tue,144,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,married,professional.course,no,yes,no,cellular,aug,tue,205,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,528,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+59,admin.,married,basic.4y,unknown,yes,yes,cellular,aug,tue,292,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,university.degree,no,yes,no,cellular,aug,tue,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,married,professional.course,no,no,no,cellular,aug,tue,120,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,blue-collar,divorced,basic.9y,no,no,no,cellular,aug,tue,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,married,high.school,no,yes,yes,cellular,aug,tue,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,married,high.school,no,yes,no,cellular,aug,tue,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,married,high.school,no,yes,no,cellular,aug,tue,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,married,high.school,no,no,no,cellular,aug,tue,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,married,high.school,no,no,no,cellular,aug,tue,79,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,married,high.school,no,no,no,cellular,aug,tue,41,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,married,university.degree,unknown,yes,no,cellular,aug,tue,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,management,married,university.degree,no,no,no,cellular,aug,tue,551,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,98,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,management,married,university.degree,unknown,no,no,cellular,aug,tue,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,181,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,married,professional.course,no,no,no,cellular,aug,tue,386,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,self-employed,married,university.degree,no,no,no,cellular,aug,tue,135,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,professional.course,unknown,no,no,cellular,aug,tue,349,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,no,no,yes,cellular,aug,tue,358,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,tue,154,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,197,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,aug,tue,245,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,aug,tue,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,married,university.degree,no,no,no,cellular,aug,tue,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,single,university.degree,no,no,no,cellular,aug,tue,288,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,69,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,married,university.degree,no,no,yes,cellular,aug,tue,438,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,admin.,single,university.degree,no,no,yes,cellular,aug,tue,28,11,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,technician,married,high.school,unknown,no,no,cellular,aug,tue,280,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,admin.,married,high.school,no,no,no,cellular,aug,tue,15,13,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,married,university.degree,no,no,yes,cellular,aug,tue,824,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,tue,451,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,blue-collar,married,unknown,no,no,no,cellular,aug,tue,194,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,married,high.school,no,yes,no,cellular,aug,tue,385,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,technician,married,professional.course,no,no,no,cellular,aug,tue,99,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,management,married,university.degree,no,no,no,cellular,aug,tue,471,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,technician,single,university.degree,no,yes,no,cellular,aug,tue,486,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,technician,divorced,high.school,no,yes,yes,cellular,aug,tue,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,tue,53,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,retired,married,basic.4y,no,no,no,cellular,aug,tue,933,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+29,management,single,university.degree,no,yes,no,cellular,aug,tue,139,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,no,unknown,unknown,cellular,aug,tue,40,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,university.degree,unknown,yes,no,cellular,aug,tue,328,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,management,married,high.school,no,yes,no,cellular,aug,tue,19,12,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,tue,144,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,married,high.school,no,yes,no,cellular,aug,tue,42,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,1059,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,117,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,aug,tue,149,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,tue,1032,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+32,technician,single,university.degree,no,yes,yes,cellular,aug,tue,231,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,university.degree,no,yes,no,cellular,aug,tue,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,141,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,married,high.school,no,yes,yes,cellular,aug,tue,474,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,unemployed,single,university.degree,no,yes,yes,cellular,aug,tue,153,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,aug,tue,98,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,professional.course,no,no,no,cellular,aug,tue,405,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,professional.course,no,yes,yes,cellular,aug,tue,202,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,294,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,admin.,married,basic.6y,no,no,no,cellular,aug,tue,178,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,admin.,married,basic.6y,no,yes,no,cellular,aug,tue,264,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,university.degree,no,no,yes,cellular,aug,tue,729,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,unemployed,married,professional.course,no,no,no,telephone,aug,tue,18,12,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,university.degree,no,yes,yes,cellular,aug,tue,285,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,university.degree,no,yes,no,cellular,aug,tue,367,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,admin.,married,basic.9y,unknown,yes,yes,cellular,aug,tue,86,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,155,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,services,married,university.degree,no,yes,no,cellular,aug,tue,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,220,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,services,married,university.degree,no,yes,no,cellular,aug,tue,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,technician,married,high.school,no,yes,no,cellular,aug,tue,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,199,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,tue,178,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,blue-collar,married,basic.6y,no,yes,no,cellular,aug,tue,373,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,aug,tue,211,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,high.school,unknown,yes,no,cellular,aug,tue,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,44,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,single,university.degree,unknown,no,yes,cellular,aug,tue,285,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,university.degree,no,no,no,cellular,aug,tue,302,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,tue,171,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,unknown,yes,no,cellular,aug,tue,158,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,divorced,high.school,no,no,no,cellular,aug,tue,271,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,single,university.degree,no,no,no,cellular,aug,tue,59,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,university.degree,unknown,no,no,cellular,aug,tue,61,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,management,married,university.degree,no,yes,no,cellular,aug,tue,61,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,professional.course,no,yes,no,cellular,aug,tue,105,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,tue,118,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,services,married,high.school,no,yes,no,cellular,aug,tue,392,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,university.degree,unknown,unknown,unknown,cellular,aug,tue,313,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,single,university.degree,no,yes,no,cellular,aug,tue,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,109,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,single,high.school,no,yes,no,cellular,aug,tue,78,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,unemployed,married,basic.4y,no,no,no,cellular,aug,tue,121,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,single,professional.course,no,no,no,cellular,aug,tue,97,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,retired,married,high.school,unknown,yes,yes,cellular,aug,tue,37,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,221,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,admin.,divorced,university.degree,unknown,no,no,telephone,aug,tue,105,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,blue-collar,married,basic.9y,no,no,no,cellular,aug,tue,329,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,self-employed,married,basic.4y,no,no,no,cellular,aug,tue,268,11,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,high.school,no,yes,no,cellular,aug,tue,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+60,retired,married,basic.4y,unknown,no,no,cellular,aug,tue,332,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,services,married,high.school,unknown,no,no,cellular,aug,tue,205,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,tue,398,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,high.school,no,yes,no,cellular,aug,tue,599,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,single,professional.course,unknown,no,yes,cellular,aug,tue,102,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,high.school,unknown,yes,no,cellular,aug,tue,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,university.degree,no,yes,no,cellular,aug,tue,290,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+56,retired,married,high.school,no,yes,no,cellular,aug,tue,109,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,238,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,services,married,high.school,no,no,no,cellular,aug,tue,249,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,technician,single,high.school,no,yes,yes,cellular,aug,tue,629,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,single,university.degree,unknown,no,yes,cellular,aug,tue,137,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,admin.,married,high.school,no,yes,no,cellular,aug,tue,231,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,single,university.degree,no,no,no,cellular,aug,tue,119,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,blue-collar,married,basic.6y,no,yes,no,cellular,aug,tue,308,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,609,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,147,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,management,married,university.degree,no,no,no,cellular,aug,tue,123,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,single,professional.course,unknown,yes,no,cellular,aug,tue,57,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,199,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,aug,tue,219,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,tue,386,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,tue,112,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,divorced,professional.course,no,no,no,cellular,aug,tue,706,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,tue,173,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,admin.,divorced,unknown,no,no,no,cellular,aug,tue,228,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,technician,divorced,university.degree,no,no,no,cellular,aug,tue,207,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,married,university.degree,no,unknown,unknown,cellular,aug,tue,347,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,blue-collar,married,basic.6y,no,no,no,cellular,aug,tue,256,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,technician,married,university.degree,no,yes,no,cellular,aug,tue,85,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,housemaid,married,basic.4y,no,yes,no,cellular,aug,tue,117,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,university.degree,no,no,yes,cellular,aug,tue,60,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,professional.course,no,yes,yes,cellular,aug,tue,207,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+57,services,married,high.school,no,no,no,cellular,aug,tue,187,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+58,blue-collar,married,basic.6y,no,yes,no,cellular,aug,tue,166,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,152,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,university.degree,no,no,no,cellular,aug,tue,93,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,university.degree,unknown,no,no,cellular,aug,tue,54,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,services,married,professional.course,no,no,no,cellular,aug,tue,836,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+31,services,divorced,high.school,no,yes,yes,cellular,aug,tue,242,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,married,university.degree,no,yes,yes,cellular,aug,tue,235,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,blue-collar,married,basic.9y,unknown,yes,no,telephone,aug,tue,132,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,tue,561,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,tue,303,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,management,married,university.degree,no,yes,no,cellular,aug,tue,343,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,services,married,university.degree,no,yes,no,cellular,aug,tue,159,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,173,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+60,retired,married,basic.4y,unknown,yes,yes,cellular,aug,tue,595,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,tue,1200,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,university.degree,unknown,yes,no,cellular,aug,tue,695,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,tue,100,11,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+58,admin.,married,university.degree,unknown,yes,yes,cellular,aug,tue,103,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,blue-collar,married,basic.4y,no,unknown,unknown,telephone,aug,tue,480,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+32,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,46,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,married,high.school,no,yes,no,cellular,aug,wed,125,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,108,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,admin.,single,university.degree,unknown,yes,yes,cellular,aug,wed,131,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,wed,129,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,118,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,technician,divorced,high.school,no,no,no,cellular,aug,wed,113,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,professional.course,no,no,no,cellular,aug,wed,80,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,technician,married,professional.course,unknown,yes,yes,cellular,aug,wed,83,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,150,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,wed,582,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,wed,68,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,technician,divorced,high.school,unknown,no,no,cellular,aug,wed,190,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,retired,married,basic.9y,unknown,yes,yes,cellular,aug,wed,117,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,high.school,unknown,yes,no,cellular,aug,wed,143,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,183,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,admin.,married,university.degree,no,yes,no,cellular,aug,wed,264,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,aug,wed,216,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,wed,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,wed,43,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,wed,154,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,management,divorced,university.degree,no,no,no,cellular,aug,wed,649,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+33,admin.,single,university.degree,no,no,yes,cellular,aug,wed,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,technician,married,professional.course,no,yes,no,cellular,aug,wed,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,wed,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,married,high.school,no,yes,no,cellular,aug,wed,30,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,wed,81,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,management,married,university.degree,no,no,no,cellular,aug,wed,50,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,technician,married,university.degree,no,yes,no,cellular,aug,wed,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,retired,married,university.degree,no,no,no,cellular,aug,wed,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,admin.,married,university.degree,no,no,no,cellular,aug,wed,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,admin.,single,university.degree,no,no,no,cellular,aug,wed,377,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,housemaid,married,university.degree,no,yes,yes,cellular,aug,wed,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,services,married,high.school,no,no,no,cellular,aug,wed,55,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,divorced,professional.course,no,yes,no,cellular,aug,wed,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,wed,240,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,services,married,high.school,unknown,no,no,cellular,aug,wed,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,wed,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,unemployed,married,professional.course,no,no,yes,cellular,aug,wed,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,technician,married,professional.course,no,no,no,cellular,aug,wed,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,management,married,university.degree,no,no,no,cellular,aug,wed,104,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,admin.,married,university.degree,no,yes,no,cellular,aug,wed,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,wed,256,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,single,university.degree,unknown,yes,no,cellular,aug,wed,322,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,admin.,single,university.degree,unknown,no,no,cellular,aug,wed,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,50,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,single,university.degree,no,no,no,cellular,aug,wed,132,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,services,married,basic.4y,no,no,yes,cellular,aug,wed,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,admin.,married,high.school,no,yes,yes,cellular,aug,wed,18,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,admin.,single,university.degree,unknown,no,no,cellular,aug,wed,483,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,services,married,basic.4y,no,yes,no,cellular,aug,wed,212,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,wed,64,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,329,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,yes,no,cellular,aug,wed,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,professional.course,no,no,yes,cellular,aug,wed,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,aug,wed,129,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,admin.,divorced,university.degree,unknown,no,no,cellular,aug,wed,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,wed,295,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,university.degree,unknown,yes,no,cellular,aug,wed,60,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,25,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,wed,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,admin.,single,high.school,no,no,no,cellular,aug,wed,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,admin.,single,high.school,no,yes,no,cellular,aug,wed,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,wed,391,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,management,married,high.school,unknown,yes,no,cellular,aug,wed,228,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,blue-collar,married,basic.6y,no,yes,no,cellular,aug,wed,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,aug,wed,140,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,aug,wed,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,wed,243,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,wed,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,technician,married,professional.course,no,yes,no,cellular,aug,wed,192,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,wed,340,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,blue-collar,married,basic.6y,no,no,no,cellular,aug,wed,921,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+36,self-employed,divorced,professional.course,no,yes,no,cellular,aug,wed,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,technician,single,professional.course,no,yes,no,cellular,aug,wed,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,technician,single,professional.course,no,yes,no,cellular,aug,wed,84,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,technician,single,professional.course,no,no,no,cellular,aug,wed,113,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,management,married,university.degree,no,no,no,cellular,aug,wed,500,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,technician,single,professional.course,no,yes,no,cellular,aug,wed,179,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,wed,53,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,wed,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,married,university.degree,no,no,no,cellular,aug,wed,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,72,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,467,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+36,technician,married,high.school,unknown,yes,no,cellular,aug,wed,112,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,83,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,entrepreneur,married,high.school,no,no,no,cellular,aug,wed,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,married,high.school,unknown,yes,no,cellular,aug,wed,231,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,entrepreneur,married,high.school,no,yes,no,cellular,aug,wed,312,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,technician,married,professional.course,no,yes,no,cellular,aug,wed,543,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+32,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,152,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,yes,yes,cellular,aug,wed,158,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,management,married,high.school,unknown,no,no,cellular,aug,wed,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,entrepreneur,single,university.degree,no,yes,yes,cellular,aug,wed,90,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,self-employed,married,professional.course,unknown,yes,no,cellular,aug,wed,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,retired,married,basic.9y,unknown,yes,no,cellular,aug,wed,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,aug,wed,428,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,193,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,high.school,unknown,yes,no,cellular,aug,wed,158,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,wed,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,retired,married,basic.9y,no,yes,yes,cellular,aug,wed,339,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,retired,married,basic.9y,no,no,no,cellular,aug,wed,351,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,202,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,housemaid,married,basic.4y,no,yes,no,cellular,aug,wed,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,203,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,admin.,married,university.degree,no,no,no,cellular,aug,wed,552,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+57,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,divorced,professional.course,no,yes,no,cellular,aug,wed,79,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,wed,117,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,aug,wed,322,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,no,no,cellular,aug,wed,60,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,housemaid,married,basic.4y,no,no,no,cellular,aug,wed,1044,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+30,technician,single,professional.course,no,no,no,cellular,aug,wed,387,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,admin.,single,university.degree,no,no,yes,cellular,aug,wed,162,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,wed,875,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+53,blue-collar,married,basic.4y,no,yes,no,cellular,aug,wed,108,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,blue-collar,married,basic.4y,no,no,yes,cellular,aug,wed,414,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,technician,married,university.degree,no,yes,no,cellular,aug,wed,552,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,married,university.degree,no,no,no,cellular,aug,wed,209,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,wed,263,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,technician,married,professional.course,no,yes,no,cellular,aug,wed,185,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,technician,married,professional.course,unknown,no,no,cellular,aug,wed,71,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,professional.course,no,yes,no,cellular,aug,wed,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,360,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,blue-collar,single,basic.9y,no,no,no,cellular,aug,wed,219,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,157,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,102,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,technician,single,professional.course,no,no,no,cellular,aug,wed,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,married,university.degree,no,no,no,cellular,aug,wed,196,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,management,married,university.degree,no,yes,no,cellular,aug,wed,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,management,married,university.degree,no,no,no,cellular,aug,wed,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,138,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,management,married,university.degree,no,no,no,cellular,aug,wed,204,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,management,married,university.degree,no,yes,no,cellular,aug,wed,535,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,university.degree,unknown,yes,no,cellular,aug,wed,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,technician,single,professional.course,no,yes,no,cellular,aug,wed,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,admin.,married,university.degree,no,no,no,cellular,aug,wed,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,services,married,professional.course,no,yes,no,cellular,aug,wed,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,admin.,married,university.degree,no,no,no,cellular,aug,wed,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,359,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,single,university.degree,no,yes,no,cellular,aug,wed,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,277,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,management,married,university.degree,no,yes,no,cellular,aug,wed,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,married,university.degree,no,no,no,telephone,aug,wed,588,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+60,retired,married,university.degree,no,no,no,cellular,aug,wed,332,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,admin.,married,high.school,no,no,no,cellular,aug,wed,184,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,237,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,technician,married,professional.course,no,yes,no,cellular,aug,wed,49,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,admin.,married,university.degree,no,yes,no,cellular,aug,wed,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,university.degree,no,yes,no,cellular,aug,wed,215,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,wed,25,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,blue-collar,single,high.school,no,no,no,cellular,aug,wed,211,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,management,married,university.degree,no,unknown,unknown,cellular,aug,wed,233,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,services,divorced,high.school,unknown,no,no,cellular,aug,wed,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,wed,172,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,services,married,high.school,unknown,yes,no,cellular,aug,wed,100,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,management,married,university.degree,no,yes,no,cellular,aug,wed,113,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,technician,divorced,professional.course,unknown,no,no,cellular,aug,wed,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,professional.course,no,no,no,cellular,aug,wed,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,technician,divorced,professional.course,unknown,yes,no,cellular,aug,wed,200,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,wed,214,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,unemployed,married,university.degree,no,yes,no,cellular,aug,wed,763,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+36,technician,single,university.degree,no,unknown,unknown,cellular,aug,wed,889,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,university.degree,no,no,no,cellular,aug,wed,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,no,no,cellular,aug,wed,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,university.degree,no,no,no,cellular,aug,wed,210,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,413,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,technician,married,professional.course,no,yes,no,cellular,aug,wed,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,professional.course,no,yes,no,cellular,aug,wed,472,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,management,married,university.degree,no,no,no,cellular,aug,wed,157,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,wed,352,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,management,married,high.school,no,no,no,cellular,aug,wed,171,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,high.school,no,yes,no,cellular,aug,wed,78,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,married,university.degree,unknown,no,no,cellular,aug,wed,212,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,blue-collar,married,basic.9y,no,no,yes,cellular,aug,wed,76,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,112,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,aug,wed,161,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,technician,married,university.degree,no,yes,no,cellular,aug,wed,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,technician,married,high.school,no,yes,no,cellular,aug,wed,599,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,536,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+35,technician,single,professional.course,no,yes,no,cellular,aug,wed,75,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,technician,single,professional.course,no,no,no,cellular,aug,wed,1740,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,56,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,aug,wed,513,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,technician,married,professional.course,no,yes,yes,cellular,aug,wed,744,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,admin.,married,university.degree,no,no,no,cellular,aug,wed,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,admin.,married,university.degree,no,no,no,cellular,aug,wed,184,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,married,university.degree,no,no,yes,cellular,aug,wed,62,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,technician,single,university.degree,no,yes,no,cellular,aug,wed,194,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,married,university.degree,no,yes,yes,cellular,aug,wed,94,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,unknown,unknown,cellular,aug,wed,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,management,married,university.degree,no,no,no,cellular,aug,wed,398,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,259,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,management,married,university.degree,no,yes,no,cellular,aug,wed,77,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,admin.,divorced,professional.course,no,no,no,cellular,aug,wed,329,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,management,married,university.degree,no,yes,no,cellular,aug,wed,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,management,married,university.degree,no,no,no,cellular,aug,wed,414,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,married,professional.course,no,no,no,cellular,aug,wed,252,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,married,professional.course,no,yes,no,cellular,aug,wed,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,116,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,management,married,university.degree,no,yes,no,cellular,aug,wed,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,housemaid,single,university.degree,no,no,yes,cellular,aug,wed,127,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,no,yes,cellular,aug,wed,447,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,technician,married,professional.course,unknown,no,no,cellular,aug,wed,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,yes,no,cellular,aug,wed,157,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,married,university.degree,no,no,yes,cellular,aug,wed,15,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,services,married,basic.4y,no,yes,no,cellular,aug,wed,173,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,divorced,university.degree,no,no,yes,cellular,aug,wed,203,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,admin.,married,university.degree,no,yes,no,cellular,aug,wed,471,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,aug,wed,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,aug,wed,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,single,university.degree,no,yes,no,cellular,aug,wed,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,188,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,aug,wed,1408,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+39,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,blue-collar,married,basic.9y,no,unknown,unknown,cellular,aug,wed,70,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,293,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,single,university.degree,no,yes,no,cellular,aug,wed,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,single,university.degree,no,no,no,cellular,aug,wed,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,584,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,aug,wed,718,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+35,technician,single,university.degree,no,no,yes,cellular,aug,wed,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,married,university.degree,no,no,yes,cellular,aug,wed,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,university.degree,no,no,yes,cellular,aug,wed,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,university.degree,no,no,no,cellular,aug,wed,797,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,married,university.degree,no,yes,no,cellular,aug,wed,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,married,professional.course,no,no,no,cellular,aug,wed,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,high.school,unknown,no,no,cellular,aug,wed,921,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+31,technician,single,university.degree,unknown,no,no,cellular,aug,wed,605,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,married,professional.course,no,yes,no,cellular,aug,wed,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,wed,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,admin.,married,high.school,no,no,no,cellular,aug,wed,245,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,professional.course,no,no,yes,cellular,aug,wed,443,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,divorced,professional.course,no,yes,no,cellular,aug,wed,176,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,entrepreneur,married,basic.9y,unknown,yes,no,cellular,aug,wed,156,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,admin.,married,high.school,no,no,no,cellular,aug,wed,552,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,married,university.degree,no,no,yes,cellular,aug,wed,280,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,243,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,married,university.degree,no,no,no,cellular,aug,wed,358,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,430,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,unknown,no,no,cellular,aug,wed,132,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,admin.,divorced,university.degree,no,no,yes,cellular,aug,wed,380,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,wed,327,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,wed,627,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+37,admin.,married,university.degree,no,yes,no,cellular,aug,wed,251,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,housemaid,divorced,basic.9y,no,yes,no,cellular,aug,wed,175,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,retired,married,basic.4y,unknown,no,no,cellular,aug,wed,687,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,395,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,self-employed,married,university.degree,no,no,no,cellular,aug,wed,696,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,technician,married,professional.course,no,yes,no,cellular,aug,wed,175,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,self-employed,married,high.school,no,yes,no,cellular,aug,wed,304,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,technician,married,high.school,no,yes,no,cellular,aug,wed,129,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,services,married,high.school,no,yes,no,cellular,aug,wed,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,admin.,married,university.degree,no,no,yes,cellular,aug,wed,291,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,admin.,married,university.degree,no,no,no,cellular,aug,wed,420,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,management,married,university.degree,unknown,yes,yes,cellular,aug,wed,216,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,housemaid,married,basic.4y,no,no,no,cellular,aug,wed,975,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,retired,married,basic.4y,unknown,no,no,cellular,aug,wed,881,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,aug,wed,157,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,admin.,married,university.degree,no,no,yes,cellular,aug,wed,92,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,married,high.school,no,yes,no,cellular,aug,wed,135,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,blue-collar,married,professional.course,no,yes,no,cellular,aug,wed,252,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,unknown,no,no,cellular,aug,wed,93,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,unemployed,married,basic.9y,no,yes,no,cellular,aug,wed,68,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,admin.,married,university.degree,no,no,no,cellular,aug,wed,174,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,technician,divorced,professional.course,unknown,unknown,unknown,cellular,aug,wed,170,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,self-employed,married,university.degree,no,yes,no,cellular,aug,wed,165,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,married,professional.course,no,yes,no,cellular,aug,wed,89,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,aug,wed,141,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,admin.,married,university.degree,no,no,no,telephone,aug,wed,237,12,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,married,professional.course,no,no,no,cellular,aug,wed,67,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,retired,married,basic.4y,unknown,no,no,cellular,aug,wed,116,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,university.degree,no,no,no,cellular,aug,wed,896,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,married,high.school,no,yes,no,cellular,aug,wed,53,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,retired,married,high.school,no,yes,no,cellular,aug,wed,625,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+31,unemployed,married,university.degree,no,no,no,cellular,aug,wed,147,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,single,professional.course,no,yes,yes,cellular,aug,wed,63,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,services,married,basic.9y,no,no,no,cellular,aug,wed,76,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,high.school,no,yes,yes,cellular,aug,wed,79,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,admin.,married,university.degree,no,yes,no,cellular,aug,wed,113,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,services,married,high.school,no,no,no,cellular,aug,wed,133,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,university.degree,no,no,no,cellular,aug,wed,559,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,admin.,married,university.degree,no,no,no,cellular,aug,wed,273,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,housemaid,married,university.degree,no,yes,no,cellular,aug,wed,83,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,37,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,wed,113,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,wed,50,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,services,married,basic.9y,unknown,yes,yes,cellular,aug,wed,66,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,209,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,services,married,high.school,no,yes,no,cellular,aug,wed,703,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+30,admin.,married,university.degree,no,no,no,cellular,aug,wed,345,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,admin.,single,university.degree,unknown,unknown,unknown,cellular,aug,wed,138,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,services,married,unknown,unknown,yes,no,cellular,aug,wed,341,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,aug,wed,78,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,admin.,married,high.school,no,no,yes,cellular,aug,wed,210,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,self-employed,married,basic.9y,no,yes,no,telephone,aug,wed,41,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,aug,wed,134,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,single,university.degree,no,no,no,cellular,aug,wed,208,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,technician,married,high.school,no,no,yes,cellular,aug,wed,109,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,admin.,married,university.degree,no,no,no,cellular,aug,wed,66,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,technician,married,professional.course,no,no,no,cellular,aug,wed,125,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,single,university.degree,no,no,no,cellular,aug,wed,173,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,housemaid,married,basic.4y,no,no,no,cellular,aug,wed,188,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,wed,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,unemployed,married,university.degree,no,no,no,cellular,aug,wed,124,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,married,high.school,no,yes,no,cellular,aug,wed,99,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,technician,divorced,professional.course,unknown,no,no,cellular,aug,wed,196,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,381,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,retired,married,basic.4y,no,yes,no,cellular,aug,wed,83,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,married,university.degree,no,no,no,cellular,aug,wed,126,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,self-employed,married,professional.course,no,yes,no,cellular,aug,wed,181,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,admin.,married,university.degree,no,yes,no,cellular,aug,wed,221,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,housemaid,married,university.degree,no,yes,no,cellular,aug,wed,195,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,services,married,basic.9y,unknown,yes,no,cellular,aug,wed,226,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,married,university.degree,no,yes,yes,cellular,aug,wed,678,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,blue-collar,married,high.school,no,no,no,cellular,aug,wed,44,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,professional.course,unknown,yes,no,cellular,aug,wed,46,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,retired,married,basic.4y,unknown,no,yes,cellular,aug,wed,278,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,professional.course,no,yes,yes,cellular,aug,wed,162,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,wed,225,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,153,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,77,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,blue-collar,divorced,basic.4y,no,no,no,cellular,aug,wed,96,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,retired,married,professional.course,no,no,no,cellular,aug,wed,135,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,blue-collar,married,unknown,no,yes,no,cellular,aug,wed,99,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,96,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,1464,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,unknown,yes,no,cellular,aug,wed,111,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,university.degree,no,yes,no,cellular,aug,wed,320,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,married,university.degree,no,no,yes,cellular,aug,thu,220,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,housemaid,married,university.degree,no,yes,no,cellular,aug,thu,111,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,married,university.degree,no,yes,yes,cellular,aug,thu,462,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,high.school,no,yes,no,cellular,aug,thu,92,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,self-employed,married,university.degree,no,no,yes,cellular,aug,thu,432,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,professional.course,no,yes,no,cellular,aug,thu,286,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,unknown,married,professional.course,unknown,no,yes,telephone,aug,thu,169,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,self-employed,divorced,university.degree,no,no,no,cellular,aug,thu,182,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,services,married,high.school,no,no,no,cellular,aug,thu,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,398,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,services,married,high.school,no,no,no,cellular,aug,thu,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,444,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,services,married,high.school,no,yes,no,cellular,aug,thu,310,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,technician,married,professional.course,no,no,yes,cellular,aug,thu,209,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,blue-collar,married,high.school,unknown,no,no,cellular,aug,thu,189,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,blue-collar,married,high.school,unknown,no,yes,cellular,aug,thu,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,technician,single,high.school,no,no,no,cellular,aug,thu,444,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,blue-collar,married,high.school,unknown,yes,no,cellular,aug,thu,199,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,self-employed,married,high.school,no,yes,no,cellular,aug,thu,151,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,services,divorced,professional.course,no,no,yes,cellular,aug,thu,66,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,married,high.school,no,yes,no,cellular,aug,thu,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,technician,married,professional.course,no,yes,yes,cellular,aug,thu,246,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,technician,single,high.school,unknown,yes,yes,cellular,aug,thu,971,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,210,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,79,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,311,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,technician,divorced,high.school,unknown,yes,no,cellular,aug,thu,140,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,self-employed,married,basic.6y,no,no,no,cellular,aug,thu,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,aug,thu,98,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,self-employed,married,basic.6y,no,no,no,cellular,aug,thu,218,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,single,professional.course,no,no,no,cellular,aug,thu,152,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,admin.,married,university.degree,no,no,no,cellular,aug,thu,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,services,married,basic.9y,no,no,no,cellular,aug,thu,211,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,admin.,married,unknown,no,no,no,cellular,aug,thu,331,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,admin.,married,university.degree,no,yes,no,cellular,aug,thu,238,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,housemaid,married,basic.4y,no,yes,no,cellular,aug,thu,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,admin.,married,university.degree,no,no,yes,cellular,aug,thu,250,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,housemaid,married,basic.4y,no,yes,no,cellular,aug,thu,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,professional.course,no,yes,no,cellular,aug,thu,82,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,married,professional.course,no,no,no,cellular,aug,thu,396,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,technician,married,professional.course,unknown,no,no,cellular,aug,thu,351,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,self-employed,married,university.degree,no,no,no,cellular,aug,thu,273,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,university.degree,unknown,no,no,cellular,aug,thu,246,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,married,high.school,no,yes,no,cellular,aug,thu,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,aug,thu,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,admin.,single,university.degree,no,no,no,cellular,aug,thu,429,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,no,no,yes,cellular,aug,thu,167,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,thu,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,divorced,university.degree,no,yes,yes,cellular,aug,thu,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,single,university.degree,no,yes,no,cellular,aug,thu,118,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,thu,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,thu,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,thu,180,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,services,married,basic.9y,no,yes,no,cellular,aug,thu,676,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,single,professional.course,no,yes,yes,cellular,aug,thu,84,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,thu,40,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,married,high.school,no,yes,no,cellular,aug,thu,1503,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+48,admin.,married,high.school,no,yes,no,cellular,aug,thu,62,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,retired,married,professional.course,no,yes,no,cellular,aug,thu,384,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,admin.,single,university.degree,no,yes,no,cellular,aug,thu,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,thu,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,292,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,single,professional.course,no,no,no,cellular,aug,thu,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,single,professional.course,no,yes,no,cellular,aug,thu,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,aug,thu,234,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,technician,married,professional.course,no,no,no,cellular,aug,thu,129,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,services,married,high.school,unknown,no,no,cellular,aug,thu,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,services,married,high.school,unknown,yes,yes,cellular,aug,thu,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,thu,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,management,married,university.degree,no,no,no,cellular,aug,thu,644,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+42,technician,married,university.degree,no,no,no,cellular,aug,thu,161,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,technician,married,university.degree,no,yes,no,cellular,aug,thu,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,technician,married,university.degree,no,no,yes,cellular,aug,thu,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,technician,married,university.degree,no,yes,yes,cellular,aug,thu,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,services,married,high.school,unknown,no,no,cellular,aug,thu,776,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,thu,65,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,93,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,admin.,single,university.degree,no,no,no,cellular,aug,thu,153,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,thu,223,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,services,married,high.school,no,no,no,cellular,aug,thu,62,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,housemaid,single,university.degree,no,yes,no,cellular,aug,thu,159,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,self-employed,married,basic.9y,no,unknown,unknown,cellular,aug,thu,141,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,aug,thu,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,aug,thu,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,divorced,university.degree,no,no,yes,cellular,aug,thu,376,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,thu,140,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,retired,married,basic.4y,unknown,yes,no,cellular,aug,thu,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,thu,117,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,126,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,entrepreneur,married,university.degree,unknown,yes,yes,cellular,aug,thu,148,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,blue-collar,married,basic.4y,no,no,no,telephone,aug,thu,4199,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+30,technician,single,professional.course,no,no,no,cellular,aug,thu,65,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,thu,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,thu,588,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,thu,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,thu,151,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,married,high.school,no,no,no,cellular,aug,thu,913,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+48,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,thu,1111,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,services,married,basic.9y,no,unknown,unknown,cellular,aug,thu,282,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,professional.course,no,no,no,cellular,aug,thu,656,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,services,married,basic.4y,no,yes,no,cellular,aug,thu,265,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,admin.,married,university.degree,no,yes,no,cellular,aug,thu,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,married,university.degree,no,no,no,cellular,aug,thu,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,admin.,married,university.degree,no,yes,no,cellular,aug,thu,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,housemaid,married,professional.course,no,yes,yes,cellular,aug,thu,243,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,housemaid,divorced,professional.course,no,yes,no,cellular,aug,thu,321,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,thu,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,housemaid,married,basic.4y,no,no,no,cellular,aug,thu,183,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+58,management,married,university.degree,unknown,yes,yes,cellular,aug,thu,299,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,housemaid,married,basic.4y,no,no,no,cellular,aug,thu,179,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,unemployed,married,basic.9y,no,yes,no,cellular,aug,thu,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+60,self-employed,married,university.degree,no,no,no,cellular,aug,thu,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,admin.,married,university.degree,no,no,no,cellular,aug,thu,335,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+60,self-employed,married,university.degree,no,no,no,cellular,aug,thu,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,self-employed,married,professional.course,no,no,no,cellular,aug,thu,90,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,thu,244,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+58,retired,married,high.school,unknown,yes,no,cellular,aug,thu,194,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,services,divorced,high.school,unknown,no,no,cellular,aug,thu,819,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+57,blue-collar,married,basic.4y,no,no,no,cellular,aug,thu,134,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,blue-collar,married,basic.6y,no,no,no,cellular,aug,thu,139,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,housemaid,married,university.degree,unknown,yes,no,cellular,aug,thu,297,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,housemaid,married,basic.9y,no,no,no,cellular,aug,thu,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,retired,married,basic.4y,no,no,no,cellular,aug,thu,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,technician,divorced,university.degree,no,yes,no,cellular,aug,thu,136,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,admin.,married,basic.9y,unknown,no,yes,cellular,aug,thu,59,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,management,married,university.degree,no,no,yes,cellular,aug,thu,166,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,single,university.degree,no,no,no,cellular,aug,thu,545,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,management,married,university.degree,unknown,no,yes,cellular,aug,thu,137,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,admin.,married,university.degree,no,no,yes,cellular,aug,thu,1505,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+51,technician,married,professional.course,unknown,no,yes,cellular,aug,thu,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,high.school,no,yes,no,cellular,aug,thu,788,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+30,technician,single,high.school,no,yes,no,cellular,aug,thu,230,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,technician,married,professional.course,no,yes,no,cellular,aug,thu,86,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,self-employed,married,university.degree,no,yes,no,cellular,aug,thu,140,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,admin.,married,university.degree,unknown,no,yes,cellular,aug,thu,212,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,aug,thu,168,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,married,professional.course,no,no,yes,cellular,aug,thu,898,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,married,professional.course,unknown,no,yes,cellular,aug,thu,318,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,housemaid,married,basic.9y,unknown,no,no,cellular,aug,thu,180,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,professional.course,no,yes,no,cellular,aug,thu,241,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,blue-collar,married,high.school,unknown,yes,no,cellular,aug,thu,238,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,self-employed,married,basic.9y,no,yes,no,cellular,aug,thu,176,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,retired,married,basic.4y,unknown,no,no,cellular,aug,thu,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,blue-collar,married,basic.6y,no,yes,no,cellular,aug,thu,43,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,admin.,married,basic.9y,unknown,yes,no,cellular,aug,thu,122,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,thu,12,15,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,divorced,high.school,no,yes,no,cellular,aug,thu,119,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,professional.course,no,no,no,cellular,aug,thu,172,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,thu,419,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,services,married,basic.4y,no,no,no,cellular,aug,thu,575,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,admin.,married,university.degree,no,yes,no,cellular,aug,thu,238,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,housemaid,married,basic.4y,no,no,no,cellular,aug,thu,76,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,self-employed,married,basic.9y,no,yes,no,cellular,aug,thu,107,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,technician,divorced,high.school,unknown,yes,no,cellular,aug,thu,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,management,married,university.degree,no,yes,no,cellular,aug,thu,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,technician,married,professional.course,no,yes,no,cellular,aug,thu,156,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,admin.,unknown,university.degree,no,yes,no,cellular,aug,thu,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,thu,188,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,housemaid,married,university.degree,no,no,no,cellular,aug,thu,181,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,services,married,high.school,no,yes,no,cellular,aug,thu,660,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,unknown,yes,no,cellular,aug,thu,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,married,professional.course,no,unknown,unknown,cellular,aug,thu,946,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+30,admin.,married,university.degree,no,unknown,unknown,cellular,aug,thu,55,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,admin.,unknown,university.degree,no,no,no,cellular,aug,thu,1532,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,435,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,283,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,thu,202,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,blue-collar,married,basic.9y,no,yes,no,cellular,aug,thu,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,technician,married,professional.course,no,no,no,cellular,aug,thu,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,admin.,divorced,university.degree,unknown,yes,yes,cellular,aug,thu,394,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,services,married,high.school,no,no,no,cellular,aug,thu,1026,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,thu,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,aug,thu,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,professional.course,no,no,no,cellular,aug,thu,88,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,admin.,married,high.school,unknown,no,no,cellular,aug,thu,87,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,admin.,married,unknown,no,yes,no,cellular,aug,thu,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,508,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,housemaid,married,university.degree,no,yes,no,cellular,aug,thu,91,15,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,technician,divorced,professional.course,unknown,yes,no,cellular,aug,thu,239,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,thu,719,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,unemployed,married,university.degree,no,yes,no,cellular,aug,thu,71,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,thu,177,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,admin.,married,university.degree,unknown,yes,yes,cellular,aug,thu,381,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,high.school,unknown,unknown,unknown,cellular,aug,thu,381,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+56,self-employed,married,basic.9y,no,yes,no,cellular,aug,thu,793,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+44,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,thu,191,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,blue-collar,married,basic.6y,unknown,yes,yes,cellular,aug,thu,45,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,single,professional.course,no,yes,yes,cellular,aug,thu,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,single,high.school,no,yes,no,cellular,aug,thu,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,thu,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,technician,married,professional.course,no,yes,yes,cellular,aug,thu,870,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,thu,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,single,professional.course,no,yes,no,cellular,aug,thu,87,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,housemaid,divorced,professional.course,no,no,no,cellular,aug,thu,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,no,no,no,cellular,aug,thu,511,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,no,no,no,cellular,aug,thu,500,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,blue-collar,married,basic.6y,no,yes,no,cellular,aug,thu,48,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,blue-collar,married,basic.6y,no,no,no,cellular,aug,thu,362,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,technician,divorced,professional.course,unknown,yes,no,cellular,aug,thu,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,services,married,high.school,unknown,yes,no,cellular,aug,thu,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,divorced,university.degree,no,yes,no,cellular,aug,thu,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,unknown,yes,no,cellular,aug,thu,161,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,single,university.degree,no,yes,no,cellular,aug,thu,154,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,thu,190,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,professional.course,unknown,no,no,cellular,aug,thu,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,professional.course,unknown,no,yes,cellular,aug,thu,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,technician,single,professional.course,no,yes,no,cellular,aug,thu,396,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,blue-collar,married,basic.4y,no,no,yes,cellular,aug,thu,274,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,thu,151,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,150,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,services,married,high.school,unknown,yes,no,cellular,aug,thu,227,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,married,professional.course,unknown,yes,yes,cellular,aug,thu,242,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,housemaid,married,basic.4y,no,no,no,cellular,aug,thu,200,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,360,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,single,professional.course,no,yes,no,cellular,aug,thu,126,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,married,professional.course,no,yes,no,cellular,aug,thu,224,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,services,married,basic.4y,unknown,yes,yes,cellular,aug,thu,271,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,thu,256,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,thu,686,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+54,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,415,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,management,married,university.degree,unknown,no,no,cellular,aug,thu,165,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,university.degree,no,no,no,cellular,aug,thu,183,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,thu,301,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,blue-collar,married,basic.4y,no,no,no,cellular,aug,thu,94,13,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,176,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,services,married,high.school,unknown,no,no,cellular,aug,thu,42,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,married,high.school,no,no,no,cellular,aug,thu,294,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,764,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+59,services,married,basic.4y,unknown,no,no,cellular,aug,thu,93,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,239,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,blue-collar,married,basic.9y,unknown,unknown,unknown,cellular,aug,thu,159,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,no,no,no,cellular,aug,thu,231,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,thu,1877,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+40,management,married,university.degree,no,yes,no,cellular,aug,thu,77,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,admin.,single,university.degree,no,no,no,cellular,aug,thu,310,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,140,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,divorced,university.degree,no,yes,no,cellular,aug,thu,142,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,184,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,technician,married,high.school,no,yes,no,cellular,aug,thu,102,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,married,professional.course,no,yes,no,cellular,aug,thu,169,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,single,professional.course,no,no,no,cellular,aug,thu,120,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,blue-collar,married,basic.4y,no,no,no,cellular,aug,thu,314,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,professional.course,unknown,yes,yes,cellular,aug,thu,189,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,thu,126,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,thu,142,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,self-employed,single,university.degree,no,yes,no,cellular,aug,thu,148,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,368,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,299,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+59,retired,married,basic.4y,unknown,yes,no,cellular,aug,thu,196,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,technician,divorced,professional.course,unknown,yes,no,cellular,aug,thu,1117,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes
+31,admin.,married,university.degree,no,yes,no,cellular,aug,thu,280,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,single,university.degree,no,no,no,cellular,aug,thu,42,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,aug,thu,300,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,services,married,professional.course,unknown,yes,no,cellular,aug,thu,160,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,management,married,university.degree,no,no,no,cellular,aug,thu,122,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,admin.,married,unknown,no,yes,no,cellular,aug,thu,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,aug,thu,379,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,divorced,high.school,no,no,no,cellular,aug,thu,494,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,129,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,housemaid,married,university.degree,no,yes,no,cellular,aug,thu,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,admin.,married,unknown,no,yes,no,cellular,aug,thu,794,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,housemaid,married,university.degree,no,yes,no,cellular,aug,thu,36,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,housemaid,married,university.degree,no,yes,no,cellular,aug,thu,46,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,unknown,no,no,telephone,aug,thu,331,14,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,single,professional.course,no,no,no,cellular,aug,thu,153,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,blue-collar,married,professional.course,no,yes,no,cellular,aug,thu,269,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+57,technician,married,university.degree,no,no,no,cellular,aug,thu,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+57,technician,married,university.degree,no,yes,no,cellular,aug,thu,202,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+57,retired,married,high.school,no,no,no,cellular,aug,fri,92,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,divorced,university.degree,no,unknown,unknown,cellular,aug,fri,351,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,retired,married,basic.4y,no,yes,no,cellular,aug,fri,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,fri,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,married,university.degree,unknown,yes,yes,cellular,aug,fri,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,professional.course,no,yes,yes,cellular,aug,fri,202,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,university.degree,no,yes,no,cellular,aug,fri,242,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,university.degree,no,no,no,cellular,aug,fri,360,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,married,professional.course,no,yes,no,cellular,aug,fri,168,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,admin.,married,university.degree,no,yes,no,cellular,aug,fri,169,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,fri,118,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,152,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,203,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,retired,married,high.school,no,no,no,cellular,aug,fri,136,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,single,university.degree,no,yes,no,cellular,aug,fri,974,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+31,technician,single,professional.course,no,yes,no,cellular,aug,fri,122,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,technician,divorced,professional.course,unknown,yes,no,cellular,aug,fri,343,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,fri,76,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,university.degree,no,yes,yes,cellular,aug,fri,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,housemaid,married,unknown,unknown,yes,yes,cellular,aug,fri,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,retired,married,professional.course,no,yes,no,cellular,aug,fri,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,99,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,services,married,high.school,unknown,yes,yes,cellular,aug,fri,41,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,services,married,high.school,unknown,yes,no,cellular,aug,fri,154,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,586,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,university.degree,unknown,yes,no,cellular,aug,fri,1123,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+45,blue-collar,married,illiterate,no,yes,no,cellular,aug,fri,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,university.degree,no,yes,no,cellular,aug,fri,87,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,self-employed,married,basic.9y,no,yes,no,cellular,aug,fri,57,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,blue-collar,married,basic.6y,no,yes,no,cellular,aug,fri,167,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,491,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,admin.,married,high.school,no,yes,no,cellular,aug,fri,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,self-employed,married,basic.9y,no,yes,no,cellular,aug,fri,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,married,high.school,unknown,no,no,cellular,aug,fri,40,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,admin.,married,professional.course,no,yes,no,cellular,aug,fri,34,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,services,married,basic.9y,no,yes,yes,cellular,aug,fri,83,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,technician,married,high.school,no,yes,no,cellular,aug,fri,306,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,admin.,single,professional.course,unknown,yes,no,cellular,aug,fri,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,aug,fri,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,644,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,unknown,unknown,cellular,aug,fri,57,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,retired,married,university.degree,unknown,no,yes,cellular,aug,fri,140,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,admin.,married,unknown,unknown,unknown,unknown,cellular,aug,fri,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,fri,576,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+33,admin.,married,university.degree,no,yes,no,cellular,aug,fri,579,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+53,technician,married,professional.course,no,no,no,cellular,aug,fri,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,technician,married,professional.course,no,yes,no,cellular,aug,fri,336,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+41,self-employed,married,basic.9y,no,yes,no,cellular,aug,fri,313,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,admin.,married,professional.course,no,yes,yes,cellular,aug,fri,1241,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,services,married,unknown,no,yes,yes,cellular,aug,fri,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,136,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,professional.course,no,no,no,cellular,aug,fri,73,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,119,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,services,married,unknown,no,yes,no,cellular,aug,fri,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,services,married,unknown,no,no,no,cellular,aug,fri,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,services,married,unknown,no,no,no,cellular,aug,fri,739,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,65,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,self-employed,married,professional.course,no,yes,no,cellular,aug,fri,326,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,housemaid,married,unknown,no,yes,no,cellular,aug,fri,314,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,housemaid,married,professional.course,no,yes,no,cellular,aug,fri,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,married,unknown,no,no,no,cellular,aug,fri,252,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,unknown,unknown,cellular,aug,fri,227,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,housemaid,married,professional.course,no,no,no,cellular,aug,fri,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,no,yes,cellular,aug,fri,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,admin.,divorced,university.degree,no,no,no,cellular,aug,fri,86,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,blue-collar,married,basic.6y,no,yes,no,cellular,aug,fri,246,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,fri,77,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,blue-collar,married,basic.6y,no,no,no,cellular,aug,fri,393,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,296,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,blue-collar,married,basic.9y,no,no,yes,cellular,aug,fri,234,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,high.school,no,yes,no,cellular,aug,fri,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,married,university.degree,unknown,no,no,cellular,aug,fri,305,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,high.school,no,no,no,cellular,aug,fri,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,high.school,no,no,no,cellular,aug,fri,54,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,high.school,no,no,no,cellular,aug,fri,254,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,520,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+56,admin.,married,unknown,no,yes,no,cellular,aug,fri,157,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,services,married,basic.4y,unknown,yes,no,cellular,aug,fri,119,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,192,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,services,married,unknown,no,no,no,cellular,aug,fri,229,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,self-employed,married,basic.9y,no,no,no,telephone,aug,fri,16,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,technician,married,university.degree,unknown,no,no,cellular,aug,fri,215,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,married,high.school,no,yes,no,cellular,aug,fri,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,unemployed,married,high.school,unknown,no,no,cellular,aug,fri,125,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,146,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,fri,705,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,33,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,services,married,high.school,unknown,no,no,cellular,aug,fri,205,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,94,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,retired,married,unknown,no,yes,no,cellular,aug,fri,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,single,high.school,unknown,yes,yes,cellular,aug,fri,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,77,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,married,university.degree,no,no,yes,cellular,aug,fri,944,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,self-employed,married,university.degree,no,yes,yes,cellular,aug,fri,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,technician,married,university.degree,unknown,yes,no,cellular,aug,fri,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,492,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,technician,married,university.degree,unknown,yes,no,cellular,aug,fri,213,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,aug,fri,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,management,married,high.school,no,yes,no,cellular,aug,fri,125,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,retired,married,unknown,no,no,no,cellular,aug,fri,83,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,retired,married,unknown,no,no,yes,cellular,aug,fri,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,single,high.school,unknown,no,no,cellular,aug,fri,1258,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+51,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,married,university.degree,no,no,no,cellular,aug,fri,190,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,188,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,admin.,married,university.degree,no,no,no,cellular,aug,fri,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,unemployed,married,university.degree,no,no,no,cellular,aug,fri,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,unemployed,married,university.degree,no,yes,yes,cellular,aug,fri,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,services,married,high.school,unknown,no,no,cellular,aug,fri,362,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,services,married,high.school,unknown,yes,no,cellular,aug,fri,528,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+31,technician,single,professional.course,no,yes,yes,cellular,aug,fri,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,high.school,no,yes,no,cellular,aug,fri,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,blue-collar,married,basic.6y,no,yes,no,cellular,aug,fri,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,blue-collar,married,basic.6y,no,yes,no,cellular,aug,fri,314,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,blue-collar,married,unknown,unknown,yes,yes,cellular,aug,fri,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,retired,married,unknown,no,yes,yes,cellular,aug,fri,79,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,blue-collar,married,unknown,unknown,yes,no,cellular,aug,fri,257,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,retired,married,unknown,no,no,no,cellular,aug,fri,69,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,fri,129,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,self-employed,married,basic.9y,unknown,no,no,cellular,aug,fri,1329,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+49,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,fri,66,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,fri,358,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,university.degree,no,yes,yes,cellular,aug,fri,73,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,university.degree,no,yes,no,cellular,aug,fri,55,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,268,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,aug,fri,63,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,high.school,no,no,no,cellular,aug,fri,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,high.school,no,no,no,cellular,aug,fri,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,self-employed,married,basic.9y,unknown,yes,no,cellular,aug,fri,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,technician,married,professional.course,no,yes,no,cellular,aug,fri,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,no,telephone,aug,fri,67,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,single,university.degree,no,yes,no,cellular,aug,fri,65,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,blue-collar,married,unknown,unknown,yes,no,cellular,aug,fri,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,housemaid,married,professional.course,no,yes,no,cellular,aug,fri,192,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,blue-collar,married,unknown,unknown,yes,no,cellular,aug,fri,286,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,unemployed,married,high.school,unknown,yes,no,cellular,aug,fri,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,technician,single,high.school,no,yes,no,cellular,aug,fri,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,technician,single,high.school,no,no,no,cellular,aug,fri,85,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,single,high.school,no,no,no,cellular,aug,fri,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,university.degree,no,no,yes,cellular,aug,fri,197,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,fri,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,technician,married,professional.course,unknown,no,no,cellular,aug,fri,46,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,fri,278,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,university.degree,no,no,yes,cellular,aug,fri,1197,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,high.school,no,yes,no,cellular,aug,fri,164,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,married,high.school,no,yes,no,cellular,aug,fri,171,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,no,no,cellular,aug,fri,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,single,university.degree,no,no,no,cellular,aug,fri,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,blue-collar,married,unknown,no,no,no,cellular,aug,fri,220,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,retired,married,basic.4y,unknown,yes,no,cellular,aug,fri,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,technician,single,university.degree,no,yes,no,cellular,aug,fri,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,technician,single,university.degree,no,yes,no,cellular,aug,fri,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,admin.,married,high.school,no,yes,no,cellular,aug,fri,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,fri,205,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,565,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+38,technician,single,university.degree,no,yes,yes,cellular,aug,fri,572,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,divorced,professional.course,no,no,no,telephone,aug,fri,336,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,technician,married,university.degree,no,no,no,cellular,aug,fri,232,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,technician,married,university.degree,no,no,no,cellular,aug,fri,251,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,housemaid,married,unknown,no,yes,no,cellular,aug,fri,239,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,no,no,cellular,aug,fri,243,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,university.degree,no,no,no,cellular,aug,fri,147,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,admin.,married,basic.4y,no,no,no,cellular,aug,fri,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,retired,married,university.degree,unknown,no,no,cellular,aug,fri,217,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,services,married,high.school,no,no,no,cellular,aug,fri,149,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,married,professional.course,no,no,no,cellular,aug,fri,128,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,unemployed,married,high.school,unknown,yes,no,cellular,aug,fri,112,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,742,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,200,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,fri,55,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,married,university.degree,no,no,no,cellular,aug,fri,604,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+30,technician,single,professional.course,no,yes,yes,cellular,aug,fri,22,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,services,married,high.school,no,no,no,cellular,aug,fri,239,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,aug,fri,137,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,fri,119,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,1809,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,fri,47,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,blue-collar,married,unknown,unknown,yes,yes,cellular,aug,fri,48,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,married,university.degree,no,no,no,cellular,aug,fri,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,fri,102,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,technician,single,university.degree,no,no,no,cellular,aug,fri,180,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,technician,married,professional.course,no,no,no,cellular,aug,fri,243,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,services,married,high.school,unknown,yes,no,cellular,aug,fri,79,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,no,no,yes,cellular,aug,fri,187,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,services,married,basic.4y,unknown,yes,no,cellular,aug,fri,120,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,fri,142,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,management,married,university.degree,unknown,yes,yes,cellular,aug,fri,508,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,self-employed,married,basic.9y,no,yes,no,cellular,aug,fri,163,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,blue-collar,married,basic.9y,no,no,no,cellular,aug,fri,27,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,admin.,married,university.degree,no,yes,no,cellular,aug,fri,651,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,single,university.degree,no,no,no,cellular,aug,fri,71,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,retired,married,unknown,no,no,no,cellular,aug,fri,233,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,admin.,divorced,university.degree,unknown,yes,yes,cellular,aug,fri,557,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,unemployed,married,university.degree,no,no,no,cellular,aug,fri,247,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,management,married,university.degree,unknown,no,no,telephone,aug,fri,208,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,no,no,cellular,aug,fri,379,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,blue-collar,married,basic.4y,no,yes,no,telephone,aug,fri,295,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,admin.,single,university.degree,no,yes,no,cellular,aug,fri,212,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,admin.,married,university.degree,no,no,no,cellular,aug,fri,115,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,technician,married,professional.course,no,no,no,cellular,aug,fri,77,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,university.degree,no,no,no,cellular,aug,fri,238,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,university.degree,no,no,yes,cellular,aug,fri,81,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,married,unknown,no,yes,no,cellular,aug,fri,251,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,374,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,services,married,basic.4y,unknown,no,no,cellular,aug,fri,117,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,single,professional.course,unknown,unknown,unknown,cellular,aug,fri,73,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,admin.,single,university.degree,no,no,no,cellular,aug,fri,361,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,107,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,divorced,high.school,no,no,no,cellular,aug,fri,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,high.school,no,no,no,cellular,aug,fri,171,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,single,professional.course,no,no,yes,cellular,aug,fri,66,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,technician,married,professional.course,unknown,no,no,cellular,aug,fri,199,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,technician,married,university.degree,no,no,no,cellular,aug,fri,209,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,technician,married,university.degree,no,no,no,cellular,aug,fri,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,professional.course,no,no,no,cellular,aug,fri,152,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,professional.course,no,no,no,cellular,aug,fri,198,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,195,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,admin.,married,unknown,unknown,no,no,cellular,aug,fri,234,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,fri,385,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,admin.,single,university.degree,no,unknown,unknown,cellular,aug,fri,371,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,divorced,high.school,no,unknown,unknown,cellular,aug,fri,50,15,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,university.degree,unknown,no,no,cellular,aug,fri,714,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,admin.,married,high.school,no,yes,no,cellular,aug,fri,629,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,admin.,divorced,university.degree,no,unknown,unknown,cellular,aug,fri,91,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,management,married,university.degree,no,no,yes,cellular,aug,fri,10,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,management,married,high.school,no,no,no,cellular,aug,fri,132,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+60,retired,married,basic.4y,unknown,yes,no,cellular,aug,fri,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,self-employed,married,basic.9y,no,yes,yes,cellular,aug,fri,1241,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+30,admin.,single,university.degree,no,yes,no,cellular,aug,fri,217,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,married,professional.course,no,no,yes,cellular,aug,fri,219,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,yes,yes,telephone,aug,fri,28,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,61,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,retired,married,unknown,no,no,no,cellular,aug,fri,80,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,management,married,university.degree,no,yes,no,cellular,aug,fri,117,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,technician,married,university.degree,no,no,no,cellular,aug,fri,607,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,fri,186,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,fri,538,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,technician,married,professional.course,no,no,no,cellular,aug,fri,337,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+60,management,married,university.degree,no,yes,no,cellular,aug,fri,527,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,admin.,married,university.degree,no,yes,no,cellular,aug,fri,73,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,fri,173,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,unemployed,married,basic.9y,no,no,no,cellular,aug,fri,81,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,divorced,high.school,no,yes,no,cellular,aug,fri,291,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+60,management,married,university.degree,no,no,no,cellular,aug,fri,222,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,entrepreneur,married,high.school,no,no,no,cellular,aug,fri,277,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,self-employed,married,high.school,no,yes,no,cellular,aug,fri,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,309,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,97,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,management,married,university.degree,no,no,no,cellular,aug,fri,511,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,technician,married,professional.course,no,no,yes,cellular,aug,fri,55,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,self-employed,married,basic.9y,no,no,yes,cellular,aug,fri,173,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,technician,married,professional.course,no,no,yes,cellular,aug,fri,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,346,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,housemaid,married,basic.4y,no,yes,yes,cellular,aug,fri,215,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,housemaid,married,basic.4y,no,yes,yes,cellular,aug,fri,347,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+60,management,married,university.degree,no,unknown,unknown,cellular,aug,fri,154,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,housemaid,married,basic.6y,no,no,no,cellular,aug,fri,618,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,technician,divorced,professional.course,no,no,no,cellular,aug,fri,203,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,blue-collar,married,illiterate,no,no,no,cellular,aug,fri,460,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,technician,married,high.school,no,yes,yes,cellular,aug,fri,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,aug,fri,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,management,married,university.degree,no,no,no,cellular,aug,fri,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,divorced,high.school,no,no,no,cellular,aug,fri,129,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,661,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,married,university.degree,no,no,no,cellular,aug,fri,296,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,admin.,married,professional.course,no,no,yes,cellular,aug,fri,323,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,admin.,married,professional.course,no,yes,yes,cellular,aug,fri,112,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,technician,married,professional.course,no,yes,yes,cellular,aug,fri,78,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,technician,single,professional.course,no,yes,yes,cellular,aug,fri,79,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,single,professional.course,no,no,yes,cellular,aug,fri,30,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,602,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,technician,divorced,professional.course,no,no,no,cellular,aug,fri,75,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,entrepreneur,married,high.school,no,no,no,cellular,aug,fri,332,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,314,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,professional.course,no,no,no,cellular,aug,fri,121,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,admin.,single,university.degree,no,yes,no,cellular,aug,fri,436,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,fri,186,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,professional.course,no,yes,no,cellular,aug,fri,270,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,housemaid,married,basic.4y,no,yes,yes,cellular,aug,fri,123,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,215,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,admin.,married,unknown,no,no,no,telephone,aug,fri,105,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,fri,192,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,263,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,married,professional.course,no,yes,yes,cellular,aug,fri,143,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,married,professional.course,no,yes,yes,cellular,aug,fri,153,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,technician,married,university.degree,no,yes,yes,cellular,aug,fri,289,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,34,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,239,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,single,university.degree,no,no,yes,cellular,aug,fri,78,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,single,professional.course,no,no,no,cellular,aug,fri,309,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,fri,353,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,management,married,university.degree,unknown,no,no,telephone,aug,fri,145,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,admin.,married,unknown,no,yes,yes,cellular,aug,fri,246,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,divorced,high.school,no,no,no,cellular,aug,fri,101,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,aug,fri,222,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,admin.,married,university.degree,no,no,no,cellular,aug,fri,166,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,unemployed,married,professional.course,no,yes,yes,cellular,aug,fri,98,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,technician,single,university.degree,no,no,yes,cellular,aug,fri,140,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,management,married,university.degree,no,no,no,cellular,aug,fri,58,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,services,married,unknown,no,no,no,cellular,aug,fri,547,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,self-employed,married,professional.course,no,no,no,cellular,aug,fri,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,housemaid,married,basic.4y,no,no,no,cellular,aug,fri,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,unknown,no,no,cellular,aug,fri,120,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,379,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,single,university.degree,no,no,no,cellular,aug,fri,182,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,housemaid,married,basic.4y,no,yes,no,cellular,aug,fri,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,housemaid,married,basic.4y,no,no,no,cellular,aug,fri,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,self-employed,married,high.school,no,no,no,cellular,aug,fri,90,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,divorced,high.school,no,no,yes,cellular,aug,fri,263,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,fri,398,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,management,married,high.school,no,no,no,cellular,aug,fri,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,single,professional.course,no,no,yes,cellular,aug,fri,82,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,fri,207,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,professional.course,no,no,no,cellular,aug,fri,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,professional.course,no,no,yes,cellular,aug,fri,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,divorced,university.degree,no,no,no,cellular,aug,fri,197,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,married,professional.course,no,unknown,unknown,telephone,aug,fri,9,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,single,university.degree,no,no,no,cellular,aug,fri,148,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,admin.,divorced,university.degree,no,no,no,cellular,aug,fri,209,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,aug,fri,1366,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,fri,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,admin.,single,university.degree,no,no,no,cellular,aug,fri,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,admin.,married,professional.course,no,no,no,cellular,aug,fri,306,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,housemaid,married,basic.6y,no,yes,no,cellular,aug,fri,268,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,services,married,high.school,no,no,no,cellular,aug,fri,155,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,aug,fri,176,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,technician,married,university.degree,no,yes,no,cellular,aug,fri,112,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,management,married,university.degree,no,no,yes,cellular,aug,fri,873,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+51,services,married,unknown,no,no,yes,cellular,aug,fri,135,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,housemaid,married,basic.6y,no,yes,no,cellular,aug,fri,208,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,divorced,high.school,no,yes,no,cellular,aug,fri,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+60,housemaid,married,basic.4y,no,no,no,cellular,aug,fri,148,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,blue-collar,married,basic.6y,no,no,no,cellular,aug,fri,200,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,blue-collar,married,basic.6y,no,no,no,cellular,aug,fri,311,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,married,professional.course,no,yes,no,cellular,aug,fri,56,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,services,married,high.school,unknown,unknown,unknown,cellular,aug,mon,116,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,technician,married,professional.course,no,yes,no,cellular,aug,mon,139,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,61,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,626,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+47,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,mon,103,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,management,divorced,university.degree,no,no,yes,cellular,aug,mon,116,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,mon,162,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,mon,109,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,single,professional.course,no,no,no,cellular,aug,mon,48,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,admin.,married,university.degree,no,yes,no,cellular,aug,mon,540,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,single,professional.course,no,no,no,cellular,aug,mon,122,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,technician,married,university.degree,no,no,no,cellular,aug,mon,342,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,management,married,university.degree,no,no,no,cellular,aug,mon,191,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,management,divorced,university.degree,no,no,no,cellular,aug,mon,288,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,technician,married,professional.course,no,yes,no,cellular,aug,mon,209,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,91,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,single,professional.course,no,no,no,cellular,aug,mon,196,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,admin.,single,university.degree,no,yes,no,cellular,aug,mon,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,115,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,technician,divorced,university.degree,no,yes,no,cellular,aug,mon,57,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,self-employed,married,university.degree,unknown,no,no,cellular,aug,mon,102,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,mon,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,single,university.degree,no,no,yes,cellular,aug,mon,78,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,admin.,single,university.degree,no,yes,no,cellular,aug,mon,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,married,professional.course,no,yes,no,cellular,aug,mon,472,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,admin.,single,university.degree,no,no,yes,cellular,aug,mon,205,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,mon,63,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,married,professional.course,no,yes,no,cellular,aug,mon,132,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,high.school,no,yes,yes,cellular,aug,mon,85,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,self-employed,married,university.degree,no,no,no,cellular,aug,mon,425,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,married,professional.course,no,yes,no,cellular,aug,mon,50,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,mon,363,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+29,admin.,single,university.degree,unknown,yes,no,cellular,aug,mon,129,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,divorced,university.degree,no,no,no,cellular,aug,mon,66,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,aug,mon,121,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,143,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,admin.,married,university.degree,no,yes,no,cellular,aug,mon,145,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,married,university.degree,no,no,no,cellular,aug,mon,99,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,112,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,retired,married,basic.9y,no,yes,no,cellular,aug,mon,337,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,management,divorced,university.degree,no,yes,no,cellular,aug,mon,961,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+32,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,87,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,technician,divorced,professional.course,no,no,no,cellular,aug,mon,73,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,married,professional.course,no,no,yes,cellular,aug,mon,463,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,single,university.degree,no,no,yes,cellular,aug,mon,67,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,admin.,single,university.degree,no,no,yes,cellular,aug,mon,103,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,services,married,high.school,no,yes,no,cellular,aug,mon,234,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,admin.,divorced,university.degree,unknown,no,no,cellular,aug,mon,74,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,admin.,single,university.degree,no,no,yes,cellular,aug,mon,220,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,admin.,divorced,university.degree,unknown,no,yes,cellular,aug,mon,75,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,blue-collar,married,basic.4y,no,no,no,cellular,aug,mon,79,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,80,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,single,professional.course,unknown,no,no,cellular,aug,mon,48,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,management,divorced,university.degree,no,no,no,cellular,aug,mon,83,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,self-employed,married,basic.9y,unknown,no,no,cellular,aug,mon,136,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,professional.course,no,yes,no,cellular,aug,mon,417,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,admin.,divorced,university.degree,unknown,no,no,cellular,aug,mon,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,housemaid,married,basic.4y,no,no,no,cellular,aug,mon,343,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,housemaid,married,basic.4y,no,no,no,cellular,aug,mon,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+60,retired,married,unknown,no,yes,no,cellular,aug,mon,600,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+47,blue-collar,divorced,basic.4y,no,yes,no,cellular,aug,mon,149,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,admin.,married,university.degree,no,no,no,cellular,aug,mon,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,self-employed,married,university.degree,unknown,yes,no,cellular,aug,mon,932,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+60,blue-collar,married,unknown,no,no,no,cellular,aug,mon,93,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,blue-collar,married,unknown,no,no,no,cellular,aug,mon,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,mon,113,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,unemployed,married,university.degree,unknown,no,yes,cellular,aug,mon,84,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,retired,married,professional.course,no,yes,no,cellular,aug,mon,147,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,single,professional.course,no,yes,no,cellular,aug,mon,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,125,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,services,married,high.school,unknown,no,no,cellular,aug,mon,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,aug,mon,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,mon,167,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,96,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,management,divorced,university.degree,no,unknown,unknown,cellular,aug,mon,123,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,housemaid,married,unknown,no,no,no,cellular,aug,mon,106,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,married,professional.course,no,no,no,cellular,aug,mon,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,mon,26,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,84,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,management,married,university.degree,no,yes,no,cellular,aug,mon,342,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,management,divorced,university.degree,no,no,no,cellular,aug,mon,472,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+37,admin.,single,university.degree,no,yes,no,cellular,aug,mon,108,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,blue-collar,married,basic.6y,no,yes,no,cellular,aug,mon,62,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,management,married,university.degree,no,no,yes,telephone,aug,mon,67,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,unemployed,married,university.degree,no,yes,no,cellular,aug,mon,143,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,housemaid,married,unknown,no,yes,no,cellular,aug,mon,152,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,services,married,basic.9y,no,yes,no,cellular,aug,mon,104,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,110,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,technician,married,professional.course,no,no,no,cellular,aug,mon,40,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,single,high.school,no,yes,no,telephone,aug,mon,176,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,mon,272,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,mon,122,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,management,married,university.degree,no,yes,no,cellular,aug,mon,59,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,mon,57,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,housemaid,married,basic.4y,unknown,no,no,cellular,aug,mon,463,14,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,mon,301,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,343,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,single,university.degree,no,yes,yes,cellular,aug,mon,508,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,admin.,single,university.degree,no,no,no,cellular,aug,mon,102,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,admin.,married,high.school,no,yes,no,cellular,aug,mon,1152,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+59,retired,married,unknown,no,no,no,cellular,aug,mon,284,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,management,married,university.degree,no,yes,no,cellular,aug,mon,14,12,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,mon,425,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,157,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,116,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,blue-collar,married,university.degree,no,no,no,cellular,aug,mon,115,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,single,university.degree,no,no,yes,cellular,aug,mon,146,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,housemaid,married,basic.4y,no,no,no,cellular,aug,mon,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,housemaid,married,basic.4y,no,no,no,cellular,aug,mon,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,services,married,high.school,unknown,yes,yes,cellular,aug,mon,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,mon,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,retired,married,high.school,unknown,no,no,cellular,aug,mon,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+43,technician,divorced,professional.course,unknown,no,yes,cellular,aug,mon,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,services,married,high.school,no,no,no,cellular,aug,mon,150,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,admin.,divorced,university.degree,no,yes,yes,cellular,aug,mon,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,single,high.school,no,yes,no,cellular,aug,mon,606,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+33,admin.,married,university.degree,no,no,no,cellular,aug,mon,177,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,technician,married,university.degree,no,no,no,cellular,aug,mon,250,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,housemaid,married,basic.4y,no,no,no,cellular,aug,mon,248,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,retired,married,basic.9y,no,yes,no,cellular,aug,mon,93,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,married,university.degree,no,yes,no,cellular,aug,mon,121,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,technician,married,professional.course,no,no,no,cellular,aug,mon,94,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,mon,65,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,services,married,high.school,no,yes,no,cellular,aug,mon,201,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,mon,324,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,154,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,blue-collar,married,university.degree,no,yes,yes,cellular,aug,mon,362,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,mon,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,self-employed,married,basic.9y,no,no,yes,cellular,aug,mon,140,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,admin.,single,university.degree,no,no,no,cellular,aug,mon,14,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,technician,married,professional.course,no,yes,no,cellular,aug,mon,386,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,admin.,married,unknown,no,yes,no,cellular,aug,mon,476,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,42,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,admin.,married,university.degree,no,yes,no,cellular,aug,mon,366,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+31,admin.,married,university.degree,no,no,no,cellular,aug,mon,74,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,admin.,married,university.degree,no,no,no,cellular,aug,mon,23,12,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,technician,married,university.degree,no,no,no,cellular,aug,mon,228,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,self-employed,married,university.degree,no,yes,no,cellular,aug,mon,112,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,services,married,high.school,unknown,yes,yes,cellular,aug,mon,115,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,management,married,university.degree,no,yes,yes,cellular,aug,mon,57,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,married,university.degree,no,yes,no,cellular,aug,mon,15,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,mon,728,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,management,divorced,university.degree,no,unknown,unknown,cellular,aug,mon,66,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,mon,262,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,services,married,high.school,no,no,no,cellular,aug,mon,72,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,9,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,entrepreneur,married,university.degree,no,no,no,cellular,aug,mon,99,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,11,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,mon,9,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,services,married,high.school,unknown,yes,yes,cellular,aug,mon,213,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,211,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,professional.course,no,yes,no,cellular,aug,mon,422,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,self-employed,married,basic.9y,unknown,yes,no,cellular,aug,mon,68,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,retired,married,basic.9y,no,no,no,cellular,aug,mon,105,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,married,professional.course,no,yes,yes,cellular,aug,mon,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,married,university.degree,no,yes,no,cellular,aug,mon,111,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,blue-collar,married,unknown,unknown,yes,no,cellular,aug,mon,36,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,management,married,university.degree,no,no,no,cellular,aug,mon,169,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,divorced,high.school,no,no,no,cellular,aug,mon,205,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,blue-collar,married,basic.4y,no,no,yes,cellular,aug,mon,734,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,blue-collar,married,basic.4y,no,no,no,cellular,aug,mon,484,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,single,university.degree,no,yes,no,cellular,aug,mon,14,13,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,married,university.degree,no,no,no,cellular,aug,mon,235,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,technician,married,professional.course,no,yes,no,cellular,aug,mon,256,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,management,married,university.degree,no,yes,no,cellular,aug,mon,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,mon,69,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,technician,divorced,professional.course,no,yes,yes,cellular,aug,mon,692,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,admin.,married,university.degree,no,yes,no,cellular,aug,mon,296,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,232,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,mon,151,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,management,married,university.degree,no,no,no,cellular,aug,mon,164,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,single,university.degree,no,no,no,cellular,aug,mon,198,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,retired,married,basic.4y,unknown,no,no,cellular,aug,mon,454,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,admin.,married,university.degree,no,no,yes,cellular,aug,mon,114,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,blue-collar,married,basic.6y,no,yes,no,cellular,aug,mon,64,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,services,married,professional.course,unknown,yes,yes,cellular,aug,mon,84,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,single,professional.course,no,no,no,cellular,aug,mon,203,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,self-employed,married,basic.9y,unknown,no,no,cellular,aug,mon,81,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,divorced,university.degree,no,no,no,cellular,aug,mon,731,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+46,admin.,married,university.degree,unknown,no,yes,cellular,aug,mon,184,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,single,high.school,no,yes,no,cellular,aug,mon,433,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,management,married,university.degree,no,no,no,cellular,aug,mon,361,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,mon,304,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,housemaid,married,basic.4y,unknown,yes,yes,cellular,aug,mon,160,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,admin.,married,unknown,no,yes,no,cellular,aug,mon,101,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,mon,53,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,admin.,divorced,university.degree,unknown,yes,yes,cellular,aug,mon,323,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,married,professional.course,no,yes,no,cellular,aug,mon,97,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,mon,340,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,services,married,high.school,no,yes,no,cellular,aug,mon,54,15,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,blue-collar,married,basic.4y,no,no,no,cellular,aug,mon,251,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,single,high.school,no,yes,no,cellular,aug,mon,87,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,services,married,high.school,unknown,yes,yes,cellular,aug,mon,454,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,171,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,blue-collar,married,basic.4y,no,no,no,cellular,aug,mon,134,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,blue-collar,divorced,basic.4y,no,yes,no,cellular,aug,mon,265,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,blue-collar,married,unknown,no,yes,no,cellular,aug,mon,280,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,mon,62,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,services,married,high.school,unknown,yes,no,telephone,aug,mon,41,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,married,university.degree,no,yes,no,cellular,aug,mon,318,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,self-employed,married,university.degree,unknown,no,yes,cellular,aug,mon,131,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,365,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,technician,married,high.school,unknown,yes,yes,cellular,aug,mon,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,mon,207,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,management,married,university.degree,no,no,no,cellular,aug,mon,105,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,99,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,197,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,mon,484,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,technician,divorced,professional.course,unknown,no,no,cellular,aug,mon,93,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,services,married,professional.course,unknown,no,no,cellular,aug,mon,153,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,technician,married,high.school,no,yes,no,cellular,aug,mon,630,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+31,technician,divorced,high.school,no,yes,no,cellular,aug,mon,81,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,141,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+43,technician,married,professional.course,unknown,no,no,cellular,aug,mon,67,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,housemaid,married,basic.4y,no,no,no,cellular,aug,mon,73,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,management,married,university.degree,no,no,no,cellular,aug,mon,106,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,admin.,single,university.degree,no,yes,no,cellular,aug,mon,160,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,divorced,high.school,no,no,no,cellular,aug,mon,50,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,management,married,university.degree,no,no,no,cellular,aug,mon,163,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,aug,mon,770,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,management,married,university.degree,no,no,no,cellular,aug,mon,313,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,348,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,mon,106,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+43,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,648,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,technician,married,high.school,no,no,no,cellular,aug,mon,256,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,divorced,high.school,no,yes,yes,cellular,aug,mon,56,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,technician,divorced,university.degree,no,yes,no,cellular,aug,mon,335,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,retired,married,basic.9y,no,yes,no,cellular,aug,mon,342,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,technician,single,university.degree,no,yes,no,cellular,aug,mon,109,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,management,married,university.degree,no,yes,no,cellular,aug,mon,159,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,124,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,378,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,admin.,single,professional.course,no,no,no,cellular,aug,mon,139,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,admin.,single,university.degree,unknown,yes,yes,cellular,aug,mon,170,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,unknown,married,unknown,unknown,no,no,cellular,aug,mon,51,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,retired,married,basic.4y,no,yes,no,cellular,aug,mon,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,56,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+60,retired,married,basic.4y,unknown,yes,yes,cellular,aug,mon,115,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,technician,divorced,professional.course,unknown,yes,no,cellular,aug,mon,714,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+54,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,43,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,management,married,university.degree,no,no,yes,cellular,aug,mon,168,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,admin.,married,university.degree,no,yes,no,cellular,aug,mon,67,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,self-employed,married,university.degree,no,no,no,cellular,aug,mon,36,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,married,university.degree,no,no,no,cellular,aug,mon,119,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,153,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,retired,married,basic.4y,unknown,no,no,cellular,aug,mon,431,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,admin.,married,high.school,unknown,yes,yes,cellular,aug,mon,127,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,single,high.school,no,yes,yes,cellular,aug,mon,63,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,mon,618,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,retired,married,professional.course,no,yes,no,cellular,aug,mon,202,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,392,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,technician,married,high.school,no,yes,no,cellular,aug,mon,226,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,retired,married,basic.4y,unknown,yes,no,cellular,aug,mon,144,13,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,admin.,married,university.degree,no,no,no,cellular,aug,mon,56,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,121,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,390,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,services,married,high.school,no,no,no,cellular,aug,mon,75,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+43,admin.,single,university.degree,no,no,no,cellular,aug,mon,99,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+43,technician,married,professional.course,no,no,yes,cellular,aug,mon,108,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,services,married,high.school,no,no,no,cellular,aug,mon,153,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,358,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,technician,married,professional.course,no,yes,no,cellular,aug,mon,63,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,management,married,university.degree,no,yes,no,cellular,aug,mon,308,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,married,professional.course,no,no,no,cellular,aug,mon,163,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,blue-collar,married,professional.course,no,yes,no,cellular,aug,mon,45,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,self-employed,married,university.degree,no,no,no,cellular,aug,mon,230,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,high.school,no,yes,yes,cellular,aug,mon,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,admin.,married,university.degree,no,no,no,cellular,aug,mon,98,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,technician,married,high.school,no,yes,no,cellular,aug,mon,83,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,technician,married,professional.course,no,no,no,cellular,aug,mon,194,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,housemaid,married,basic.4y,unknown,yes,yes,cellular,aug,mon,56,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,technician,married,university.degree,no,yes,no,cellular,aug,mon,1374,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+55,management,married,university.degree,no,no,no,cellular,aug,mon,372,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+47,unknown,married,unknown,unknown,yes,no,cellular,aug,tue,104,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,retired,married,university.degree,no,yes,no,cellular,aug,tue,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,tue,19,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,admin.,married,university.degree,no,no,no,cellular,aug,tue,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,admin.,single,university.degree,no,no,no,cellular,aug,tue,127,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,tue,122,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,admin.,single,university.degree,no,yes,no,cellular,aug,tue,179,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,admin.,married,basic.9y,no,yes,yes,cellular,aug,tue,160,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,retired,married,high.school,no,yes,no,cellular,aug,tue,106,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+60,management,married,university.degree,unknown,yes,no,cellular,aug,tue,66,14,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,housemaid,married,basic.4y,no,unknown,unknown,cellular,aug,tue,23,14,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,technician,divorced,professional.course,no,unknown,unknown,cellular,aug,tue,69,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,housemaid,married,basic.9y,no,yes,no,cellular,aug,tue,137,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,self-employed,married,university.degree,no,no,no,cellular,aug,tue,109,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,admin.,married,university.degree,no,yes,no,cellular,aug,tue,435,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,services,married,high.school,unknown,yes,no,cellular,aug,tue,209,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,admin.,married,university.degree,no,no,no,cellular,aug,tue,958,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+54,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,110,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,services,married,high.school,no,yes,no,cellular,aug,tue,170,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,self-employed,married,university.degree,no,unknown,unknown,cellular,aug,tue,95,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,731,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+50,admin.,divorced,high.school,no,no,no,cellular,aug,tue,664,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+56,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,479,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,divorced,high.school,no,yes,no,cellular,aug,tue,254,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,tue,427,12,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,housemaid,married,basic.4y,unknown,no,no,cellular,aug,tue,77,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,tue,60,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,services,married,high.school,no,yes,no,cellular,aug,tue,49,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,technician,married,university.degree,no,yes,no,cellular,aug,tue,102,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,admin.,married,university.degree,no,yes,no,cellular,aug,tue,62,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,73,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,109,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,management,married,university.degree,no,yes,no,cellular,aug,tue,0,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,retired,married,basic.9y,no,no,no,cellular,aug,tue,388,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+38,admin.,married,university.degree,no,no,no,cellular,aug,tue,85,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,self-employed,married,university.degree,no,no,no,cellular,aug,tue,42,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,23,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,146,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,100,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,55,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,technician,married,professional.course,no,no,no,cellular,aug,tue,67,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,housemaid,married,basic.4y,unknown,no,yes,cellular,aug,tue,235,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,technician,divorced,professional.course,no,no,no,cellular,aug,tue,94,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,admin.,married,high.school,unknown,no,no,cellular,aug,tue,135,15,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,single,professional.course,no,yes,no,cellular,aug,tue,60,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+49,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,tue,276,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,housemaid,married,basic.9y,no,yes,no,cellular,aug,tue,159,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,technician,married,university.degree,no,yes,no,cellular,aug,tue,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,technician,married,university.degree,no,yes,no,cellular,aug,tue,247,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,admin.,married,university.degree,no,no,no,cellular,aug,tue,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,technician,single,university.degree,no,yes,no,cellular,aug,tue,87,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,single,high.school,no,no,no,cellular,aug,tue,106,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,self-employed,married,university.degree,no,no,no,cellular,aug,tue,108,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,admin.,married,university.degree,no,no,no,cellular,aug,tue,312,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,technician,married,professional.course,no,yes,no,cellular,aug,tue,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,tue,178,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,technician,divorced,professional.course,unknown,yes,no,cellular,aug,tue,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,technician,divorced,professional.course,unknown,no,no,cellular,aug,tue,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,blue-collar,married,basic.4y,no,no,no,telephone,aug,tue,81,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,admin.,married,basic.9y,no,no,no,cellular,aug,tue,317,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,management,married,university.degree,unknown,no,no,cellular,aug,tue,217,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,management,married,university.degree,unknown,yes,no,cellular,aug,tue,196,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+34,technician,single,professional.course,no,yes,no,cellular,aug,tue,221,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,technician,single,high.school,no,yes,yes,cellular,aug,tue,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,management,married,university.degree,unknown,yes,yes,cellular,aug,tue,634,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,technician,divorced,professional.course,unknown,no,no,cellular,aug,tue,700,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,technician,divorced,high.school,no,no,no,cellular,aug,tue,67,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,self-employed,married,professional.course,no,no,no,cellular,aug,tue,80,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,married,professional.course,no,yes,no,cellular,aug,tue,185,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+60,self-employed,married,basic.9y,no,no,no,cellular,aug,tue,17,13,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,210,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,admin.,married,university.degree,no,yes,no,cellular,aug,tue,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,admin.,single,university.degree,no,no,yes,cellular,aug,tue,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,admin.,single,university.degree,no,no,no,cellular,aug,tue,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,252,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,housemaid,married,basic.9y,no,yes,no,cellular,aug,tue,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,blue-collar,married,professional.course,no,yes,yes,cellular,aug,tue,14,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,management,married,university.degree,no,yes,no,cellular,aug,tue,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,tue,748,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,technician,divorced,university.degree,no,no,no,cellular,aug,tue,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,divorced,professional.course,no,no,no,cellular,aug,tue,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,technician,divorced,university.degree,no,no,no,cellular,aug,tue,181,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,housemaid,married,high.school,no,yes,no,cellular,aug,tue,176,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,28,13,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,technician,divorced,university.degree,no,yes,no,cellular,aug,tue,610,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,technician,divorced,professional.course,no,no,no,cellular,aug,tue,279,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,management,divorced,university.degree,no,yes,no,cellular,aug,tue,345,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,technician,married,university.degree,no,no,no,cellular,aug,tue,191,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,admin.,married,university.degree,no,yes,no,cellular,aug,tue,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,18,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,technician,married,university.degree,no,yes,no,cellular,aug,tue,541,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,aug,tue,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,aug,tue,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,unknown,married,high.school,unknown,yes,no,cellular,aug,tue,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,single,professional.course,no,yes,yes,cellular,aug,tue,259,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,admin.,single,high.school,no,yes,no,cellular,aug,tue,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,blue-collar,married,high.school,no,unknown,unknown,cellular,aug,tue,153,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,unknown,married,high.school,unknown,yes,no,cellular,aug,tue,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,married,professional.course,no,no,no,cellular,aug,tue,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,technician,single,professional.course,no,yes,no,cellular,aug,tue,179,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,technician,single,professional.course,no,unknown,unknown,cellular,aug,tue,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,technician,single,professional.course,no,yes,no,cellular,aug,tue,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,technician,single,professional.course,no,no,no,cellular,aug,tue,358,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,286,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,divorced,professional.course,no,no,no,cellular,aug,tue,312,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,divorced,professional.course,no,no,no,cellular,aug,tue,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,management,married,university.degree,no,yes,no,cellular,aug,tue,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,divorced,professional.course,no,unknown,unknown,cellular,aug,tue,417,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,management,married,university.degree,no,no,no,cellular,aug,tue,85,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,admin.,married,high.school,no,no,no,cellular,aug,tue,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,married,professional.course,no,no,no,cellular,aug,tue,392,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,admin.,married,university.degree,no,no,no,cellular,aug,tue,85,12,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,24,12,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,admin.,married,university.degree,no,no,no,cellular,aug,tue,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,married,university.degree,no,yes,no,telephone,aug,tue,66,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,services,married,high.school,no,yes,no,cellular,aug,tue,460,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,housemaid,married,basic.4y,no,yes,no,cellular,aug,tue,183,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,technician,married,university.degree,no,yes,no,cellular,aug,tue,189,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,technician,married,high.school,no,no,no,cellular,aug,tue,73,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,technician,single,high.school,no,yes,no,cellular,aug,tue,130,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,retired,married,professional.course,no,no,no,cellular,aug,tue,139,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,admin.,single,high.school,no,yes,no,cellular,aug,tue,168,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,unemployed,divorced,high.school,no,yes,yes,cellular,aug,tue,99,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,tue,80,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,204,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,services,married,high.school,no,yes,no,cellular,aug,tue,43,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,technician,married,professional.course,unknown,no,no,telephone,aug,tue,15,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,services,married,high.school,no,no,no,cellular,aug,tue,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,tue,176,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,blue-collar,married,basic.9y,no,no,no,cellular,aug,tue,260,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,self-employed,married,basic.9y,no,no,no,cellular,aug,tue,83,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,technician,married,university.degree,no,yes,no,cellular,aug,tue,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,technician,married,university.degree,no,no,no,cellular,aug,tue,264,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,technician,married,university.degree,no,no,no,cellular,aug,tue,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,technician,married,university.degree,no,unknown,unknown,cellular,aug,tue,107,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,single,professional.course,no,yes,no,cellular,aug,tue,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,484,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,tue,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,technician,married,university.degree,no,yes,no,cellular,aug,tue,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,249,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,services,married,basic.4y,unknown,yes,no,cellular,aug,tue,240,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,384,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,single,professional.course,no,yes,no,cellular,aug,tue,71,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+30,technician,divorced,professional.course,unknown,yes,no,cellular,aug,tue,210,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,technician,married,high.school,no,no,no,cellular,aug,tue,111,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,professional.course,no,yes,no,cellular,aug,tue,211,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,services,married,basic.4y,unknown,yes,no,cellular,aug,tue,436,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,retired,married,basic.9y,no,no,no,cellular,aug,tue,22,27,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,management,married,university.degree,no,yes,no,cellular,aug,tue,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,tue,194,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,married,university.degree,no,no,no,cellular,aug,tue,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+39,technician,divorced,professional.course,unknown,yes,no,cellular,aug,tue,41,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,31,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,management,married,university.degree,no,no,no,cellular,aug,tue,17,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,married,university.degree,no,no,yes,cellular,aug,tue,301,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,retired,married,basic.9y,no,yes,yes,cellular,aug,tue,1223,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+35,technician,married,university.degree,no,yes,no,cellular,aug,tue,12,12,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,services,married,basic.4y,unknown,yes,no,cellular,aug,tue,1000,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+35,technician,married,professional.course,no,yes,no,cellular,aug,tue,333,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,admin.,married,university.degree,no,no,no,cellular,aug,tue,219,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,married,university.degree,no,no,no,cellular,aug,tue,241,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+43,technician,married,professional.course,unknown,no,no,cellular,aug,tue,471,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,married,university.degree,no,yes,no,cellular,aug,tue,55,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,74,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,technician,single,professional.course,no,yes,no,cellular,aug,tue,300,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,520,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+60,unknown,married,unknown,unknown,yes,no,cellular,aug,tue,130,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,unemployed,divorced,high.school,no,no,no,cellular,aug,tue,96,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,66,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,self-employed,married,university.degree,no,no,no,cellular,aug,tue,320,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,36,19,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,234,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,divorced,high.school,no,unknown,unknown,cellular,aug,tue,301,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,aug,tue,75,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,single,high.school,no,no,no,cellular,aug,tue,78,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+32,technician,single,high.school,no,no,no,cellular,aug,tue,162,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,housemaid,married,unknown,unknown,yes,no,cellular,aug,tue,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+41,unemployed,divorced,professional.course,no,unknown,unknown,cellular,aug,tue,271,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+40,technician,single,high.school,no,yes,no,cellular,aug,tue,76,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,services,married,high.school,unknown,no,no,cellular,aug,tue,10,13,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,blue-collar,married,basic.4y,no,no,no,telephone,aug,tue,39,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,unknown,married,unknown,unknown,no,no,cellular,aug,tue,12,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+33,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,30,14,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,technician,married,professional.course,no,no,no,cellular,aug,tue,59,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+50,housemaid,married,unknown,no,no,no,cellular,aug,tue,287,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,blue-collar,married,basic.6y,no,yes,no,cellular,aug,tue,140,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,aug,tue,63,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,admin.,married,university.degree,no,yes,no,cellular,aug,tue,358,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+54,admin.,married,university.degree,no,yes,no,cellular,aug,tue,120,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+60,technician,married,university.degree,no,yes,no,cellular,aug,tue,11,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,technician,single,university.degree,unknown,no,no,cellular,aug,tue,532,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+43,management,married,university.degree,no,no,no,cellular,aug,tue,175,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,tue,157,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,admin.,married,university.degree,no,yes,no,cellular,aug,tue,112,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,admin.,divorced,university.degree,no,no,yes,cellular,aug,tue,264,19,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,aug,tue,172,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,entrepreneur,married,high.school,no,yes,no,cellular,aug,tue,435,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,aug,tue,84,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,admin.,married,university.degree,no,yes,no,cellular,aug,tue,653,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,technician,married,professional.course,no,no,no,cellular,aug,tue,205,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,tue,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,technician,married,high.school,no,no,no,cellular,aug,tue,100,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,management,married,university.degree,no,yes,no,cellular,aug,tue,133,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,technician,single,university.degree,no,no,no,cellular,aug,tue,277,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,entrepreneur,married,high.school,no,yes,yes,cellular,aug,tue,303,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,technician,married,high.school,no,yes,yes,cellular,aug,tue,263,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,265,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+53,unknown,married,basic.4y,unknown,no,no,cellular,aug,tue,107,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,admin.,married,university.degree,no,no,no,cellular,aug,tue,77,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,management,married,university.degree,no,no,yes,cellular,aug,tue,130,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,services,married,high.school,no,no,no,cellular,aug,tue,377,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,tue,155,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+52,blue-collar,married,high.school,no,yes,no,cellular,aug,tue,454,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,admin.,married,university.degree,unknown,yes,yes,cellular,aug,tue,61,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,services,married,high.school,no,yes,no,cellular,aug,tue,183,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,technician,single,professional.course,no,yes,yes,cellular,aug,tue,218,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,management,married,university.degree,no,yes,yes,cellular,aug,tue,384,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+31,management,married,university.degree,no,yes,no,cellular,aug,tue,57,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,209,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,technician,married,high.school,no,no,no,cellular,aug,tue,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,tue,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,admin.,married,university.degree,no,unknown,unknown,cellular,aug,tue,225,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+44,technician,married,professional.course,no,no,no,cellular,aug,tue,168,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+45,services,married,basic.6y,unknown,no,no,cellular,aug,tue,98,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,tue,366,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+29,services,married,professional.course,unknown,yes,no,cellular,aug,tue,2089,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+54,admin.,married,high.school,no,no,no,cellular,aug,tue,84,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,admin.,married,professional.course,no,no,no,cellular,aug,tue,369,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,125,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+37,blue-collar,single,professional.course,no,no,no,cellular,aug,tue,109,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+48,admin.,divorced,university.degree,unknown,no,no,cellular,aug,tue,58,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,tue,35,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,retired,married,basic.4y,no,no,no,cellular,aug,tue,556,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes
+47,admin.,married,university.degree,no,yes,no,cellular,aug,tue,100,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+51,services,married,high.school,unknown,no,yes,cellular,aug,tue,20,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+42,self-employed,single,university.degree,no,yes,no,cellular,aug,tue,133,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+57,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,housemaid,married,basic.4y,no,no,no,cellular,aug,tue,240,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+56,services,divorced,high.school,unknown,yes,no,cellular,aug,tue,59,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+46,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,515,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+59,retired,married,university.degree,no,yes,no,cellular,aug,tue,130,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+55,blue-collar,married,basic.9y,no,no,no,telephone,aug,tue,361,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+36,technician,married,university.degree,no,no,no,cellular,aug,tue,99,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,blue-collar,divorced,basic.6y,unknown,no,no,cellular,aug,tue,272,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+58,housemaid,married,professional.course,no,yes,no,cellular,aug,tue,98,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no
+47,technician,married,professional.course,no,yes,no,cellular,aug,wed,58,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,management,married,university.degree,no,yes,no,cellular,aug,wed,52,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,technician,divorced,professional.course,no,no,no,cellular,aug,wed,157,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,technician,married,professional.course,no,yes,no,cellular,aug,wed,609,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+37,blue-collar,single,professional.course,no,no,no,cellular,aug,wed,94,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,admin.,married,university.degree,no,no,no,cellular,aug,wed,108,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,116,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,87,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,blue-collar,married,high.school,no,yes,no,cellular,aug,wed,128,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,admin.,married,university.degree,no,yes,no,cellular,aug,wed,581,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+52,housemaid,married,basic.4y,no,yes,no,cellular,aug,wed,20,24,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,admin.,married,university.degree,no,yes,no,cellular,aug,wed,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,18,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,admin.,married,basic.9y,no,yes,yes,cellular,aug,wed,106,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,admin.,married,university.degree,no,no,no,cellular,aug,wed,154,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,wed,130,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,technician,married,professional.course,no,no,no,cellular,aug,wed,146,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,technician,divorced,high.school,no,yes,no,cellular,aug,wed,56,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,professional.course,no,no,no,cellular,aug,wed,185,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,high.school,no,no,no,cellular,aug,wed,1033,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+37,blue-collar,single,professional.course,no,yes,no,cellular,aug,wed,503,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,technician,married,professional.course,no,yes,no,cellular,aug,wed,95,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,admin.,divorced,professional.course,unknown,yes,no,cellular,aug,wed,87,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,professional.course,no,no,no,cellular,aug,wed,105,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,retired,married,basic.4y,unknown,yes,no,cellular,aug,wed,57,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,unknown,married,basic.4y,unknown,no,no,cellular,aug,wed,124,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,unknown,married,unknown,unknown,no,no,cellular,aug,wed,52,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,single,high.school,no,yes,no,cellular,aug,wed,219,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,admin.,married,university.degree,no,yes,no,cellular,aug,wed,281,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,entrepreneur,married,high.school,no,no,no,cellular,aug,wed,57,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,retired,married,university.degree,no,no,no,cellular,aug,wed,97,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,155,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,married,professional.course,no,yes,no,cellular,aug,wed,84,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,technician,married,high.school,no,yes,no,cellular,aug,wed,13,14,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,management,married,university.degree,no,yes,no,cellular,aug,wed,130,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,technician,married,professional.course,no,yes,yes,cellular,aug,wed,136,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,admin.,married,university.degree,unknown,no,no,telephone,aug,wed,39,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,technician,married,high.school,no,yes,no,cellular,aug,wed,360,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,153,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,retired,married,professional.course,no,yes,no,cellular,aug,wed,156,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+60,retired,married,professional.course,no,no,no,cellular,aug,wed,199,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,unknown,married,basic.4y,unknown,yes,no,cellular,aug,wed,23,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,management,married,university.degree,no,yes,no,cellular,aug,wed,181,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,technician,married,professional.course,no,no,no,cellular,aug,wed,39,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,wed,147,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,admin.,single,university.degree,no,no,no,cellular,aug,wed,113,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,admin.,married,university.degree,no,yes,no,cellular,aug,wed,519,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+57,retired,married,high.school,unknown,yes,yes,cellular,aug,wed,223,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,243,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,wed,203,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,admin.,divorced,university.degree,unknown,no,no,cellular,aug,wed,191,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,technician,single,professional.course,no,yes,no,cellular,aug,wed,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,116,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,technician,divorced,high.school,no,yes,no,cellular,aug,wed,87,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,technician,married,professional.course,no,yes,no,cellular,aug,wed,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,admin.,married,university.degree,no,yes,no,cellular,aug,wed,219,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,technician,married,university.degree,no,yes,no,cellular,aug,wed,512,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+44,technician,married,professional.course,no,yes,yes,cellular,aug,wed,236,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,housemaid,married,basic.4y,no,yes,no,cellular,aug,wed,130,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+60,retired,married,professional.course,no,no,no,cellular,aug,wed,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,retired,married,professional.course,unknown,no,no,cellular,aug,wed,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,technician,married,professional.course,no,no,no,cellular,aug,wed,85,14,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,divorced,university.degree,no,no,yes,cellular,aug,wed,69,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,retired,married,basic.4y,unknown,yes,no,cellular,aug,wed,78,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,wed,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,services,married,high.school,no,yes,no,cellular,aug,wed,63,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,admin.,married,high.school,no,yes,yes,cellular,aug,wed,352,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,technician,married,university.degree,no,yes,no,cellular,aug,wed,127,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,254,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,admin.,married,basic.9y,no,no,yes,cellular,aug,wed,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,single,high.school,no,yes,no,cellular,aug,wed,88,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,admin.,married,university.degree,no,no,no,cellular,aug,wed,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,self-employed,married,university.degree,no,yes,no,cellular,aug,wed,217,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,married,professional.course,no,yes,no,cellular,aug,wed,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,admin.,divorced,university.degree,no,no,yes,cellular,aug,wed,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,125,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,management,married,university.degree,no,yes,no,telephone,aug,wed,220,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,single,high.school,no,yes,no,telephone,aug,wed,9,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,admin.,married,high.school,no,yes,no,cellular,aug,wed,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,technician,single,university.degree,no,yes,no,cellular,aug,wed,763,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+31,management,married,university.degree,no,no,no,cellular,aug,wed,129,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,technician,married,professional.course,no,no,no,cellular,aug,wed,976,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+51,technician,married,high.school,no,yes,no,cellular,aug,wed,549,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,admin.,married,university.degree,no,yes,no,cellular,aug,wed,342,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,technician,single,university.degree,no,yes,no,cellular,aug,wed,79,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,married,university.degree,no,no,no,cellular,aug,wed,63,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,119,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,technician,married,university.degree,no,no,no,cellular,aug,wed,15,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,technician,divorced,professional.course,no,no,no,cellular,aug,wed,308,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,admin.,married,professional.course,no,yes,no,cellular,aug,wed,103,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,blue-collar,married,high.school,no,no,no,cellular,aug,wed,312,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+60,retired,married,high.school,no,unknown,unknown,cellular,aug,wed,590,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,unknown,married,basic.4y,unknown,no,no,cellular,aug,wed,116,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,married,university.degree,no,yes,no,cellular,aug,wed,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,admin.,married,high.school,no,no,no,cellular,aug,wed,28,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,retired,married,basic.4y,no,no,no,cellular,aug,wed,50,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,97,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,blue-collar,married,unknown,no,yes,no,cellular,aug,wed,94,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,retired,married,professional.course,no,no,no,cellular,aug,wed,508,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,blue-collar,married,basic.4y,unknown,yes,no,telephone,aug,wed,29,21,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,admin.,married,university.degree,no,yes,no,cellular,aug,wed,116,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,247,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,66,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,admin.,married,university.degree,no,yes,no,cellular,aug,wed,335,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,married,university.degree,no,yes,no,cellular,aug,wed,38,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,technician,married,professional.course,no,unknown,unknown,cellular,aug,wed,89,16,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,married,university.degree,no,yes,no,cellular,aug,wed,1129,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+54,technician,married,professional.course,no,yes,no,cellular,aug,wed,14,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,unknown,married,basic.4y,unknown,no,no,cellular,aug,wed,49,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,married,professional.course,no,no,no,telephone,aug,wed,645,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+47,admin.,married,university.degree,no,yes,no,cellular,aug,wed,176,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,self-employed,married,university.degree,no,yes,no,cellular,aug,wed,15,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,housemaid,married,basic.4y,no,no,yes,cellular,aug,wed,10,14,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,admin.,married,high.school,no,no,no,cellular,aug,wed,114,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,management,married,university.degree,no,no,no,cellular,aug,wed,13,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,retired,married,professional.course,no,yes,no,telephone,aug,wed,96,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,511,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,technician,divorced,university.degree,no,yes,yes,cellular,aug,wed,86,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,technician,divorced,professional.course,no,no,no,cellular,aug,wed,516,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,technician,married,professional.course,no,yes,no,cellular,aug,wed,300,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,technician,single,professional.course,unknown,yes,yes,cellular,aug,wed,94,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,technician,divorced,high.school,no,yes,no,cellular,aug,wed,125,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,admin.,single,university.degree,no,no,no,cellular,aug,wed,125,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,admin.,divorced,university.degree,no,no,yes,cellular,aug,wed,12,14,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,technician,divorced,professional.course,unknown,yes,yes,cellular,aug,wed,212,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,wed,178,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+48,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,wed,67,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,admin.,married,high.school,no,yes,yes,cellular,aug,wed,19,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,technician,married,professional.course,no,no,yes,cellular,aug,wed,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,divorced,professional.course,no,yes,no,cellular,aug,wed,122,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,wed,27,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,technician,single,university.degree,no,yes,no,cellular,aug,wed,60,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,admin.,married,university.degree,no,yes,no,cellular,aug,wed,34,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,management,married,university.degree,no,no,no,cellular,aug,wed,561,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,wed,120,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,technician,single,high.school,no,no,no,cellular,aug,wed,74,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,admin.,married,university.degree,no,no,no,cellular,aug,wed,214,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,wed,523,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+37,technician,married,university.degree,no,no,no,cellular,aug,wed,107,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+59,retired,married,university.degree,no,yes,no,cellular,aug,wed,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,divorced,professional.course,no,no,no,cellular,aug,wed,16,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,technician,married,university.degree,no,yes,no,cellular,aug,wed,184,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,retired,divorced,university.degree,unknown,no,no,cellular,aug,wed,168,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,76,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,120,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,technician,married,university.degree,no,yes,no,cellular,aug,wed,138,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+52,technician,divorced,professional.course,no,no,no,cellular,aug,wed,79,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,technician,married,professional.course,no,yes,no,cellular,aug,wed,78,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,technician,divorced,professional.course,unknown,no,no,cellular,aug,wed,36,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,117,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,unknown,married,unknown,no,yes,yes,cellular,aug,wed,60,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+42,management,married,university.degree,no,yes,yes,cellular,aug,wed,89,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,wed,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,technician,divorced,professional.course,no,yes,yes,cellular,aug,wed,11,12,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,technician,married,professional.course,unknown,no,no,cellular,aug,wed,18,15,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,university.degree,no,no,no,cellular,aug,wed,157,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,unemployed,married,university.degree,no,yes,no,cellular,aug,wed,186,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,admin.,married,high.school,no,no,no,cellular,aug,wed,569,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,admin.,married,basic.9y,unknown,yes,no,cellular,aug,wed,77,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,admin.,married,basic.9y,unknown,no,no,cellular,aug,wed,19,17,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,professional.course,no,no,no,cellular,aug,wed,218,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,43,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,admin.,married,professional.course,no,no,no,cellular,aug,wed,37,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,technician,married,university.degree,no,no,no,cellular,aug,wed,1642,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes
+44,technician,married,professional.course,no,no,no,cellular,aug,wed,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,technician,married,professional.course,no,no,no,cellular,aug,wed,202,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,wed,316,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,admin.,married,university.degree,no,yes,no,cellular,aug,wed,35,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+29,technician,single,professional.course,no,no,no,cellular,aug,wed,26,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,services,married,basic.9y,unknown,yes,no,cellular,aug,wed,59,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,management,married,university.degree,no,yes,no,cellular,aug,wed,118,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,wed,72,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,self-employed,married,basic.4y,no,no,no,cellular,aug,wed,106,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,self-employed,married,basic.4y,no,no,no,cellular,aug,wed,263,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,married,high.school,unknown,yes,no,cellular,aug,wed,93,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,admin.,married,high.school,no,no,no,cellular,aug,wed,231,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,technician,single,professional.course,no,yes,no,cellular,aug,wed,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+37,technician,married,university.degree,no,no,no,cellular,aug,wed,141,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+32,unemployed,married,university.degree,no,yes,no,cellular,aug,wed,97,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+58,housemaid,married,basic.9y,no,no,no,cellular,aug,wed,88,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,unemployed,married,basic.9y,unknown,no,yes,cellular,aug,wed,88,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,technician,divorced,professional.course,no,yes,yes,cellular,aug,wed,22,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,technician,divorced,professional.course,no,no,no,cellular,aug,wed,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,technician,married,professional.course,no,no,no,cellular,aug,wed,78,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,admin.,divorced,high.school,no,yes,no,cellular,aug,wed,293,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+56,retired,married,basic.6y,unknown,yes,no,cellular,aug,wed,39,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,technician,married,high.school,no,yes,no,cellular,aug,wed,67,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+45,admin.,single,university.degree,no,yes,no,cellular,aug,wed,25,12,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,145,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,divorced,professional.course,no,no,no,cellular,aug,wed,167,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,admin.,single,university.degree,no,yes,no,cellular,aug,wed,126,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,admin.,single,university.degree,no,no,no,cellular,aug,wed,267,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,23,17,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,unknown,married,unknown,no,no,yes,cellular,aug,wed,111,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,technician,married,university.degree,no,yes,no,cellular,aug,wed,206,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,unemployed,married,university.degree,no,no,no,cellular,aug,wed,95,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+47,technician,married,university.degree,no,yes,no,cellular,aug,wed,345,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,married,professional.course,no,no,yes,cellular,aug,wed,81,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+36,management,married,university.degree,no,no,no,cellular,aug,wed,46,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,married,professional.course,no,no,no,cellular,aug,wed,154,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,admin.,married,university.degree,no,no,no,cellular,aug,wed,85,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+35,admin.,single,university.degree,no,no,yes,cellular,aug,wed,448,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+50,management,married,professional.course,unknown,no,no,cellular,aug,wed,165,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,admin.,married,university.degree,no,no,no,cellular,aug,wed,53,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,admin.,married,university.degree,no,no,no,telephone,aug,wed,296,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+30,technician,single,university.degree,no,no,no,cellular,aug,wed,202,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+49,unemployed,married,basic.4y,no,yes,no,cellular,aug,wed,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+54,housemaid,married,basic.4y,unknown,no,no,telephone,aug,wed,23,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+38,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,70,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,aug,wed,787,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+44,technician,married,professional.course,no,yes,no,cellular,aug,wed,27,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,admin.,single,university.degree,no,no,no,cellular,aug,wed,183,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,admin.,married,university.degree,no,yes,no,cellular,aug,wed,115,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,wed,62,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+40,technician,single,university.degree,no,yes,no,telephone,aug,wed,554,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+53,technician,married,professional.course,unknown,yes,yes,cellular,aug,wed,276,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+39,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,145,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+41,technician,married,professional.course,no,yes,no,cellular,aug,wed,112,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+43,admin.,divorced,university.degree,no,yes,yes,cellular,aug,wed,95,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+55,admin.,married,high.school,no,yes,yes,cellular,aug,wed,61,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+46,admin.,married,high.school,no,no,no,cellular,aug,wed,63,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+57,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,104,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+51,technician,married,professional.course,no,yes,no,cellular,aug,wed,118,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no
+31,technician,single,university.degree,no,yes,no,cellular,aug,thu,34,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+41,technician,divorced,high.school,no,no,no,cellular,aug,thu,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,services,married,university.degree,unknown,no,yes,cellular,aug,thu,149,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+41,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,583,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes
+51,technician,married,professional.course,no,yes,no,cellular,aug,thu,81,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,thu,55,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,technician,single,university.degree,no,yes,yes,cellular,aug,thu,73,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,technician,single,university.degree,no,yes,no,cellular,aug,thu,131,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+36,self-employed,single,university.degree,no,yes,yes,cellular,aug,thu,118,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+46,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,81,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,66,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,77,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+48,technician,married,university.degree,no,no,no,cellular,aug,thu,52,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+44,technician,married,professional.course,no,yes,no,cellular,aug,thu,236,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+43,technician,married,university.degree,no,yes,no,cellular,aug,thu,74,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+29,technician,single,professional.course,no,yes,no,cellular,aug,thu,94,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+43,technician,married,professional.course,no,no,no,cellular,aug,thu,211,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+44,technician,married,professional.course,no,no,no,cellular,aug,thu,536,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+56,self-employed,married,high.school,no,yes,no,cellular,aug,thu,210,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+39,admin.,married,university.degree,unknown,no,no,cellular,aug,thu,144,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,admin.,single,university.degree,no,yes,no,cellular,aug,thu,85,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,services,married,university.degree,unknown,no,no,cellular,aug,thu,74,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+40,admin.,married,university.degree,no,no,no,cellular,aug,thu,13,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,technician,married,professional.course,no,yes,no,cellular,aug,thu,192,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+57,management,married,university.degree,no,yes,no,cellular,aug,thu,17,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,thu,116,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,technician,single,university.degree,no,no,no,cellular,aug,thu,110,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,aug,thu,148,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+41,admin.,married,university.degree,no,no,no,cellular,aug,thu,67,13,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,technician,single,university.degree,no,no,no,cellular,aug,thu,146,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,technician,single,university.degree,no,yes,no,cellular,aug,thu,979,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes
+33,services,married,professional.course,no,yes,no,cellular,aug,thu,51,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+40,admin.,single,university.degree,no,no,no,cellular,aug,thu,101,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,aug,thu,107,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,technician,married,professional.course,unknown,no,no,cellular,aug,thu,78,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+29,technician,married,professional.course,no,yes,no,cellular,aug,thu,965,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes
+32,unemployed,married,university.degree,no,yes,no,cellular,aug,thu,85,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+41,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,26,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,thu,13,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+51,technician,married,professional.course,no,yes,no,cellular,aug,thu,47,13,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+57,technician,married,university.degree,unknown,yes,yes,cellular,aug,thu,30,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+43,technician,married,university.degree,no,no,no,cellular,aug,thu,38,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,aug,thu,137,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+41,admin.,married,university.degree,no,no,no,cellular,aug,thu,84,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,admin.,single,university.degree,no,yes,no,cellular,aug,thu,94,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+46,admin.,married,high.school,no,yes,no,cellular,aug,thu,91,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+55,technician,married,high.school,no,no,yes,cellular,aug,thu,71,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,technician,single,university.degree,no,yes,no,cellular,aug,thu,210,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+29,technician,single,professional.course,no,no,no,cellular,aug,thu,121,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,thu,96,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,aug,thu,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+52,admin.,married,basic.9y,no,yes,no,cellular,aug,thu,82,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+41,technician,divorced,professional.course,no,yes,yes,cellular,aug,thu,100,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+34,technician,married,university.degree,no,unknown,unknown,cellular,aug,thu,81,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,married,university.degree,no,no,no,cellular,aug,thu,180,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+45,admin.,married,unknown,unknown,no,no,cellular,aug,thu,54,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,management,married,university.degree,no,yes,no,cellular,aug,thu,108,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+50,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,84,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+42,management,married,university.degree,no,yes,no,cellular,aug,thu,161,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,services,married,university.degree,unknown,yes,no,cellular,aug,thu,198,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+40,admin.,married,university.degree,no,no,no,cellular,aug,thu,262,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+50,unemployed,married,basic.9y,unknown,no,no,cellular,aug,thu,74,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,admin.,single,university.degree,no,no,no,cellular,aug,thu,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,married,university.degree,no,no,no,cellular,aug,thu,23,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,109,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,125,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,12,15,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+41,admin.,married,university.degree,no,yes,no,cellular,aug,thu,12,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,technician,single,professional.course,no,yes,no,cellular,aug,thu,19,12,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,thu,87,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+59,retired,married,university.degree,no,yes,no,cellular,aug,thu,17,18,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,services,married,professional.course,no,yes,no,cellular,aug,thu,56,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,technician,married,professional.course,no,no,no,cellular,aug,thu,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,thu,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,admin.,single,university.degree,no,no,no,cellular,aug,thu,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+46,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,thu,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+46,technician,married,professional.course,no,no,no,cellular,aug,thu,81,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+40,admin.,divorced,high.school,no,no,no,cellular,aug,thu,46,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+43,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,94,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,services,married,professional.course,no,yes,no,cellular,aug,thu,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+38,unknown,married,unknown,no,no,no,cellular,aug,thu,79,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,technician,single,university.degree,no,yes,yes,cellular,aug,thu,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,services,married,professional.course,no,yes,yes,cellular,aug,thu,331,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+46,technician,married,university.degree,no,yes,no,cellular,aug,thu,13,14,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+46,technician,divorced,university.degree,unknown,no,no,cellular,aug,thu,16,18,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+48,admin.,single,university.degree,no,yes,no,cellular,aug,thu,44,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,thu,271,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,aug,thu,86,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+50,unemployed,married,basic.9y,unknown,yes,no,telephone,aug,thu,192,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+46,admin.,married,high.school,no,unknown,unknown,cellular,aug,thu,180,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+58,housemaid,married,basic.9y,no,no,no,cellular,aug,thu,54,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+56,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+57,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,thu,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+44,technician,married,professional.course,no,no,no,cellular,aug,thu,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,technician,married,university.degree,no,no,no,cellular,aug,thu,716,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes
+57,management,married,university.degree,no,yes,no,cellular,aug,thu,77,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+40,admin.,single,university.degree,no,no,yes,cellular,aug,thu,14,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+36,admin.,married,university.degree,no,no,no,cellular,aug,thu,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+48,services,married,basic.9y,no,no,no,cellular,aug,thu,110,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+47,admin.,married,high.school,no,yes,yes,cellular,aug,thu,59,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,admin.,married,university.degree,unknown,no,yes,cellular,aug,thu,192,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+58,self-employed,married,basic.6y,unknown,yes,no,cellular,aug,thu,157,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,admin.,married,university.degree,unknown,no,no,cellular,aug,thu,535,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes
+41,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,15,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,admin.,married,university.degree,unknown,no,yes,cellular,aug,thu,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+44,admin.,married,basic.9y,unknown,yes,yes,cellular,aug,thu,452,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes
+52,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,205,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+40,technician,single,professional.course,unknown,yes,no,cellular,aug,thu,302,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+34,technician,married,university.degree,no,yes,no,cellular,aug,thu,99,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,thu,151,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,thu,56,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+49,admin.,married,university.degree,unknown,no,no,cellular,aug,thu,54,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,technician,married,high.school,no,yes,no,cellular,aug,thu,81,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,technician,married,university.degree,unknown,no,no,cellular,aug,thu,88,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+48,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,122,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,technician,married,university.degree,no,yes,yes,cellular,aug,thu,180,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,aug,thu,82,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+40,technician,divorced,professional.course,no,no,yes,cellular,aug,thu,49,22,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+29,management,single,university.degree,no,yes,no,cellular,aug,thu,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,71,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+54,management,married,university.degree,no,yes,yes,cellular,aug,thu,121,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,technician,married,university.degree,no,no,no,cellular,aug,thu,66,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+53,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,70,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+45,admin.,married,unknown,unknown,yes,yes,cellular,aug,thu,105,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+41,admin.,married,university.degree,no,no,no,cellular,aug,thu,12,13,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+47,technician,married,university.degree,no,yes,no,cellular,aug,thu,13,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+57,retired,divorced,university.degree,unknown,no,no,cellular,aug,thu,327,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+38,unknown,married,unknown,no,yes,no,cellular,aug,thu,44,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,technician,married,professional.course,no,yes,no,cellular,aug,thu,183,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+46,admin.,married,high.school,no,yes,no,cellular,aug,thu,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,unemployed,married,university.degree,no,no,no,cellular,aug,thu,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+46,services,married,basic.9y,unknown,no,no,cellular,aug,thu,70,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+50,housemaid,married,basic.9y,no,yes,no,cellular,aug,thu,20,12,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+57,technician,married,university.degree,unknown,no,no,cellular,aug,thu,23,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,thu,117,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,aug,thu,28,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+50,admin.,married,university.degree,no,yes,no,cellular,aug,thu,203,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+53,housemaid,married,basic.4y,unknown,yes,no,telephone,aug,thu,51,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,unemployed,married,university.degree,no,yes,no,cellular,aug,thu,22,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,technician,single,university.degree,no,yes,no,cellular,aug,thu,31,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+46,admin.,married,high.school,no,no,no,cellular,aug,thu,16,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+42,housemaid,married,university.degree,no,yes,yes,cellular,aug,thu,2372,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes
+39,admin.,married,university.degree,no,yes,no,cellular,aug,thu,86,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,management,married,university.degree,no,no,yes,cellular,aug,thu,308,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+46,technician,divorced,professional.course,no,no,no,cellular,aug,thu,93,15,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+57,management,married,university.degree,no,yes,no,cellular,aug,thu,203,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+41,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,68,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+41,admin.,married,university.degree,no,yes,no,cellular,aug,thu,19,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,thu,98,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,technician,single,university.degree,no,yes,no,cellular,aug,thu,9,14,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+54,management,married,university.degree,no,no,no,cellular,aug,thu,11,21,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+58,self-employed,married,basic.6y,unknown,yes,no,cellular,aug,thu,79,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+47,admin.,married,high.school,unknown,no,no,cellular,aug,thu,144,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+41,self-employed,married,basic.6y,no,yes,no,telephone,aug,thu,85,15,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,thu,1126,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes
+58,retired,married,university.degree,unknown,no,no,cellular,aug,thu,17,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,technician,single,professional.course,no,yes,no,cellular,aug,thu,16,12,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+39,admin.,single,university.degree,no,yes,no,cellular,aug,thu,276,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,single,university.degree,no,no,no,telephone,aug,thu,146,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+48,admin.,single,university.degree,no,no,no,cellular,aug,thu,183,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+58,retired,married,university.degree,unknown,no,no,cellular,aug,thu,156,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,thu,1037,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+47,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,507,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+44,admin.,married,basic.9y,unknown,yes,yes,cellular,aug,thu,18,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+38,unknown,married,unknown,no,yes,no,cellular,aug,thu,27,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,technician,single,professional.course,no,yes,no,cellular,aug,thu,17,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+34,admin.,married,university.degree,no,yes,yes,telephone,aug,thu,19,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,technician,married,university.degree,no,no,no,cellular,aug,thu,12,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,admin.,married,university.degree,no,no,no,cellular,aug,thu,32,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+42,housemaid,married,university.degree,no,unknown,unknown,telephone,aug,thu,12,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+45,admin.,married,unknown,unknown,no,no,cellular,aug,thu,7,14,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+42,management,married,university.degree,no,yes,no,cellular,aug,thu,715,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,management,married,university.degree,no,no,no,cellular,aug,thu,56,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,technician,single,university.degree,no,yes,yes,cellular,aug,thu,195,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+50,admin.,married,high.school,no,yes,yes,cellular,aug,thu,95,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,technician,single,university.degree,no,no,no,cellular,aug,thu,83,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,aug,thu,66,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+34,technician,married,university.degree,no,no,no,cellular,aug,thu,8,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+50,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,thu,46,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,thu,25,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,thu,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+39,technician,married,university.degree,unknown,yes,no,cellular,aug,thu,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+45,management,married,university.degree,no,yes,no,cellular,aug,thu,26,15,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,technician,single,university.degree,no,yes,no,cellular,aug,thu,958,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+39,technician,married,university.degree,unknown,yes,no,cellular,aug,thu,88,18,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,20,20,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,admin.,single,university.degree,no,yes,yes,telephone,aug,thu,50,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,thu,45,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,technician,single,university.degree,no,yes,no,cellular,aug,thu,18,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+43,technician,divorced,high.school,unknown,yes,no,cellular,aug,thu,248,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,49,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+45,services,married,professional.course,no,yes,no,cellular,aug,thu,16,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+40,technician,married,professional.course,no,yes,no,cellular,aug,thu,258,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+48,blue-collar,married,basic.9y,no,no,no,cellular,aug,thu,13,14,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+39,technician,married,university.degree,unknown,no,no,cellular,aug,thu,64,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,technician,single,university.degree,no,no,no,cellular,aug,thu,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+39,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,23,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,technician,married,university.degree,no,yes,no,cellular,aug,thu,35,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+55,unknown,married,unknown,unknown,yes,no,cellular,aug,thu,16,16,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+53,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,158,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+56,blue-collar,married,high.school,no,yes,no,cellular,aug,thu,69,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+45,admin.,married,university.degree,no,yes,no,cellular,aug,thu,77,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+45,services,married,professional.course,no,yes,yes,cellular,aug,thu,65,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+45,technician,divorced,professional.course,no,no,no,cellular,aug,thu,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+52,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,31,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+39,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,technician,married,professional.course,no,no,no,cellular,aug,thu,140,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+53,self-employed,married,university.degree,no,no,no,cellular,aug,thu,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+53,self-employed,married,university.degree,no,yes,no,cellular,aug,thu,171,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+60,admin.,married,basic.9y,no,no,no,cellular,aug,thu,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,thu,289,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+50,management,married,university.degree,no,yes,no,cellular,aug,thu,77,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,technician,single,university.degree,no,no,no,cellular,aug,thu,68,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+48,technician,married,university.degree,no,no,no,cellular,aug,thu,42,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,thu,142,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,12,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,thu,402,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,13,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,technician,single,high.school,no,yes,no,cellular,aug,thu,77,12,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,35,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+53,management,married,university.degree,no,no,no,cellular,aug,thu,88,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+59,retired,married,university.degree,no,yes,no,cellular,aug,thu,50,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,aug,thu,54,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,technician,married,professional.course,no,no,no,cellular,aug,thu,66,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,self-employed,married,high.school,no,yes,no,cellular,aug,thu,29,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+60,admin.,married,basic.9y,no,yes,no,cellular,aug,thu,259,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,thu,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,technician,single,professional.course,no,yes,no,cellular,aug,thu,74,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,admin.,single,university.degree,no,yes,no,telephone,aug,thu,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,technician,married,professional.course,no,yes,yes,cellular,aug,thu,22,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,44,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,services,married,university.degree,no,yes,no,cellular,aug,thu,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+53,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,43,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+41,management,married,university.degree,unknown,yes,no,cellular,aug,thu,172,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,admin.,single,university.degree,no,yes,no,telephone,aug,thu,46,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,140,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,59,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,technician,single,university.degree,no,no,no,cellular,aug,thu,26,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+59,retired,married,university.degree,no,yes,no,cellular,aug,thu,77,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,aug,thu,45,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,103,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+44,blue-collar,married,unknown,unknown,yes,no,cellular,aug,thu,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+49,services,divorced,high.school,no,yes,no,cellular,aug,thu,99,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+36,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,270,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+53,technician,divorced,professional.course,no,no,yes,cellular,aug,thu,74,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+44,technician,married,university.degree,no,no,no,cellular,aug,thu,214,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+59,admin.,married,high.school,unknown,yes,no,cellular,aug,thu,147,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+44,admin.,married,university.degree,no,yes,no,cellular,aug,thu,460,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+34,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,114,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,95,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,thu,602,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,aug,thu,13,23,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,management,married,university.degree,no,no,no,cellular,aug,thu,9,18,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+45,admin.,married,high.school,no,no,no,cellular,aug,thu,52,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+40,technician,married,professional.course,no,yes,no,cellular,aug,thu,142,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,unemployed,single,university.degree,no,no,no,cellular,aug,thu,126,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+51,blue-collar,married,professional.course,no,no,yes,cellular,aug,thu,17,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+50,admin.,married,basic.9y,no,yes,no,cellular,aug,thu,15,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+55,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,thu,21,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+41,technician,married,high.school,no,no,no,cellular,aug,thu,8,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+53,self-employed,married,university.degree,no,yes,yes,telephone,aug,thu,48,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+55,unknown,married,unknown,unknown,yes,no,cellular,aug,thu,60,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+34,technician,married,professional.course,no,yes,no,telephone,aug,thu,51,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,70,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+50,admin.,married,basic.9y,no,no,no,cellular,aug,thu,23,14,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+39,technician,single,professional.course,unknown,no,no,cellular,aug,thu,199,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,divorced,high.school,no,no,no,cellular,aug,thu,12,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,technician,single,university.degree,no,yes,yes,telephone,aug,thu,37,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+39,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,48,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,management,single,university.degree,no,no,no,cellular,aug,thu,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,management,single,university.degree,no,yes,no,cellular,aug,thu,245,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+34,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,18,14,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,thu,189,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,admin.,married,university.degree,no,no,no,cellular,aug,thu,36,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+60,retired,married,high.school,no,no,no,cellular,aug,thu,56,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+43,admin.,single,university.degree,no,yes,no,cellular,aug,thu,62,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+45,services,married,professional.course,no,no,no,telephone,aug,thu,64,18,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,admin.,married,university.degree,no,no,no,cellular,aug,thu,39,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+45,services,married,professional.course,no,yes,yes,cellular,aug,thu,133,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+49,services,married,basic.9y,no,yes,no,cellular,aug,thu,32,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+49,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,thu,310,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+51,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,thu,24,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+45,services,married,professional.course,no,yes,no,cellular,aug,thu,125,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,thu,1109,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes
+53,self-employed,married,university.degree,no,yes,no,telephone,aug,thu,161,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,technician,married,university.degree,no,no,no,cellular,aug,thu,76,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+43,admin.,married,university.degree,no,yes,no,cellular,aug,thu,24,13,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+38,technician,divorced,professional.course,no,no,no,cellular,aug,thu,7,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+32,management,single,university.degree,no,yes,no,cellular,aug,thu,260,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,technician,married,high.school,no,yes,yes,cellular,aug,thu,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+45,admin.,married,university.degree,no,no,no,telephone,aug,thu,58,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+43,admin.,married,university.degree,no,yes,no,cellular,aug,thu,433,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+40,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,247,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+35,technician,married,high.school,no,no,no,cellular,aug,thu,787,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,unemployed,single,university.degree,no,yes,yes,cellular,aug,thu,201,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+33,unemployed,single,university.degree,no,yes,no,cellular,aug,thu,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+37,technician,single,professional.course,no,no,no,cellular,aug,thu,19,13,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,thu,15,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,aug,thu,55,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+31,technician,married,professional.course,no,yes,no,cellular,aug,thu,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+58,admin.,divorced,university.degree,no,yes,no,telephone,aug,thu,688,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no
+50,management,married,university.degree,no,no,no,cellular,aug,fri,160,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,management,married,university.degree,no,yes,no,cellular,aug,fri,193,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,207,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,aug,fri,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,admin.,divorced,university.degree,unknown,no,no,cellular,aug,fri,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,admin.,married,basic.9y,unknown,yes,no,cellular,aug,fri,42,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,university.degree,no,yes,yes,cellular,aug,fri,65,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,fri,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,admin.,married,high.school,no,yes,no,cellular,aug,fri,45,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,entrepreneur,married,basic.4y,unknown,yes,no,cellular,aug,fri,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,married,professional.course,no,yes,no,cellular,aug,fri,92,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,admin.,married,university.degree,no,yes,no,cellular,aug,fri,47,13,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,self-employed,married,university.degree,no,no,no,cellular,aug,fri,59,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,admin.,married,university.degree,no,no,yes,cellular,aug,fri,24,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,56,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,single,university.degree,no,yes,no,cellular,aug,fri,105,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,self-employed,married,university.degree,no,no,no,cellular,aug,fri,144,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,blue-collar,married,basic.6y,no,no,no,cellular,aug,fri,85,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,university.degree,no,no,no,telephone,aug,fri,57,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,no,no,no,cellular,aug,fri,71,16,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,fri,82,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,university.degree,no,no,no,cellular,aug,fri,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,university.degree,no,no,no,cellular,aug,fri,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,management,divorced,university.degree,no,no,no,telephone,aug,fri,247,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,married,professional.course,no,yes,no,cellular,aug,fri,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,88,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,technician,married,high.school,unknown,no,no,cellular,aug,fri,114,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,single,professional.course,no,yes,no,cellular,aug,fri,50,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,62,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,high.school,no,unknown,unknown,cellular,aug,fri,171,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,fri,24,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,admin.,married,university.degree,unknown,yes,yes,cellular,aug,fri,21,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,technician,married,professional.course,no,no,no,cellular,aug,fri,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,services,married,professional.course,no,unknown,unknown,cellular,aug,fri,133,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,aug,fri,183,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,university.degree,no,no,no,cellular,aug,fri,25,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,divorced,professional.course,no,yes,yes,cellular,aug,fri,83,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,single,university.degree,no,yes,no,cellular,aug,fri,41,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,single,university.degree,no,yes,no,cellular,aug,fri,204,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,services,married,basic.6y,unknown,no,no,cellular,aug,fri,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,blue-collar,married,professional.course,no,no,no,cellular,aug,fri,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,admin.,divorced,professional.course,no,yes,yes,cellular,aug,fri,90,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,university.degree,no,yes,no,cellular,aug,fri,643,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,services,married,basic.6y,unknown,yes,no,cellular,aug,fri,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,admin.,divorced,university.degree,no,yes,yes,cellular,aug,fri,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,40,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,admin.,married,university.degree,unknown,no,yes,cellular,aug,fri,80,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,488,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,214,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,technician,married,professional.course,no,yes,no,cellular,aug,fri,204,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+36,admin.,single,university.degree,no,no,yes,cellular,aug,fri,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,professional.course,no,yes,no,cellular,aug,fri,36,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,professional.course,no,no,no,cellular,aug,fri,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,admin.,married,high.school,no,no,no,cellular,aug,fri,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,management,married,university.degree,unknown,yes,no,cellular,aug,fri,339,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,professional.course,no,no,no,cellular,aug,fri,462,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,fri,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+59,retired,married,university.degree,no,yes,no,cellular,aug,fri,28,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,services,married,high.school,no,yes,no,cellular,aug,fri,179,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,married,professional.course,no,yes,no,cellular,aug,fri,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,admin.,married,university.degree,no,yes,no,telephone,aug,fri,103,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,unknown,married,unknown,unknown,no,no,cellular,aug,fri,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,admin.,single,university.degree,no,yes,no,cellular,aug,fri,213,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,blue-collar,married,basic.9y,no,no,yes,cellular,aug,fri,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,technician,divorced,high.school,no,yes,no,cellular,aug,fri,255,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,technician,married,professional.course,unknown,no,yes,cellular,aug,fri,225,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,admin.,married,high.school,no,yes,no,cellular,aug,fri,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,unknown,married,unknown,unknown,yes,no,cellular,aug,fri,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,fri,77,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,management,married,university.degree,no,no,no,cellular,aug,fri,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,fri,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,services,divorced,high.school,no,yes,no,cellular,aug,fri,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,admin.,married,university.degree,no,no,yes,cellular,aug,fri,81,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,admin.,married,university.degree,no,no,no,cellular,aug,fri,94,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,fri,113,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,university.degree,unknown,yes,yes,cellular,aug,fri,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+58,retired,married,high.school,no,yes,no,cellular,aug,fri,35,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,university.degree,unknown,no,no,cellular,aug,fri,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,retired,married,basic.9y,no,yes,no,cellular,aug,fri,96,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,aug,fri,345,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,single,professional.course,no,no,no,cellular,aug,fri,245,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,79,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,university.degree,unknown,yes,yes,cellular,aug,fri,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,university.degree,unknown,no,no,cellular,aug,fri,204,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,married,university.degree,no,no,no,cellular,aug,fri,67,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+59,admin.,married,high.school,no,yes,no,cellular,aug,fri,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,aug,fri,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,married,university.degree,no,no,no,cellular,aug,fri,245,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,fri,141,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,admin.,married,university.degree,no,no,no,cellular,aug,fri,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,aug,fri,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,admin.,married,university.degree,no,unknown,unknown,cellular,aug,fri,235,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,divorced,university.degree,no,unknown,unknown,cellular,aug,fri,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,divorced,university.degree,no,no,no,cellular,aug,fri,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,admin.,married,professional.course,no,yes,no,cellular,aug,fri,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,admin.,divorced,university.degree,unknown,no,no,cellular,aug,fri,137,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,no,yes,no,telephone,aug,fri,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,professional.course,no,yes,no,cellular,aug,fri,141,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,no,unknown,unknown,cellular,aug,fri,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,divorced,university.degree,no,no,yes,cellular,aug,fri,180,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+46,technician,married,unknown,no,yes,no,cellular,aug,fri,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,married,high.school,unknown,yes,no,cellular,aug,fri,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,married,high.school,unknown,yes,no,cellular,aug,fri,398,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,technician,married,high.school,no,yes,no,cellular,aug,fri,60,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,admin.,married,high.school,no,yes,no,cellular,aug,fri,130,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,unknown,yes,no,cellular,aug,fri,256,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,married,professional.course,no,yes,yes,cellular,aug,fri,264,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,services,married,high.school,no,yes,no,cellular,aug,fri,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,married,professional.course,no,yes,no,cellular,aug,fri,307,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,married,high.school,no,no,yes,cellular,aug,fri,210,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+42,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,77,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,housemaid,married,basic.4y,no,yes,no,telephone,aug,fri,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,management,married,university.degree,no,yes,yes,cellular,aug,fri,186,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+37,admin.,married,university.degree,no,no,no,telephone,aug,fri,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,admin.,married,high.school,unknown,no,no,cellular,aug,fri,93,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,services,married,unknown,no,no,no,telephone,aug,fri,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,technician,single,high.school,no,yes,no,cellular,aug,fri,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,yes,no,telephone,aug,fri,59,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,technician,married,university.degree,unknown,no,no,cellular,aug,fri,1028,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,fri,186,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,management,married,university.degree,no,no,no,cellular,aug,fri,299,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,161,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,technician,married,university.degree,unknown,yes,no,cellular,aug,fri,207,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,no,yes,no,cellular,aug,fri,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,married,university.degree,no,no,no,cellular,aug,fri,133,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+54,services,married,high.school,no,yes,no,cellular,aug,fri,111,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,single,university.degree,unknown,yes,no,cellular,aug,fri,239,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,fri,38,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,unknown,married,unknown,unknown,yes,no,cellular,aug,fri,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,entrepreneur,married,university.degree,no,yes,no,cellular,aug,fri,19,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,single,professional.course,no,yes,no,cellular,aug,fri,436,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,admin.,married,basic.9y,no,unknown,unknown,cellular,aug,fri,49,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,64,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,aug,fri,511,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,fri,961,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,fri,76,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,management,married,university.degree,no,no,no,cellular,aug,fri,124,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,technician,married,high.school,no,no,no,cellular,aug,fri,66,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,unemployed,married,university.degree,no,yes,no,cellular,aug,fri,54,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,divorced,professional.course,unknown,yes,no,cellular,aug,fri,29,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,married,professional.course,no,yes,no,cellular,aug,fri,56,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,709,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,technician,single,professional.course,no,yes,no,cellular,aug,fri,95,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+43,technician,married,high.school,no,yes,no,telephone,aug,fri,251,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,unemployed,married,university.degree,no,yes,no,cellular,aug,fri,59,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,398,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,47,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,fri,173,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,fri,69,14,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,77,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,300,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,self-employed,married,university.degree,no,no,no,cellular,aug,fri,39,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,self-employed,married,university.degree,no,no,no,cellular,aug,fri,81,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+40,admin.,divorced,professional.course,no,yes,no,telephone,aug,fri,18,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,single,university.degree,no,no,no,telephone,aug,fri,36,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+60,admin.,married,basic.9y,no,no,no,cellular,aug,fri,24,11,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,admin.,single,university.degree,unknown,no,yes,cellular,aug,fri,70,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+49,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,21,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+59,retired,married,basic.4y,no,yes,no,telephone,aug,fri,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,technician,married,university.degree,unknown,unknown,unknown,cellular,aug,fri,116,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+59,retired,married,basic.4y,no,yes,no,cellular,aug,fri,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,technician,married,professional.course,no,yes,no,telephone,aug,fri,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+58,admin.,married,university.degree,no,yes,no,cellular,aug,fri,76,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,technician,single,high.school,no,yes,no,cellular,aug,fri,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,married,university.degree,no,no,no,cellular,aug,fri,14,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,high.school,no,yes,no,telephone,aug,fri,129,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,management,single,university.degree,no,no,no,cellular,aug,fri,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,unemployed,single,university.degree,no,yes,no,telephone,aug,fri,145,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,divorced,professional.course,unknown,yes,yes,cellular,aug,fri,161,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,services,married,high.school,unknown,no,no,cellular,aug,fri,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,aug,fri,122,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,high.school,no,no,no,cellular,aug,fri,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,married,high.school,no,unknown,unknown,cellular,aug,fri,61,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,unknown,married,unknown,unknown,yes,no,cellular,aug,fri,10,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,493,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+47,admin.,married,university.degree,no,no,no,cellular,aug,fri,451,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,admin.,divorced,university.degree,unknown,no,no,telephone,aug,fri,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+34,technician,married,university.degree,no,yes,no,cellular,aug,fri,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,technician,married,professional.course,no,no,yes,cellular,aug,fri,370,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,management,married,university.degree,no,yes,no,cellular,aug,fri,93,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+30,admin.,divorced,university.degree,no,yes,yes,cellular,aug,fri,201,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,admin.,divorced,university.degree,unknown,no,no,cellular,aug,fri,59,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+52,blue-collar,married,basic.9y,no,no,no,cellular,aug,fri,85,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,301,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+60,admin.,married,basic.9y,no,yes,no,cellular,aug,fri,60,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,admin.,married,university.degree,no,no,no,cellular,aug,fri,27,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,admin.,married,university.degree,no,yes,no,telephone,aug,fri,20,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,management,married,university.degree,no,yes,yes,telephone,aug,fri,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+53,management,married,university.degree,no,no,no,telephone,aug,fri,74,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,unemployed,married,university.degree,no,yes,no,cellular,aug,fri,53,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,fri,35,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+35,technician,divorced,high.school,unknown,yes,no,telephone,aug,fri,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+50,admin.,married,basic.9y,no,no,no,cellular,aug,fri,215,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,admin.,married,university.degree,no,yes,no,telephone,aug,fri,43,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+38,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,73,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,admin.,married,university.degree,no,no,no,cellular,aug,fri,106,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,university.degree,no,no,no,telephone,aug,fri,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,admin.,married,university.degree,no,no,no,telephone,aug,fri,51,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+48,blue-collar,married,basic.4y,no,yes,no,cellular,aug,fri,669,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,married,professional.course,no,no,yes,cellular,aug,fri,46,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+33,admin.,married,university.degree,no,no,no,cellular,aug,fri,127,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+39,housemaid,married,basic.4y,unknown,yes,no,telephone,aug,fri,158,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,married,professional.course,no,no,no,cellular,aug,fri,17,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+58,retired,married,basic.4y,no,yes,no,cellular,aug,fri,68,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+45,technician,married,professional.course,no,yes,yes,cellular,aug,fri,215,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,admin.,married,university.degree,no,yes,no,telephone,aug,fri,63,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+31,technician,single,professional.course,unknown,yes,yes,cellular,aug,fri,27,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+59,retired,married,unknown,no,yes,yes,cellular,aug,fri,117,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+51,self-employed,married,high.school,no,yes,no,cellular,aug,fri,8,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+41,admin.,married,university.degree,no,yes,no,cellular,aug,fri,6,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+60,admin.,married,university.degree,no,no,no,cellular,aug,fri,515,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+59,retired,married,unknown,no,no,yes,cellular,aug,fri,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+58,retired,married,basic.4y,no,yes,yes,cellular,aug,fri,89,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+55,technician,married,professional.course,no,yes,no,telephone,aug,fri,77,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no
+44,admin.,married,high.school,no,yes,no,telephone,oct,fri,159,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,no
+42,admin.,married,high.school,no,yes,yes,telephone,oct,fri,103,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,yes
+39,blue-collar,married,basic.9y,no,no,no,telephone,oct,fri,270,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,yes
+56,unknown,married,unknown,no,no,no,telephone,oct,fri,235,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,yes
+30,entrepreneur,married,university.degree,no,no,no,telephone,oct,fri,223,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,yes
+43,technician,single,professional.course,no,no,no,telephone,oct,fri,147,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,no
+27,self-employed,single,university.degree,no,no,no,telephone,oct,fri,24,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,no
+46,admin.,divorced,high.school,no,yes,no,telephone,oct,fri,3253,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,no
+42,self-employed,married,basic.4y,no,no,no,telephone,oct,fri,478,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,yes
+52,technician,married,professional.course,no,yes,yes,telephone,oct,mon,164,1,999,0,nonexistent,-0.1,93.798,-40.4,5,5195.8,no
+35,management,married,university.degree,no,yes,no,telephone,oct,mon,309,1,999,0,nonexistent,-0.1,93.798,-40.4,5,5195.8,no
+35,entrepreneur,married,university.degree,no,yes,yes,telephone,oct,mon,2429,1,999,0,nonexistent,-0.1,93.798,-40.4,5,5195.8,no
+48,admin.,married,high.school,no,no,no,telephone,oct,mon,312,1,999,0,nonexistent,-0.1,93.798,-40.4,5,5195.8,yes
+41,technician,divorced,professional.course,no,unknown,unknown,telephone,oct,mon,73,1,999,0,nonexistent,-0.1,93.798,-40.4,5,5195.8,no
+30,admin.,single,university.degree,no,yes,yes,telephone,oct,mon,718,1,999,0,nonexistent,-0.1,93.798,-40.4,5,5195.8,yes
+39,technician,divorced,university.degree,no,no,yes,telephone,oct,mon,2016,1,999,0,nonexistent,-0.1,93.798,-40.4,5,5195.8,yes
+38,blue-collar,single,unknown,no,yes,no,telephone,oct,tue,39,1,999,1,failure,-0.1,93.798,-40.4,4.968,5195.8,no
+44,admin.,divorced,high.school,no,yes,no,telephone,oct,tue,294,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,yes
+59,admin.,married,university.degree,no,no,no,telephone,oct,tue,85,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,yes
+33,housemaid,married,high.school,no,no,no,telephone,oct,tue,37,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,yes
+32,admin.,married,high.school,no,no,no,telephone,oct,tue,101,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,yes
+59,blue-collar,married,professional.course,no,no,no,telephone,oct,tue,19,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,no
+40,services,married,high.school,no,yes,no,telephone,oct,tue,144,1,999,1,failure,-0.1,93.798,-40.4,4.968,5195.8,yes
+35,blue-collar,married,basic.9y,no,yes,no,telephone,oct,tue,4,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,no
+56,blue-collar,married,unknown,no,yes,no,telephone,oct,tue,54,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,no
+27,student,single,high.school,no,no,no,telephone,oct,tue,187,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,yes
+41,admin.,single,high.school,no,no,no,telephone,oct,tue,49,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,no
+30,technician,single,university.degree,no,no,no,telephone,oct,wed,676,1,999,0,nonexistent,-0.1,93.798,-40.4,4.936,5195.8,yes
+36,technician,married,high.school,no,no,no,telephone,oct,wed,157,1,999,0,nonexistent,-0.1,93.798,-40.4,4.936,5195.8,yes
+56,technician,married,professional.course,no,no,no,telephone,oct,wed,73,1,999,0,nonexistent,-0.1,93.798,-40.4,4.936,5195.8,no
+43,self-employed,married,high.school,no,yes,no,telephone,oct,wed,181,1,999,0,nonexistent,-0.1,93.798,-40.4,4.936,5195.8,yes
+48,admin.,married,university.degree,no,no,no,telephone,oct,wed,98,1,999,0,nonexistent,-0.1,93.798,-40.4,4.936,5195.8,yes
+37,admin.,single,high.school,no,yes,no,telephone,oct,wed,313,1,999,0,nonexistent,-0.1,93.798,-40.4,4.936,5195.8,yes
+36,services,married,high.school,no,yes,no,telephone,oct,thu,41,1,999,0,nonexistent,-0.1,93.798,-40.4,4.921,5195.8,no
+25,services,single,high.school,no,yes,no,telephone,oct,thu,301,1,999,0,nonexistent,-0.1,93.798,-40.4,4.921,5195.8,yes
+39,technician,married,professional.course,no,no,no,telephone,oct,thu,171,1,999,0,nonexistent,-0.1,93.798,-40.4,4.921,5195.8,yes
+39,blue-collar,married,basic.9y,no,yes,no,telephone,oct,fri,112,1,999,0,nonexistent,-0.1,93.798,-40.4,4.918,5195.8,yes
+58,retired,married,university.degree,no,yes,no,telephone,oct,fri,12,1,999,0,nonexistent,-0.1,93.798,-40.4,4.918,5195.8,no
+38,admin.,married,high.school,no,yes,no,telephone,oct,fri,97,1,999,0,nonexistent,-0.1,93.798,-40.4,4.918,5195.8,yes
+26,entrepreneur,married,basic.9y,no,yes,no,telephone,oct,fri,5,1,999,0,nonexistent,-0.1,93.798,-40.4,4.918,5195.8,no
+46,admin.,divorced,university.degree,no,no,no,telephone,oct,mon,376,1,999,0,nonexistent,-0.1,93.798,-40.4,4.912,5195.8,yes
+29,technician,single,professional.course,no,yes,no,telephone,oct,mon,150,1,999,0,nonexistent,-0.1,93.798,-40.4,4.912,5195.8,yes
+32,admin.,married,university.degree,no,no,yes,telephone,oct,mon,27,1,999,0,nonexistent,-0.1,93.798,-40.4,4.912,5195.8,no
+31,admin.,married,university.degree,no,yes,no,telephone,oct,mon,131,1,999,0,nonexistent,-0.1,93.798,-40.4,4.912,5195.8,yes
+49,admin.,single,university.degree,no,yes,no,telephone,oct,mon,51,1,999,0,nonexistent,-0.1,93.798,-40.4,4.912,5195.8,no
+26,admin.,single,university.degree,no,yes,no,telephone,oct,mon,251,1,999,0,nonexistent,-0.1,93.798,-40.4,4.912,5195.8,yes
+27,blue-collar,single,professional.course,no,yes,no,telephone,oct,mon,3284,1,999,0,nonexistent,-0.1,93.798,-40.4,4.912,5195.8,no
+31,admin.,single,university.degree,no,yes,no,telephone,oct,tue,125,1,999,0,nonexistent,-0.1,93.798,-40.4,4.86,5195.8,yes
+43,blue-collar,married,basic.9y,no,no,no,telephone,oct,tue,10,1,999,0,nonexistent,-0.1,93.798,-40.4,4.86,5195.8,no
+45,technician,divorced,high.school,no,yes,no,telephone,oct,tue,141,1,999,0,nonexistent,-0.1,93.798,-40.4,4.86,5195.8,yes
+31,blue-collar,married,basic.6y,no,yes,no,telephone,oct,tue,154,1,999,0,nonexistent,-0.1,93.798,-40.4,4.86,5195.8,yes
+34,admin.,single,university.degree,no,no,no,telephone,oct,tue,135,1,999,0,nonexistent,-0.1,93.798,-40.4,4.86,5195.8,yes
+27,admin.,single,university.degree,no,no,no,telephone,oct,tue,540,1,999,0,nonexistent,-0.1,93.798,-40.4,4.86,5195.8,yes
+33,entrepreneur,married,university.degree,no,yes,no,telephone,oct,tue,454,1,999,0,nonexistent,-0.1,93.798,-40.4,4.86,5195.8,yes
+33,technician,married,professional.course,no,yes,no,telephone,oct,wed,171,1,999,0,nonexistent,-0.1,93.798,-40.4,4.827,5195.8,yes
+49,blue-collar,married,basic.6y,no,no,no,telephone,oct,wed,11,1,999,0,nonexistent,-0.1,93.798,-40.4,4.827,5195.8,no
+30,admin.,married,university.degree,no,no,no,telephone,oct,wed,313,1,999,0,nonexistent,-0.1,93.798,-40.4,4.827,5195.8,yes
+33,admin.,married,university.degree,no,no,no,telephone,oct,wed,167,1,999,0,nonexistent,-0.1,93.798,-40.4,4.827,5195.8,no
+34,blue-collar,single,high.school,no,yes,no,telephone,oct,wed,266,1,999,0,nonexistent,-0.1,93.798,-40.4,4.827,5195.8,yes
+36,self-employed,single,university.degree,no,yes,no,telephone,oct,thu,248,1,999,0,nonexistent,-0.1,93.798,-40.4,4.794,5195.8,yes
+56,technician,married,high.school,no,no,no,telephone,oct,thu,234,1,999,0,nonexistent,-0.1,93.798,-40.4,4.794,5195.8,yes
+31,technician,single,university.degree,no,no,no,telephone,oct,thu,154,1,999,0,nonexistent,-0.1,93.798,-40.4,4.794,5195.8,yes
+34,blue-collar,divorced,high.school,no,yes,no,telephone,oct,thu,160,1,999,0,nonexistent,-0.1,93.798,-40.4,4.794,5195.8,yes
+58,admin.,divorced,high.school,no,no,no,telephone,oct,thu,81,1,999,0,nonexistent,-0.1,93.798,-40.4,4.794,5195.8,no
+38,entrepreneur,married,basic.4y,no,no,no,telephone,oct,fri,227,1,999,0,nonexistent,-0.1,93.798,-40.4,4.76,5195.8,yes
+42,management,married,university.degree,no,no,no,telephone,oct,fri,615,1,999,0,nonexistent,-0.1,93.798,-40.4,4.76,5195.8,yes
+33,admin.,married,university.degree,no,no,no,cellular,oct,fri,18,1,999,0,nonexistent,-0.1,93.798,-40.4,4.76,5195.8,no
+31,admin.,married,university.degree,no,yes,no,telephone,nov,mon,44,1,999,0,nonexistent,-0.1,93.2,-42,4.733,5195.8,no
+33,admin.,married,university.degree,no,no,no,telephone,nov,mon,98,1,999,0,nonexistent,-0.1,93.2,-42,4.733,5195.8,no
+30,admin.,married,university.degree,no,no,no,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,no
+25,admin.,single,university.degree,no,no,yes,telephone,nov,tue,5,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,no
+32,technician,married,professional.course,no,yes,no,telephone,nov,tue,399,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,yes
+32,management,married,university.degree,no,yes,yes,telephone,nov,tue,15,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,no
+57,retired,divorced,university.degree,no,yes,no,telephone,nov,tue,21,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,no
+48,admin.,married,high.school,no,yes,no,telephone,nov,tue,217,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,no
+30,blue-collar,married,basic.9y,no,no,no,telephone,nov,tue,465,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,yes
+50,entrepreneur,married,university.degree,no,no,no,telephone,nov,tue,209,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,yes
+30,technician,married,professional.course,no,yes,no,telephone,nov,wed,6,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,no
+45,unknown,married,unknown,no,no,no,telephone,nov,wed,169,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,yes
+36,admin.,married,university.degree,no,yes,no,telephone,nov,wed,449,1,999,1,failure,-0.1,93.2,-42,4.663,5195.8,no
+57,admin.,divorced,university.degree,no,no,no,telephone,nov,wed,5,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,no
+25,management,married,university.degree,no,yes,no,telephone,nov,wed,268,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,yes
+39,management,married,university.degree,no,yes,no,telephone,nov,wed,204,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,yes
+27,self-employed,married,professional.course,no,no,no,telephone,nov,wed,669,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,yes
+33,blue-collar,married,basic.9y,no,yes,yes,telephone,nov,wed,68,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,no
+47,admin.,married,university.degree,no,no,yes,telephone,nov,wed,23,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,no
+41,admin.,single,high.school,no,yes,no,telephone,nov,thu,234,1,999,0,nonexistent,-0.1,93.2,-42,4.592,5195.8,yes
+30,admin.,married,high.school,no,yes,no,telephone,nov,thu,26,1,999,0,nonexistent,-0.1,93.2,-42,4.592,5195.8,no
+29,technician,married,university.degree,no,yes,no,cellular,nov,thu,150,1,999,0,nonexistent,-0.1,93.2,-42,4.592,5195.8,yes
+32,admin.,married,university.degree,no,no,no,telephone,nov,thu,132,1,999,0,nonexistent,-0.1,93.2,-42,4.592,5195.8,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,nov,fri,115,1,999,0,nonexistent,-0.1,93.2,-42,4.474,5195.8,yes
+29,admin.,married,basic.9y,no,yes,no,telephone,nov,fri,453,1,999,0,nonexistent,-0.1,93.2,-42,4.474,5195.8,yes
+43,retired,married,high.school,no,yes,no,cellular,nov,fri,83,1,999,0,nonexistent,-0.1,93.2,-42,4.474,5195.8,no
+32,admin.,single,university.degree,no,no,no,telephone,nov,mon,1239,1,999,0,nonexistent,-0.1,93.2,-42,4.406,5195.8,no
+33,technician,single,professional.course,no,yes,no,telephone,nov,mon,4918,1,999,0,nonexistent,-0.1,93.2,-42,4.406,5195.8,no
+27,student,single,university.degree,no,yes,no,telephone,nov,mon,125,1,999,0,nonexistent,-0.1,93.2,-42,4.406,5195.8,no
+24,management,single,university.degree,no,no,yes,telephone,nov,mon,107,1,999,0,nonexistent,-0.1,93.2,-42,4.406,5195.8,no
+47,student,single,unknown,no,unknown,unknown,telephone,nov,mon,145,1,999,0,nonexistent,-0.1,93.2,-42,4.406,5195.8,yes
+46,technician,married,professional.course,no,no,no,telephone,nov,mon,98,1,999,0,nonexistent,-0.1,93.2,-42,4.406,5195.8,no
+58,retired,divorced,basic.9y,no,yes,no,telephone,nov,mon,248,1,999,0,nonexistent,-0.1,93.2,-42,4.406,5195.8,yes
+47,management,divorced,university.degree,no,no,no,telephone,nov,tue,74,1,999,0,nonexistent,-0.1,93.2,-42,4.343,5195.8,no
+43,services,married,basic.6y,no,no,no,telephone,nov,tue,133,1,999,0,nonexistent,-0.1,93.2,-42,4.343,5195.8,no
+57,admin.,divorced,university.degree,no,no,no,telephone,nov,tue,119,1,999,0,nonexistent,-0.1,93.2,-42,4.343,5195.8,no
+32,unemployed,married,professional.course,no,yes,no,telephone,nov,tue,486,1,999,0,nonexistent,-0.1,93.2,-42,4.343,5195.8,yes
+33,services,married,high.school,no,no,no,telephone,nov,tue,158,1,999,0,nonexistent,-0.1,93.2,-42,4.343,5195.8,yes
+36,admin.,married,high.school,no,yes,no,telephone,nov,wed,114,1,999,1,failure,-0.1,93.2,-42,4.286,5195.8,yes
+58,management,divorced,university.degree,no,no,no,telephone,nov,wed,139,1,999,0,nonexistent,-0.1,93.2,-42,4.286,5195.8,yes
+53,technician,divorced,professional.course,no,yes,no,cellular,nov,wed,320,1,999,0,nonexistent,-0.1,93.2,-42,4.286,5195.8,no
+37,housemaid,married,university.degree,no,yes,no,telephone,nov,wed,129,1,999,0,nonexistent,-0.1,93.2,-42,4.286,5195.8,no
+48,admin.,married,high.school,no,no,no,telephone,nov,wed,24,1,999,0,nonexistent,-0.1,93.2,-42,4.286,5195.8,no
+46,blue-collar,married,professional.course,no,yes,no,telephone,nov,wed,238,1,999,0,nonexistent,-0.1,93.2,-42,4.286,5195.8,no
+37,admin.,married,university.degree,no,yes,no,telephone,nov,wed,119,1,6,1,success,-0.1,93.2,-42,4.286,5195.8,no
+33,admin.,single,university.degree,no,no,no,telephone,nov,thu,109,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,no
+18,student,single,high.school,no,no,no,telephone,nov,thu,75,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,no
+33,self-employed,single,university.degree,no,no,no,telephone,nov,thu,168,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,no
+27,student,single,professional.course,no,no,no,telephone,nov,thu,72,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,no
+29,self-employed,married,university.degree,no,yes,no,telephone,nov,thu,86,1,999,1,failure,-0.1,93.2,-42,4.245,5195.8,no
+50,admin.,single,basic.9y,no,unknown,unknown,telephone,nov,thu,45,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,no
+42,admin.,married,professional.course,no,yes,no,telephone,nov,thu,90,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,yes
+40,blue-collar,married,basic.9y,no,unknown,unknown,telephone,nov,thu,160,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,yes
+39,admin.,single,high.school,no,no,no,telephone,nov,thu,51,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,no
+37,admin.,divorced,university.degree,no,no,yes,cellular,nov,fri,132,1,999,0,nonexistent,-0.1,93.2,-42,4.223,5195.8,yes
+35,technician,single,professional.course,no,yes,no,telephone,nov,fri,160,1,999,0,nonexistent,-0.1,93.2,-42,4.223,5195.8,yes
+35,management,married,university.degree,no,yes,no,telephone,nov,fri,24,1,999,0,nonexistent,-0.1,93.2,-42,4.223,5195.8,no
+34,management,married,university.degree,no,no,no,telephone,nov,fri,179,1,999,0,nonexistent,-0.1,93.2,-42,4.223,5195.8,yes
+57,management,married,university.degree,no,yes,no,telephone,nov,mon,76,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+34,technician,single,unknown,no,no,no,telephone,nov,mon,101,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,technician,divorced,professional.course,no,no,no,cellular,nov,mon,200,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+42,technician,married,professional.course,unknown,no,no,cellular,nov,mon,212,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+56,services,married,high.school,no,no,no,telephone,nov,mon,92,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+56,services,married,high.school,no,no,no,cellular,nov,mon,156,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,admin.,married,high.school,no,no,no,cellular,nov,mon,53,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,technician,divorced,university.degree,no,no,no,cellular,nov,mon,215,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,self-employed,married,university.degree,no,no,no,telephone,nov,mon,238,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,management,married,university.degree,no,yes,yes,cellular,nov,mon,128,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,blue-collar,divorced,basic.4y,no,no,no,cellular,nov,mon,98,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,238,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+48,self-employed,divorced,high.school,no,yes,no,cellular,nov,mon,82,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+34,admin.,single,high.school,no,no,no,cellular,nov,mon,303,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+48,services,married,unknown,no,no,no,cellular,nov,mon,51,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+57,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,mon,221,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,management,single,university.degree,no,yes,no,cellular,nov,mon,80,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+44,management,married,university.degree,no,yes,no,cellular,nov,mon,130,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+51,technician,married,unknown,no,no,no,cellular,nov,mon,324,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+35,admin.,single,high.school,no,yes,no,cellular,nov,mon,139,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+44,management,married,high.school,no,yes,no,cellular,nov,mon,669,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,admin.,married,university.degree,no,yes,yes,cellular,nov,mon,161,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+49,blue-collar,married,high.school,unknown,yes,no,cellular,nov,mon,80,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+49,blue-collar,married,high.school,unknown,yes,no,cellular,nov,mon,108,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+41,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,163,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+52,retired,married,university.degree,no,no,no,cellular,nov,mon,147,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,services,married,high.school,no,yes,no,cellular,nov,mon,252,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,management,married,university.degree,no,yes,no,cellular,nov,mon,113,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+54,management,married,university.degree,no,yes,no,cellular,nov,mon,375,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,management,married,university.degree,no,yes,no,cellular,nov,mon,121,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,admin.,married,university.degree,no,no,no,telephone,nov,mon,52,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+51,technician,divorced,high.school,no,yes,no,cellular,nov,mon,81,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+58,admin.,divorced,university.degree,no,yes,no,cellular,nov,mon,70,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,admin.,single,university.degree,no,yes,no,cellular,nov,mon,64,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+41,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,mon,176,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+44,retired,single,basic.9y,no,no,no,cellular,nov,mon,115,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+40,technician,married,professional.course,no,no,no,cellular,nov,mon,550,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,unemployed,married,basic.9y,no,yes,no,cellular,nov,mon,75,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,unemployed,divorced,high.school,no,no,yes,cellular,nov,mon,57,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,unemployed,divorced,high.school,no,yes,yes,cellular,nov,mon,68,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+36,unemployed,divorced,high.school,no,no,no,cellular,nov,mon,59,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,unemployed,divorced,high.school,no,yes,no,cellular,nov,mon,55,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,technician,married,professional.course,no,yes,no,cellular,nov,mon,61,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,technician,married,professional.course,no,no,no,cellular,nov,mon,113,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,entrepreneur,married,university.degree,no,no,no,cellular,nov,mon,134,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+46,management,married,university.degree,no,yes,no,cellular,nov,mon,123,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+41,admin.,married,high.school,no,no,no,cellular,nov,mon,297,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+41,admin.,married,high.school,no,yes,no,cellular,nov,mon,353,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,146,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+57,admin.,married,university.degree,no,no,yes,cellular,nov,mon,59,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,management,divorced,university.degree,no,yes,no,cellular,nov,mon,210,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,blue-collar,married,basic.6y,unknown,no,yes,cellular,nov,mon,120,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+34,admin.,married,university.degree,no,yes,no,cellular,nov,mon,92,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,management,married,university.degree,no,no,no,cellular,nov,mon,595,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,unemployed,married,basic.4y,no,yes,no,cellular,nov,mon,57,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+43,services,married,high.school,no,no,no,cellular,nov,mon,118,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+54,technician,married,professional.course,no,no,no,cellular,nov,mon,78,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,admin.,married,basic.4y,no,yes,no,cellular,nov,mon,74,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,admin.,married,high.school,unknown,yes,no,cellular,nov,mon,219,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,management,married,university.degree,no,no,no,cellular,nov,mon,93,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,admin.,single,high.school,unknown,yes,no,cellular,nov,mon,387,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,management,married,university.degree,no,yes,no,cellular,nov,mon,178,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,admin.,single,high.school,unknown,yes,no,cellular,nov,mon,433,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+51,blue-collar,married,high.school,no,yes,no,cellular,nov,mon,69,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,self-employed,married,university.degree,no,no,no,cellular,nov,mon,223,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+54,admin.,married,university.degree,no,no,no,cellular,nov,mon,178,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+43,services,married,basic.4y,no,no,no,cellular,nov,mon,75,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+43,services,married,basic.4y,no,yes,no,cellular,nov,mon,92,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,technician,single,university.degree,no,yes,no,cellular,nov,mon,396,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+47,services,divorced,high.school,no,yes,no,cellular,nov,mon,334,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,blue-collar,married,unknown,no,no,no,cellular,nov,mon,64,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,236,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,admin.,single,university.degree,unknown,no,no,cellular,nov,mon,142,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+44,management,married,high.school,no,yes,no,cellular,nov,mon,231,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,admin.,married,university.degree,no,yes,no,cellular,nov,mon,44,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+38,blue-collar,married,unknown,no,yes,no,cellular,nov,mon,376,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,self-employed,married,university.degree,no,no,no,cellular,nov,mon,85,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+40,management,married,basic.6y,no,no,no,cellular,nov,mon,56,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,admin.,single,university.degree,unknown,yes,no,cellular,nov,mon,389,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,unemployed,married,university.degree,no,yes,no,cellular,nov,mon,64,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,management,married,university.degree,no,no,no,cellular,nov,mon,44,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,unemployed,married,university.degree,no,unknown,unknown,cellular,nov,mon,126,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+51,blue-collar,married,high.school,no,no,yes,cellular,nov,mon,65,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+49,admin.,married,basic.9y,no,no,no,cellular,nov,mon,265,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+41,management,married,university.degree,no,yes,no,cellular,nov,mon,49,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+48,blue-collar,divorced,professional.course,no,yes,no,cellular,nov,mon,219,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+41,management,married,university.degree,no,yes,no,cellular,nov,mon,155,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+55,management,married,university.degree,no,yes,yes,cellular,nov,mon,81,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,self-employed,divorced,university.degree,no,no,no,cellular,nov,mon,89,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,1077,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes
+49,blue-collar,divorced,high.school,no,no,no,telephone,nov,mon,192,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,1303,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes
+48,blue-collar,divorced,professional.course,no,no,no,cellular,nov,mon,564,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes
+52,management,divorced,university.degree,unknown,no,no,cellular,nov,mon,79,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,admin.,divorced,university.degree,no,yes,no,cellular,nov,mon,288,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,technician,married,basic.9y,no,no,no,cellular,nov,mon,99,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,management,single,basic.9y,no,no,yes,telephone,nov,mon,33,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,management,single,basic.9y,no,yes,no,cellular,nov,mon,125,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+33,blue-collar,single,basic.9y,no,yes,no,cellular,nov,mon,214,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,mon,121,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,services,married,high.school,no,no,no,cellular,nov,mon,40,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+41,admin.,divorced,university.degree,no,no,no,cellular,nov,mon,57,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+48,admin.,single,university.degree,no,no,no,cellular,nov,mon,76,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,mon,364,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,unemployed,married,basic.9y,no,yes,no,cellular,nov,mon,63,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+29,self-employed,single,university.degree,no,no,yes,telephone,nov,mon,378,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,unemployed,married,basic.9y,no,yes,no,cellular,nov,mon,151,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+51,entrepreneur,married,university.degree,no,no,no,telephone,nov,mon,81,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+51,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,89,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+41,admin.,divorced,university.degree,no,yes,no,cellular,nov,mon,479,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,technician,single,professional.course,no,yes,no,cellular,nov,mon,68,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+41,technician,single,professional.course,no,unknown,unknown,cellular,nov,mon,108,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+30,services,married,university.degree,no,yes,no,cellular,nov,mon,135,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,unknown,single,basic.9y,no,yes,no,telephone,nov,mon,302,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+31,services,divorced,high.school,no,yes,yes,cellular,nov,mon,90,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,admin.,divorced,high.school,no,yes,no,cellular,nov,mon,38,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+54,admin.,married,basic.9y,no,yes,no,cellular,nov,mon,77,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,self-employed,married,university.degree,no,no,no,telephone,nov,mon,81,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,mon,127,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+58,management,married,unknown,no,no,no,cellular,nov,mon,114,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,mon,70,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+43,management,married,university.degree,no,no,no,cellular,nov,mon,55,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,technician,married,professional.course,no,yes,yes,cellular,nov,mon,79,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+54,admin.,married,basic.9y,no,no,no,cellular,nov,mon,238,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+43,management,married,university.degree,no,no,no,cellular,nov,mon,179,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,retired,married,professional.course,no,yes,yes,cellular,nov,mon,120,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,management,married,university.degree,no,no,no,cellular,nov,mon,84,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+48,admin.,divorced,high.school,no,yes,no,cellular,nov,mon,309,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,housemaid,married,basic.9y,no,yes,no,cellular,nov,mon,130,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+36,technician,married,high.school,no,yes,no,cellular,nov,mon,38,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+40,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,70,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+47,retired,married,basic.4y,no,unknown,unknown,telephone,nov,mon,70,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+34,admin.,single,university.degree,no,no,no,cellular,nov,mon,110,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,technician,married,high.school,no,yes,no,telephone,nov,mon,206,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,mon,160,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+42,housemaid,married,university.degree,no,no,no,cellular,nov,mon,176,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,housemaid,married,university.degree,no,yes,no,telephone,nov,mon,85,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,unemployed,married,professional.course,no,yes,no,cellular,nov,mon,483,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+36,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,mon,292,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,services,single,high.school,unknown,no,no,cellular,nov,mon,68,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+50,blue-collar,married,basic.6y,unknown,yes,no,telephone,nov,mon,105,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,107,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+48,management,married,university.degree,no,yes,no,cellular,nov,mon,112,1,4,1,success,-0.1,93.2,-42,4.191,5195.8,no
+35,admin.,married,university.degree,unknown,no,no,cellular,nov,mon,70,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+45,admin.,married,high.school,no,yes,no,cellular,nov,mon,58,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+39,admin.,married,university.degree,no,yes,no,cellular,nov,mon,97,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+54,retired,married,professional.course,no,yes,no,cellular,nov,mon,55,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,admin.,married,high.school,no,no,no,cellular,nov,mon,150,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,admin.,married,high.school,no,yes,no,cellular,nov,mon,149,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,96,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,housemaid,married,basic.9y,no,yes,yes,cellular,nov,mon,112,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+57,retired,married,basic.4y,unknown,no,no,telephone,nov,mon,40,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,admin.,married,university.degree,no,no,no,cellular,nov,mon,58,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+49,technician,married,professional.course,no,yes,no,cellular,nov,mon,259,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,119,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+40,admin.,married,university.degree,unknown,no,no,telephone,nov,mon,16,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,admin.,married,high.school,no,yes,no,cellular,nov,mon,527,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,technician,married,professional.course,unknown,yes,no,cellular,nov,mon,94,1,4,1,success,-0.1,93.2,-42,4.191,5195.8,no
+30,services,single,high.school,no,no,no,cellular,nov,mon,88,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,technician,married,professional.course,no,yes,no,cellular,nov,mon,140,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,technician,married,professional.course,no,yes,no,cellular,nov,mon,149,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,technician,married,professional.course,no,yes,no,telephone,nov,mon,76,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+44,admin.,single,university.degree,no,yes,no,telephone,nov,mon,124,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,unemployed,married,university.degree,no,no,no,cellular,nov,mon,90,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+51,management,married,basic.4y,no,no,no,cellular,nov,mon,96,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,mon,109,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,admin.,married,basic.9y,no,yes,no,cellular,nov,mon,591,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,admin.,married,basic.9y,unknown,yes,no,cellular,nov,mon,508,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+38,management,married,university.degree,no,yes,no,telephone,nov,mon,99,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+49,entrepreneur,married,university.degree,no,yes,no,telephone,nov,mon,118,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,blue-collar,married,professional.course,no,no,yes,cellular,nov,mon,80,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+49,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,165,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,technician,married,high.school,no,no,no,cellular,nov,mon,93,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+41,technician,single,professional.course,no,no,no,cellular,nov,mon,64,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,blue-collar,married,basic.4y,no,no,no,cellular,nov,mon,545,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+48,admin.,single,university.degree,no,yes,no,cellular,nov,mon,434,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes
+51,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,346,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,entrepreneur,married,high.school,no,yes,no,telephone,nov,mon,164,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+39,admin.,married,university.degree,no,yes,no,cellular,nov,mon,407,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,technician,married,professional.course,no,yes,no,cellular,nov,mon,61,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+48,admin.,divorced,high.school,no,yes,no,cellular,nov,mon,191,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,technician,married,professional.course,no,yes,no,cellular,nov,mon,110,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+54,services,married,high.school,no,yes,no,telephone,nov,mon,56,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,412,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+54,services,married,high.school,no,no,no,cellular,nov,mon,193,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+44,unemployed,married,basic.9y,no,yes,no,telephone,nov,mon,180,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+51,management,married,university.degree,no,yes,no,cellular,nov,mon,1070,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,management,married,university.degree,no,yes,no,cellular,nov,mon,349,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,services,divorced,high.school,no,yes,no,cellular,nov,mon,266,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,management,married,basic.4y,no,no,no,cellular,nov,mon,330,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+54,management,married,university.degree,no,no,no,cellular,nov,mon,59,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,132,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,self-employed,divorced,university.degree,no,yes,no,cellular,nov,mon,125,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,technician,married,basic.9y,no,yes,no,telephone,nov,mon,435,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,technician,married,professional.course,unknown,yes,no,telephone,nov,mon,1606,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+54,management,married,university.degree,no,yes,no,cellular,nov,mon,216,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+41,unemployed,married,basic.4y,no,yes,no,cellular,nov,mon,59,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,management,single,university.degree,no,no,yes,cellular,nov,mon,214,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,technician,married,professional.course,no,yes,no,cellular,nov,mon,78,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,technician,married,university.degree,no,yes,no,telephone,nov,mon,275,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,279,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,technician,married,professional.course,no,no,yes,cellular,nov,mon,173,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+51,admin.,married,high.school,no,yes,no,cellular,nov,mon,89,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,215,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+47,management,married,basic.9y,no,no,no,telephone,nov,mon,53,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,admin.,married,university.degree,unknown,no,no,cellular,nov,mon,890,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes
+52,management,divorced,university.degree,no,yes,no,cellular,nov,mon,161,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+47,management,married,basic.9y,no,no,no,cellular,nov,mon,97,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,services,divorced,high.school,no,yes,no,cellular,nov,mon,581,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,management,married,basic.6y,no,no,no,cellular,nov,mon,116,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+34,unemployed,married,university.degree,no,yes,no,telephone,nov,mon,155,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,technician,single,professional.course,no,yes,no,cellular,nov,mon,70,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,entrepreneur,married,high.school,no,no,yes,cellular,nov,mon,41,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,entrepreneur,married,high.school,no,yes,no,telephone,nov,mon,104,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+49,technician,married,professional.course,unknown,yes,no,telephone,nov,mon,27,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,management,divorced,university.degree,no,no,no,cellular,nov,mon,578,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,management,divorced,university.degree,no,yes,no,cellular,nov,mon,534,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+56,management,married,university.degree,no,no,no,cellular,nov,mon,52,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,self-employed,married,basic.9y,no,yes,no,cellular,nov,mon,62,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,self-employed,married,basic.9y,no,yes,no,cellular,nov,mon,169,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+40,management,married,university.degree,no,yes,yes,cellular,nov,mon,52,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,admin.,married,unknown,no,no,no,cellular,nov,mon,66,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+54,entrepreneur,married,basic.4y,unknown,yes,no,cellular,nov,mon,310,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+43,management,married,university.degree,no,no,no,cellular,nov,mon,150,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+58,retired,married,high.school,no,no,no,cellular,nov,mon,34,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+58,retired,married,high.school,no,yes,no,cellular,nov,mon,49,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,blue-collar,married,basic.9y,no,no,yes,cellular,nov,mon,213,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+30,services,single,high.school,no,no,no,cellular,nov,mon,104,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,admin.,married,university.degree,no,yes,no,cellular,nov,mon,386,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+58,entrepreneur,married,basic.4y,no,yes,no,telephone,nov,mon,73,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+47,admin.,married,university.degree,no,yes,no,cellular,nov,mon,58,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+47,admin.,married,university.degree,no,yes,no,cellular,nov,mon,138,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+38,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,64,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,blue-collar,married,basic.4y,no,no,no,cellular,nov,mon,112,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,80,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,entrepreneur,single,basic.9y,no,yes,no,cellular,nov,mon,42,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+56,management,married,professional.course,no,no,no,cellular,nov,mon,74,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+37,admin.,married,high.school,no,no,no,cellular,nov,mon,148,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+44,services,divorced,high.school,no,yes,yes,cellular,nov,mon,164,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,mon,67,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,entrepreneur,married,basic.9y,no,unknown,unknown,telephone,nov,mon,147,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+43,technician,married,professional.course,no,yes,no,cellular,nov,mon,190,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+43,technician,married,professional.course,no,yes,no,cellular,nov,mon,294,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,services,divorced,high.school,no,yes,no,cellular,nov,mon,86,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,services,divorced,high.school,no,yes,yes,cellular,nov,mon,96,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+51,management,married,unknown,no,no,no,telephone,nov,mon,113,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,services,married,basic.6y,unknown,yes,no,cellular,nov,mon,372,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,admin.,divorced,high.school,no,no,no,cellular,nov,mon,49,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,blue-collar,married,basic.4y,unknown,no,yes,cellular,nov,mon,68,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+54,admin.,married,basic.9y,no,no,no,cellular,nov,mon,94,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,technician,married,high.school,no,no,no,cellular,nov,mon,103,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+39,admin.,married,unknown,no,yes,yes,cellular,nov,mon,60,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+31,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,mon,257,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,management,divorced,university.degree,no,yes,no,cellular,nov,mon,89,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+39,blue-collar,divorced,high.school,no,no,yes,cellular,nov,mon,190,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,entrepreneur,married,high.school,no,no,no,cellular,nov,mon,77,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+58,entrepreneur,married,basic.4y,no,no,no,cellular,nov,mon,104,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,married,high.school,no,no,no,cellular,nov,mon,651,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,yes
+52,management,married,university.degree,no,yes,no,cellular,nov,mon,68,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,admin.,married,university.degree,unknown,yes,yes,cellular,nov,mon,205,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+43,blue-collar,single,basic.4y,no,yes,no,cellular,nov,mon,42,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+52,management,married,university.degree,no,yes,yes,cellular,nov,mon,98,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,73,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,married,unknown,no,no,no,cellular,nov,mon,55,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+50,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,mon,186,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+33,technician,single,university.degree,no,no,no,cellular,nov,mon,69,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+41,blue-collar,married,high.school,unknown,yes,no,cellular,nov,mon,121,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+50,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,249,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,336,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,management,married,basic.9y,no,yes,no,cellular,nov,mon,73,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,unemployed,married,high.school,no,no,no,cellular,nov,mon,55,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,married,unknown,no,no,no,cellular,nov,mon,657,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,blue-collar,married,professional.course,no,yes,no,cellular,nov,mon,345,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+43,management,married,university.degree,no,yes,no,cellular,nov,mon,65,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+57,management,married,university.degree,no,no,no,cellular,nov,mon,62,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,77,1,3,1,success,-0.1,93.2,-42,4.191,5195.8,no
+50,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,mon,102,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,admin.,single,university.degree,no,no,no,cellular,nov,mon,137,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+34,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,2462,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes
+30,services,single,high.school,no,no,no,cellular,nov,mon,213,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,blue-collar,married,basic.6y,unknown,yes,no,cellular,nov,mon,696,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes
+50,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,1449,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,nov,mon,188,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,unemployed,married,basic.9y,no,yes,no,cellular,nov,mon,391,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+54,technician,married,university.degree,no,unknown,unknown,cellular,nov,mon,56,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,management,divorced,university.degree,no,unknown,unknown,telephone,nov,mon,77,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,160,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,blue-collar,married,professional.course,no,no,no,cellular,nov,mon,407,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,self-employed,single,university.degree,no,no,no,cellular,nov,mon,406,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+47,admin.,divorced,professional.course,no,no,no,cellular,nov,mon,104,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+31,admin.,single,high.school,no,no,no,cellular,nov,mon,560,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,admin.,divorced,high.school,unknown,yes,no,cellular,nov,mon,168,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+54,admin.,married,basic.9y,no,yes,yes,cellular,nov,mon,167,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,entrepreneur,married,high.school,no,no,no,cellular,nov,mon,623,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+39,management,married,university.degree,no,no,no,cellular,nov,mon,102,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,management,married,university.degree,no,no,no,cellular,nov,mon,71,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+36,management,married,university.degree,no,no,no,cellular,nov,mon,264,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,technician,married,professional.course,no,yes,no,cellular,nov,mon,199,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+49,management,married,university.degree,no,no,no,cellular,nov,mon,96,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,admin.,divorced,high.school,no,no,no,cellular,nov,mon,529,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,admin.,married,high.school,no,no,no,cellular,nov,mon,64,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,admin.,married,high.school,no,yes,yes,cellular,nov,mon,165,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,admin.,married,high.school,no,no,no,cellular,nov,mon,141,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+33,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,mon,94,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,mon,499,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,technician,married,professional.course,no,no,no,cellular,nov,mon,64,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+43,blue-collar,married,high.school,no,yes,no,cellular,nov,mon,107,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+56,management,married,university.degree,no,yes,no,cellular,nov,mon,76,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,admin.,single,basic.9y,no,yes,no,cellular,nov,mon,1081,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+36,technician,married,professional.course,no,no,no,cellular,nov,mon,251,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+33,blue-collar,single,basic.9y,no,yes,no,cellular,nov,mon,101,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,admin.,married,high.school,no,no,no,cellular,nov,mon,504,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+40,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,111,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,technician,married,professional.course,no,yes,yes,telephone,nov,mon,215,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,admin.,married,high.school,no,yes,no,cellular,nov,mon,622,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,mon,325,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,services,married,high.school,no,no,yes,cellular,nov,mon,181,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,services,married,high.school,no,no,no,cellular,nov,mon,166,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+34,blue-collar,married,basic.4y,no,no,no,cellular,nov,mon,105,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+34,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,54,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+57,admin.,married,university.degree,no,yes,no,cellular,nov,mon,89,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+47,retired,married,high.school,no,yes,no,cellular,nov,mon,240,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,admin.,single,high.school,no,yes,no,cellular,nov,mon,92,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,single,high.school,no,yes,no,cellular,nov,mon,124,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,single,high.school,no,yes,no,cellular,nov,mon,86,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+40,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,55,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,admin.,married,university.degree,no,no,no,cellular,nov,mon,52,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,technician,married,university.degree,no,yes,no,cellular,nov,mon,105,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,entrepreneur,married,high.school,no,yes,no,cellular,nov,mon,63,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+58,management,divorced,university.degree,no,yes,no,cellular,nov,mon,48,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,admin.,single,high.school,unknown,no,yes,telephone,nov,mon,14,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+54,admin.,married,high.school,no,yes,no,cellular,nov,mon,287,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,admin.,single,high.school,unknown,yes,no,cellular,nov,mon,120,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,technician,single,professional.course,no,yes,no,cellular,nov,mon,253,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+40,admin.,single,high.school,unknown,yes,no,cellular,nov,mon,158,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+29,admin.,married,university.degree,no,no,no,cellular,nov,mon,142,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,married,high.school,no,yes,no,cellular,nov,mon,131,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,admin.,married,university.degree,unknown,no,no,cellular,nov,mon,174,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+54,retired,divorced,professional.course,no,no,no,cellular,nov,mon,62,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,209,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,technician,married,university.degree,no,yes,no,cellular,nov,mon,352,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,married,university.degree,no,no,no,cellular,nov,mon,62,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+40,blue-collar,married,basic.6y,no,no,no,cellular,nov,mon,128,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,married,university.degree,no,yes,no,cellular,nov,mon,120,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,married,high.school,unknown,no,no,cellular,nov,mon,119,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,technician,married,professional.course,no,yes,no,cellular,nov,mon,240,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,married,university.degree,no,yes,no,cellular,nov,mon,375,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,technician,single,university.degree,no,yes,no,cellular,nov,mon,984,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes
+37,management,divorced,unknown,no,no,yes,cellular,nov,mon,74,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+36,blue-collar,married,basic.9y,no,no,yes,cellular,nov,mon,131,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,117,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,admin.,married,university.degree,unknown,yes,yes,cellular,nov,mon,947,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes
+44,services,divorced,high.school,no,yes,no,cellular,nov,mon,101,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+48,services,divorced,high.school,unknown,yes,no,cellular,nov,mon,90,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+44,management,married,university.degree,no,yes,no,cellular,nov,mon,114,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+33,management,married,university.degree,no,yes,no,cellular,nov,mon,318,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+33,admin.,divorced,university.degree,no,yes,no,cellular,nov,mon,76,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+57,technician,married,professional.course,no,no,no,cellular,nov,mon,168,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,blue-collar,married,high.school,no,no,no,cellular,nov,mon,348,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+47,admin.,divorced,university.degree,unknown,no,no,cellular,nov,mon,213,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,200,2,4,1,success,-0.1,93.2,-42,4.191,5195.8,no
+47,management,married,university.degree,no,no,no,cellular,nov,mon,135,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,blue-collar,married,basic.9y,no,yes,yes,telephone,nov,mon,44,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,technician,single,professional.course,no,yes,no,cellular,nov,mon,165,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,technician,married,professional.course,no,yes,no,cellular,nov,mon,70,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,unemployed,divorced,high.school,no,no,no,cellular,nov,mon,166,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+32,blue-collar,married,high.school,no,yes,no,telephone,nov,mon,943,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes
+42,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,mon,191,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,admin.,divorced,high.school,no,yes,no,cellular,nov,mon,134,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+29,admin.,married,high.school,no,yes,yes,cellular,nov,mon,58,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+55,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,277,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+29,admin.,married,high.school,no,yes,no,cellular,nov,mon,155,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+29,admin.,single,university.degree,no,yes,no,cellular,nov,mon,183,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,unemployed,married,basic.9y,no,yes,no,cellular,nov,mon,554,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+33,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,218,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+48,services,married,basic.4y,unknown,yes,no,cellular,nov,mon,218,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+29,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,51,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,self-employed,single,university.degree,no,yes,yes,cellular,nov,mon,182,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,self-employed,married,university.degree,unknown,no,no,cellular,nov,mon,96,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,entrepreneur,single,university.degree,unknown,yes,no,cellular,nov,mon,472,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,blue-collar,married,high.school,no,no,no,cellular,nov,mon,540,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes
+48,management,married,unknown,no,yes,yes,cellular,nov,mon,323,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,unemployed,married,professional.course,no,yes,no,cellular,nov,mon,187,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+46,admin.,married,high.school,unknown,no,no,cellular,nov,mon,76,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+43,admin.,married,university.degree,no,yes,no,cellular,nov,mon,139,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+46,self-employed,married,university.degree,no,yes,no,cellular,nov,mon,581,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+41,admin.,married,high.school,no,yes,no,cellular,nov,mon,268,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,management,married,university.degree,no,yes,no,cellular,nov,mon,37,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,housemaid,married,university.degree,no,no,no,cellular,nov,mon,53,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+44,technician,single,university.degree,no,no,no,cellular,nov,mon,396,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+47,management,divorced,university.degree,no,yes,no,cellular,nov,mon,131,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,management,married,university.degree,no,no,no,cellular,nov,mon,369,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,services,married,basic.4y,no,no,no,cellular,nov,mon,161,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,services,married,basic.4y,no,yes,yes,cellular,nov,mon,111,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,blue-collar,single,basic.9y,no,yes,no,cellular,nov,mon,78,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+44,admin.,single,high.school,no,no,no,cellular,nov,mon,184,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,management,divorced,university.degree,no,no,no,cellular,nov,mon,136,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+31,technician,single,high.school,no,no,no,cellular,nov,mon,44,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+30,admin.,divorced,university.degree,no,no,no,telephone,nov,mon,48,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,self-employed,single,professional.course,no,yes,no,cellular,nov,mon,128,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,management,married,university.degree,no,no,no,cellular,nov,mon,146,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+29,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,127,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,management,married,high.school,no,no,yes,cellular,nov,mon,256,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,unemployed,married,university.degree,unknown,yes,no,cellular,nov,mon,74,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+52,services,divorced,high.school,unknown,no,no,cellular,nov,mon,190,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,retired,married,basic.4y,unknown,yes,no,cellular,nov,mon,57,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,admin.,married,high.school,no,yes,no,cellular,nov,mon,58,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,self-employed,single,high.school,no,yes,no,cellular,nov,mon,223,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+46,entrepreneur,married,university.degree,no,unknown,unknown,cellular,nov,mon,254,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+48,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,50,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+35,technician,married,professional.course,no,yes,no,cellular,nov,mon,115,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,blue-collar,married,basic.4y,no,no,yes,cellular,nov,mon,143,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,services,divorced,high.school,unknown,yes,no,cellular,nov,mon,734,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,62,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,management,married,basic.9y,no,yes,no,cellular,nov,mon,171,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+48,technician,married,unknown,unknown,no,no,cellular,nov,mon,159,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+34,admin.,married,high.school,no,yes,yes,cellular,nov,mon,56,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+34,admin.,married,high.school,no,no,no,cellular,nov,mon,113,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,self-employed,married,university.degree,no,yes,no,telephone,nov,mon,69,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+54,housemaid,single,basic.9y,unknown,no,no,cellular,nov,mon,158,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+31,self-employed,married,university.degree,no,yes,yes,cellular,nov,mon,60,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+56,services,married,high.school,no,yes,no,cellular,nov,mon,578,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+34,admin.,married,high.school,no,yes,no,cellular,nov,mon,355,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,self-employed,married,university.degree,no,yes,no,cellular,nov,mon,332,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,admin.,married,high.school,no,no,no,cellular,nov,mon,113,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,admin.,married,high.school,unknown,yes,no,cellular,nov,mon,147,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+48,technician,married,professional.course,no,yes,no,cellular,nov,mon,52,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+48,technician,married,professional.course,no,no,no,telephone,nov,mon,106,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,management,married,university.degree,no,yes,yes,cellular,nov,mon,789,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes
+55,admin.,married,high.school,unknown,no,no,cellular,nov,mon,73,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+32,management,single,university.degree,no,yes,yes,cellular,nov,mon,66,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,blue-collar,married,basic.6y,no,yes,no,cellular,nov,mon,116,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+39,technician,married,professional.course,no,yes,yes,cellular,nov,mon,501,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,admin.,divorced,high.school,no,yes,no,cellular,nov,mon,179,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+55,services,married,high.school,no,yes,no,cellular,nov,mon,40,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,technician,single,basic.9y,unknown,yes,yes,cellular,nov,mon,99,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+40,technician,single,basic.9y,unknown,yes,yes,cellular,nov,mon,180,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,310,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,services,married,professional.course,no,no,no,cellular,nov,mon,148,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,admin.,married,high.school,no,yes,no,cellular,nov,mon,88,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,technician,married,university.degree,no,yes,no,cellular,nov,mon,158,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,married,university.degree,no,yes,no,cellular,nov,mon,65,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,divorced,university.degree,no,yes,no,cellular,nov,mon,199,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,mon,48,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+30,admin.,single,university.degree,no,yes,no,cellular,nov,mon,711,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,self-employed,married,basic.9y,unknown,no,no,cellular,nov,mon,48,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+35,admin.,married,university.degree,no,no,no,cellular,nov,mon,747,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,admin.,married,university.degree,no,yes,no,cellular,nov,mon,690,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,services,married,high.school,no,yes,no,cellular,nov,mon,48,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,blue-collar,divorced,high.school,no,no,yes,cellular,nov,mon,159,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+30,blue-collar,single,basic.9y,no,yes,no,cellular,nov,mon,563,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,self-employed,married,basic.9y,unknown,yes,no,cellular,nov,mon,431,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,housemaid,married,university.degree,no,no,no,cellular,nov,mon,90,4,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+32,blue-collar,single,university.degree,no,yes,no,cellular,nov,mon,109,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,technician,married,basic.9y,no,no,no,cellular,nov,mon,295,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+34,self-employed,married,university.degree,no,yes,no,cellular,nov,mon,196,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,self-employed,married,basic.9y,unknown,no,yes,cellular,nov,mon,836,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+37,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,mon,94,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+46,technician,married,high.school,no,yes,no,cellular,nov,mon,171,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+39,management,single,basic.9y,no,yes,no,cellular,nov,mon,590,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,mon,136,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+34,entrepreneur,married,basic.6y,unknown,yes,no,cellular,nov,mon,788,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes
+46,technician,married,high.school,no,yes,no,cellular,nov,mon,569,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,divorced,high.school,no,yes,no,cellular,nov,mon,70,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,divorced,high.school,no,yes,no,telephone,nov,mon,124,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+38,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,mon,555,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+44,retired,divorced,professional.course,no,yes,no,cellular,nov,mon,231,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,married,university.degree,no,no,no,cellular,nov,mon,226,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,management,married,university.degree,no,yes,yes,cellular,nov,mon,173,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,admin.,single,high.school,no,yes,no,cellular,nov,mon,333,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,entrepreneur,married,high.school,no,yes,no,cellular,nov,mon,131,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+43,admin.,divorced,high.school,no,no,no,cellular,nov,mon,92,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,technician,single,university.degree,no,yes,yes,cellular,nov,mon,118,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+58,self-employed,married,university.degree,no,no,no,cellular,nov,mon,224,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+37,services,single,basic.9y,no,yes,no,cellular,nov,mon,283,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+51,admin.,married,high.school,no,yes,no,cellular,nov,mon,326,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,admin.,single,high.school,unknown,unknown,unknown,cellular,nov,mon,421,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,services,single,high.school,unknown,yes,no,cellular,nov,mon,130,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,divorced,high.school,no,unknown,unknown,cellular,nov,mon,295,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+34,entrepreneur,single,university.degree,no,yes,no,cellular,nov,mon,113,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,101,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+49,management,married,high.school,unknown,yes,no,cellular,nov,mon,79,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+41,technician,married,basic.6y,no,yes,no,telephone,nov,mon,60,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+48,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,694,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,entrepreneur,married,university.degree,no,yes,yes,cellular,nov,mon,78,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+44,entrepreneur,married,professional.course,no,yes,no,telephone,nov,mon,291,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,technician,married,basic.9y,no,yes,no,telephone,nov,mon,55,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,admin.,divorced,university.degree,no,yes,no,telephone,nov,mon,609,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+40,blue-collar,married,basic.4y,no,no,no,cellular,nov,mon,1121,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+34,unemployed,married,high.school,no,yes,no,cellular,nov,mon,564,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,admin.,married,high.school,no,yes,no,telephone,nov,mon,673,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,1091,2,5,1,success,-0.1,93.2,-42,4.191,5195.8,yes
+34,services,single,high.school,no,no,no,telephone,nov,mon,62,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+33,technician,single,university.degree,no,no,no,cellular,nov,mon,98,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,blue-collar,single,university.degree,no,no,no,cellular,nov,mon,242,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,services,married,professional.course,no,yes,yes,cellular,nov,mon,148,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+38,admin.,married,basic.6y,no,no,yes,telephone,nov,mon,204,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,mon,124,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,technician,single,professional.course,no,no,no,cellular,nov,mon,85,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,housemaid,married,high.school,unknown,no,no,cellular,nov,mon,165,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,entrepreneur,married,basic.4y,no,no,no,cellular,nov,mon,148,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,services,married,high.school,no,yes,no,cellular,nov,mon,193,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+33,blue-collar,married,basic.9y,no,yes,no,telephone,nov,mon,309,3,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+53,blue-collar,married,professional.course,no,yes,no,cellular,nov,mon,242,3,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+43,services,married,high.school,no,yes,yes,cellular,nov,mon,170,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,130,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+37,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,151,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+38,management,married,university.degree,no,no,no,cellular,nov,mon,221,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+57,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,mon,117,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+42,admin.,married,university.degree,no,yes,no,cellular,nov,mon,116,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+51,blue-collar,married,basic.4y,no,yes,yes,cellular,nov,mon,178,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+53,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,mon,228,4,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+43,management,divorced,high.school,no,yes,no,cellular,nov,mon,488,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+43,management,married,university.degree,no,yes,no,telephone,nov,mon,49,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,management,married,professional.course,no,yes,no,cellular,nov,mon,142,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,management,married,university.degree,no,yes,no,cellular,nov,mon,63,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,mon,69,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,management,married,university.degree,no,yes,yes,cellular,nov,mon,176,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+43,admin.,single,university.degree,no,no,no,cellular,nov,mon,507,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,admin.,married,university.degree,no,yes,no,telephone,nov,mon,1735,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+49,admin.,married,university.degree,no,yes,yes,telephone,nov,mon,340,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+42,technician,married,professional.course,no,yes,yes,cellular,nov,mon,126,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+57,retired,married,university.degree,no,yes,yes,cellular,nov,mon,1132,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes
+38,admin.,single,basic.9y,no,yes,yes,cellular,nov,mon,501,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,technician,single,professional.course,no,yes,no,cellular,nov,mon,286,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+41,admin.,divorced,university.degree,no,yes,no,telephone,nov,mon,110,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+55,technician,single,professional.course,no,no,no,cellular,nov,mon,99,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+51,technician,married,high.school,no,no,no,cellular,nov,mon,198,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+41,blue-collar,married,basic.9y,unknown,yes,no,telephone,nov,mon,184,4,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+49,management,married,university.degree,no,yes,yes,cellular,nov,mon,308,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+48,technician,married,professional.course,no,yes,no,cellular,nov,mon,156,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+34,management,divorced,university.degree,no,no,no,cellular,nov,mon,212,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,mon,35,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,admin.,married,university.degree,unknown,no,no,cellular,nov,mon,725,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,management,married,university.degree,no,no,no,telephone,nov,mon,127,4,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+43,management,married,high.school,no,yes,yes,cellular,nov,mon,70,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,blue-collar,married,high.school,no,yes,yes,cellular,nov,mon,330,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,housemaid,married,basic.9y,no,yes,yes,cellular,nov,mon,272,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,admin.,married,university.degree,no,no,no,cellular,nov,mon,397,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+43,admin.,married,university.degree,no,no,no,cellular,nov,mon,222,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,mon,333,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+52,entrepreneur,single,university.degree,unknown,yes,no,cellular,nov,mon,77,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,blue-collar,married,professional.course,no,yes,yes,cellular,nov,mon,212,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+33,student,single,unknown,no,no,no,cellular,nov,mon,288,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,retired,married,university.degree,no,yes,yes,telephone,nov,mon,215,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,management,married,university.degree,unknown,yes,no,cellular,nov,mon,536,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,57,4,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+41,self-employed,married,basic.9y,unknown,yes,no,cellular,nov,mon,145,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,113,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+31,services,divorced,high.school,no,no,no,telephone,nov,mon,107,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,services,married,high.school,no,no,no,cellular,nov,mon,86,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,management,married,high.school,no,yes,no,telephone,nov,mon,188,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+52,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,85,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,595,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,admin.,married,high.school,no,yes,no,cellular,nov,mon,140,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+33,management,married,university.degree,no,yes,no,cellular,nov,mon,681,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+36,entrepreneur,married,high.school,no,yes,yes,cellular,nov,mon,139,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,blue-collar,single,basic.9y,no,yes,yes,cellular,nov,mon,61,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+41,technician,married,university.degree,no,no,no,cellular,nov,mon,149,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+41,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,44,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+35,blue-collar,married,high.school,unknown,yes,no,cellular,nov,mon,273,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+52,admin.,married,basic.4y,no,yes,yes,cellular,nov,mon,102,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,blue-collar,married,basic.6y,no,yes,no,telephone,nov,mon,99,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+46,services,married,high.school,no,yes,no,cellular,nov,mon,966,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+39,services,married,high.school,no,yes,yes,cellular,nov,mon,49,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,blue-collar,married,basic.9y,no,yes,no,telephone,nov,mon,132,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+30,admin.,married,university.degree,no,no,no,cellular,nov,mon,329,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,management,married,university.degree,no,no,no,telephone,nov,mon,22,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+44,admin.,married,professional.course,no,no,no,cellular,nov,mon,200,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+53,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,mon,179,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,mon,93,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+53,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,mon,68,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+44,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,1210,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,yes
+44,admin.,married,professional.course,no,no,no,cellular,nov,mon,353,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+53,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,mon,107,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+53,entrepreneur,divorced,university.degree,no,no,no,telephone,nov,mon,247,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+45,blue-collar,divorced,basic.9y,unknown,no,no,cellular,nov,mon,220,4,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+35,admin.,married,university.degree,no,yes,no,cellular,nov,mon,211,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+35,admin.,married,unknown,no,yes,no,cellular,nov,mon,960,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+44,admin.,married,professional.course,no,yes,no,telephone,nov,mon,762,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+57,technician,divorced,professional.course,no,yes,no,cellular,nov,mon,181,4,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+43,admin.,married,university.degree,no,yes,no,cellular,nov,mon,414,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+33,unemployed,married,basic.9y,unknown,yes,no,cellular,nov,mon,150,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,services,divorced,high.school,unknown,yes,yes,cellular,nov,mon,652,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,yes
+45,admin.,married,basic.9y,no,yes,no,cellular,nov,mon,446,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+30,services,married,basic.9y,unknown,yes,no,cellular,nov,mon,209,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,entrepreneur,married,basic.9y,unknown,no,no,telephone,nov,mon,210,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+48,services,married,basic.9y,unknown,yes,no,cellular,nov,mon,301,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+30,services,married,basic.9y,unknown,no,no,cellular,nov,mon,415,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+41,management,married,basic.6y,unknown,yes,no,cellular,nov,mon,264,4,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,self-employed,married,university.degree,unknown,no,no,cellular,nov,mon,81,4,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+51,self-employed,married,basic.4y,no,no,no,cellular,nov,mon,189,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+52,management,married,university.degree,no,yes,yes,cellular,nov,mon,172,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,blue-collar,divorced,basic.9y,no,yes,yes,cellular,nov,mon,151,3,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+45,self-employed,married,university.degree,no,yes,no,cellular,nov,mon,487,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+32,entrepreneur,married,university.degree,no,yes,yes,telephone,nov,mon,249,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+37,entrepreneur,married,university.degree,unknown,yes,no,telephone,nov,mon,215,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+40,blue-collar,married,basic.6y,no,yes,no,cellular,nov,mon,108,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,entrepreneur,married,university.degree,unknown,yes,no,telephone,nov,mon,17,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+41,admin.,married,university.degree,no,no,no,cellular,nov,mon,295,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+33,entrepreneur,married,basic.9y,unknown,yes,yes,telephone,nov,mon,292,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+37,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,mon,454,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes
+50,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,92,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+51,retired,divorced,basic.4y,no,yes,yes,cellular,nov,mon,94,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+31,management,single,university.degree,no,no,no,cellular,nov,mon,104,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+58,retired,married,professional.course,no,no,no,cellular,nov,mon,318,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+50,entrepreneur,married,university.degree,no,no,no,cellular,nov,mon,408,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+43,unemployed,married,basic.9y,unknown,yes,yes,cellular,nov,mon,252,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+33,technician,single,university.degree,no,no,no,telephone,nov,mon,293,5,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no
+37,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,1012,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no
+42,unemployed,married,high.school,no,yes,no,cellular,nov,tue,154,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,technician,married,professional.course,no,no,yes,cellular,nov,tue,166,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,admin.,married,high.school,no,no,no,cellular,nov,tue,127,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,technician,married,professional.course,no,unknown,unknown,cellular,nov,tue,336,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,admin.,single,university.degree,no,yes,no,cellular,nov,tue,82,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+55,admin.,married,professional.course,unknown,yes,yes,telephone,nov,tue,514,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes
+56,technician,married,professional.course,unknown,unknown,unknown,cellular,nov,tue,44,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+34,admin.,married,high.school,no,no,no,cellular,nov,tue,105,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,management,married,university.degree,no,yes,yes,cellular,nov,tue,41,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+51,admin.,married,university.degree,no,no,no,cellular,nov,tue,143,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+44,technician,married,professional.course,no,no,no,telephone,nov,tue,189,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,41,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,technician,divorced,professional.course,unknown,no,no,cellular,nov,tue,143,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,150,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,services,single,professional.course,no,yes,no,cellular,nov,tue,41,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,self-employed,divorced,basic.9y,no,yes,no,cellular,nov,tue,237,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,management,married,professional.course,no,no,no,cellular,nov,tue,42,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,management,married,professional.course,no,yes,no,cellular,nov,tue,99,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,technician,divorced,professional.course,no,no,no,cellular,nov,tue,46,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+55,blue-collar,single,basic.6y,no,yes,no,cellular,nov,tue,204,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+49,admin.,divorced,basic.6y,no,no,no,cellular,nov,tue,295,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,management,married,university.degree,no,no,no,cellular,nov,tue,88,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+56,retired,married,basic.4y,no,no,no,cellular,nov,tue,79,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,technician,married,university.degree,no,unknown,unknown,cellular,nov,tue,104,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+31,technician,married,university.degree,no,unknown,unknown,cellular,nov,tue,102,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,64,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+53,services,divorced,high.school,no,yes,no,cellular,nov,tue,233,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,unemployed,married,high.school,no,no,no,cellular,nov,tue,94,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,self-employed,married,basic.9y,no,yes,no,cellular,nov,tue,139,4,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+47,unemployed,married,high.school,no,yes,no,cellular,nov,tue,65,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+40,self-employed,married,basic.9y,no,no,no,cellular,nov,tue,55,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+47,management,married,university.degree,no,yes,no,cellular,nov,tue,283,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,326,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,465,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,admin.,single,university.degree,no,no,no,cellular,nov,tue,67,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,admin.,single,university.degree,no,yes,no,cellular,nov,tue,119,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+41,services,married,university.degree,no,yes,no,cellular,nov,tue,140,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,entrepreneur,single,basic.9y,no,no,no,cellular,nov,tue,386,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,blue-collar,single,high.school,no,yes,yes,telephone,nov,tue,228,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+35,blue-collar,married,professional.course,no,yes,no,cellular,nov,tue,114,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+48,admin.,married,unknown,unknown,no,no,cellular,nov,tue,67,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,management,married,university.degree,no,yes,no,cellular,nov,tue,57,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,tue,130,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+57,management,married,university.degree,no,yes,no,cellular,nov,tue,93,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,management,married,university.degree,no,yes,no,cellular,nov,tue,176,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,blue-collar,single,high.school,no,yes,no,cellular,nov,tue,79,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,technician,married,professional.course,no,yes,no,cellular,nov,tue,1978,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes
+36,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,101,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+56,admin.,married,high.school,unknown,yes,no,cellular,nov,tue,105,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,blue-collar,married,professional.course,no,no,no,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,blue-collar,married,professional.course,no,yes,yes,cellular,nov,tue,64,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+34,blue-collar,married,professional.course,no,no,yes,cellular,nov,tue,91,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+40,entrepreneur,married,basic.9y,no,no,no,telephone,nov,tue,40,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,blue-collar,married,professional.course,no,unknown,unknown,cellular,nov,tue,138,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+52,technician,married,basic.9y,no,yes,no,cellular,nov,tue,54,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+40,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,tue,67,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+40,management,married,university.degree,no,no,no,cellular,nov,tue,1122,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,yes
+34,blue-collar,married,professional.course,no,no,no,cellular,nov,tue,164,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+35,admin.,married,high.school,no,no,no,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,admin.,married,high.school,no,no,no,cellular,nov,tue,72,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,entrepreneur,married,university.degree,no,yes,no,cellular,nov,tue,854,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes
+35,admin.,married,high.school,no,yes,no,cellular,nov,tue,114,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+49,management,married,university.degree,no,yes,no,cellular,nov,tue,116,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,services,married,high.school,no,yes,no,cellular,nov,tue,105,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+40,technician,married,professional.course,no,no,no,cellular,nov,tue,348,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+44,management,divorced,university.degree,unknown,no,no,cellular,nov,tue,365,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+44,technician,single,professional.course,no,yes,yes,cellular,nov,tue,155,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,entrepreneur,divorced,basic.4y,no,no,no,cellular,nov,tue,290,1,5,1,success,-0.1,93.2,-42,4.153,5195.8,no
+36,self-employed,single,basic.9y,no,no,no,cellular,nov,tue,94,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+40,self-employed,married,basic.9y,unknown,no,no,cellular,nov,tue,53,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+37,technician,married,high.school,no,no,no,cellular,nov,tue,39,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+53,self-employed,married,basic.4y,no,yes,no,cellular,nov,tue,76,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,admin.,single,university.degree,no,no,no,cellular,nov,tue,36,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,admin.,married,high.school,no,no,no,cellular,nov,tue,132,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,technician,married,professional.course,no,yes,no,cellular,nov,tue,333,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,tue,155,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,admin.,single,high.school,no,yes,no,cellular,nov,tue,106,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,184,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,admin.,married,high.school,no,no,yes,cellular,nov,tue,271,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+29,admin.,single,university.degree,no,yes,no,cellular,nov,tue,224,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,technician,married,unknown,no,no,no,cellular,nov,tue,144,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,admin.,single,university.degree,no,no,no,cellular,nov,tue,55,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+58,technician,married,unknown,no,no,no,cellular,nov,tue,82,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,admin.,married,high.school,no,yes,yes,telephone,nov,tue,52,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,management,married,university.degree,no,yes,no,cellular,nov,tue,341,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,blue-collar,married,basic.9y,no,yes,no,telephone,nov,tue,47,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,55,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,unemployed,single,basic.6y,unknown,yes,no,cellular,nov,tue,51,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+40,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,71,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,unemployed,single,basic.6y,unknown,yes,no,cellular,nov,tue,76,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,tue,62,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,admin.,married,university.degree,no,yes,no,cellular,nov,tue,52,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,services,divorced,high.school,no,yes,no,cellular,nov,tue,46,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,services,married,basic.6y,unknown,yes,no,telephone,nov,tue,368,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,housemaid,divorced,professional.course,no,yes,no,cellular,nov,tue,132,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,blue-collar,married,basic.9y,no,unknown,unknown,cellular,nov,tue,111,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+56,self-employed,divorced,high.school,no,no,no,cellular,nov,tue,79,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+29,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,42,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,tue,295,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+40,admin.,married,high.school,no,yes,no,cellular,nov,tue,134,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,technician,single,professional.course,no,no,yes,cellular,nov,tue,76,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,services,divorced,high.school,no,yes,no,cellular,nov,tue,194,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,214,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,admin.,divorced,university.degree,no,yes,no,telephone,nov,tue,51,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+42,self-employed,divorced,university.degree,no,yes,no,cellular,nov,tue,278,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,management,married,university.degree,no,no,no,cellular,nov,tue,188,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,154,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+52,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,79,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,technician,married,professional.course,no,yes,no,telephone,nov,tue,89,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,blue-collar,single,basic.9y,no,no,no,cellular,nov,tue,58,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,84,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,145,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,346,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+52,management,married,high.school,no,yes,no,cellular,nov,tue,75,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+40,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,181,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+38,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,213,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,services,married,basic.6y,no,unknown,unknown,cellular,nov,tue,340,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,management,married,university.degree,no,yes,yes,cellular,nov,tue,353,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,admin.,married,university.degree,no,no,no,cellular,nov,tue,104,2,1,1,success,-0.1,93.2,-42,4.153,5195.8,no
+37,management,divorced,high.school,no,yes,no,cellular,nov,tue,1268,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,management,married,university.degree,no,yes,no,cellular,nov,tue,47,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,housemaid,divorced,basic.9y,no,yes,no,cellular,nov,tue,59,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+39,admin.,married,university.degree,no,no,no,cellular,nov,tue,108,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,technician,divorced,high.school,no,no,no,cellular,nov,tue,132,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+55,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,tue,86,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,admin.,married,university.degree,unknown,yes,no,cellular,nov,tue,61,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,admin.,married,high.school,no,yes,no,cellular,nov,tue,273,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+32,services,married,high.school,unknown,yes,no,cellular,nov,tue,121,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,admin.,married,university.degree,unknown,yes,no,cellular,nov,tue,88,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+46,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,50,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+29,admin.,single,university.degree,no,yes,no,cellular,nov,tue,636,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,management,single,university.degree,no,yes,no,cellular,nov,tue,466,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,housemaid,married,university.degree,unknown,no,no,cellular,nov,tue,110,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+44,entrepreneur,divorced,basic.6y,no,yes,no,cellular,nov,tue,132,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,unemployed,married,high.school,yes,no,no,cellular,nov,tue,111,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+34,blue-collar,married,professional.course,no,yes,no,cellular,nov,tue,135,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+46,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,281,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,management,married,basic.4y,no,no,no,cellular,nov,tue,276,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+43,entrepreneur,married,basic.9y,no,yes,yes,cellular,nov,tue,74,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,management,single,high.school,unknown,no,no,telephone,nov,tue,274,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,admin.,married,university.degree,no,yes,no,cellular,nov,tue,71,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,79,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+30,management,married,university.degree,no,yes,yes,cellular,nov,tue,196,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,blue-collar,single,basic.4y,no,yes,no,cellular,nov,tue,175,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+48,admin.,married,unknown,unknown,no,no,cellular,nov,tue,319,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+48,services,married,high.school,no,yes,no,cellular,nov,tue,71,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,management,single,high.school,unknown,no,no,cellular,nov,tue,714,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+52,management,married,university.degree,no,yes,no,cellular,nov,tue,67,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,technician,married,professional.course,no,yes,no,cellular,nov,tue,149,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+56,technician,single,professional.course,no,yes,no,cellular,nov,tue,635,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,admin.,single,high.school,no,yes,yes,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,blue-collar,single,university.degree,unknown,yes,no,cellular,nov,tue,63,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,admin.,married,high.school,no,yes,no,cellular,nov,tue,280,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,services,married,high.school,no,yes,no,cellular,nov,tue,107,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,services,married,basic.9y,no,yes,no,cellular,nov,tue,51,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,technician,married,professional.course,no,yes,no,cellular,nov,tue,850,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+52,management,married,university.degree,no,unknown,unknown,cellular,nov,tue,486,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes
+47,housemaid,divorced,professional.course,no,no,yes,cellular,nov,tue,253,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+37,blue-collar,married,high.school,no,no,no,cellular,nov,tue,118,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+49,entrepreneur,married,professional.course,unknown,no,no,cellular,nov,tue,132,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,admin.,married,high.school,no,no,no,cellular,nov,tue,141,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,169,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+48,services,married,high.school,no,yes,no,cellular,nov,tue,835,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,blue-collar,divorced,basic.6y,no,no,no,cellular,nov,tue,200,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,122,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+48,admin.,single,university.degree,no,no,no,cellular,nov,tue,148,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+33,admin.,married,university.degree,no,yes,no,cellular,nov,tue,51,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,132,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,180,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+30,technician,single,professional.course,no,no,yes,cellular,nov,tue,835,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes
+36,unemployed,married,basic.6y,no,yes,no,cellular,nov,tue,144,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,services,married,high.school,no,yes,no,cellular,nov,tue,90,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,services,married,high.school,no,yes,no,cellular,nov,tue,129,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,54,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+30,technician,married,professional.course,no,yes,no,cellular,nov,tue,613,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,150,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+32,services,married,basic.6y,unknown,yes,no,telephone,nov,tue,162,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+52,admin.,single,basic.9y,no,yes,no,cellular,nov,tue,296,1,6,1,success,-0.1,93.2,-42,4.153,5195.8,no
+40,services,married,high.school,no,yes,no,cellular,nov,tue,66,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,unemployed,married,high.school,no,no,yes,cellular,nov,tue,155,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,unemployed,married,high.school,no,no,no,cellular,nov,tue,145,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,blue-collar,single,high.school,no,yes,no,cellular,nov,tue,117,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,entrepreneur,single,university.degree,no,yes,no,cellular,nov,tue,435,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,admin.,married,university.degree,no,yes,no,cellular,nov,tue,266,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+37,blue-collar,divorced,basic.6y,no,yes,yes,cellular,nov,tue,963,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+52,technician,married,high.school,no,yes,no,cellular,nov,tue,385,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,blue-collar,divorced,unknown,no,yes,no,telephone,nov,tue,125,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,blue-collar,single,high.school,no,yes,no,cellular,nov,tue,257,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,99,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+36,blue-collar,married,basic.9y,no,unknown,unknown,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,technician,single,university.degree,no,yes,no,cellular,nov,tue,82,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+38,blue-collar,divorced,unknown,no,no,no,cellular,nov,tue,154,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+40,technician,married,professional.course,no,yes,no,cellular,nov,tue,130,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+29,technician,single,high.school,no,yes,no,cellular,nov,tue,127,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,management,married,high.school,no,yes,no,cellular,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,blue-collar,divorced,unknown,no,no,no,cellular,nov,tue,596,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes
+40,management,married,university.degree,no,no,no,cellular,nov,tue,131,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+30,unemployed,married,high.school,no,yes,yes,cellular,nov,tue,924,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes
+52,admin.,divorced,university.degree,no,yes,yes,cellular,nov,tue,183,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,admin.,divorced,university.degree,no,no,yes,cellular,nov,tue,198,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+49,management,married,university.degree,no,yes,no,cellular,nov,tue,37,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+49,management,married,university.degree,no,no,no,cellular,nov,tue,188,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+47,services,married,high.school,no,yes,no,cellular,nov,tue,99,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+49,management,married,university.degree,no,yes,no,cellular,nov,tue,197,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,464,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,453,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes
+39,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,tue,54,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,housemaid,married,basic.4y,no,no,no,cellular,nov,tue,242,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+54,entrepreneur,married,professional.course,no,yes,yes,cellular,nov,tue,134,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,admin.,married,high.school,no,yes,no,cellular,nov,tue,62,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,technician,married,high.school,no,no,no,cellular,nov,tue,91,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+52,management,married,university.degree,unknown,yes,no,cellular,nov,tue,419,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes
+31,management,single,university.degree,no,no,no,cellular,nov,tue,82,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,admin.,divorced,basic.9y,no,yes,no,cellular,nov,tue,128,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+44,management,married,basic.9y,no,no,no,cellular,nov,tue,638,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,technician,single,university.degree,no,no,no,cellular,nov,tue,113,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,technician,divorced,professional.course,no,yes,no,cellular,nov,tue,78,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+43,blue-collar,married,basic.9y,no,no,yes,cellular,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,technician,divorced,professional.course,no,yes,no,cellular,nov,tue,250,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,technician,divorced,professional.course,no,no,no,cellular,nov,tue,288,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+57,retired,married,professional.course,no,unknown,unknown,cellular,nov,tue,193,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+49,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,34,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+47,admin.,divorced,high.school,no,no,no,cellular,nov,tue,352,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,services,divorced,high.school,no,no,no,cellular,nov,tue,119,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+43,management,married,university.degree,no,yes,no,cellular,nov,tue,89,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,admin.,single,university.degree,no,no,no,cellular,nov,tue,93,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,admin.,married,university.degree,no,yes,no,cellular,nov,tue,305,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,admin.,married,high.school,no,yes,no,cellular,nov,tue,109,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,technician,married,professional.course,no,yes,no,telephone,nov,tue,205,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+48,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,122,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+31,student,single,high.school,no,yes,yes,cellular,nov,tue,107,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,admin.,married,high.school,no,yes,no,cellular,nov,tue,17,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,services,married,high.school,no,yes,no,cellular,nov,tue,103,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+29,blue-collar,divorced,basic.6y,no,yes,no,telephone,nov,tue,272,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,retired,married,high.school,no,yes,no,cellular,nov,tue,145,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,technician,married,professional.course,no,no,no,cellular,nov,tue,233,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+54,retired,married,high.school,no,no,no,cellular,nov,tue,172,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+49,management,married,basic.9y,no,unknown,unknown,cellular,nov,tue,336,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,services,married,basic.6y,no,no,no,cellular,nov,tue,154,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,services,married,basic.9y,no,no,no,cellular,nov,tue,109,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,self-employed,married,university.degree,no,no,no,telephone,nov,tue,103,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,admin.,married,high.school,no,yes,no,cellular,nov,tue,50,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,unemployed,single,university.degree,no,yes,yes,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+49,services,married,high.school,no,no,no,cellular,nov,tue,48,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+38,blue-collar,married,professional.course,no,yes,no,telephone,nov,tue,15,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,admin.,married,basic.6y,no,yes,no,cellular,nov,tue,122,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+53,self-employed,married,basic.4y,no,no,no,cellular,nov,tue,505,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+55,admin.,married,high.school,no,yes,no,cellular,nov,tue,106,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,entrepreneur,married,basic.9y,no,no,no,cellular,nov,tue,125,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+55,admin.,married,high.school,no,yes,no,cellular,nov,tue,191,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+44,technician,married,professional.course,no,yes,no,cellular,nov,tue,75,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+57,management,married,university.degree,no,yes,yes,cellular,nov,tue,609,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,yes
+54,entrepreneur,married,professional.course,no,no,no,cellular,nov,tue,1855,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes
+35,management,married,high.school,no,yes,no,telephone,nov,tue,159,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+49,admin.,married,basic.9y,no,yes,no,cellular,nov,tue,204,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+48,technician,married,university.degree,no,yes,no,cellular,nov,tue,82,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+50,management,married,basic.4y,no,yes,no,cellular,nov,tue,389,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+46,self-employed,married,basic.4y,no,yes,yes,cellular,nov,tue,162,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+31,entrepreneur,divorced,basic.4y,no,no,no,cellular,nov,tue,152,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,management,married,high.school,no,yes,no,cellular,nov,tue,417,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+48,technician,married,university.degree,no,yes,no,cellular,nov,tue,208,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,management,single,university.degree,no,no,no,telephone,nov,tue,52,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,entrepreneur,married,basic.9y,no,no,no,cellular,nov,tue,59,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+48,technician,married,university.degree,no,no,no,cellular,nov,tue,346,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,tue,100,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+35,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,35,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,entrepreneur,married,basic.9y,no,no,no,telephone,nov,tue,2,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,admin.,single,university.degree,no,yes,no,cellular,nov,tue,288,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,220,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+32,technician,single,university.degree,no,no,no,cellular,nov,tue,77,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+52,management,married,basic.6y,no,yes,no,cellular,nov,tue,97,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+51,admin.,married,high.school,no,no,yes,cellular,nov,tue,118,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+46,technician,married,basic.9y,no,no,no,cellular,nov,tue,530,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,management,married,university.degree,no,yes,no,cellular,nov,tue,118,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+53,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,69,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,services,married,high.school,no,no,no,cellular,nov,tue,91,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,management,single,high.school,no,yes,no,cellular,nov,tue,52,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+46,technician,married,basic.9y,no,yes,no,cellular,nov,tue,226,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+53,admin.,divorced,university.degree,no,no,yes,cellular,nov,tue,172,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,services,married,high.school,no,yes,no,cellular,nov,tue,78,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,admin.,single,high.school,no,yes,no,cellular,nov,tue,90,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,technician,divorced,high.school,no,no,no,cellular,nov,tue,70,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+46,technician,married,professional.course,no,yes,no,telephone,nov,tue,103,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,entrepreneur,single,university.degree,no,no,no,cellular,nov,tue,199,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+40,technician,married,professional.course,no,yes,no,cellular,nov,tue,110,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+30,admin.,married,high.school,no,yes,no,cellular,nov,tue,92,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+29,technician,single,high.school,no,no,yes,cellular,nov,tue,206,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+46,admin.,divorced,high.school,no,no,no,cellular,nov,tue,91,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+57,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,48,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,technician,married,university.degree,no,no,no,cellular,nov,tue,131,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+45,technician,married,high.school,no,yes,no,cellular,nov,tue,79,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,self-employed,divorced,university.degree,no,no,no,cellular,nov,tue,349,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,management,single,high.school,no,no,yes,cellular,nov,tue,322,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+56,management,married,university.degree,no,yes,no,cellular,nov,tue,125,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,services,single,high.school,no,no,no,cellular,nov,tue,105,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+39,management,married,high.school,no,no,no,cellular,nov,tue,328,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+38,admin.,married,high.school,no,yes,no,cellular,nov,tue,67,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,technician,married,university.degree,no,no,no,cellular,nov,tue,432,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,entrepreneur,married,basic.4y,no,yes,yes,cellular,nov,tue,224,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,management,single,high.school,no,no,no,cellular,nov,tue,74,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,housemaid,married,basic.4y,no,no,no,cellular,nov,tue,109,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,technician,single,professional.course,no,yes,yes,cellular,nov,tue,89,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+56,admin.,married,professional.course,no,yes,no,cellular,nov,tue,124,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+33,technician,single,basic.9y,no,no,no,telephone,nov,tue,117,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,services,divorced,professional.course,no,yes,no,cellular,nov,tue,61,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+58,retired,married,professional.course,no,yes,no,cellular,nov,tue,191,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,admin.,single,high.school,unknown,yes,no,cellular,nov,tue,215,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,services,divorced,professional.course,no,no,no,cellular,nov,tue,68,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+31,technician,married,high.school,no,no,no,cellular,nov,tue,90,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,technician,married,high.school,no,no,yes,cellular,nov,tue,67,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,self-employed,married,basic.9y,no,yes,no,telephone,nov,tue,37,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+49,technician,married,professional.course,no,no,no,cellular,nov,tue,267,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+29,management,single,university.degree,no,no,yes,cellular,nov,tue,73,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,management,married,university.degree,no,no,no,cellular,nov,tue,61,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+53,management,married,university.degree,no,yes,yes,cellular,nov,tue,60,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+29,management,single,university.degree,no,no,no,cellular,nov,tue,232,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+41,admin.,single,high.school,no,no,no,cellular,nov,tue,143,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+52,services,married,high.school,no,yes,no,telephone,nov,tue,251,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+58,retired,married,university.degree,no,yes,no,cellular,nov,tue,90,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+29,technician,single,high.school,no,no,no,cellular,nov,tue,155,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,blue-collar,single,basic.9y,no,yes,no,cellular,nov,tue,65,1,4,1,success,-0.1,93.2,-42,4.153,5195.8,no
+32,unemployed,married,university.degree,no,no,no,cellular,nov,tue,329,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+49,admin.,single,unknown,unknown,no,no,cellular,nov,tue,74,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+56,retired,married,basic.4y,no,no,no,cellular,nov,tue,130,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,admin.,single,university.degree,no,no,no,cellular,nov,tue,398,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,technician,single,university.degree,no,no,no,telephone,nov,tue,18,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+29,management,single,university.degree,no,no,no,cellular,nov,tue,708,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+52,services,married,high.school,no,yes,no,cellular,nov,tue,655,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,admin.,single,university.degree,no,no,no,cellular,nov,tue,100,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+56,technician,married,professional.course,unknown,no,no,cellular,nov,tue,81,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,management,married,university.degree,no,no,no,cellular,nov,tue,126,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+46,management,married,high.school,no,yes,yes,cellular,nov,tue,140,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+53,admin.,married,professional.course,no,yes,yes,cellular,nov,tue,140,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,unemployed,single,university.degree,no,yes,yes,cellular,nov,tue,98,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,admin.,married,high.school,no,yes,no,cellular,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+53,management,married,university.degree,no,no,no,cellular,nov,tue,756,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+40,services,married,high.school,no,no,no,cellular,nov,tue,51,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+50,management,single,university.degree,no,yes,no,cellular,nov,tue,600,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+41,entrepreneur,married,high.school,no,yes,no,cellular,nov,tue,120,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,services,married,high.school,no,no,no,cellular,nov,tue,102,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+46,self-employed,married,basic.6y,unknown,yes,no,cellular,nov,tue,32,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+45,management,married,university.degree,no,no,no,cellular,nov,tue,69,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,retired,divorced,basic.9y,unknown,no,no,telephone,nov,tue,114,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+54,management,married,university.degree,no,no,no,cellular,nov,tue,53,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+35,services,married,basic.9y,no,no,no,cellular,nov,tue,281,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,retired,divorced,basic.9y,unknown,no,no,cellular,nov,tue,198,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,retired,divorced,basic.9y,unknown,yes,no,cellular,nov,tue,201,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+40,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,72,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,retired,divorced,basic.9y,unknown,no,no,cellular,nov,tue,378,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,management,married,university.degree,no,no,no,cellular,nov,tue,339,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,admin.,married,professional.course,no,yes,no,cellular,nov,tue,201,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,tue,134,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,admin.,single,high.school,no,yes,no,cellular,nov,tue,133,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,unemployed,married,high.school,no,no,no,cellular,nov,tue,79,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+32,admin.,married,university.degree,no,yes,no,cellular,nov,tue,61,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,admin.,married,high.school,no,no,no,telephone,nov,tue,46,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,management,married,university.degree,no,yes,no,telephone,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,technician,married,university.degree,no,yes,no,cellular,nov,tue,63,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,admin.,single,university.degree,no,yes,no,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+44,blue-collar,single,basic.9y,no,yes,yes,cellular,nov,tue,182,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,management,married,professional.course,no,no,no,cellular,nov,tue,257,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+55,admin.,married,university.degree,no,no,no,cellular,nov,tue,71,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,entrepreneur,single,university.degree,no,yes,no,cellular,nov,tue,295,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+40,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,tue,67,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+45,management,married,university.degree,no,no,no,cellular,nov,tue,401,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+40,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,tue,137,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,blue-collar,married,basic.4y,unknown,no,no,cellular,nov,tue,103,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+45,self-employed,married,basic.4y,no,unknown,unknown,cellular,nov,tue,121,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,unemployed,single,university.degree,no,yes,no,cellular,nov,tue,97,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,management,single,high.school,unknown,yes,no,cellular,nov,tue,68,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+55,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,tue,63,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,services,divorced,high.school,no,no,yes,cellular,nov,tue,98,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,tue,271,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,management,married,university.degree,no,no,no,cellular,nov,tue,435,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,management,married,university.degree,no,no,no,cellular,nov,tue,368,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+44,management,single,university.degree,no,no,no,cellular,nov,tue,152,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,services,married,high.school,no,no,no,cellular,nov,tue,107,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,services,married,high.school,no,yes,no,cellular,nov,tue,97,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+44,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,52,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+45,self-employed,married,basic.4y,no,yes,no,cellular,nov,tue,475,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,services,married,high.school,no,yes,no,cellular,nov,tue,164,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,services,married,high.school,no,unknown,unknown,cellular,nov,tue,125,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+48,technician,divorced,professional.course,no,unknown,unknown,cellular,nov,tue,83,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+48,technician,divorced,professional.course,no,yes,yes,cellular,nov,tue,86,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,management,married,professional.course,no,no,no,cellular,nov,tue,68,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,services,divorced,high.school,no,no,no,telephone,nov,tue,236,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,technician,married,basic.9y,no,no,no,cellular,nov,tue,142,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,admin.,married,high.school,no,no,no,cellular,nov,tue,157,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+36,services,divorced,high.school,no,no,no,cellular,nov,tue,87,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+52,blue-collar,single,basic.9y,unknown,yes,no,cellular,nov,tue,261,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+48,self-employed,married,university.degree,no,no,no,cellular,nov,tue,137,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,admin.,single,university.degree,no,yes,no,cellular,nov,tue,123,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,60,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,services,married,university.degree,no,no,no,cellular,nov,tue,190,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,admin.,married,university.degree,no,no,no,cellular,nov,tue,51,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,blue-collar,single,high.school,unknown,no,no,cellular,nov,tue,588,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+30,self-employed,single,high.school,no,no,no,cellular,nov,tue,52,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+58,entrepreneur,married,basic.4y,no,no,yes,cellular,nov,tue,164,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+43,entrepreneur,married,professional.course,no,no,no,cellular,nov,tue,63,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,technician,single,university.degree,no,no,no,cellular,nov,tue,131,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+41,admin.,married,university.degree,unknown,yes,no,cellular,nov,tue,331,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,unemployed,married,basic.9y,no,yes,no,cellular,nov,tue,127,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+48,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,entrepreneur,married,basic.9y,no,no,no,cellular,nov,tue,432,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,management,married,university.degree,no,yes,no,cellular,nov,tue,94,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,76,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,admin.,married,university.degree,no,no,no,cellular,nov,tue,475,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,blue-collar,married,basic.6y,no,no,no,cellular,nov,tue,348,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,entrepreneur,single,university.degree,no,yes,yes,cellular,nov,tue,309,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,admin.,married,university.degree,no,no,no,cellular,nov,tue,112,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,management,married,university.degree,no,no,no,cellular,nov,tue,66,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,self-employed,married,professional.course,no,yes,no,cellular,nov,tue,91,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+54,self-employed,married,basic.9y,no,no,yes,cellular,nov,tue,72,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,entrepreneur,married,university.degree,no,no,no,cellular,nov,tue,73,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+56,services,divorced,basic.6y,no,yes,no,cellular,nov,tue,199,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,technician,single,professional.course,no,no,no,cellular,nov,tue,165,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+49,admin.,married,university.degree,no,no,no,cellular,nov,tue,163,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+45,technician,divorced,professional.course,no,yes,yes,cellular,nov,tue,124,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+45,technician,divorced,professional.course,no,yes,yes,cellular,nov,tue,178,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,blue-collar,married,professional.course,unknown,no,no,cellular,nov,tue,124,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,services,married,basic.9y,no,no,no,cellular,nov,tue,93,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+32,services,married,professional.course,no,yes,yes,cellular,nov,tue,265,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,blue-collar,married,high.school,no,yes,no,cellular,nov,tue,77,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,management,married,university.degree,no,no,no,cellular,nov,tue,96,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+35,admin.,married,high.school,no,no,yes,cellular,nov,tue,140,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+40,admin.,divorced,basic.9y,no,no,no,cellular,nov,tue,179,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,management,married,university.degree,no,yes,no,telephone,nov,tue,155,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,admin.,divorced,university.degree,no,yes,yes,cellular,nov,tue,384,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,technician,married,professional.course,no,no,no,cellular,nov,tue,98,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,technician,married,university.degree,no,no,no,cellular,nov,tue,90,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+47,services,married,high.school,no,no,no,cellular,nov,tue,110,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,tue,62,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+34,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,120,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,154,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+37,services,married,high.school,no,yes,no,cellular,nov,tue,157,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,technician,married,professional.course,no,unknown,unknown,cellular,nov,tue,319,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+46,technician,divorced,basic.4y,unknown,yes,no,cellular,nov,tue,262,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,services,single,professional.course,unknown,yes,no,cellular,nov,tue,114,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,unemployed,married,basic.6y,no,no,no,cellular,nov,tue,177,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+49,blue-collar,married,basic.6y,unknown,no,no,cellular,nov,tue,157,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,admin.,married,high.school,unknown,yes,yes,cellular,nov,tue,65,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,blue-collar,single,basic.9y,no,yes,no,cellular,nov,tue,82,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+57,blue-collar,married,professional.course,no,no,no,cellular,nov,tue,244,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,blue-collar,married,basic.6y,no,yes,yes,telephone,nov,tue,137,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,admin.,married,basic.9y,no,no,yes,cellular,nov,tue,110,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+48,admin.,married,unknown,unknown,no,yes,cellular,nov,tue,63,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,technician,single,professional.course,no,no,no,cellular,nov,tue,125,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,40,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+46,blue-collar,married,basic.6y,no,no,yes,cellular,nov,tue,97,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,technician,single,professional.course,no,yes,yes,cellular,nov,tue,69,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,admin.,married,university.degree,no,no,no,cellular,nov,tue,123,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,188,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,blue-collar,married,professional.course,no,yes,no,cellular,nov,tue,172,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+48,admin.,married,university.degree,unknown,yes,no,telephone,nov,tue,82,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,management,married,university.degree,no,no,no,cellular,nov,tue,114,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,self-employed,married,university.degree,no,yes,yes,cellular,nov,tue,55,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,management,married,university.degree,no,yes,no,cellular,nov,tue,54,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+44,management,single,university.degree,no,yes,no,cellular,nov,tue,120,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+50,management,married,high.school,no,yes,yes,cellular,nov,tue,174,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,admin.,divorced,high.school,no,yes,no,cellular,nov,tue,250,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,technician,married,professional.course,no,no,no,cellular,nov,tue,45,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+39,admin.,married,university.degree,no,no,no,cellular,nov,tue,251,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,blue-collar,married,basic.4y,no,yes,yes,telephone,nov,tue,234,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,services,married,basic.9y,no,yes,no,cellular,nov,tue,219,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+58,management,married,university.degree,no,yes,yes,cellular,nov,tue,240,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+41,blue-collar,divorced,basic.9y,no,yes,no,telephone,nov,tue,32,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,admin.,married,high.school,no,yes,no,cellular,nov,tue,94,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,management,married,university.degree,no,no,no,cellular,nov,tue,139,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+55,entrepreneur,married,university.degree,unknown,yes,yes,cellular,nov,tue,157,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+49,self-employed,single,professional.course,unknown,yes,no,telephone,nov,tue,126,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+44,blue-collar,married,professional.course,unknown,no,no,cellular,nov,tue,214,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,management,single,university.degree,no,yes,yes,cellular,nov,tue,79,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+46,admin.,married,high.school,no,yes,no,cellular,nov,tue,107,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,399,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,231,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+40,unemployed,married,professional.course,no,no,no,telephone,nov,tue,129,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+53,self-employed,divorced,university.degree,no,no,no,cellular,nov,tue,597,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,admin.,single,high.school,no,unknown,unknown,cellular,nov,tue,229,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+53,self-employed,married,basic.4y,no,yes,yes,cellular,nov,tue,464,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+42,technician,married,basic.6y,no,no,no,cellular,nov,tue,166,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+58,housemaid,married,basic.4y,unknown,no,no,cellular,nov,tue,91,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,tue,196,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,management,married,university.degree,no,yes,yes,telephone,nov,tue,71,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+53,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,tue,146,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+39,admin.,married,university.degree,no,no,no,cellular,nov,tue,123,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,student,single,university.degree,no,yes,no,cellular,nov,tue,203,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,technician,married,basic.9y,no,yes,no,telephone,nov,tue,102,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+39,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,175,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,blue-collar,married,basic.6y,no,no,no,cellular,nov,tue,86,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+50,admin.,married,high.school,no,no,no,cellular,nov,tue,87,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,management,divorced,professional.course,no,no,no,cellular,nov,tue,75,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+53,management,married,university.degree,no,yes,no,cellular,nov,tue,313,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+53,management,married,university.degree,no,yes,no,cellular,nov,tue,244,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,admin.,divorced,university.degree,no,yes,yes,cellular,nov,tue,355,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,services,divorced,high.school,no,yes,no,cellular,nov,tue,74,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+32,admin.,single,university.degree,no,yes,no,cellular,nov,tue,145,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+47,management,married,university.degree,no,no,no,cellular,nov,tue,141,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,management,married,university.degree,no,yes,no,cellular,nov,tue,51,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+57,admin.,married,university.degree,no,no,yes,cellular,nov,tue,192,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,admin.,married,high.school,no,no,no,cellular,nov,tue,464,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,admin.,married,high.school,no,yes,no,cellular,nov,tue,125,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,blue-collar,single,basic.9y,no,yes,no,cellular,nov,tue,67,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+36,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,79,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+45,management,married,university.degree,no,no,no,cellular,nov,tue,72,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+55,management,married,university.degree,no,yes,no,telephone,nov,tue,47,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,admin.,married,high.school,no,yes,no,cellular,nov,tue,722,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+39,technician,married,university.degree,no,no,yes,cellular,nov,tue,1437,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes
+50,management,single,university.degree,no,no,no,cellular,nov,tue,175,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,tue,133,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+46,technician,married,professional.course,no,yes,no,cellular,nov,tue,163,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+30,self-employed,married,professional.course,unknown,yes,no,cellular,nov,tue,273,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+56,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,147,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+44,management,married,university.degree,no,yes,no,cellular,nov,tue,170,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+46,unemployed,married,high.school,unknown,yes,no,cellular,nov,tue,81,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,727,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,admin.,divorced,university.degree,no,no,yes,cellular,nov,tue,96,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,services,single,basic.9y,no,no,no,cellular,nov,tue,187,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,unemployed,single,university.degree,no,yes,no,cellular,nov,tue,135,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+45,management,married,university.degree,no,no,no,cellular,nov,tue,633,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,admin.,divorced,professional.course,no,yes,no,telephone,nov,tue,55,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+44,technician,married,high.school,no,no,no,cellular,nov,tue,231,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,management,married,university.degree,no,yes,no,cellular,nov,tue,715,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+46,technician,married,professional.course,no,yes,no,cellular,nov,tue,135,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+45,entrepreneur,married,basic.4y,no,unknown,unknown,telephone,nov,tue,67,7,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+40,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,tue,113,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+56,technician,single,professional.course,no,yes,no,cellular,nov,tue,116,6,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+45,unemployed,single,professional.course,no,no,no,cellular,nov,tue,191,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+40,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,103,6,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,technician,married,high.school,no,no,no,cellular,nov,tue,255,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+41,blue-collar,married,professional.course,unknown,yes,no,cellular,nov,tue,190,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,admin.,married,high.school,no,no,no,cellular,nov,tue,204,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+46,self-employed,married,basic.4y,no,no,no,cellular,nov,tue,354,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+33,technician,single,basic.9y,no,no,no,cellular,nov,tue,61,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+46,entrepreneur,married,university.degree,no,yes,no,cellular,nov,tue,148,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,housemaid,married,basic.4y,no,no,no,cellular,nov,tue,878,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,admin.,married,university.degree,no,no,no,cellular,nov,tue,138,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,management,married,university.degree,no,no,yes,cellular,nov,tue,89,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+35,self-employed,divorced,university.degree,no,no,no,cellular,nov,tue,271,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,technician,single,university.degree,no,no,no,cellular,nov,tue,171,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+39,management,married,high.school,no,no,no,cellular,nov,tue,361,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,management,married,university.degree,no,no,no,cellular,nov,tue,244,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,services,married,basic.9y,no,no,no,cellular,nov,tue,218,2,4,1,success,-0.1,93.2,-42,4.153,5195.8,no
+44,services,married,high.school,unknown,no,no,cellular,nov,tue,43,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,management,married,university.degree,no,no,no,cellular,nov,tue,658,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,136,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+54,admin.,married,basic.4y,unknown,yes,no,cellular,nov,tue,127,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+29,technician,married,professional.course,no,yes,no,cellular,nov,tue,54,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+29,technician,married,professional.course,no,no,no,cellular,nov,tue,154,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+37,management,single,university.degree,no,yes,no,cellular,nov,tue,242,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+51,admin.,married,university.degree,no,yes,no,cellular,nov,tue,275,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+42,admin.,married,university.degree,no,yes,no,telephone,nov,tue,217,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,admin.,single,university.degree,no,yes,no,cellular,nov,tue,84,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,technician,single,university.degree,no,no,no,cellular,nov,tue,110,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+48,technician,married,university.degree,no,no,no,cellular,nov,tue,373,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,admin.,divorced,high.school,no,no,no,cellular,nov,tue,115,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+31,technician,single,university.degree,no,no,no,cellular,nov,tue,259,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+34,services,single,high.school,no,no,no,cellular,nov,tue,202,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,286,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,admin.,married,university.degree,no,no,yes,cellular,nov,tue,98,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,admin.,married,high.school,no,yes,no,cellular,nov,tue,97,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+41,technician,single,professional.course,unknown,yes,no,cellular,nov,tue,68,2,4,1,success,-0.1,93.2,-42,4.153,5195.8,no
+29,unemployed,married,professional.course,no,yes,no,cellular,nov,tue,170,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,management,single,university.degree,no,yes,no,cellular,nov,tue,129,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,management,single,professional.course,no,yes,no,cellular,nov,tue,400,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,unemployed,divorced,professional.course,no,no,no,cellular,nov,tue,282,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,self-employed,married,high.school,unknown,yes,no,cellular,nov,tue,126,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,tue,241,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+36,management,married,university.degree,no,yes,no,cellular,nov,tue,267,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,self-employed,married,professional.course,no,no,no,cellular,nov,tue,1788,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes
+56,retired,divorced,university.degree,no,yes,no,cellular,nov,tue,972,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,blue-collar,married,basic.4y,no,no,no,telephone,nov,tue,194,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,blue-collar,married,basic.4y,no,yes,no,cellular,nov,tue,87,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,entrepreneur,married,high.school,no,no,no,cellular,nov,tue,143,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+35,blue-collar,married,basic.6y,no,yes,no,cellular,nov,tue,372,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,admin.,single,university.degree,no,yes,yes,cellular,nov,tue,86,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,technician,single,professional.course,no,yes,no,cellular,nov,tue,58,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,blue-collar,single,university.degree,unknown,yes,yes,cellular,nov,tue,119,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,management,single,high.school,no,no,yes,cellular,nov,tue,117,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+48,management,married,basic.9y,no,unknown,unknown,cellular,nov,tue,373,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+49,entrepreneur,married,high.school,no,no,no,telephone,nov,tue,177,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,housemaid,divorced,basic.4y,no,no,no,cellular,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,housemaid,married,basic.4y,no,yes,no,telephone,nov,tue,150,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes
+36,housemaid,divorced,basic.4y,no,yes,no,cellular,nov,tue,171,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,technician,single,professional.course,no,yes,no,cellular,nov,tue,131,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,self-employed,married,university.degree,no,no,no,cellular,nov,tue,115,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+42,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,tue,283,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,retired,married,high.school,unknown,yes,no,cellular,nov,tue,121,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,admin.,married,university.degree,no,yes,no,telephone,nov,tue,174,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,technician,married,professional.course,no,yes,no,cellular,nov,tue,238,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,61,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+40,blue-collar,single,high.school,no,yes,no,cellular,nov,tue,139,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+54,technician,married,university.degree,no,no,no,cellular,nov,tue,810,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+42,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,tue,586,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+40,services,married,high.school,unknown,no,no,cellular,nov,tue,80,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,blue-collar,married,basic.9y,no,no,no,telephone,nov,tue,296,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+57,management,married,university.degree,no,no,yes,cellular,nov,tue,218,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,management,married,basic.9y,no,yes,no,cellular,nov,tue,390,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+40,admin.,married,professional.course,no,yes,no,cellular,nov,tue,271,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,management,married,university.degree,no,no,no,telephone,nov,tue,195,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+52,entrepreneur,married,basic.4y,no,no,no,cellular,nov,tue,173,7,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+42,self-employed,single,basic.4y,no,yes,no,cellular,nov,tue,100,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+38,admin.,married,high.school,no,yes,no,cellular,nov,tue,192,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+58,entrepreneur,married,basic.4y,unknown,yes,no,cellular,nov,tue,185,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,management,married,university.degree,no,yes,yes,cellular,nov,tue,411,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+30,entrepreneur,single,basic.9y,no,yes,no,cellular,nov,tue,108,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,housemaid,divorced,basic.4y,no,yes,no,cellular,nov,tue,163,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+45,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,167,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+47,admin.,married,university.degree,no,no,no,cellular,nov,tue,1014,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+57,retired,married,high.school,no,no,no,cellular,nov,tue,486,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+34,admin.,married,university.degree,no,no,no,cellular,nov,tue,140,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+36,blue-collar,married,basic.9y,no,no,yes,cellular,nov,tue,160,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+38,technician,single,basic.9y,no,yes,no,cellular,nov,tue,425,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+40,technician,married,basic.6y,unknown,yes,no,cellular,nov,tue,353,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,management,married,university.degree,no,yes,yes,cellular,nov,tue,84,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,admin.,married,university.degree,no,no,yes,telephone,nov,tue,79,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+29,admin.,divorced,high.school,no,yes,no,cellular,nov,tue,920,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,893,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,management,single,university.degree,no,yes,no,cellular,nov,tue,240,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+40,technician,married,professional.course,no,yes,no,telephone,nov,tue,33,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+52,blue-collar,single,basic.9y,unknown,yes,no,cellular,nov,tue,77,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+32,blue-collar,married,basic.6y,no,yes,no,cellular,nov,tue,203,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+42,blue-collar,married,basic.6y,unknown,no,no,cellular,nov,tue,364,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+40,management,married,high.school,unknown,no,no,cellular,nov,tue,825,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+58,management,married,university.degree,unknown,yes,no,cellular,nov,tue,233,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+40,admin.,divorced,basic.9y,no,yes,no,cellular,nov,tue,394,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+51,admin.,married,basic.9y,no,no,yes,cellular,nov,tue,515,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+52,technician,married,professional.course,no,yes,yes,telephone,nov,tue,285,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+30,services,married,high.school,no,yes,no,cellular,nov,tue,65,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,services,divorced,basic.9y,no,yes,yes,cellular,nov,tue,62,6,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,services,married,high.school,no,no,no,cellular,nov,tue,200,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+29,technician,divorced,professional.course,no,no,no,cellular,nov,tue,55,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+43,blue-collar,married,basic.4y,unknown,yes,yes,telephone,nov,tue,249,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+31,technician,married,university.degree,no,yes,no,cellular,nov,tue,39,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+30,services,married,high.school,no,yes,no,cellular,nov,tue,493,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,admin.,married,university.degree,no,no,no,telephone,nov,tue,40,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+50,admin.,married,university.degree,no,no,no,cellular,nov,tue,99,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,741,4,999,1,failure,-0.1,93.2,-42,4.153,5195.8,yes
+50,admin.,married,university.degree,no,no,yes,cellular,nov,tue,189,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+34,self-employed,single,high.school,no,yes,no,cellular,nov,tue,581,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+42,technician,single,unknown,no,yes,no,telephone,nov,tue,115,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+46,admin.,married,high.school,no,yes,no,cellular,nov,tue,154,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,technician,married,professional.course,no,yes,no,cellular,nov,tue,166,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+41,admin.,single,university.degree,no,yes,no,cellular,nov,tue,105,5,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+33,housemaid,married,high.school,no,no,no,cellular,nov,tue,188,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+42,self-employed,divorced,professional.course,no,yes,no,cellular,nov,tue,491,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,admin.,single,university.degree,no,yes,no,telephone,nov,tue,263,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+58,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,64,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+35,blue-collar,married,professional.course,no,yes,no,cellular,nov,tue,139,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+53,services,divorced,university.degree,no,yes,yes,cellular,nov,tue,105,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+58,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,80,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+58,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,180,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+58,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,158,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+35,admin.,single,university.degree,no,no,no,cellular,nov,tue,898,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes
+36,blue-collar,married,basic.6y,no,no,no,cellular,nov,tue,111,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,blue-collar,married,basic.6y,no,no,no,cellular,nov,tue,246,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+39,unemployed,married,basic.9y,unknown,no,no,cellular,nov,tue,149,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+34,technician,divorced,professional.course,no,yes,no,cellular,nov,tue,83,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,247,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+43,housemaid,single,basic.9y,no,no,no,cellular,nov,tue,173,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+48,technician,single,university.degree,no,yes,yes,cellular,nov,tue,193,4,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+48,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,141,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+39,unemployed,married,basic.9y,unknown,yes,no,cellular,nov,tue,467,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+31,self-employed,single,university.degree,no,yes,no,telephone,nov,tue,176,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,technician,married,basic.9y,no,no,no,cellular,nov,tue,106,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,technician,married,basic.9y,no,yes,no,cellular,nov,tue,66,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+39,unemployed,married,basic.9y,unknown,no,yes,cellular,nov,tue,530,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+34,technician,married,basic.9y,no,no,no,cellular,nov,tue,110,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,admin.,married,high.school,no,no,no,cellular,nov,tue,201,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+29,unemployed,divorced,university.degree,no,yes,no,telephone,nov,tue,366,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+43,admin.,married,high.school,no,yes,no,telephone,nov,tue,82,6,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+44,management,married,basic.9y,no,yes,no,cellular,nov,tue,129,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,admin.,married,high.school,no,yes,no,cellular,nov,tue,136,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+34,technician,single,high.school,no,yes,no,telephone,nov,tue,251,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+42,admin.,married,high.school,no,no,no,cellular,nov,tue,203,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+45,services,married,high.school,unknown,no,no,cellular,nov,tue,75,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,entrepreneur,married,university.degree,no,no,no,cellular,nov,tue,543,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes
+36,technician,single,professional.course,no,yes,no,telephone,nov,tue,34,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,technician,single,high.school,no,yes,no,telephone,nov,tue,1476,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,technician,single,professional.course,no,yes,no,cellular,nov,tue,216,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,technician,married,professional.course,no,yes,no,cellular,nov,tue,252,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+33,admin.,single,high.school,no,no,no,cellular,nov,tue,436,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+42,blue-collar,married,basic.6y,no,yes,yes,cellular,nov,tue,288,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+56,blue-collar,single,basic.4y,unknown,no,yes,cellular,nov,tue,307,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,technician,married,professional.course,no,yes,no,telephone,nov,tue,164,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,technician,married,professional.course,no,no,no,cellular,nov,tue,91,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+30,technician,married,professional.course,no,no,no,cellular,nov,tue,679,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+37,technician,married,professional.course,no,yes,no,cellular,nov,tue,400,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no
+36,technician,single,professional.course,no,yes,no,cellular,nov,tue,1132,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,yes
+37,technician,married,professional.course,no,no,no,cellular,nov,tue,372,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no
+56,management,divorced,university.degree,no,no,no,cellular,nov,wed,90,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,77,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,entrepreneur,single,basic.9y,no,no,yes,cellular,nov,wed,139,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,technician,divorced,high.school,no,no,no,telephone,nov,wed,59,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,167,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,technician,married,professional.course,no,no,no,cellular,nov,wed,427,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,admin.,single,university.degree,no,no,no,cellular,nov,wed,187,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,308,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,blue-collar,married,basic.4y,no,yes,no,telephone,nov,wed,178,5,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+43,self-employed,married,basic.4y,no,no,yes,cellular,nov,wed,206,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,management,single,university.degree,no,no,no,cellular,nov,wed,89,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,management,single,university.degree,no,no,no,cellular,nov,wed,62,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,admin.,single,university.degree,no,no,no,cellular,nov,wed,308,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,entrepreneur,married,basic.6y,no,yes,yes,cellular,nov,wed,56,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,management,single,university.degree,no,no,no,cellular,nov,wed,209,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+29,management,single,university.degree,no,yes,no,telephone,nov,wed,103,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,blue-collar,married,basic.4y,no,yes,yes,cellular,nov,wed,98,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,blue-collar,single,high.school,no,yes,no,cellular,nov,wed,180,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,admin.,divorced,university.degree,unknown,yes,no,cellular,nov,wed,697,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+33,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,84,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,management,married,university.degree,no,no,yes,cellular,nov,wed,113,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+41,admin.,married,basic.9y,no,yes,no,cellular,nov,wed,135,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,management,married,university.degree,no,yes,no,cellular,nov,wed,157,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,management,married,university.degree,no,yes,yes,cellular,nov,wed,299,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,services,divorced,high.school,no,yes,no,cellular,nov,wed,100,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+35,technician,single,high.school,no,yes,yes,cellular,nov,wed,819,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+34,admin.,single,high.school,no,no,no,cellular,nov,wed,347,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,admin.,single,high.school,no,no,no,cellular,nov,wed,511,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+32,blue-collar,single,high.school,no,yes,yes,cellular,nov,wed,126,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,blue-collar,single,high.school,no,yes,no,cellular,nov,wed,108,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+45,self-employed,married,basic.6y,unknown,yes,no,cellular,nov,wed,101,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,admin.,single,high.school,no,no,no,cellular,nov,wed,740,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+49,management,divorced,university.degree,no,no,no,cellular,nov,wed,364,2,6,1,success,-0.1,93.2,-42,4.12,5195.8,no
+30,entrepreneur,married,high.school,no,no,no,cellular,nov,wed,706,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+48,blue-collar,single,basic.9y,no,yes,no,cellular,nov,wed,43,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,management,married,high.school,no,no,yes,cellular,nov,wed,375,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+55,admin.,divorced,high.school,no,unknown,unknown,cellular,nov,wed,370,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,services,single,high.school,no,yes,yes,cellular,nov,wed,125,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,technician,married,professional.course,unknown,yes,no,cellular,nov,wed,242,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,technician,married,professional.course,unknown,yes,no,cellular,nov,wed,147,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+38,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,112,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+46,admin.,divorced,university.degree,no,yes,yes,cellular,nov,wed,184,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+39,self-employed,married,basic.4y,unknown,no,no,cellular,nov,wed,159,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+39,self-employed,married,university.degree,unknown,no,no,cellular,nov,wed,199,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+41,management,married,university.degree,no,no,no,cellular,nov,wed,140,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+58,retired,married,professional.course,no,no,no,cellular,nov,wed,189,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+41,management,married,university.degree,no,no,no,cellular,nov,wed,192,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+44,services,single,high.school,no,no,no,cellular,nov,wed,305,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,housemaid,married,basic.6y,no,no,no,cellular,nov,wed,167,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,admin.,single,professional.course,no,no,no,cellular,nov,wed,207,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,blue-collar,married,high.school,no,yes,no,cellular,nov,wed,104,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,blue-collar,single,basic.9y,no,no,no,cellular,nov,wed,30,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,housemaid,single,basic.4y,unknown,unknown,unknown,cellular,nov,wed,316,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+29,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,wed,133,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+58,retired,married,professional.course,no,no,no,cellular,nov,wed,577,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,admin.,single,university.degree,no,yes,no,cellular,nov,wed,305,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+30,blue-collar,single,basic.9y,no,no,no,cellular,nov,wed,204,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,self-employed,married,university.degree,no,no,no,cellular,nov,wed,210,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,admin.,married,basic.9y,no,yes,no,cellular,nov,wed,126,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,technician,divorced,high.school,no,yes,no,telephone,nov,wed,137,4,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+48,admin.,single,professional.course,no,yes,no,cellular,nov,wed,530,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,management,married,university.degree,no,yes,no,cellular,nov,wed,400,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,technician,single,professional.course,no,no,no,cellular,nov,wed,295,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+36,technician,married,university.degree,no,no,no,cellular,nov,wed,221,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,158,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,technician,single,university.degree,no,yes,no,cellular,nov,wed,58,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+45,technician,married,professional.course,no,no,no,cellular,nov,wed,193,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,management,single,university.degree,no,no,no,cellular,nov,wed,187,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+46,management,divorced,high.school,no,no,no,cellular,nov,wed,499,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,technician,single,unknown,no,no,no,cellular,nov,wed,313,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,admin.,married,high.school,no,yes,no,telephone,nov,wed,125,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+44,services,single,high.school,no,yes,yes,cellular,nov,wed,277,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,unemployed,divorced,high.school,no,no,no,cellular,nov,wed,194,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,admin.,single,university.degree,no,yes,no,cellular,nov,wed,210,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+39,technician,married,professional.course,no,no,no,telephone,nov,wed,70,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,unemployed,single,professional.course,no,yes,no,cellular,nov,wed,192,1,0,1,success,-0.1,93.2,-42,4.12,5195.8,no
+31,admin.,married,university.degree,no,yes,no,cellular,nov,wed,162,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+37,management,married,university.degree,no,yes,no,cellular,nov,wed,140,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+29,admin.,divorced,basic.9y,no,yes,no,cellular,nov,wed,134,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,self-employed,married,high.school,no,no,no,cellular,nov,wed,67,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,unemployed,divorced,high.school,no,yes,no,cellular,nov,wed,351,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,management,married,university.degree,no,no,no,cellular,nov,wed,143,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+35,self-employed,single,university.degree,no,no,yes,cellular,nov,wed,197,1,3,1,success,-0.1,93.2,-42,4.12,5195.8,no
+34,technician,married,professional.course,no,yes,no,cellular,nov,wed,82,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+41,admin.,single,university.degree,no,yes,no,cellular,nov,wed,369,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+44,entrepreneur,married,high.school,no,no,no,cellular,nov,wed,130,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,114,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,112,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+45,technician,divorced,professional.course,unknown,yes,yes,cellular,nov,wed,136,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+44,entrepreneur,married,high.school,no,no,no,cellular,nov,wed,289,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,technician,married,university.degree,no,yes,no,cellular,nov,wed,36,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,technician,married,university.degree,no,no,no,cellular,nov,wed,145,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,admin.,divorced,university.degree,no,yes,no,cellular,nov,wed,589,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+58,management,divorced,university.degree,no,yes,no,cellular,nov,wed,168,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,management,single,university.degree,no,no,no,cellular,nov,wed,493,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,management,married,university.degree,no,yes,no,cellular,nov,wed,265,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,self-employed,married,university.degree,no,yes,no,cellular,nov,wed,905,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+58,management,divorced,university.degree,no,no,no,cellular,nov,wed,418,1,5,1,success,-0.1,93.2,-42,4.12,5195.8,yes
+43,admin.,married,university.degree,no,no,no,cellular,nov,wed,97,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,admin.,married,university.degree,no,no,no,cellular,nov,wed,682,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,244,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,housemaid,divorced,basic.9y,unknown,yes,no,cellular,nov,wed,107,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+51,housemaid,married,high.school,no,no,no,cellular,nov,wed,355,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,technician,single,professional.course,no,yes,yes,telephone,nov,wed,161,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+41,services,divorced,high.school,no,yes,no,cellular,nov,wed,296,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,technician,married,professional.course,no,yes,yes,cellular,nov,wed,1554,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,820,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+34,technician,married,university.degree,no,yes,no,cellular,nov,wed,686,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+45,technician,married,university.degree,no,yes,no,cellular,nov,wed,278,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,technician,married,professional.course,unknown,no,no,cellular,nov,wed,291,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+51,admin.,married,high.school,no,no,no,cellular,nov,wed,286,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,technician,single,basic.9y,no,no,yes,cellular,nov,wed,224,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,technician,single,professional.course,no,no,no,cellular,nov,wed,215,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+29,admin.,married,high.school,no,yes,yes,cellular,nov,wed,155,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,admin.,single,high.school,no,yes,yes,cellular,nov,wed,236,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,technician,divorced,high.school,no,yes,no,cellular,nov,wed,110,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+45,technician,married,university.degree,no,yes,no,cellular,nov,wed,770,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,blue-collar,married,basic.4y,no,no,yes,cellular,nov,wed,441,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,management,divorced,university.degree,no,no,no,cellular,nov,wed,77,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,management,married,professional.course,unknown,yes,no,cellular,nov,wed,58,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+50,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,139,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+29,technician,single,basic.9y,no,yes,no,cellular,nov,wed,648,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,entrepreneur,married,high.school,no,yes,no,cellular,nov,wed,902,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,technician,married,high.school,no,no,yes,cellular,nov,wed,470,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,single,university.degree,no,no,no,cellular,nov,wed,106,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,single,university.degree,no,yes,yes,cellular,nov,wed,89,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,single,university.degree,no,yes,no,telephone,nov,wed,72,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,admin.,married,university.degree,no,yes,no,cellular,nov,wed,288,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,technician,single,professional.course,no,yes,no,cellular,nov,wed,140,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+42,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,61,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,wed,202,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+37,admin.,married,professional.course,unknown,yes,no,cellular,nov,wed,37,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,management,married,university.degree,no,yes,no,cellular,nov,wed,64,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+30,admin.,single,high.school,no,yes,no,cellular,nov,wed,109,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+29,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,wed,336,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,925,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+43,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,239,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,admin.,single,university.degree,no,yes,no,cellular,nov,wed,473,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,divorced,high.school,no,no,no,cellular,nov,wed,424,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,technician,married,university.degree,no,no,no,cellular,nov,wed,298,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+34,admin.,married,high.school,no,no,no,cellular,nov,wed,183,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,70,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,169,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,admin.,single,university.degree,no,no,no,cellular,nov,wed,808,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,divorced,high.school,no,yes,no,cellular,nov,wed,862,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+29,housemaid,single,high.school,no,no,no,cellular,nov,wed,786,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+49,technician,married,professional.course,no,yes,no,cellular,nov,wed,298,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,blue-collar,married,high.school,no,no,no,cellular,nov,wed,436,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+56,self-employed,married,university.degree,no,yes,no,cellular,nov,wed,108,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,blue-collar,single,university.degree,no,yes,no,cellular,nov,wed,225,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,technician,married,university.degree,no,yes,no,cellular,nov,wed,86,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,723,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,blue-collar,married,basic.9y,unknown,no,yes,cellular,nov,wed,104,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,housemaid,single,high.school,no,yes,no,cellular,nov,wed,993,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+47,services,married,high.school,no,yes,no,cellular,nov,wed,311,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,admin.,married,university.degree,no,no,no,cellular,nov,wed,122,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+34,admin.,married,university.degree,no,no,no,cellular,nov,wed,85,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+46,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,wed,814,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+30,technician,married,university.degree,no,yes,no,cellular,nov,wed,154,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+46,blue-collar,single,basic.4y,unknown,no,no,cellular,nov,wed,584,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+54,housemaid,married,basic.9y,no,yes,yes,cellular,nov,wed,133,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,management,married,basic.9y,no,yes,no,cellular,nov,wed,103,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+59,housemaid,single,professional.course,no,no,no,cellular,nov,wed,69,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,technician,single,professional.course,no,unknown,unknown,cellular,nov,wed,401,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,admin.,single,high.school,no,no,no,cellular,nov,wed,578,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,blue-collar,married,basic.4y,no,no,yes,cellular,nov,wed,217,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,self-employed,divorced,university.degree,no,yes,no,cellular,nov,wed,177,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+49,management,married,high.school,no,yes,no,cellular,nov,wed,182,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,entrepreneur,married,professional.course,no,yes,no,cellular,nov,wed,203,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+50,entrepreneur,married,basic.4y,unknown,yes,no,telephone,nov,wed,53,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,technician,single,high.school,no,yes,no,cellular,nov,wed,375,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+38,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,157,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,admin.,married,university.degree,no,no,no,cellular,nov,wed,630,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,technician,married,university.degree,no,no,no,cellular,nov,wed,223,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,blue-collar,single,high.school,no,no,no,cellular,nov,wed,361,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,admin.,single,university.degree,no,no,no,telephone,nov,wed,125,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,services,married,high.school,no,no,no,cellular,nov,wed,426,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+29,admin.,married,university.degree,no,yes,no,cellular,nov,wed,117,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,185,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+49,management,married,high.school,no,no,no,cellular,nov,wed,582,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+43,services,divorced,high.school,no,no,no,cellular,nov,wed,466,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,admin.,single,high.school,no,yes,no,cellular,nov,wed,222,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+43,management,married,university.degree,no,yes,yes,cellular,nov,wed,1084,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,yes
+32,services,married,high.school,no,no,no,cellular,nov,wed,44,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,services,married,basic.9y,no,no,no,cellular,nov,wed,76,6,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,student,married,university.degree,no,no,no,cellular,nov,wed,154,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+48,management,married,university.degree,unknown,no,no,cellular,nov,wed,51,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,management,married,basic.4y,no,no,no,cellular,nov,wed,164,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,admin.,married,basic.6y,no,yes,yes,cellular,nov,wed,102,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+49,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,wed,227,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,management,single,university.degree,no,yes,no,telephone,nov,wed,111,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+47,unemployed,married,professional.course,no,no,no,cellular,nov,wed,98,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+52,blue-collar,married,professional.course,unknown,yes,no,cellular,nov,wed,442,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+36,management,married,university.degree,no,no,no,cellular,nov,wed,226,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,admin.,married,university.degree,no,yes,no,cellular,nov,wed,256,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,services,single,high.school,no,yes,no,cellular,nov,wed,210,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,unemployed,married,university.degree,no,yes,no,cellular,nov,wed,233,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,unemployed,married,professional.course,no,yes,no,cellular,nov,wed,211,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,blue-collar,married,basic.6y,no,no,no,cellular,nov,wed,130,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,unemployed,married,professional.course,no,yes,no,cellular,nov,wed,248,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,admin.,single,university.degree,no,yes,no,cellular,nov,wed,52,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+56,services,divorced,high.school,unknown,yes,yes,cellular,nov,wed,457,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+34,admin.,single,university.degree,no,yes,no,cellular,nov,wed,249,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,blue-collar,married,basic.4y,no,no,no,cellular,nov,wed,419,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,blue-collar,single,basic.9y,no,no,yes,telephone,nov,wed,117,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+44,blue-collar,single,unknown,no,yes,no,cellular,nov,wed,198,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,blue-collar,married,basic.4y,no,no,no,cellular,nov,wed,202,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+50,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,206,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,management,single,university.degree,no,no,no,cellular,nov,wed,201,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+37,unemployed,married,professional.course,no,no,no,cellular,nov,wed,144,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+45,services,divorced,basic.9y,no,no,no,cellular,nov,wed,137,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,technician,married,professional.course,unknown,no,no,telephone,nov,wed,100,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+44,services,single,high.school,no,no,no,cellular,nov,wed,75,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+53,blue-collar,single,basic.4y,no,no,no,cellular,nov,wed,140,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+43,services,divorced,high.school,no,no,no,cellular,nov,wed,1015,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+30,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,489,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+31,technician,married,professional.course,no,no,no,cellular,nov,wed,212,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,blue-collar,married,basic.4y,no,no,no,cellular,nov,wed,219,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,management,married,university.degree,no,yes,no,cellular,nov,wed,122,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,management,married,university.degree,no,yes,no,cellular,nov,wed,20,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+36,management,married,university.degree,no,no,no,cellular,nov,wed,75,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,management,married,university.degree,no,yes,no,cellular,nov,wed,94,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+41,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,264,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,technician,married,high.school,no,yes,no,cellular,nov,wed,118,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+54,technician,married,professional.course,no,yes,yes,cellular,nov,wed,46,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,admin.,single,high.school,no,no,no,cellular,nov,wed,59,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,94,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,services,married,high.school,no,no,no,cellular,nov,wed,79,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,admin.,single,high.school,no,yes,no,cellular,nov,wed,79,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,admin.,single,high.school,no,yes,no,cellular,nov,wed,66,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,technician,married,university.degree,unknown,no,no,cellular,nov,wed,698,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,technician,married,university.degree,unknown,yes,no,cellular,nov,wed,108,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,services,married,high.school,no,yes,no,cellular,nov,wed,694,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+45,management,married,basic.9y,no,yes,no,cellular,nov,wed,363,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,admin.,single,high.school,no,yes,no,cellular,nov,wed,242,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,housemaid,married,unknown,no,yes,no,cellular,nov,wed,87,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+49,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,wed,52,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+28,self-employed,married,university.degree,no,yes,no,telephone,nov,wed,20,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+35,technician,married,university.degree,unknown,yes,no,cellular,nov,wed,337,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+58,management,divorced,high.school,no,yes,no,cellular,nov,wed,308,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+37,admin.,married,university.degree,no,no,no,telephone,nov,wed,274,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,services,married,professional.course,no,no,no,cellular,nov,wed,84,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,admin.,single,high.school,no,no,no,cellular,nov,wed,631,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,services,single,high.school,no,no,no,cellular,nov,wed,244,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,services,married,university.degree,no,yes,no,cellular,nov,wed,86,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+55,admin.,married,university.degree,no,no,no,cellular,nov,wed,123,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+29,management,married,basic.9y,no,yes,no,cellular,nov,wed,117,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,admin.,married,basic.9y,no,yes,no,cellular,nov,wed,186,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,technician,married,high.school,no,yes,no,cellular,nov,wed,352,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,management,single,professional.course,no,yes,no,cellular,nov,wed,39,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,wed,325,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+51,self-employed,divorced,university.degree,no,yes,no,cellular,nov,wed,670,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+48,admin.,single,basic.4y,unknown,no,no,cellular,nov,wed,340,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+42,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,145,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,entrepreneur,married,high.school,no,yes,no,cellular,nov,wed,100,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+42,admin.,single,university.degree,no,no,no,cellular,nov,wed,72,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,technician,married,high.school,no,yes,no,telephone,nov,wed,53,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,entrepreneur,married,high.school,no,yes,no,cellular,nov,wed,190,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,technician,married,university.degree,no,no,no,cellular,nov,wed,200,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,admin.,married,basic.9y,no,yes,yes,cellular,nov,wed,47,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,entrepreneur,married,professional.course,no,yes,no,cellular,nov,wed,388,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,management,married,university.degree,no,no,no,cellular,nov,wed,498,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,services,single,high.school,no,yes,no,cellular,nov,wed,149,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+37,management,single,university.degree,no,yes,no,cellular,nov,wed,171,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+34,technician,married,high.school,no,no,yes,cellular,nov,wed,561,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+33,entrepreneur,married,basic.9y,unknown,no,no,cellular,nov,wed,636,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+37,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,357,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+39,admin.,married,high.school,no,no,no,cellular,nov,wed,138,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,single,university.degree,no,yes,yes,cellular,nov,wed,118,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,single,university.degree,no,no,no,cellular,nov,wed,149,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+43,admin.,single,high.school,no,no,no,cellular,nov,wed,1011,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,yes
+29,services,single,high.school,no,yes,no,cellular,nov,wed,402,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,single,university.degree,no,no,no,cellular,nov,wed,154,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+56,retired,single,university.degree,no,yes,no,cellular,nov,wed,68,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+46,blue-collar,married,basic.9y,no,no,no,telephone,nov,wed,66,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,blue-collar,married,professional.course,no,yes,yes,cellular,nov,wed,87,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+45,housemaid,married,high.school,unknown,no,no,cellular,nov,wed,289,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,blue-collar,married,high.school,no,yes,no,cellular,nov,wed,661,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,95,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,services,married,university.degree,no,no,no,cellular,nov,wed,270,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,142,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,services,married,high.school,no,yes,no,cellular,nov,wed,74,1,5,1,success,-0.1,93.2,-42,4.12,5195.8,no
+44,admin.,single,university.degree,no,no,no,cellular,nov,wed,60,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,technician,married,university.degree,no,no,no,cellular,nov,wed,258,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+32,services,married,high.school,no,no,yes,cellular,nov,wed,222,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+44,admin.,single,university.degree,no,yes,no,cellular,nov,wed,132,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,self-employed,married,professional.course,no,yes,no,cellular,nov,wed,103,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+46,management,divorced,high.school,no,yes,yes,cellular,nov,wed,122,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+51,admin.,married,university.degree,no,yes,no,cellular,nov,wed,93,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,technician,single,university.degree,no,yes,no,cellular,nov,wed,133,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,blue-collar,married,high.school,no,yes,no,cellular,nov,wed,40,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,management,single,high.school,no,no,no,cellular,nov,wed,292,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,654,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+41,admin.,married,university.degree,no,yes,no,cellular,nov,wed,58,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,63,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,management,single,university.degree,no,yes,no,cellular,nov,wed,424,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+54,technician,married,basic.9y,no,no,no,cellular,nov,wed,198,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+55,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,63,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,blue-collar,single,professional.course,no,yes,yes,cellular,nov,wed,51,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+36,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,911,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+41,admin.,married,university.degree,no,no,no,cellular,nov,wed,392,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+38,admin.,married,basic.9y,no,yes,yes,cellular,nov,wed,122,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,998,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+32,technician,married,university.degree,no,yes,no,cellular,nov,wed,405,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,blue-collar,divorced,high.school,no,yes,yes,cellular,nov,wed,291,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,137,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+45,admin.,married,high.school,no,yes,no,cellular,nov,wed,90,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+39,self-employed,married,basic.9y,no,no,no,cellular,nov,wed,46,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,blue-collar,single,high.school,no,unknown,unknown,cellular,nov,wed,77,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,management,single,university.degree,no,no,no,cellular,nov,wed,802,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+40,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,1057,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+36,admin.,married,university.degree,no,no,no,cellular,nov,wed,64,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+51,entrepreneur,married,university.degree,no,no,no,cellular,nov,wed,87,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+31,management,married,university.degree,no,yes,no,cellular,nov,wed,196,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,161,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,management,married,university.degree,no,yes,no,cellular,nov,wed,96,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+56,retired,married,basic.9y,no,no,no,cellular,nov,wed,75,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,housemaid,divorced,basic.9y,no,no,no,cellular,nov,wed,60,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+35,housemaid,divorced,basic.9y,no,yes,no,cellular,nov,wed,69,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,unemployed,married,basic.9y,no,yes,no,telephone,nov,wed,41,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,unemployed,married,basic.4y,unknown,yes,no,cellular,nov,wed,98,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+40,management,married,professional.course,no,yes,no,cellular,nov,wed,162,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+58,retired,married,basic.9y,no,yes,no,cellular,nov,wed,341,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,blue-collar,married,professional.course,no,no,no,cellular,nov,wed,332,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+34,self-employed,married,university.degree,no,no,no,cellular,nov,wed,126,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+49,management,divorced,university.degree,no,no,yes,cellular,nov,wed,187,5,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+40,technician,single,university.degree,no,no,no,cellular,nov,wed,281,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+44,services,married,high.school,no,no,no,cellular,nov,wed,37,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+32,student,single,university.degree,no,no,no,cellular,nov,wed,138,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,blue-collar,single,basic.9y,no,no,no,cellular,nov,wed,141,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,student,single,university.degree,no,yes,no,cellular,nov,wed,135,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,entrepreneur,married,university.degree,no,yes,no,cellular,nov,wed,274,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,management,married,basic.9y,no,no,no,cellular,nov,wed,169,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,205,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+36,blue-collar,married,basic.6y,unknown,no,no,cellular,nov,wed,83,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+30,admin.,divorced,high.school,no,no,no,cellular,nov,wed,113,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,admin.,divorced,high.school,no,yes,no,cellular,nov,wed,114,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,entrepreneur,married,high.school,no,yes,no,telephone,nov,wed,60,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,blue-collar,single,basic.9y,no,no,no,cellular,nov,wed,161,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,blue-collar,single,basic.9y,no,yes,no,cellular,nov,wed,128,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,technician,married,high.school,no,no,no,cellular,nov,wed,187,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+52,self-employed,married,university.degree,no,no,no,cellular,nov,wed,134,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,blue-collar,married,basic.6y,unknown,yes,yes,cellular,nov,wed,182,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+44,self-employed,married,university.degree,no,yes,no,cellular,nov,wed,87,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+46,management,married,unknown,no,yes,no,cellular,nov,wed,248,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+51,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,wed,133,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+52,entrepreneur,married,unknown,no,yes,no,cellular,nov,wed,149,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,single,university.degree,no,yes,no,cellular,nov,wed,152,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,services,married,high.school,no,no,no,cellular,nov,wed,133,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,technician,single,basic.9y,unknown,yes,yes,cellular,nov,wed,131,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+44,technician,married,professional.course,no,no,no,cellular,nov,wed,68,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+52,management,married,university.degree,no,yes,no,cellular,nov,wed,50,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,services,married,unknown,no,yes,yes,telephone,nov,wed,265,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,single,university.degree,no,yes,no,cellular,nov,wed,565,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+35,self-employed,married,university.degree,no,yes,no,cellular,nov,wed,405,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+39,technician,single,professional.course,no,yes,no,cellular,nov,wed,134,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+50,self-employed,unknown,basic.6y,no,no,no,cellular,nov,wed,968,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,services,married,high.school,unknown,yes,no,cellular,nov,wed,82,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+46,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,416,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,technician,married,basic.9y,no,yes,no,cellular,nov,wed,17,5,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+52,technician,single,basic.4y,unknown,yes,no,cellular,nov,wed,208,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,technician,married,professional.course,no,no,no,cellular,nov,wed,201,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+34,technician,married,professional.course,no,yes,no,cellular,nov,wed,374,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+58,management,married,university.degree,no,yes,no,cellular,nov,wed,581,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,admin.,single,high.school,no,yes,no,cellular,nov,wed,105,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+55,technician,married,basic.9y,no,no,no,cellular,nov,wed,1548,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+54,management,divorced,university.degree,no,yes,no,cellular,nov,wed,150,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+52,admin.,married,high.school,no,yes,no,cellular,nov,wed,210,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+42,entrepreneur,single,university.degree,no,no,no,cellular,nov,wed,131,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+43,admin.,single,university.degree,no,no,no,cellular,nov,wed,97,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,admin.,divorced,high.school,no,yes,no,cellular,nov,wed,124,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,admin.,single,university.degree,no,yes,no,cellular,nov,wed,742,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+42,management,married,university.degree,no,yes,no,cellular,nov,wed,151,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,entrepreneur,married,high.school,no,yes,no,cellular,nov,wed,360,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,96,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,wed,117,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,entrepreneur,divorced,basic.9y,no,yes,yes,cellular,nov,wed,70,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,management,married,basic.4y,unknown,no,no,cellular,nov,wed,57,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+52,blue-collar,married,professional.course,unknown,yes,no,cellular,nov,wed,85,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,89,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,management,married,basic.4y,unknown,yes,no,cellular,nov,wed,117,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,services,married,high.school,no,yes,yes,cellular,nov,wed,69,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+35,self-employed,single,university.degree,no,yes,no,cellular,nov,wed,414,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,admin.,married,high.school,no,yes,no,cellular,nov,wed,323,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,management,married,university.degree,no,yes,no,cellular,nov,wed,168,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,technician,married,professional.course,no,yes,no,cellular,nov,wed,111,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,technician,married,professional.course,no,yes,no,cellular,nov,wed,227,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,management,married,university.degree,no,no,no,cellular,nov,wed,72,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,admin.,single,high.school,no,yes,yes,cellular,nov,wed,76,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,448,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,management,married,basic.4y,unknown,no,no,cellular,nov,wed,755,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+39,admin.,single,university.degree,no,yes,no,cellular,nov,wed,514,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,services,married,professional.course,no,yes,no,cellular,nov,wed,482,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+33,admin.,divorced,high.school,no,no,no,telephone,nov,wed,50,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,services,married,high.school,no,no,no,cellular,nov,wed,101,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,blue-collar,single,high.school,no,no,no,cellular,nov,wed,77,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+29,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,wed,85,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,management,married,university.degree,no,yes,no,cellular,nov,wed,638,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,technician,married,basic.9y,no,no,no,cellular,nov,wed,59,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,admin.,married,university.degree,no,yes,no,cellular,nov,wed,779,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+40,technician,married,basic.9y,no,no,no,cellular,nov,wed,198,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,services,married,high.school,no,no,no,cellular,nov,wed,190,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+34,management,married,university.degree,no,no,no,cellular,nov,wed,363,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,services,single,high.school,no,no,no,cellular,nov,wed,155,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+45,blue-collar,married,basic.4y,no,yes,yes,cellular,nov,wed,130,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,admin.,married,university.degree,no,yes,no,cellular,nov,wed,19,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,technician,married,basic.9y,no,no,no,telephone,nov,wed,319,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+44,services,single,high.school,no,yes,no,cellular,nov,wed,116,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,technician,married,professional.course,no,yes,no,cellular,nov,wed,1283,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,management,single,university.degree,no,yes,yes,cellular,nov,wed,293,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+30,services,married,professional.course,no,yes,no,cellular,nov,wed,622,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+32,entrepreneur,married,basic.4y,no,yes,no,telephone,nov,wed,62,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,services,single,high.school,no,no,no,cellular,nov,wed,148,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,wed,111,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+52,retired,married,university.degree,unknown,no,no,cellular,nov,wed,172,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+32,services,married,professional.course,no,yes,no,cellular,nov,wed,186,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,technician,single,basic.6y,no,yes,no,cellular,nov,wed,164,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,blue-collar,married,basic.6y,no,no,no,cellular,nov,wed,220,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,technician,single,basic.6y,no,no,no,cellular,nov,wed,296,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,admin.,single,university.degree,no,no,no,cellular,nov,wed,267,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,technician,married,professional.course,no,yes,no,cellular,nov,wed,231,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,services,single,high.school,no,yes,no,cellular,nov,wed,178,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+32,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,wed,547,7,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,technician,single,professional.course,no,no,no,cellular,nov,wed,161,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,admin.,divorced,high.school,no,no,no,cellular,nov,wed,59,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+51,admin.,married,high.school,no,yes,no,cellular,nov,wed,121,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,technician,single,professional.course,no,no,no,cellular,nov,wed,477,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+45,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,wed,384,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+44,admin.,single,high.school,no,yes,no,cellular,nov,wed,149,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+39,admin.,married,university.degree,no,yes,no,cellular,nov,wed,59,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,blue-collar,single,basic.4y,no,no,yes,cellular,nov,wed,125,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,blue-collar,single,high.school,no,yes,no,cellular,nov,wed,522,1,6,1,success,-0.1,93.2,-42,4.12,5195.8,yes
+31,blue-collar,single,high.school,no,no,no,telephone,nov,wed,201,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,blue-collar,single,high.school,no,no,no,cellular,nov,wed,230,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+39,technician,single,professional.course,no,yes,no,cellular,nov,wed,180,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+35,technician,divorced,professional.course,no,no,yes,cellular,nov,wed,98,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,unknown,divorced,basic.4y,no,no,no,cellular,nov,wed,73,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+45,management,married,university.degree,no,no,yes,cellular,nov,wed,391,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,admin.,divorced,high.school,no,no,no,cellular,nov,wed,131,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,admin.,married,university.degree,no,yes,no,cellular,nov,wed,174,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,147,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,126,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,services,single,high.school,no,no,no,cellular,nov,wed,265,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+55,admin.,divorced,high.school,no,no,no,cellular,nov,wed,67,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+50,housemaid,divorced,high.school,no,no,no,cellular,nov,wed,136,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+33,self-employed,single,basic.4y,no,no,no,cellular,nov,wed,174,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+47,unemployed,married,high.school,unknown,no,no,cellular,nov,wed,101,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,299,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,admin.,married,university.degree,no,yes,no,cellular,nov,wed,392,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,blue-collar,single,high.school,no,yes,no,cellular,nov,wed,780,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+54,entrepreneur,married,university.degree,no,yes,no,cellular,nov,wed,159,2,4,1,success,-0.1,93.2,-42,4.12,5195.8,no
+40,admin.,married,university.degree,unknown,yes,no,cellular,nov,wed,562,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,blue-collar,single,basic.9y,no,no,no,cellular,nov,wed,127,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+33,management,married,university.degree,no,yes,no,cellular,nov,wed,418,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+37,management,divorced,university.degree,no,yes,no,cellular,nov,wed,259,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+37,management,divorced,university.degree,no,no,no,cellular,nov,wed,295,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+33,management,married,university.degree,no,yes,yes,cellular,nov,wed,138,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,technician,married,university.degree,no,yes,no,cellular,nov,wed,124,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+39,admin.,married,university.degree,no,no,no,cellular,nov,wed,146,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,blue-collar,single,high.school,no,no,no,cellular,nov,wed,145,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+43,management,married,university.degree,no,yes,no,cellular,nov,wed,57,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+29,management,married,basic.9y,no,no,no,cellular,nov,wed,69,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+42,unemployed,divorced,high.school,no,yes,no,cellular,nov,wed,166,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+49,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,wed,82,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+49,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,wed,277,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,technician,married,professional.course,no,no,no,cellular,nov,wed,194,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+29,management,married,university.degree,no,no,no,cellular,nov,wed,138,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+43,admin.,divorced,university.degree,no,no,no,cellular,nov,wed,1502,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+34,management,single,high.school,no,yes,no,cellular,nov,wed,175,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,admin.,married,university.degree,no,no,no,cellular,nov,wed,117,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,technician,married,professional.course,unknown,no,no,cellular,nov,wed,1049,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+48,services,divorced,basic.4y,no,no,no,cellular,nov,wed,134,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,blue-collar,married,high.school,no,no,no,cellular,nov,wed,117,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+46,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,187,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+29,technician,single,professional.course,no,yes,no,cellular,nov,wed,107,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,married,university.degree,no,yes,no,cellular,nov,wed,40,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+36,management,married,university.degree,no,yes,no,cellular,nov,wed,161,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,entrepreneur,divorced,basic.9y,no,yes,no,cellular,nov,wed,71,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+49,services,married,basic.6y,no,yes,no,cellular,nov,wed,772,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,admin.,married,university.degree,no,no,no,cellular,nov,wed,128,7,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,admin.,single,high.school,no,yes,no,cellular,nov,wed,195,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,entrepreneur,divorced,basic.9y,no,no,no,cellular,nov,wed,353,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,blue-collar,single,basic.9y,unknown,yes,no,cellular,nov,wed,25,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,175,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+49,blue-collar,divorced,basic.6y,no,no,no,cellular,nov,wed,55,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,wed,137,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,631,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+56,management,married,university.degree,no,no,no,cellular,nov,wed,98,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,technician,married,basic.9y,no,no,yes,cellular,nov,wed,208,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,admin.,married,high.school,no,yes,no,cellular,nov,wed,131,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+39,management,married,high.school,no,no,no,telephone,nov,wed,47,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+37,management,married,university.degree,no,no,no,cellular,nov,wed,140,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+56,management,married,university.degree,no,yes,no,cellular,nov,wed,286,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,technician,married,university.degree,no,no,no,cellular,nov,wed,690,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+44,services,married,high.school,no,yes,no,telephone,nov,wed,102,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,admin.,married,university.degree,no,yes,no,cellular,nov,wed,93,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+42,services,married,professional.course,no,yes,yes,cellular,nov,wed,120,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,admin.,married,high.school,no,yes,no,cellular,nov,wed,570,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,technician,single,university.degree,no,yes,no,cellular,nov,wed,456,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,entrepreneur,married,university.degree,no,no,yes,cellular,nov,wed,49,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+41,admin.,married,university.degree,no,yes,no,cellular,nov,wed,54,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+37,admin.,single,university.degree,no,yes,yes,cellular,nov,wed,160,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+41,admin.,married,university.degree,no,yes,yes,telephone,nov,wed,385,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+37,admin.,single,university.degree,no,yes,no,cellular,nov,wed,250,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,entrepreneur,married,high.school,no,yes,no,cellular,nov,wed,164,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,technician,married,university.degree,no,no,yes,cellular,nov,wed,234,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+30,technician,divorced,basic.9y,no,yes,yes,cellular,nov,wed,177,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+44,admin.,single,university.degree,no,yes,no,cellular,nov,wed,50,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+39,admin.,single,university.degree,no,yes,yes,cellular,nov,wed,457,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+37,admin.,single,university.degree,no,no,no,telephone,nov,wed,623,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+42,entrepreneur,married,basic.4y,no,yes,yes,cellular,nov,wed,20,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,technician,married,high.school,no,no,no,cellular,nov,wed,1206,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,entrepreneur,married,unknown,no,yes,no,cellular,nov,wed,21,10,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,559,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+31,admin.,married,basic.9y,no,no,no,cellular,nov,wed,205,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,1065,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+43,blue-collar,single,basic.6y,no,yes,no,telephone,nov,wed,401,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,management,divorced,university.degree,no,yes,no,cellular,nov,wed,50,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+55,technician,married,basic.9y,no,no,yes,cellular,nov,wed,113,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+35,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,1028,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+34,self-employed,married,university.degree,no,yes,no,cellular,nov,wed,213,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+42,admin.,married,university.degree,no,yes,no,cellular,nov,wed,340,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,entrepreneur,married,basic.6y,no,no,no,cellular,nov,wed,90,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+31,admin.,single,high.school,no,yes,no,cellular,nov,wed,286,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+43,technician,divorced,university.degree,no,yes,no,cellular,nov,wed,342,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+58,management,married,university.degree,no,yes,no,cellular,nov,wed,394,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,management,married,basic.4y,no,yes,no,cellular,nov,wed,63,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+39,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,wed,73,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,single,university.degree,no,yes,no,cellular,nov,wed,214,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,housemaid,married,basic.6y,unknown,no,no,cellular,nov,wed,76,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,single,university.degree,no,no,no,cellular,nov,wed,337,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+30,blue-collar,single,basic.9y,no,no,no,cellular,nov,wed,88,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+29,blue-collar,married,high.school,no,yes,no,cellular,nov,wed,96,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+39,admin.,married,university.degree,no,yes,no,cellular,nov,wed,171,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+39,blue-collar,married,basic.9y,unknown,no,yes,cellular,nov,wed,418,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,entrepreneur,married,university.degree,no,yes,yes,cellular,nov,wed,434,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,management,married,university.degree,no,yes,no,cellular,nov,wed,54,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,management,married,high.school,no,yes,no,cellular,nov,wed,86,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+56,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,wed,1265,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+56,management,married,university.degree,no,yes,yes,cellular,nov,wed,104,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+37,services,single,high.school,no,yes,no,cellular,nov,wed,485,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+31,blue-collar,single,high.school,no,yes,no,cellular,nov,wed,251,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+38,blue-collar,single,basic.6y,no,yes,no,cellular,nov,wed,328,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,admin.,married,university.degree,unknown,no,no,cellular,nov,wed,108,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,88,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+31,technician,single,professional.course,no,no,no,cellular,nov,wed,220,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,self-employed,married,university.degree,no,yes,no,cellular,nov,wed,118,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,blue-collar,single,basic.6y,no,no,no,cellular,nov,wed,520,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+49,management,married,university.degree,no,no,no,cellular,nov,wed,139,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+56,entrepreneur,married,university.degree,no,yes,no,cellular,nov,wed,501,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,408,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+39,unemployed,married,basic.9y,no,no,no,cellular,nov,wed,292,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+46,admin.,divorced,university.degree,no,yes,no,cellular,nov,wed,95,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+46,self-employed,divorced,basic.9y,no,yes,no,cellular,nov,wed,77,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,technician,single,basic.9y,no,yes,yes,cellular,nov,wed,62,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+51,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,359,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+39,unemployed,married,basic.9y,no,yes,no,cellular,nov,wed,640,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+35,technician,single,basic.9y,no,no,no,cellular,nov,wed,178,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+35,technician,single,basic.9y,no,yes,no,cellular,nov,wed,112,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+57,management,married,university.degree,no,yes,no,cellular,nov,wed,589,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+35,technician,single,basic.9y,no,no,no,telephone,nov,wed,433,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+38,blue-collar,divorced,basic.6y,no,yes,no,cellular,nov,wed,122,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,services,divorced,basic.6y,unknown,no,no,cellular,nov,wed,254,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+50,technician,married,university.degree,no,yes,no,cellular,nov,wed,236,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,60,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+42,admin.,married,professional.course,no,yes,no,cellular,nov,wed,216,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,self-employed,married,university.degree,no,yes,no,cellular,nov,wed,70,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,management,single,university.degree,no,no,yes,cellular,nov,wed,541,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,self-employed,single,university.degree,no,yes,no,cellular,nov,wed,199,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,entrepreneur,single,basic.9y,no,no,no,cellular,nov,wed,191,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+34,services,single,basic.9y,no,yes,yes,cellular,nov,wed,300,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+54,housemaid,married,basic.9y,no,no,no,cellular,nov,wed,362,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,admin.,married,high.school,no,no,no,cellular,nov,wed,1061,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+33,self-employed,married,university.degree,no,yes,yes,cellular,nov,wed,208,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,management,married,university.degree,no,yes,yes,telephone,nov,wed,377,3,0,2,success,-0.1,93.2,-42,4.12,5195.8,no
+29,blue-collar,married,professional.course,no,no,no,cellular,nov,wed,54,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,admin.,married,university.degree,no,yes,no,cellular,nov,wed,157,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+49,admin.,divorced,high.school,no,yes,no,cellular,nov,wed,47,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+53,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,wed,625,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,services,single,high.school,no,yes,no,telephone,nov,wed,88,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+51,unemployed,divorced,university.degree,unknown,yes,no,cellular,nov,wed,120,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+34,services,married,high.school,no,no,no,cellular,nov,wed,89,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+35,admin.,married,professional.course,no,no,no,cellular,nov,wed,616,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,wed,56,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+42,self-employed,single,university.degree,no,no,no,cellular,nov,wed,238,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,entrepreneur,married,high.school,no,yes,yes,cellular,nov,wed,112,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+43,admin.,married,university.degree,no,no,no,cellular,nov,wed,748,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+37,entrepreneur,married,university.degree,no,no,no,cellular,nov,wed,184,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+37,entrepreneur,married,university.degree,no,no,no,telephone,nov,wed,202,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+35,admin.,single,university.degree,no,yes,no,cellular,nov,wed,273,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,admin.,married,university.degree,no,yes,no,cellular,nov,wed,223,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+43,management,married,university.degree,no,no,no,cellular,nov,wed,382,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,admin.,married,university.degree,no,yes,no,cellular,nov,wed,278,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+42,technician,married,basic.9y,no,no,no,cellular,nov,wed,294,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+52,management,married,university.degree,no,yes,no,cellular,nov,wed,783,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+31,admin.,married,basic.9y,no,yes,no,cellular,nov,wed,1662,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,admin.,single,university.degree,no,no,no,cellular,nov,wed,79,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,115,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,admin.,single,university.degree,no,yes,no,cellular,nov,wed,101,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+55,management,married,professional.course,no,yes,no,cellular,nov,wed,223,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+42,management,married,university.degree,unknown,yes,no,cellular,nov,wed,126,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+43,management,married,university.degree,no,no,yes,cellular,nov,wed,73,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+32,management,single,university.degree,no,no,no,cellular,nov,wed,163,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,blue-collar,married,basic.6y,no,no,no,cellular,nov,wed,299,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,blue-collar,married,professional.course,no,yes,no,cellular,nov,wed,107,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+45,admin.,married,university.degree,no,yes,no,cellular,nov,wed,70,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+41,admin.,divorced,basic.9y,no,unknown,unknown,cellular,nov,wed,258,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,entrepreneur,single,university.degree,no,no,no,cellular,nov,wed,1120,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+46,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,223,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,technician,married,university.degree,no,yes,yes,cellular,nov,wed,184,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,management,married,university.degree,no,no,no,cellular,nov,wed,523,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,technician,single,high.school,no,yes,no,cellular,nov,wed,77,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+54,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,252,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+40,blue-collar,married,basic.6y,unknown,no,no,cellular,nov,wed,104,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,technician,married,professional.course,unknown,yes,no,cellular,nov,wed,433,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+51,management,married,high.school,unknown,no,no,cellular,nov,wed,178,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,services,single,high.school,no,no,no,cellular,nov,wed,174,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+46,technician,married,basic.9y,no,yes,no,cellular,nov,wed,354,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,technician,married,high.school,no,no,no,cellular,nov,wed,231,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,technician,single,professional.course,no,no,no,cellular,nov,wed,757,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+35,management,married,university.degree,no,yes,no,cellular,nov,wed,130,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+46,management,married,university.degree,no,yes,no,cellular,nov,wed,111,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+52,admin.,married,high.school,no,yes,no,cellular,nov,wed,130,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+31,blue-collar,married,basic.4y,no,no,no,cellular,nov,wed,374,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,blue-collar,divorced,basic.6y,no,yes,no,telephone,nov,wed,95,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+56,entrepreneur,married,basic.9y,no,no,yes,cellular,nov,wed,680,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,yes
+46,management,divorced,high.school,no,yes,no,cellular,nov,wed,191,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+30,admin.,married,high.school,no,yes,no,cellular,nov,wed,193,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,technician,single,professional.course,no,yes,no,cellular,nov,wed,1468,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+39,blue-collar,married,basic.6y,unknown,no,yes,cellular,nov,wed,188,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+45,technician,married,university.degree,no,no,no,cellular,nov,wed,221,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,single,university.degree,no,no,no,cellular,nov,wed,59,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,services,married,high.school,no,yes,yes,cellular,nov,wed,314,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,admin.,married,high.school,unknown,yes,no,cellular,nov,wed,246,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,blue-collar,single,high.school,no,yes,no,cellular,nov,wed,154,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+45,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,432,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+37,services,married,high.school,no,yes,yes,cellular,nov,wed,584,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,140,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,management,divorced,high.school,no,no,yes,cellular,nov,wed,709,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+44,services,married,high.school,no,no,no,cellular,nov,wed,635,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+48,housemaid,single,high.school,unknown,yes,no,cellular,nov,wed,449,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+55,management,married,university.degree,no,no,no,cellular,nov,wed,108,4,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+40,admin.,single,high.school,no,no,no,cellular,nov,wed,53,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,management,married,university.degree,no,unknown,unknown,cellular,nov,wed,151,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+56,management,divorced,university.degree,no,no,no,cellular,nov,wed,287,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+56,management,married,university.degree,no,no,no,cellular,nov,wed,266,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+41,housemaid,divorced,university.degree,no,no,no,cellular,nov,wed,105,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,divorced,high.school,no,yes,no,cellular,nov,wed,225,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,blue-collar,married,basic.6y,unknown,yes,no,cellular,nov,wed,154,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,blue-collar,married,basic.6y,no,unknown,unknown,cellular,nov,wed,172,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+50,management,married,basic.6y,no,no,no,cellular,nov,wed,221,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+43,admin.,married,university.degree,no,yes,no,cellular,nov,wed,209,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,management,married,high.school,no,no,no,cellular,nov,wed,356,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+49,admin.,single,basic.9y,no,yes,yes,cellular,nov,wed,259,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,technician,married,university.degree,no,no,no,telephone,nov,wed,91,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,services,married,high.school,no,yes,yes,cellular,nov,wed,729,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,services,divorced,high.school,no,no,no,cellular,nov,wed,744,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+39,services,divorced,high.school,no,yes,no,cellular,nov,wed,222,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+29,admin.,married,university.degree,no,no,no,cellular,nov,wed,406,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,services,married,high.school,no,yes,no,cellular,nov,wed,307,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,housemaid,married,basic.6y,no,yes,no,cellular,nov,wed,1337,4,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+35,blue-collar,married,basic.9y,no,yes,no,telephone,nov,wed,178,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,entrepreneur,married,unknown,no,no,no,cellular,nov,wed,304,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,admin.,single,university.degree,no,no,no,cellular,nov,wed,1307,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+50,admin.,married,high.school,no,no,no,cellular,nov,wed,93,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+49,technician,divorced,basic.9y,no,no,no,cellular,nov,wed,225,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,technician,single,high.school,no,no,no,cellular,nov,wed,515,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+44,blue-collar,married,basic.6y,no,no,no,cellular,nov,wed,312,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,technician,divorced,high.school,no,yes,yes,cellular,nov,wed,243,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+39,admin.,married,university.degree,no,no,no,cellular,nov,wed,117,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+46,admin.,single,high.school,no,yes,no,telephone,nov,wed,207,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+44,entrepreneur,married,university.degree,no,no,yes,cellular,nov,wed,67,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+33,services,married,high.school,no,no,no,cellular,nov,wed,581,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+44,entrepreneur,married,university.degree,no,yes,no,cellular,nov,wed,676,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+54,blue-collar,married,basic.6y,unknown,no,no,cellular,nov,wed,300,5,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+37,management,married,university.degree,no,no,yes,cellular,nov,wed,611,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,services,single,university.degree,no,yes,no,telephone,nov,wed,52,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,management,married,high.school,unknown,no,no,cellular,nov,wed,275,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,blue-collar,married,basic.6y,no,no,yes,cellular,nov,wed,188,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+56,management,married,university.degree,no,yes,no,cellular,nov,wed,130,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,technician,married,high.school,no,yes,no,telephone,nov,wed,46,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,technician,single,university.degree,no,yes,no,cellular,nov,wed,143,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+39,blue-collar,married,basic.6y,no,yes,yes,telephone,nov,wed,214,2,6,1,success,-0.1,93.2,-42,4.12,5195.8,no
+52,entrepreneur,married,university.degree,unknown,yes,yes,telephone,nov,wed,248,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,technician,married,professional.course,no,yes,no,telephone,nov,wed,159,7,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+37,management,married,university.degree,no,no,yes,cellular,nov,wed,307,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,services,married,university.degree,no,yes,no,cellular,nov,wed,37,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,193,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,unemployed,single,unknown,no,yes,no,cellular,nov,wed,1271,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes
+30,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,167,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+47,housemaid,divorced,basic.4y,unknown,yes,yes,telephone,nov,wed,475,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,blue-collar,single,basic.9y,no,no,yes,telephone,nov,wed,590,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,technician,married,professional.course,no,yes,yes,telephone,nov,wed,196,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+34,management,married,high.school,no,yes,no,cellular,nov,wed,228,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+45,admin.,divorced,basic.9y,no,yes,no,cellular,nov,wed,575,9,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,entrepreneur,married,basic.4y,no,yes,yes,cellular,nov,wed,322,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,wed,546,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,admin.,divorced,professional.course,no,no,yes,cellular,nov,wed,1435,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+50,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,332,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,management,married,university.degree,no,yes,no,cellular,nov,wed,214,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+41,management,married,university.degree,no,yes,yes,cellular,nov,wed,501,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+55,technician,married,high.school,unknown,yes,no,cellular,nov,wed,285,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,blue-collar,married,basic.6y,unknown,yes,no,cellular,nov,wed,320,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,entrepreneur,married,university.degree,no,no,no,telephone,nov,wed,723,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+51,entrepreneur,divorced,university.degree,no,yes,no,telephone,nov,wed,89,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,technician,single,university.degree,unknown,no,no,cellular,nov,wed,193,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+43,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,284,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,technician,married,professional.course,unknown,no,no,cellular,nov,wed,135,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+39,housemaid,divorced,high.school,no,no,no,cellular,nov,wed,214,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+45,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,wed,162,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,services,married,high.school,unknown,no,no,cellular,nov,wed,303,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+46,blue-collar,married,basic.9y,unknown,yes,yes,cellular,nov,wed,575,6,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+40,blue-collar,single,basic.9y,no,unknown,unknown,cellular,nov,wed,245,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,management,married,basic.4y,no,yes,no,cellular,nov,wed,64,7,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,services,single,high.school,no,yes,no,cellular,nov,wed,146,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+36,blue-collar,married,basic.6y,no,no,yes,cellular,nov,wed,281,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,technician,single,professional.course,no,yes,yes,cellular,nov,wed,182,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,admin.,married,high.school,no,no,no,cellular,nov,wed,291,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+54,management,married,basic.6y,no,yes,no,cellular,nov,wed,616,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,single,university.degree,no,no,no,cellular,nov,wed,186,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,unemployed,married,basic.9y,no,yes,no,cellular,nov,wed,248,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,entrepreneur,married,university.degree,no,yes,yes,cellular,nov,wed,380,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,services,married,basic.6y,no,no,no,cellular,nov,wed,314,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+30,unemployed,single,professional.course,no,no,no,cellular,nov,wed,206,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,entrepreneur,married,professional.course,no,yes,no,telephone,nov,wed,519,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,blue-collar,married,basic.4y,no,no,no,cellular,nov,wed,209,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+50,entrepreneur,married,university.degree,no,yes,no,cellular,nov,wed,185,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+38,blue-collar,single,basic.4y,no,no,no,cellular,nov,wed,335,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,services,married,high.school,no,no,no,cellular,nov,wed,131,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,single,university.degree,no,yes,no,cellular,nov,wed,71,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+52,technician,married,basic.9y,no,yes,yes,cellular,nov,wed,323,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,self-employed,married,university.degree,unknown,yes,no,cellular,nov,wed,70,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,technician,married,professional.course,no,no,no,cellular,nov,wed,62,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+31,admin.,married,university.degree,no,no,no,cellular,nov,wed,596,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,admin.,married,university.degree,no,yes,no,cellular,nov,wed,517,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+33,admin.,single,high.school,no,yes,no,cellular,nov,wed,208,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,wed,145,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+48,management,married,university.degree,unknown,no,no,cellular,nov,wed,52,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,technician,married,professional.course,no,yes,yes,cellular,nov,wed,11,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,blue-collar,divorced,basic.4y,no,yes,no,cellular,nov,wed,206,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,technician,married,professional.course,no,yes,no,cellular,nov,wed,107,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+33,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,54,7,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,management,married,basic.4y,no,yes,no,cellular,nov,wed,107,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,admin.,single,university.degree,no,no,no,cellular,nov,wed,102,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+34,management,single,high.school,no,yes,yes,cellular,nov,wed,201,2,6,1,success,-0.1,93.2,-42,4.12,5195.8,no
+37,admin.,single,university.degree,no,yes,yes,cellular,nov,wed,844,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+35,housemaid,single,basic.4y,unknown,yes,no,cellular,nov,wed,66,2,3,1,success,-0.1,93.2,-42,4.12,5195.8,no
+45,entrepreneur,married,university.degree,unknown,yes,no,telephone,nov,wed,278,7,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+32,admin.,single,university.degree,no,no,no,cellular,nov,wed,1311,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+38,admin.,single,university.degree,no,yes,no,cellular,nov,wed,255,6,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+30,services,married,high.school,no,yes,no,cellular,nov,wed,599,4,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no
+38,services,married,unknown,no,yes,no,cellular,nov,wed,339,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+31,entrepreneur,married,basic.9y,no,no,no,cellular,nov,wed,558,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+36,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,800,6,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,blue-collar,married,high.school,no,no,no,cellular,nov,wed,854,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+53,blue-collar,divorced,basic.6y,no,yes,no,cellular,nov,wed,635,6,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no
+29,blue-collar,married,high.school,no,yes,no,telephone,nov,thu,72,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+49,technician,married,university.degree,no,yes,no,telephone,nov,thu,14,7,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,divorced,high.school,no,yes,no,cellular,nov,thu,274,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,291,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,blue-collar,single,basic.6y,no,yes,no,cellular,nov,thu,82,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+47,self-employed,single,professional.course,no,yes,no,cellular,nov,thu,97,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,management,married,university.degree,no,yes,no,cellular,nov,thu,130,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,management,single,university.degree,no,yes,no,telephone,nov,thu,88,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+41,blue-collar,married,basic.4y,no,yes,no,telephone,nov,thu,132,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,single,university.degree,no,no,no,telephone,nov,thu,36,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,technician,married,basic.9y,no,yes,no,cellular,nov,thu,348,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,services,married,professional.course,no,no,no,cellular,nov,thu,161,7,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,technician,divorced,professional.course,no,no,no,cellular,nov,thu,77,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,unemployed,married,basic.4y,unknown,no,no,cellular,nov,thu,143,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+49,admin.,divorced,professional.course,no,no,no,cellular,nov,thu,80,5,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+35,technician,married,professional.course,no,no,no,cellular,nov,thu,366,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,298,2,5,1,success,-0.1,93.2,-42,4.076,5195.8,no
+53,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,thu,64,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,technician,married,professional.course,no,yes,no,cellular,nov,thu,51,7,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+42,admin.,married,university.degree,no,yes,no,cellular,nov,thu,75,2,4,1,success,-0.1,93.2,-42,4.076,5195.8,no
+53,housemaid,married,unknown,no,yes,no,cellular,nov,thu,65,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,69,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,37,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,management,married,unknown,no,yes,no,cellular,nov,thu,632,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,divorced,high.school,no,yes,no,cellular,nov,thu,48,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,services,married,basic.9y,no,yes,no,cellular,nov,thu,57,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+48,services,single,unknown,no,yes,no,cellular,nov,thu,164,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+44,admin.,single,professional.course,no,no,no,cellular,nov,thu,48,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,technician,married,professional.course,no,yes,yes,cellular,nov,thu,42,7,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,management,married,unknown,no,no,no,cellular,nov,thu,171,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,unemployed,married,high.school,no,yes,yes,cellular,nov,thu,91,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,technician,single,university.degree,no,no,no,cellular,nov,thu,78,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,admin.,married,high.school,no,unknown,unknown,cellular,nov,thu,518,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+43,blue-collar,divorced,basic.9y,no,unknown,unknown,cellular,nov,thu,73,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,married,university.degree,no,no,no,telephone,nov,thu,105,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,blue-collar,married,basic.6y,no,no,no,cellular,nov,thu,340,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,blue-collar,married,high.school,no,yes,no,cellular,nov,thu,379,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+47,technician,married,professional.course,no,no,no,telephone,nov,thu,114,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,services,divorced,basic.6y,no,no,no,cellular,nov,thu,667,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+51,unemployed,divorced,university.degree,no,no,no,cellular,nov,thu,286,6,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+42,self-employed,married,high.school,unknown,yes,no,cellular,nov,thu,77,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,admin.,unknown,professional.course,no,yes,no,cellular,nov,thu,125,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+52,management,married,university.degree,no,no,no,telephone,nov,thu,21,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+52,management,married,university.degree,no,yes,no,cellular,nov,thu,104,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+53,management,married,university.degree,no,yes,no,cellular,nov,thu,186,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+53,management,married,university.degree,no,no,no,cellular,nov,thu,136,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,unemployed,single,university.degree,no,yes,no,cellular,nov,thu,145,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,technician,married,professional.course,no,no,no,cellular,nov,thu,179,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+46,management,married,university.degree,no,yes,no,cellular,nov,thu,466,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,blue-collar,married,basic.6y,no,no,no,cellular,nov,thu,834,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+52,self-employed,divorced,basic.9y,no,yes,no,cellular,nov,thu,26,5,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+32,entrepreneur,single,university.degree,no,no,no,cellular,nov,thu,459,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,unemployed,married,basic.6y,no,yes,no,cellular,nov,thu,113,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,997,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+44,technician,single,university.degree,no,no,no,cellular,nov,thu,284,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,admin.,married,university.degree,no,no,no,telephone,nov,thu,281,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+40,services,single,basic.6y,no,no,no,cellular,nov,thu,107,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+55,admin.,married,basic.9y,no,no,no,cellular,nov,thu,209,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+58,retired,married,high.school,no,yes,no,cellular,nov,thu,125,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,management,divorced,high.school,no,yes,no,cellular,nov,thu,149,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+40,services,single,basic.6y,no,no,no,cellular,nov,thu,308,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+44,entrepreneur,married,university.degree,no,no,no,cellular,nov,thu,191,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+40,services,single,basic.6y,no,no,no,cellular,nov,thu,373,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,services,single,high.school,no,yes,no,cellular,nov,thu,100,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+42,technician,married,high.school,no,no,yes,telephone,nov,thu,66,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+56,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,thu,392,2,3,1,success,-0.1,93.2,-42,4.076,5195.8,no
+58,retired,married,high.school,no,no,no,cellular,nov,thu,477,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+33,admin.,single,university.degree,no,no,no,cellular,nov,thu,291,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,276,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,yes
+47,technician,married,professional.course,no,no,no,cellular,nov,thu,93,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+56,housemaid,married,basic.9y,no,no,no,cellular,nov,thu,86,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,entrepreneur,married,high.school,unknown,no,no,cellular,nov,thu,68,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+58,management,married,unknown,no,no,no,cellular,nov,thu,142,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,services,married,high.school,no,no,yes,cellular,nov,thu,49,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,entrepreneur,single,university.degree,no,no,no,cellular,nov,thu,251,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,blue-collar,single,basic.6y,no,no,no,cellular,nov,thu,137,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,single,high.school,no,yes,no,cellular,nov,thu,120,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+44,admin.,single,professional.course,no,yes,no,telephone,nov,thu,25,8,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,services,married,high.school,no,yes,no,cellular,nov,thu,220,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,technician,single,basic.9y,no,no,no,cellular,nov,thu,174,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,blue-collar,single,basic.6y,no,no,no,cellular,nov,thu,370,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+34,technician,married,high.school,no,yes,yes,cellular,nov,thu,116,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+40,blue-collar,married,basic.4y,unknown,yes,yes,cellular,nov,thu,74,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+55,entrepreneur,divorced,university.degree,no,yes,yes,cellular,nov,thu,68,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,management,single,university.degree,no,yes,yes,cellular,nov,thu,125,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,admin.,married,unknown,no,yes,yes,cellular,nov,thu,254,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,admin.,married,university.degree,no,no,no,cellular,nov,thu,358,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+29,student,single,high.school,no,yes,no,cellular,nov,thu,670,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+32,admin.,married,professional.course,no,unknown,unknown,cellular,nov,thu,68,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,admin.,single,university.degree,no,no,no,cellular,nov,thu,428,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,blue-collar,married,unknown,no,no,no,cellular,nov,thu,366,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+43,services,married,high.school,no,no,no,cellular,nov,thu,81,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+53,technician,married,professional.course,no,yes,no,cellular,nov,thu,322,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,management,single,university.degree,no,no,no,cellular,nov,thu,46,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,management,single,university.degree,no,yes,no,cellular,nov,thu,140,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,technician,married,high.school,no,no,no,cellular,nov,thu,732,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+29,housemaid,married,high.school,no,yes,no,cellular,nov,thu,408,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,self-employed,divorced,basic.9y,unknown,unknown,unknown,cellular,nov,thu,125,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,single,university.degree,no,no,no,cellular,nov,thu,68,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+47,blue-collar,married,basic.9y,unknown,yes,no,telephone,nov,thu,76,9,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+42,management,married,university.degree,no,no,no,cellular,nov,thu,110,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,415,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,single,university.degree,no,no,no,cellular,nov,thu,166,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,self-employed,divorced,basic.9y,unknown,no,no,cellular,nov,thu,486,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,technician,married,university.degree,no,yes,no,cellular,nov,thu,245,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,admin.,single,university.degree,no,no,no,cellular,nov,thu,228,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,unemployed,married,basic.9y,no,yes,no,cellular,nov,thu,114,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,463,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,single,high.school,no,no,yes,telephone,nov,thu,329,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+48,admin.,married,university.degree,no,no,no,cellular,nov,thu,364,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,199,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,technician,married,university.degree,no,yes,no,telephone,nov,thu,145,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+56,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,110,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,blue-collar,single,university.degree,no,no,yes,cellular,nov,thu,52,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,divorced,high.school,no,yes,no,cellular,nov,thu,34,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+52,admin.,married,university.degree,no,no,yes,cellular,nov,thu,232,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,services,single,high.school,unknown,yes,no,cellular,nov,thu,530,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,505,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+34,management,married,university.degree,no,yes,no,cellular,nov,thu,140,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,management,married,university.degree,no,yes,yes,cellular,nov,thu,884,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,thu,301,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+53,technician,divorced,high.school,no,yes,yes,cellular,nov,thu,319,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,blue-collar,single,high.school,no,no,no,cellular,nov,thu,71,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,married,university.degree,no,no,no,cellular,nov,thu,157,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+53,technician,divorced,high.school,no,no,no,cellular,nov,thu,405,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+29,technician,single,university.degree,no,yes,no,cellular,nov,thu,93,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+36,admin.,single,university.degree,no,yes,no,telephone,nov,thu,42,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+44,blue-collar,single,basic.6y,unknown,yes,no,cellular,nov,thu,39,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,admin.,married,high.school,no,yes,no,cellular,nov,thu,231,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,admin.,single,university.degree,no,yes,no,telephone,nov,thu,107,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,management,married,university.degree,no,yes,no,telephone,nov,thu,30,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+48,management,single,university.degree,no,yes,no,cellular,nov,thu,90,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+53,technician,divorced,high.school,no,no,no,cellular,nov,thu,531,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+30,admin.,single,basic.9y,no,no,no,cellular,nov,thu,106,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+38,entrepreneur,married,basic.9y,no,no,no,cellular,nov,thu,166,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,services,married,high.school,no,yes,no,cellular,nov,thu,114,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,technician,married,university.degree,no,no,no,cellular,nov,thu,85,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,blue-collar,divorced,university.degree,no,yes,no,telephone,nov,thu,59,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,technician,married,university.degree,no,no,yes,cellular,nov,thu,180,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+40,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,thu,628,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+43,management,married,university.degree,no,no,no,cellular,nov,thu,1192,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+31,admin.,single,university.degree,no,no,no,cellular,nov,thu,101,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,technician,married,professional.course,no,yes,no,cellular,nov,thu,370,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,thu,76,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+38,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,103,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+50,entrepreneur,married,basic.4y,unknown,yes,no,cellular,nov,thu,217,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,entrepreneur,married,high.school,no,yes,no,cellular,nov,thu,566,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+33,services,married,high.school,no,yes,yes,cellular,nov,thu,422,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,admin.,single,high.school,no,yes,no,cellular,nov,thu,23,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+36,admin.,single,university.degree,no,yes,no,cellular,nov,thu,120,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,services,single,high.school,no,yes,no,cellular,nov,thu,45,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+34,technician,married,university.degree,no,unknown,unknown,cellular,nov,thu,48,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+40,admin.,married,university.degree,no,yes,no,cellular,nov,thu,20,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+49,unemployed,divorced,high.school,no,unknown,unknown,cellular,nov,thu,147,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,housemaid,married,high.school,no,no,no,cellular,nov,thu,99,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,services,single,high.school,no,yes,no,cellular,nov,thu,173,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,technician,single,university.degree,no,yes,no,telephone,nov,thu,47,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+32,entrepreneur,single,university.degree,no,no,yes,cellular,nov,thu,67,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+50,blue-collar,married,professional.course,unknown,no,no,cellular,nov,thu,283,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+32,entrepreneur,single,university.degree,no,no,yes,cellular,nov,thu,126,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,unemployed,married,basic.6y,no,yes,no,cellular,nov,thu,46,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+38,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,163,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+44,unemployed,married,university.degree,no,yes,no,cellular,nov,thu,1058,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,technician,single,university.degree,no,no,no,cellular,nov,thu,485,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+32,technician,single,university.degree,no,no,no,cellular,nov,thu,454,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+44,management,married,university.degree,no,yes,no,cellular,nov,thu,176,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,admin.,single,university.degree,no,yes,no,cellular,nov,thu,103,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+44,management,married,university.degree,no,no,no,cellular,nov,thu,277,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,entrepreneur,single,university.degree,no,yes,yes,cellular,nov,thu,74,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,technician,single,university.degree,no,yes,no,cellular,nov,thu,137,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+56,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,88,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,entrepreneur,married,basic.9y,no,no,no,cellular,nov,thu,158,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+58,retired,married,professional.course,no,no,no,cellular,nov,thu,234,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,management,married,unknown,no,yes,no,cellular,nov,thu,121,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,management,married,university.degree,no,yes,no,cellular,nov,thu,258,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,admin.,married,high.school,no,no,no,cellular,nov,thu,523,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,unemployed,married,high.school,no,yes,no,cellular,nov,thu,640,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,married,high.school,no,yes,no,telephone,nov,thu,60,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,1816,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,management,married,university.degree,no,no,no,cellular,nov,thu,203,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,services,married,high.school,unknown,yes,no,cellular,nov,thu,73,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+32,unemployed,married,high.school,no,yes,no,cellular,nov,thu,728,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+30,admin.,married,university.degree,unknown,yes,no,cellular,nov,thu,157,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,services,married,high.school,unknown,yes,no,cellular,nov,thu,175,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+58,blue-collar,divorced,basic.4y,no,yes,no,cellular,nov,thu,63,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,management,married,professional.course,no,no,no,cellular,nov,thu,993,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+31,technician,single,professional.course,no,yes,no,cellular,nov,thu,155,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,management,married,university.degree,no,no,no,cellular,nov,thu,146,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+29,services,single,high.school,no,no,no,cellular,nov,thu,91,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,management,married,professional.course,no,no,no,cellular,nov,thu,112,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,admin.,married,university.degree,no,yes,no,cellular,nov,thu,333,2,3,1,success,-0.1,93.2,-42,4.076,5195.8,no
+38,management,married,professional.course,no,yes,no,cellular,nov,thu,124,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,management,married,professional.course,no,yes,no,telephone,nov,thu,172,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,single,university.degree,no,yes,no,cellular,nov,thu,34,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+37,unemployed,married,professional.course,no,yes,no,cellular,nov,thu,318,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,technician,married,professional.course,no,yes,no,cellular,nov,thu,1040,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,admin.,single,university.degree,no,no,no,cellular,nov,thu,103,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,management,single,professional.course,no,yes,no,cellular,nov,thu,8,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,married,professional.course,no,yes,no,cellular,nov,thu,88,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,blue-collar,married,high.school,no,yes,no,cellular,nov,thu,25,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+55,retired,married,high.school,no,no,yes,cellular,nov,thu,26,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+40,management,single,university.degree,no,no,no,cellular,nov,thu,549,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+29,blue-collar,married,high.school,no,yes,no,cellular,nov,thu,168,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+58,management,married,university.degree,no,yes,no,cellular,nov,thu,67,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+48,unemployed,married,university.degree,no,yes,no,cellular,nov,thu,60,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,married,high.school,no,yes,no,cellular,nov,thu,167,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+50,self-employed,divorced,university.degree,no,no,no,cellular,nov,thu,59,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,unemployed,single,high.school,no,yes,no,cellular,nov,thu,73,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+57,technician,married,professional.course,no,yes,no,cellular,nov,thu,302,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+40,management,single,high.school,no,yes,no,cellular,nov,thu,541,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,technician,married,university.degree,no,yes,no,cellular,nov,thu,92,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+49,admin.,married,basic.9y,no,yes,no,cellular,nov,thu,85,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,services,single,high.school,no,yes,no,cellular,nov,thu,128,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,single,university.degree,no,no,no,cellular,nov,thu,278,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+42,management,married,university.degree,no,no,no,cellular,nov,thu,316,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+52,admin.,married,university.degree,no,no,no,cellular,nov,thu,278,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,single,university.degree,no,yes,no,cellular,nov,thu,478,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+52,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,202,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,single,university.degree,no,yes,no,cellular,nov,thu,171,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+33,self-employed,divorced,university.degree,no,no,no,telephone,nov,thu,352,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,services,married,basic.9y,no,yes,no,cellular,nov,thu,755,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+38,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,thu,252,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,114,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,entrepreneur,single,university.degree,no,no,no,cellular,nov,thu,53,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+47,technician,married,basic.6y,no,yes,no,cellular,nov,thu,223,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,technician,single,university.degree,no,no,yes,cellular,nov,thu,57,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+49,technician,married,university.degree,no,yes,no,cellular,nov,thu,91,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,technician,single,university.degree,no,unknown,unknown,cellular,nov,thu,26,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+42,management,married,high.school,no,no,no,cellular,nov,thu,59,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,married,high.school,no,yes,no,cellular,nov,thu,90,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,entrepreneur,single,university.degree,no,yes,no,cellular,nov,thu,228,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,blue-collar,single,basic.4y,no,no,no,cellular,nov,thu,148,6,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+57,entrepreneur,married,high.school,no,no,no,cellular,nov,thu,199,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,technician,married,university.degree,no,no,no,cellular,nov,thu,1031,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+44,admin.,married,university.degree,no,yes,no,cellular,nov,thu,147,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,technician,married,university.degree,no,yes,no,cellular,nov,thu,82,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,60,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,technician,married,university.degree,no,no,no,cellular,nov,thu,204,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,blue-collar,married,professional.course,unknown,no,no,cellular,nov,thu,230,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,self-employed,divorced,university.degree,no,unknown,unknown,cellular,nov,thu,173,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,admin.,married,high.school,no,unknown,unknown,cellular,nov,thu,309,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,management,married,high.school,unknown,yes,no,cellular,nov,thu,74,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,500,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,thu,70,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,married,university.degree,no,no,no,cellular,nov,thu,18,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,technician,married,university.degree,no,no,no,cellular,nov,thu,174,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,entrepreneur,single,high.school,no,no,no,cellular,nov,thu,189,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,admin.,single,university.degree,no,yes,no,cellular,nov,thu,222,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,management,divorced,high.school,unknown,no,no,cellular,nov,thu,520,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,entrepreneur,single,high.school,no,no,no,cellular,nov,thu,290,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,thu,220,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+44,admin.,single,university.degree,no,yes,no,cellular,nov,thu,22,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,technician,married,professional.course,no,no,no,telephone,nov,thu,35,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,157,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,single,university.degree,no,no,no,cellular,nov,thu,365,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,technician,married,professional.course,no,yes,no,telephone,nov,thu,106,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,single,university.degree,no,no,no,cellular,nov,thu,244,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+53,technician,divorced,high.school,no,no,no,cellular,nov,thu,290,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,management,single,high.school,no,yes,no,cellular,nov,thu,48,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,management,married,university.degree,no,yes,no,cellular,nov,thu,302,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,single,university.degree,no,no,no,cellular,nov,thu,151,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,technician,single,university.degree,no,yes,no,cellular,nov,thu,88,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,admin.,single,university.degree,no,yes,no,cellular,nov,thu,95,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+56,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,994,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,yes
+43,technician,married,university.degree,no,no,yes,cellular,nov,thu,113,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,management,married,high.school,unknown,yes,no,cellular,nov,thu,371,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,technician,married,professional.course,no,no,no,cellular,nov,thu,70,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+46,management,married,unknown,no,yes,no,cellular,nov,thu,1503,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+58,technician,divorced,basic.9y,no,no,no,cellular,nov,thu,178,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,technician,married,professional.course,no,no,no,cellular,nov,thu,96,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,admin.,married,high.school,no,yes,no,cellular,nov,thu,308,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+34,management,married,university.degree,no,no,no,telephone,nov,thu,29,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,73,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,entrepreneur,divorced,high.school,no,yes,no,cellular,nov,thu,88,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,self-employed,married,professional.course,no,yes,no,cellular,nov,thu,86,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,management,married,professional.course,no,yes,yes,cellular,nov,thu,94,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,single,basic.9y,no,no,no,telephone,nov,thu,26,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,technician,single,professional.course,no,yes,no,cellular,nov,thu,78,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,management,single,university.degree,no,yes,yes,cellular,nov,thu,186,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+58,technician,married,professional.course,no,no,no,cellular,nov,thu,321,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,single,basic.9y,no,yes,no,cellular,nov,thu,220,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,single,university.degree,no,yes,no,cellular,nov,thu,77,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+53,technician,married,professional.course,no,no,no,cellular,nov,thu,81,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+39,unemployed,divorced,high.school,no,no,no,cellular,nov,thu,19,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,management,married,university.degree,no,yes,no,cellular,nov,thu,83,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,single,university.degree,no,no,no,cellular,nov,thu,40,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,services,married,high.school,no,yes,no,cellular,nov,thu,640,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+42,admin.,married,university.degree,no,yes,no,cellular,nov,thu,871,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+35,student,married,basic.9y,no,yes,no,cellular,nov,thu,371,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,self-employed,single,university.degree,no,yes,no,cellular,nov,thu,151,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,self-employed,single,university.degree,no,yes,no,cellular,nov,thu,88,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+32,entrepreneur,married,university.degree,no,no,no,cellular,nov,thu,73,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+47,technician,married,professional.course,no,yes,no,cellular,nov,thu,329,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+48,admin.,married,university.degree,no,yes,no,cellular,nov,thu,111,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,single,university.degree,no,no,no,cellular,nov,thu,757,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,services,married,high.school,no,no,no,cellular,nov,thu,62,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,technician,married,high.school,no,no,no,cellular,nov,thu,149,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,164,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+56,housemaid,divorced,high.school,no,yes,no,cellular,nov,thu,67,6,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,technician,married,high.school,no,yes,yes,cellular,nov,thu,232,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,self-employed,single,university.degree,no,no,no,cellular,nov,thu,385,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+48,admin.,married,university.degree,no,no,no,cellular,nov,thu,301,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+34,entrepreneur,married,university.degree,no,yes,no,cellular,nov,thu,69,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+34,technician,married,university.degree,no,no,no,cellular,nov,thu,183,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+59,retired,married,professional.course,no,no,no,cellular,nov,thu,80,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+59,retired,married,professional.course,no,no,no,cellular,nov,thu,117,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,89,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,married,university.degree,no,yes,yes,cellular,nov,thu,49,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,self-employed,married,professional.course,no,no,no,cellular,nov,thu,24,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+56,technician,married,university.degree,no,no,no,cellular,nov,thu,162,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,management,married,university.degree,no,no,no,cellular,nov,thu,1256,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,management,married,university.degree,no,no,no,cellular,nov,thu,244,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,management,married,university.degree,no,yes,no,cellular,nov,thu,82,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+44,self-employed,married,university.degree,no,no,no,telephone,nov,thu,39,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,entrepreneur,married,unknown,unknown,yes,no,cellular,nov,thu,23,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,management,married,university.degree,no,no,no,cellular,nov,thu,133,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+55,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,45,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+51,entrepreneur,single,university.degree,no,no,no,cellular,nov,thu,139,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,management,married,university.degree,no,no,yes,cellular,nov,thu,116,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,services,divorced,high.school,no,no,no,cellular,nov,thu,410,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,entrepreneur,single,university.degree,no,yes,no,cellular,nov,thu,45,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,entrepreneur,married,university.degree,no,no,no,telephone,nov,thu,125,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,services,married,basic.4y,no,yes,no,cellular,nov,thu,80,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,blue-collar,single,basic.9y,unknown,unknown,unknown,cellular,nov,thu,93,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,blue-collar,single,basic.4y,no,yes,yes,cellular,nov,thu,145,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,86,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+40,technician,married,professional.course,no,yes,no,cellular,nov,thu,180,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+36,blue-collar,single,basic.4y,no,yes,no,cellular,nov,thu,775,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,management,single,university.degree,no,yes,no,telephone,nov,thu,207,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,management,married,university.degree,no,no,no,cellular,nov,thu,89,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,management,married,university.degree,no,yes,yes,cellular,nov,thu,283,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,self-employed,unknown,university.degree,no,no,no,cellular,nov,thu,221,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+44,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,107,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,entrepreneur,single,university.degree,no,yes,no,cellular,nov,thu,531,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,yes
+36,admin.,married,high.school,no,no,no,cellular,nov,thu,59,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,single,university.degree,no,no,no,cellular,nov,thu,85,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+52,blue-collar,divorced,basic.4y,no,no,no,cellular,nov,thu,200,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,thu,543,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+31,admin.,single,university.degree,no,yes,yes,telephone,nov,thu,90,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+53,management,married,high.school,no,no,no,cellular,nov,thu,227,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+40,admin.,single,high.school,no,yes,no,telephone,nov,thu,119,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,services,divorced,high.school,no,no,no,cellular,nov,thu,71,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+46,management,single,university.degree,no,yes,yes,cellular,nov,thu,292,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,management,single,university.degree,no,no,no,cellular,nov,thu,69,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,blue-collar,single,basic.9y,no,no,no,cellular,nov,thu,120,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,married,university.degree,no,yes,no,cellular,nov,thu,857,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+50,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,160,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+43,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,340,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+43,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,352,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,services,single,high.school,no,yes,no,cellular,nov,thu,475,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,blue-collar,married,basic.6y,no,no,no,cellular,nov,thu,322,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,unemployed,single,university.degree,no,no,no,cellular,nov,thu,153,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+55,retired,divorced,basic.9y,no,no,no,cellular,nov,thu,178,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,management,married,university.degree,no,no,no,cellular,nov,thu,73,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,blue-collar,married,basic.9y,no,no,no,telephone,nov,thu,281,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+30,services,married,high.school,no,yes,no,cellular,nov,thu,80,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,nov,thu,96,8,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,entrepreneur,married,university.degree,no,no,no,cellular,nov,thu,62,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,admin.,married,university.degree,no,no,no,cellular,nov,thu,240,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,services,married,high.school,unknown,yes,yes,cellular,nov,thu,129,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+44,admin.,single,professional.course,no,yes,no,cellular,nov,thu,931,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+30,management,single,university.degree,no,no,no,cellular,nov,thu,197,5,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+43,entrepreneur,married,high.school,unknown,no,yes,cellular,nov,thu,274,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,entrepreneur,married,high.school,no,no,no,cellular,nov,thu,150,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,services,married,unknown,no,yes,yes,cellular,nov,thu,597,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,blue-collar,married,basic.9y,no,no,yes,cellular,nov,thu,200,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,technician,married,university.degree,no,yes,yes,cellular,nov,thu,42,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,self-employed,single,university.degree,no,no,no,cellular,nov,thu,88,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,entrepreneur,married,high.school,no,yes,no,cellular,nov,thu,356,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,blue-collar,married,basic.6y,no,yes,no,cellular,nov,thu,150,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,593,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+58,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,308,1,6,1,success,-0.1,93.2,-42,4.076,5195.8,no
+41,services,married,university.degree,no,yes,no,cellular,nov,thu,283,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,unemployed,unknown,basic.9y,no,yes,yes,cellular,nov,thu,139,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+43,unemployed,single,university.degree,no,yes,yes,cellular,nov,thu,69,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+40,blue-collar,married,basic.6y,unknown,yes,no,cellular,nov,thu,142,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+49,technician,divorced,university.degree,no,yes,no,telephone,nov,thu,30,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,blue-collar,single,basic.9y,unknown,yes,no,cellular,nov,thu,71,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,admin.,married,high.school,no,yes,no,cellular,nov,thu,59,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+56,management,divorced,university.degree,no,yes,no,cellular,nov,thu,487,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,divorced,high.school,no,no,no,cellular,nov,thu,418,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,admin.,single,university.degree,no,yes,no,cellular,nov,thu,287,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,technician,married,professional.course,no,no,no,cellular,nov,thu,147,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,services,married,high.school,no,yes,no,cellular,nov,thu,282,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+47,admin.,married,university.degree,no,yes,no,cellular,nov,thu,70,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+47,entrepreneur,divorced,basic.9y,no,no,no,cellular,nov,thu,187,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,services,married,high.school,unknown,yes,no,cellular,nov,thu,83,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+40,blue-collar,married,basic.4y,unknown,no,no,cellular,nov,thu,22,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+58,admin.,married,university.degree,no,yes,no,cellular,nov,thu,554,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,married,university.degree,no,no,no,cellular,nov,thu,282,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,unemployed,married,basic.9y,no,yes,no,cellular,nov,thu,454,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,95,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+42,services,married,basic.6y,no,no,no,cellular,nov,thu,324,7,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+29,management,married,university.degree,no,yes,no,cellular,nov,thu,120,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,management,divorced,university.degree,no,yes,no,cellular,nov,thu,256,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+43,admin.,married,university.degree,no,yes,no,cellular,nov,thu,197,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,technician,divorced,professional.course,no,yes,no,cellular,nov,thu,104,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+50,retired,divorced,high.school,no,yes,no,cellular,nov,thu,691,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+40,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,377,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+47,housemaid,single,basic.9y,no,no,no,cellular,nov,thu,128,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+55,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,124,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+42,blue-collar,single,basic.4y,unknown,yes,no,cellular,nov,thu,269,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+44,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,90,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+43,services,divorced,high.school,no,no,no,cellular,nov,thu,329,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,entrepreneur,married,university.degree,no,yes,yes,cellular,nov,thu,141,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,admin.,married,high.school,no,yes,no,cellular,nov,thu,50,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,technician,married,professional.course,no,yes,no,cellular,nov,thu,161,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+30,technician,single,university.degree,no,yes,yes,cellular,nov,thu,224,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+52,retired,married,university.degree,no,yes,no,telephone,nov,thu,188,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,395,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,management,divorced,university.degree,no,yes,yes,cellular,nov,thu,1258,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+30,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,145,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,thu,677,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+37,management,married,university.degree,no,yes,no,cellular,nov,thu,252,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,blue-collar,married,professional.course,no,yes,no,cellular,nov,thu,475,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,blue-collar,single,high.school,no,no,no,cellular,nov,thu,363,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,single,high.school,no,yes,no,cellular,nov,thu,172,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+40,self-employed,married,university.degree,unknown,yes,yes,cellular,nov,thu,1490,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+41,services,single,high.school,unknown,yes,no,cellular,nov,thu,125,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,self-employed,married,high.school,no,yes,no,cellular,nov,thu,305,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,self-employed,divorced,university.degree,no,yes,no,cellular,nov,thu,743,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+44,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,62,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,81,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+48,technician,divorced,professional.course,no,yes,no,cellular,nov,thu,89,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+52,self-employed,single,professional.course,no,no,yes,cellular,nov,thu,139,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,services,single,high.school,no,yes,no,cellular,nov,thu,452,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,technician,married,high.school,no,yes,no,telephone,nov,thu,75,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+43,management,married,university.degree,no,yes,no,cellular,nov,thu,661,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+34,unemployed,married,high.school,no,yes,no,cellular,nov,thu,562,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+30,services,married,high.school,no,yes,no,cellular,nov,thu,174,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,services,married,high.school,no,yes,no,cellular,nov,thu,278,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+53,management,married,high.school,no,no,no,cellular,nov,thu,184,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+53,self-employed,divorced,professional.course,no,yes,no,cellular,nov,thu,73,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,blue-collar,single,high.school,no,no,no,cellular,nov,thu,184,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+51,technician,married,professional.course,no,yes,no,cellular,nov,thu,123,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,124,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+57,admin.,divorced,university.degree,no,yes,yes,cellular,nov,thu,1154,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+31,blue-collar,single,high.school,no,yes,no,cellular,nov,thu,359,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,60,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,249,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+47,admin.,married,basic.9y,no,no,no,cellular,nov,thu,164,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+51,admin.,divorced,high.school,no,no,yes,cellular,nov,thu,64,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+51,self-employed,married,basic.9y,no,yes,yes,cellular,nov,thu,244,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,unemployed,single,professional.course,no,yes,no,cellular,nov,thu,70,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,technician,divorced,professional.course,no,yes,yes,cellular,nov,thu,705,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+31,admin.,married,university.degree,no,no,no,cellular,nov,thu,96,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,services,married,high.school,unknown,no,yes,cellular,nov,thu,178,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,unemployed,single,professional.course,no,no,no,cellular,nov,thu,250,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,married,university.degree,no,no,no,cellular,nov,thu,211,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,blue-collar,married,basic.6y,no,yes,yes,cellular,nov,thu,74,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+51,retired,married,basic.9y,no,yes,no,cellular,nov,thu,259,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+52,housemaid,married,basic.9y,no,yes,no,cellular,nov,thu,339,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,blue-collar,married,basic.6y,no,yes,yes,cellular,nov,thu,195,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+41,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,168,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+44,entrepreneur,married,university.degree,no,yes,yes,cellular,nov,thu,96,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,admin.,single,high.school,no,yes,no,cellular,nov,thu,1035,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+29,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,736,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+34,technician,married,professional.course,no,no,no,cellular,nov,thu,144,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,technician,married,basic.6y,no,yes,no,telephone,nov,thu,51,8,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,blue-collar,single,basic.4y,no,yes,no,cellular,nov,thu,111,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,technician,single,professional.course,unknown,no,no,cellular,nov,thu,308,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,services,married,unknown,no,yes,no,cellular,nov,thu,153,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,technician,single,professional.course,no,no,no,cellular,nov,thu,214,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,188,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,unemployed,married,basic.9y,no,yes,no,cellular,nov,thu,352,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,services,married,high.school,unknown,yes,no,cellular,nov,thu,255,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,unemployed,single,basic.9y,no,yes,no,cellular,nov,thu,118,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,married,university.degree,no,yes,no,cellular,nov,thu,597,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,190,5,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+39,blue-collar,married,high.school,no,yes,no,cellular,nov,thu,193,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,entrepreneur,married,university.degree,no,no,no,cellular,nov,thu,55,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,technician,single,professional.course,unknown,yes,yes,cellular,nov,thu,895,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+30,unemployed,married,university.degree,no,no,no,cellular,nov,thu,125,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,blue-collar,single,basic.4y,no,no,no,cellular,nov,thu,113,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,management,divorced,university.degree,no,yes,no,cellular,nov,thu,10,6,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+43,technician,divorced,high.school,no,yes,no,cellular,nov,thu,94,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,unemployed,single,university.degree,no,yes,no,cellular,nov,thu,176,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,277,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,blue-collar,married,basic.4y,unknown,no,no,cellular,nov,thu,53,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+53,management,married,university.degree,no,yes,no,cellular,nov,thu,888,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,yes
+33,blue-collar,married,basic.4y,unknown,yes,yes,cellular,nov,thu,129,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,services,single,high.school,no,no,no,cellular,nov,thu,105,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,blue-collar,single,basic.9y,no,no,no,cellular,nov,thu,197,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,admin.,single,university.degree,no,yes,no,cellular,nov,thu,80,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,blue-collar,divorced,professional.course,no,yes,no,cellular,nov,thu,75,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,unemployed,married,high.school,no,unknown,unknown,cellular,nov,thu,72,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+32,technician,married,university.degree,no,no,yes,cellular,nov,thu,382,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+55,admin.,married,university.degree,no,unknown,unknown,cellular,nov,thu,187,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+51,management,divorced,high.school,no,no,no,cellular,nov,thu,486,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,student,single,university.degree,no,no,no,cellular,nov,thu,151,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,124,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+56,housemaid,divorced,basic.4y,no,no,no,cellular,nov,thu,80,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,blue-collar,divorced,professional.course,no,yes,no,cellular,nov,thu,340,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,technician,single,professional.course,unknown,yes,no,cellular,nov,thu,239,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,223,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+34,management,divorced,university.degree,no,no,no,cellular,nov,thu,370,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+56,housemaid,divorced,basic.4y,no,yes,no,cellular,nov,thu,212,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,services,single,high.school,no,no,no,cellular,nov,thu,151,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,management,single,university.degree,no,no,no,cellular,nov,thu,500,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,yes
+41,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,136,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+51,unemployed,divorced,high.school,unknown,yes,no,cellular,nov,thu,1166,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+56,retired,married,basic.4y,no,yes,yes,cellular,nov,thu,258,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,self-employed,married,illiterate,no,yes,no,cellular,nov,thu,51,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+51,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,140,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,admin.,married,high.school,no,yes,no,cellular,nov,thu,790,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,75,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+43,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,72,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,604,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,management,married,university.degree,no,no,no,cellular,nov,thu,154,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,131,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,blue-collar,married,basic.9y,no,yes,no,telephone,nov,thu,733,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,self-employed,married,illiterate,no,yes,no,cellular,nov,thu,488,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+34,unemployed,married,university.degree,no,yes,no,cellular,nov,thu,266,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,management,married,basic.9y,no,yes,no,cellular,nov,thu,130,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,blue-collar,divorced,basic.9y,no,yes,no,telephone,nov,thu,1025,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+33,services,divorced,high.school,no,no,yes,cellular,nov,thu,98,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,technician,married,unknown,no,yes,no,cellular,nov,thu,68,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,admin.,married,basic.9y,no,no,no,cellular,nov,thu,143,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,blue-collar,single,high.school,no,yes,yes,cellular,nov,thu,559,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+53,management,divorced,university.degree,no,yes,no,cellular,nov,thu,350,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,blue-collar,single,high.school,no,yes,no,cellular,nov,thu,293,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,138,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,admin.,single,university.degree,no,no,no,cellular,nov,thu,105,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,married,university.degree,no,yes,no,cellular,nov,thu,195,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,services,single,university.degree,unknown,yes,no,cellular,nov,thu,689,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+53,housemaid,married,unknown,no,yes,no,cellular,nov,thu,104,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+40,services,married,basic.6y,no,no,no,cellular,nov,thu,215,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,self-employed,single,university.degree,no,yes,no,cellular,nov,thu,311,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,technician,single,unknown,unknown,no,no,cellular,nov,thu,63,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,admin.,single,university.degree,no,yes,no,cellular,nov,thu,633,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,married,unknown,no,yes,no,cellular,nov,thu,305,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,admin.,single,university.degree,no,yes,no,cellular,nov,thu,191,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,239,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,admin.,married,high.school,no,yes,no,cellular,nov,thu,125,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,technician,married,professional.course,no,yes,no,cellular,nov,thu,63,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+36,blue-collar,single,basic.6y,no,no,no,cellular,nov,thu,219,7,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,single,university.degree,no,no,no,telephone,nov,thu,65,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,technician,single,university.degree,no,no,no,telephone,nov,thu,61,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,blue-collar,married,basic.6y,no,no,no,cellular,nov,thu,123,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+55,technician,single,university.degree,unknown,yes,yes,cellular,nov,thu,92,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,unemployed,divorced,basic.4y,unknown,no,no,cellular,nov,thu,462,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,single,high.school,no,yes,no,cellular,nov,thu,141,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+56,technician,married,professional.course,no,no,no,cellular,nov,thu,51,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,thu,425,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+56,management,married,university.degree,no,yes,no,cellular,nov,thu,149,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,blue-collar,married,professional.course,no,yes,no,telephone,nov,thu,547,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,self-employed,single,high.school,no,yes,yes,cellular,nov,thu,337,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+40,management,married,unknown,no,yes,no,cellular,nov,thu,165,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+43,technician,married,professional.course,no,yes,yes,cellular,nov,thu,47,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,services,married,high.school,no,no,no,telephone,nov,thu,35,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,student,divorced,university.degree,no,yes,no,cellular,nov,thu,48,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+42,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,230,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+47,management,married,university.degree,no,yes,yes,cellular,nov,thu,109,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,self-employed,single,professional.course,no,yes,no,cellular,nov,thu,361,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,services,single,high.school,no,yes,no,cellular,nov,thu,67,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+40,blue-collar,married,basic.6y,no,yes,no,telephone,nov,thu,107,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,technician,married,high.school,no,yes,yes,cellular,nov,thu,435,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,services,single,high.school,no,no,no,cellular,nov,thu,140,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,blue-collar,single,high.school,no,yes,no,cellular,nov,thu,294,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,management,married,university.degree,no,yes,no,cellular,nov,thu,205,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,single,high.school,no,no,no,cellular,nov,thu,470,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,married,university.degree,no,no,no,cellular,nov,thu,427,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,175,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+53,self-employed,divorced,university.degree,no,no,no,cellular,nov,thu,380,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,blue-collar,divorced,basic.9y,no,yes,yes,cellular,nov,thu,215,6,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+34,blue-collar,married,basic.9y,no,yes,yes,telephone,nov,thu,98,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,entrepreneur,married,professional.course,no,yes,yes,cellular,nov,thu,267,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,married,university.degree,no,yes,yes,cellular,nov,thu,51,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,technician,single,professional.course,no,yes,no,cellular,nov,thu,207,5,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+49,unemployed,unknown,high.school,no,yes,no,cellular,nov,thu,73,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,admin.,single,university.degree,no,yes,no,cellular,nov,thu,20,8,6,1,success,-0.1,93.2,-42,4.076,5195.8,no
+30,services,married,high.school,no,no,no,cellular,nov,thu,186,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+42,blue-collar,divorced,basic.4y,unknown,no,no,cellular,nov,thu,14,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+51,unemployed,married,high.school,no,yes,no,cellular,nov,thu,120,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,single,university.degree,no,no,no,cellular,nov,thu,319,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,blue-collar,married,high.school,no,no,no,cellular,nov,thu,52,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+52,technician,divorced,university.degree,no,yes,no,cellular,nov,thu,154,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+51,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,267,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,self-employed,married,illiterate,no,yes,no,cellular,nov,thu,113,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+55,management,divorced,university.degree,no,yes,no,cellular,nov,thu,159,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,technician,single,professional.course,unknown,no,no,cellular,nov,thu,128,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+51,admin.,divorced,university.degree,no,yes,yes,cellular,nov,thu,249,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,195,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,technician,single,professional.course,no,yes,no,cellular,nov,thu,16,9,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+48,admin.,divorced,high.school,no,no,no,cellular,nov,thu,330,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,blue-collar,married,basic.9y,no,yes,no,telephone,nov,thu,25,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,340,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,married,university.degree,no,yes,no,cellular,nov,thu,158,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+35,unemployed,married,basic.4y,no,no,no,cellular,nov,thu,192,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,768,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+40,blue-collar,single,basic.9y,no,yes,yes,cellular,nov,thu,426,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,entrepreneur,married,university.degree,no,yes,no,cellular,nov,thu,260,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,management,married,unknown,no,no,no,cellular,nov,thu,352,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+57,management,divorced,university.degree,unknown,yes,yes,cellular,nov,thu,114,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,married,basic.9y,no,yes,yes,cellular,nov,thu,539,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+51,unemployed,divorced,high.school,unknown,yes,no,cellular,nov,thu,187,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,management,married,unknown,no,yes,yes,cellular,nov,thu,758,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+54,housemaid,divorced,university.degree,no,yes,yes,cellular,nov,thu,653,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+31,technician,single,unknown,unknown,yes,no,cellular,nov,thu,276,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,230,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,340,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+47,blue-collar,married,basic.6y,no,yes,yes,cellular,nov,thu,9,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,admin.,single,high.school,no,yes,yes,cellular,nov,thu,44,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+29,services,married,basic.9y,no,yes,yes,cellular,nov,thu,142,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,married,university.degree,unknown,yes,no,cellular,nov,thu,55,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,admin.,married,basic.9y,no,no,no,cellular,nov,thu,315,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,services,married,basic.9y,no,yes,no,cellular,nov,thu,326,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,married,university.degree,no,yes,no,cellular,nov,thu,240,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,services,married,basic.9y,no,no,no,cellular,nov,thu,517,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,blue-collar,single,unknown,no,yes,no,cellular,nov,thu,150,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,management,single,basic.9y,unknown,yes,no,cellular,nov,thu,972,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,single,university.degree,no,yes,no,cellular,nov,thu,73,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,77,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+39,entrepreneur,married,university.degree,no,no,no,cellular,nov,thu,279,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,unemployed,married,basic.4y,unknown,yes,no,cellular,nov,thu,166,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+49,self-employed,married,university.degree,no,no,no,cellular,nov,thu,40,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+42,entrepreneur,single,basic.4y,no,yes,no,cellular,nov,thu,93,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,technician,single,professional.course,no,yes,no,cellular,nov,thu,102,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,technician,married,professional.course,no,yes,no,cellular,nov,thu,144,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,entrepreneur,married,university.degree,no,yes,yes,cellular,nov,thu,265,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+53,admin.,divorced,high.school,no,yes,no,cellular,nov,thu,115,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+53,self-employed,single,university.degree,no,no,yes,cellular,nov,thu,61,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+46,entrepreneur,divorced,basic.9y,no,yes,no,cellular,nov,thu,201,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+49,services,married,basic.4y,no,no,no,cellular,nov,thu,106,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+43,technician,married,high.school,no,yes,no,telephone,nov,thu,37,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,technician,married,university.degree,no,no,yes,cellular,nov,thu,418,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,entrepreneur,married,university.degree,no,yes,no,cellular,nov,thu,106,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+33,unemployed,single,university.degree,no,no,no,cellular,nov,thu,187,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+51,self-employed,married,university.degree,no,yes,no,cellular,nov,thu,101,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,management,married,professional.course,no,yes,no,cellular,nov,thu,619,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,self-employed,single,university.degree,no,yes,no,telephone,nov,thu,93,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,technician,single,professional.course,no,yes,no,cellular,nov,thu,127,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+38,services,married,basic.6y,no,yes,no,cellular,nov,thu,88,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+44,self-employed,married,basic.9y,no,yes,no,cellular,nov,thu,104,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+39,services,single,university.degree,unknown,yes,no,cellular,nov,thu,43,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,services,married,basic.4y,unknown,no,no,cellular,nov,thu,813,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,unemployed,married,high.school,no,no,no,cellular,nov,thu,808,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,blue-collar,married,professional.course,no,no,no,cellular,nov,thu,600,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,services,married,professional.course,no,no,no,cellular,nov,thu,627,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,management,married,basic.9y,no,no,no,cellular,nov,thu,329,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,technician,single,university.degree,no,no,yes,cellular,nov,thu,399,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+29,admin.,single,high.school,no,yes,no,cellular,nov,thu,87,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,technician,single,professional.course,no,yes,no,cellular,nov,thu,911,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,technician,single,professional.course,no,yes,no,cellular,nov,thu,352,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+43,blue-collar,married,basic.6y,no,yes,no,telephone,nov,thu,20,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,technician,married,professional.course,no,no,no,cellular,nov,thu,108,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,management,single,university.degree,no,yes,no,cellular,nov,thu,262,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,management,married,university.degree,no,no,no,cellular,nov,thu,196,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,43,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,128,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,blue-collar,single,basic.4y,no,yes,yes,cellular,nov,thu,104,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,services,married,high.school,no,yes,no,cellular,nov,thu,111,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+36,technician,single,professional.course,no,yes,no,cellular,nov,thu,61,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,services,married,high.school,unknown,no,no,cellular,nov,thu,130,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,divorced,university.degree,no,yes,no,telephone,nov,thu,119,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,entrepreneur,married,professional.course,no,unknown,unknown,cellular,nov,thu,165,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,single,university.degree,no,yes,no,telephone,nov,thu,105,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,married,high.school,no,no,no,cellular,nov,thu,133,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+52,management,married,university.degree,no,yes,no,cellular,nov,thu,179,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,single,university.degree,no,no,no,cellular,nov,thu,206,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+46,technician,divorced,professional.course,no,yes,no,cellular,nov,thu,240,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,198,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,entrepreneur,married,university.degree,no,yes,no,cellular,nov,thu,129,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+57,management,married,professional.course,unknown,yes,no,cellular,nov,thu,224,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+43,technician,single,professional.course,unknown,unknown,unknown,cellular,nov,thu,157,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,management,married,university.degree,no,yes,no,cellular,nov,thu,182,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,married,university.degree,unknown,yes,no,cellular,nov,thu,386,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,admin.,single,university.degree,no,no,no,cellular,nov,thu,642,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,single,university.degree,no,no,no,cellular,nov,thu,434,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,services,single,basic.9y,no,yes,no,cellular,nov,thu,163,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,214,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+35,technician,married,university.degree,no,no,no,cellular,nov,thu,1145,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,services,single,high.school,no,no,no,cellular,nov,thu,148,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,self-employed,married,professional.course,no,yes,no,cellular,nov,thu,329,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,221,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,management,married,university.degree,no,yes,yes,cellular,nov,thu,339,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,135,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,services,divorced,high.school,no,yes,no,cellular,nov,thu,41,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,technician,married,professional.course,no,no,no,telephone,nov,thu,159,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,married,university.degree,no,unknown,unknown,cellular,nov,thu,470,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,services,married,high.school,no,yes,no,cellular,nov,thu,75,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,married,university.degree,no,yes,no,cellular,nov,thu,155,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,management,divorced,basic.6y,no,yes,no,cellular,nov,thu,147,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,management,divorced,basic.6y,no,yes,no,cellular,nov,thu,167,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,management,divorced,basic.6y,no,no,no,cellular,nov,thu,268,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+22,blue-collar,single,basic.4y,no,yes,no,telephone,nov,thu,16,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,admin.,married,university.degree,no,no,no,cellular,nov,thu,533,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,single,university.degree,no,no,yes,cellular,nov,thu,264,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,technician,single,university.degree,no,no,yes,cellular,nov,thu,303,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,management,married,university.degree,no,yes,no,cellular,nov,thu,91,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,admin.,single,university.degree,no,yes,no,cellular,nov,thu,225,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+39,management,married,university.degree,no,yes,yes,cellular,nov,thu,90,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+52,services,married,basic.6y,no,yes,no,cellular,nov,thu,283,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,208,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,management,single,unknown,no,yes,yes,cellular,nov,thu,207,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,single,high.school,no,no,no,cellular,nov,thu,56,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,management,single,university.degree,no,no,no,cellular,nov,thu,319,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+50,entrepreneur,married,university.degree,no,yes,no,cellular,nov,thu,57,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,150,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+56,services,married,high.school,no,no,no,telephone,nov,thu,871,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+34,technician,single,university.degree,no,yes,no,cellular,nov,thu,354,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,management,single,basic.9y,no,yes,no,cellular,nov,thu,165,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,single,university.degree,no,no,no,cellular,nov,thu,88,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+58,retired,married,university.degree,no,unknown,unknown,cellular,nov,thu,279,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,services,single,high.school,no,no,no,cellular,nov,thu,180,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,technician,divorced,professional.course,no,unknown,unknown,cellular,nov,thu,156,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,1532,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+36,admin.,married,unknown,unknown,yes,no,cellular,nov,thu,235,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,management,married,unknown,no,yes,no,cellular,nov,thu,884,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,admin.,single,university.degree,no,yes,no,cellular,nov,thu,218,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+49,entrepreneur,married,high.school,unknown,yes,no,cellular,nov,thu,611,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,married,university.degree,no,no,no,cellular,nov,thu,248,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+43,technician,married,professional.course,no,no,no,cellular,nov,thu,75,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,blue-collar,married,basic.4y,unknown,yes,yes,cellular,nov,thu,60,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,single,university.degree,no,no,no,cellular,nov,thu,986,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+57,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,172,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,admin.,single,university.degree,no,yes,no,cellular,nov,thu,315,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+57,admin.,divorced,university.degree,unknown,no,no,cellular,nov,thu,399,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,single,university.degree,no,no,no,cellular,nov,thu,117,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,self-employed,married,basic.9y,no,yes,yes,cellular,nov,thu,151,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,single,university.degree,no,yes,no,cellular,nov,thu,513,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,technician,single,university.degree,no,yes,yes,cellular,nov,thu,281,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,self-employed,married,basic.9y,no,yes,no,cellular,nov,thu,317,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,services,married,high.school,no,yes,no,cellular,nov,thu,116,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+47,admin.,married,high.school,no,no,no,cellular,nov,thu,115,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+55,unemployed,married,university.degree,no,yes,no,cellular,nov,thu,303,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+55,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,thu,97,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+55,blue-collar,divorced,basic.6y,no,yes,no,cellular,nov,thu,104,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+54,management,married,university.degree,no,yes,no,cellular,nov,thu,68,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+55,admin.,married,unknown,no,yes,yes,cellular,nov,thu,591,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,blue-collar,married,professional.course,no,yes,yes,cellular,nov,thu,136,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,services,divorced,high.school,no,yes,no,cellular,nov,thu,251,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+43,blue-collar,married,unknown,unknown,yes,no,cellular,nov,thu,355,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,services,single,high.school,no,yes,no,cellular,nov,thu,231,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,services,married,basic.9y,unknown,yes,no,cellular,nov,thu,251,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,admin.,single,university.degree,no,yes,no,cellular,nov,thu,341,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,single,university.degree,no,no,yes,cellular,nov,thu,106,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,married,high.school,no,no,no,cellular,nov,thu,361,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+37,unemployed,single,university.degree,no,no,no,cellular,nov,thu,212,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+55,management,divorced,university.degree,no,no,no,cellular,nov,thu,131,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+38,blue-collar,divorced,basic.4y,no,no,no,cellular,nov,thu,60,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,management,single,university.degree,no,no,yes,cellular,nov,thu,378,8,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,services,married,high.school,unknown,yes,no,cellular,nov,thu,441,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,services,married,high.school,no,yes,yes,cellular,nov,thu,282,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+32,technician,single,university.degree,no,no,yes,telephone,nov,thu,197,7,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,services,married,professional.course,no,no,yes,cellular,nov,thu,217,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,single,university.degree,no,no,yes,cellular,nov,thu,250,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+42,technician,married,university.degree,no,no,no,telephone,nov,thu,172,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,210,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,management,single,high.school,no,no,no,cellular,nov,thu,952,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+39,blue-collar,married,basic.6y,no,yes,no,cellular,nov,thu,332,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,services,married,high.school,unknown,no,no,cellular,nov,thu,117,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,technician,married,basic.6y,no,yes,yes,cellular,nov,thu,194,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,233,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+35,blue-collar,divorced,basic.4y,no,no,no,cellular,nov,thu,197,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+34,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,493,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,yes
+30,technician,single,university.degree,no,no,no,cellular,nov,thu,168,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,technician,married,high.school,no,yes,no,cellular,nov,thu,688,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,admin.,single,high.school,no,yes,no,cellular,nov,thu,205,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,blue-collar,married,basic.6y,no,yes,no,telephone,nov,thu,713,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,management,single,university.degree,no,no,no,cellular,nov,thu,2420,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+52,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,176,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,management,divorced,high.school,no,yes,no,telephone,nov,thu,215,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,90,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+32,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,thu,292,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+30,blue-collar,single,high.school,no,no,no,cellular,nov,thu,232,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+49,management,divorced,basic.6y,no,no,no,telephone,nov,thu,88,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,admin.,divorced,university.degree,no,unknown,unknown,cellular,nov,thu,257,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,admin.,married,high.school,no,no,no,cellular,nov,thu,1598,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+35,admin.,single,university.degree,no,no,no,cellular,nov,thu,295,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+31,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,693,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+55,admin.,married,basic.9y,no,yes,yes,cellular,nov,thu,430,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,unemployed,married,basic.9y,no,no,no,telephone,nov,thu,134,9,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+54,entrepreneur,divorced,university.degree,no,yes,yes,telephone,nov,thu,761,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,admin.,divorced,university.degree,no,no,no,telephone,nov,thu,233,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+52,admin.,married,university.degree,no,yes,no,cellular,nov,thu,134,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+42,services,married,basic.6y,no,no,no,cellular,nov,thu,290,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+59,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,370,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,services,single,professional.course,no,yes,no,cellular,nov,thu,766,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+51,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,279,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+48,admin.,married,university.degree,no,no,no,cellular,nov,thu,298,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+29,self-employed,married,university.degree,no,no,no,cellular,nov,thu,157,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,blue-collar,single,basic.9y,no,no,no,cellular,nov,thu,324,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+48,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,thu,537,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,single,university.degree,no,yes,no,cellular,nov,thu,182,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,management,single,university.degree,no,no,no,telephone,nov,thu,96,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,services,married,basic.9y,unknown,yes,no,cellular,nov,thu,90,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,technician,single,university.degree,no,no,no,cellular,nov,thu,59,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,blue-collar,single,basic.4y,no,yes,no,cellular,nov,thu,222,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+58,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,178,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+41,services,single,basic.9y,no,no,no,cellular,nov,thu,146,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,admin.,single,university.degree,no,yes,no,cellular,nov,thu,769,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,unemployed,married,unknown,no,yes,no,cellular,nov,thu,216,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+43,unemployed,single,unknown,no,yes,no,cellular,nov,thu,87,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,management,married,university.degree,no,no,no,cellular,nov,thu,192,2,6,1,success,-0.1,93.2,-42,4.076,5195.8,no
+40,entrepreneur,unknown,high.school,no,yes,yes,cellular,nov,thu,825,6,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+30,services,married,high.school,no,yes,no,telephone,nov,thu,156,7,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+50,unemployed,unknown,basic.9y,no,no,no,telephone,nov,thu,278,6,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+34,technician,married,high.school,no,yes,yes,cellular,nov,thu,1329,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+37,unemployed,single,university.degree,no,yes,no,telephone,nov,thu,76,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+51,self-employed,married,university.degree,no,yes,yes,cellular,nov,thu,310,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+36,admin.,divorced,university.degree,no,no,yes,cellular,nov,thu,56,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,services,single,high.school,no,yes,no,cellular,nov,thu,1059,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+36,admin.,single,high.school,no,no,no,cellular,nov,thu,40,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,technician,divorced,university.degree,no,yes,no,cellular,nov,thu,104,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+31,services,married,basic.6y,no,no,no,cellular,nov,thu,843,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+46,blue-collar,single,basic.4y,no,no,no,cellular,nov,thu,185,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,admin.,single,high.school,no,yes,yes,cellular,nov,thu,1476,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,services,married,basic.9y,no,no,no,cellular,nov,thu,476,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,married,university.degree,no,no,no,cellular,nov,thu,139,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,services,married,high.school,no,no,no,cellular,nov,thu,283,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+32,admin.,married,university.degree,no,no,no,cellular,nov,thu,165,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+38,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,738,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+45,blue-collar,married,basic.6y,no,yes,no,cellular,nov,thu,265,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,admin.,married,university.degree,no,yes,no,telephone,nov,thu,442,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+42,management,married,high.school,no,yes,yes,cellular,nov,thu,164,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no
+36,services,single,high.school,no,yes,no,cellular,nov,thu,422,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+34,self-employed,single,basic.9y,no,no,no,cellular,nov,thu,91,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+33,admin.,married,university.degree,no,no,no,cellular,nov,thu,489,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+39,blue-collar,married,basic.6y,no,yes,no,cellular,nov,thu,391,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+31,entrepreneur,single,university.degree,no,no,no,cellular,nov,thu,1855,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no
+30,blue-collar,married,high.school,no,yes,yes,cellular,nov,thu,2453,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes
+42,technician,married,professional.course,no,no,no,cellular,nov,fri,21,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,management,married,university.degree,no,no,no,cellular,nov,fri,83,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+35,admin.,single,high.school,no,yes,no,cellular,nov,fri,86,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+42,technician,single,professional.course,no,yes,no,cellular,nov,fri,91,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+56,services,married,high.school,unknown,yes,no,cellular,nov,fri,254,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+56,admin.,divorced,university.degree,no,no,no,cellular,nov,fri,149,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,blue-collar,single,professional.course,no,no,no,cellular,nov,fri,249,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,technician,married,university.degree,no,no,no,cellular,nov,fri,10,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,admin.,married,university.degree,no,yes,no,cellular,nov,fri,358,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,management,married,basic.6y,no,yes,yes,cellular,nov,fri,81,6,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+57,admin.,divorced,university.degree,unknown,yes,no,cellular,nov,fri,6,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+54,retired,divorced,university.degree,no,no,yes,cellular,nov,fri,138,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,blue-collar,married,basic.6y,no,yes,no,cellular,nov,fri,275,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,fri,312,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+45,admin.,divorced,university.degree,no,yes,yes,cellular,nov,fri,69,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,admin.,married,university.degree,no,yes,no,cellular,nov,fri,37,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+56,technician,married,professional.course,unknown,yes,no,cellular,nov,fri,266,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+58,retired,divorced,professional.course,no,no,no,cellular,nov,fri,159,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+46,admin.,single,high.school,no,yes,yes,cellular,nov,fri,116,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+50,management,divorced,university.degree,no,yes,no,cellular,nov,fri,21,11,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,admin.,married,university.degree,no,yes,no,cellular,nov,fri,358,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,unemployed,single,basic.4y,no,yes,no,telephone,nov,fri,144,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,admin.,married,university.degree,no,yes,no,telephone,nov,fri,41,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,technician,single,university.degree,no,no,no,cellular,nov,fri,124,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+43,services,single,high.school,unknown,no,no,cellular,nov,fri,298,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+36,technician,single,unknown,no,no,no,cellular,nov,fri,86,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+38,admin.,divorced,basic.9y,no,no,no,cellular,nov,fri,271,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+41,blue-collar,single,basic.9y,unknown,yes,no,cellular,nov,fri,299,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,admin.,single,university.degree,no,yes,no,cellular,nov,fri,152,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,technician,married,university.degree,no,yes,no,cellular,nov,fri,322,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,technician,single,university.degree,no,no,no,telephone,nov,fri,336,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+58,admin.,married,high.school,no,yes,no,cellular,nov,fri,441,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,married,university.degree,no,yes,no,cellular,nov,fri,149,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,admin.,married,university.degree,no,unknown,unknown,cellular,nov,fri,675,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,management,married,university.degree,no,yes,no,cellular,nov,fri,118,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,admin.,single,university.degree,no,no,no,cellular,nov,fri,85,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+49,management,married,university.degree,no,no,no,cellular,nov,fri,65,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,admin.,divorced,professional.course,no,yes,no,cellular,nov,fri,239,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+54,admin.,married,high.school,no,yes,no,cellular,nov,fri,267,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,225,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,54,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,blue-collar,married,university.degree,unknown,no,no,cellular,nov,fri,108,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,services,married,high.school,unknown,no,no,cellular,nov,fri,66,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,management,married,university.degree,no,yes,no,cellular,nov,fri,108,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,blue-collar,divorced,professional.course,no,yes,yes,cellular,nov,fri,49,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,1221,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+38,admin.,divorced,basic.9y,no,no,no,cellular,nov,fri,71,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,self-employed,married,university.degree,no,yes,yes,cellular,nov,fri,729,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+57,management,married,university.degree,no,no,no,cellular,nov,fri,289,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+58,retired,married,professional.course,no,no,no,cellular,nov,fri,127,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+49,management,married,university.degree,no,yes,no,cellular,nov,fri,846,1,3,1,success,-0.1,93.2,-42,4.021,5195.8,no
+37,admin.,married,university.degree,no,yes,yes,cellular,nov,fri,215,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,housemaid,married,basic.4y,no,yes,yes,cellular,nov,fri,75,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+36,admin.,married,university.degree,no,yes,no,cellular,nov,fri,248,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,management,married,university.degree,no,no,yes,cellular,nov,fri,591,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,yes
+43,admin.,single,university.degree,no,yes,no,cellular,nov,fri,163,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+30,admin.,single,high.school,no,yes,no,cellular,nov,fri,337,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,technician,divorced,basic.9y,no,no,no,cellular,nov,fri,179,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,management,married,university.degree,no,yes,yes,cellular,nov,fri,111,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,single,high.school,no,yes,no,cellular,nov,fri,63,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+54,admin.,divorced,university.degree,unknown,no,no,cellular,nov,fri,558,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+36,admin.,married,university.degree,no,no,no,cellular,nov,fri,569,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,technician,single,university.degree,no,yes,no,cellular,nov,fri,153,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+51,self-employed,married,university.degree,unknown,no,no,cellular,nov,fri,46,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+48,admin.,divorced,high.school,no,no,no,cellular,nov,fri,208,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,admin.,divorced,university.degree,unknown,no,no,cellular,nov,fri,22,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+32,student,single,professional.course,no,yes,yes,cellular,nov,fri,261,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+58,retired,married,professional.course,unknown,no,no,cellular,nov,fri,120,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,admin.,married,university.degree,no,unknown,unknown,cellular,nov,fri,253,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,services,single,high.school,no,yes,no,cellular,nov,fri,43,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+38,admin.,divorced,high.school,no,yes,no,cellular,nov,fri,321,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,management,single,university.degree,unknown,yes,yes,cellular,nov,fri,46,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,services,single,high.school,no,yes,no,cellular,nov,fri,104,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+37,services,married,high.school,no,yes,no,cellular,nov,fri,63,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,technician,married,university.degree,no,yes,no,telephone,nov,fri,81,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,423,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+55,technician,married,professional.course,no,no,no,cellular,nov,fri,113,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+56,technician,married,professional.course,no,yes,no,cellular,nov,fri,71,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,technician,married,professional.course,no,no,no,cellular,nov,fri,348,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+43,services,single,high.school,unknown,no,no,cellular,nov,fri,62,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,blue-collar,married,basic.6y,no,no,no,cellular,nov,fri,588,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+53,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,528,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+34,admin.,married,university.degree,no,no,no,cellular,nov,fri,467,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+29,technician,single,professional.course,no,no,no,cellular,nov,fri,530,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,yes
+45,technician,married,professional.course,no,yes,no,cellular,nov,fri,76,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+30,services,single,high.school,no,no,no,cellular,nov,fri,648,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+36,technician,single,unknown,no,no,no,cellular,nov,fri,158,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,self-employed,married,basic.9y,unknown,yes,no,cellular,nov,fri,258,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+37,admin.,married,professional.course,no,no,no,cellular,nov,fri,73,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+45,admin.,divorced,high.school,no,no,yes,cellular,nov,fri,567,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+30,services,single,university.degree,no,yes,no,cellular,nov,fri,13,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,management,married,university.degree,no,yes,no,cellular,nov,fri,470,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,entrepreneur,married,basic.6y,no,yes,no,telephone,nov,fri,228,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,management,married,university.degree,no,yes,yes,cellular,nov,fri,22,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,blue-collar,married,professional.course,no,yes,yes,cellular,nov,fri,91,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,technician,married,basic.4y,no,yes,no,cellular,nov,fri,345,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,admin.,single,professional.course,no,no,no,telephone,nov,fri,346,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+47,management,married,university.degree,no,no,no,cellular,nov,fri,107,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,technician,single,professional.course,no,yes,no,cellular,nov,fri,86,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,technician,single,university.degree,no,yes,yes,cellular,nov,fri,710,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+58,admin.,married,university.degree,unknown,no,no,cellular,nov,fri,110,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+35,admin.,single,university.degree,no,yes,no,cellular,nov,fri,530,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+39,admin.,single,unknown,no,no,no,cellular,nov,fri,73,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+35,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,529,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+37,technician,divorced,high.school,no,no,no,cellular,nov,fri,635,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,yes
+36,technician,single,unknown,no,yes,no,cellular,nov,fri,254,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,self-employed,married,basic.9y,unknown,yes,no,cellular,nov,fri,106,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+43,management,single,high.school,no,no,no,cellular,nov,fri,40,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,195,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,management,divorced,university.degree,no,yes,no,cellular,nov,fri,183,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+39,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,195,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,admin.,married,high.school,no,yes,no,cellular,nov,fri,585,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,admin.,married,university.degree,no,no,no,cellular,nov,fri,501,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+30,admin.,single,university.degree,no,yes,no,cellular,nov,fri,222,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,admin.,married,university.degree,unknown,yes,no,cellular,nov,fri,131,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+43,services,married,basic.6y,no,yes,no,cellular,nov,fri,158,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,technician,single,professional.course,no,yes,yes,cellular,nov,fri,215,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,unemployed,single,university.degree,no,yes,no,cellular,nov,fri,30,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,blue-collar,married,basic.4y,unknown,yes,yes,cellular,nov,fri,53,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+35,admin.,divorced,university.degree,no,no,no,cellular,nov,fri,263,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,blue-collar,married,professional.course,no,no,yes,cellular,nov,fri,344,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,technician,married,basic.9y,unknown,no,no,cellular,nov,fri,174,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,blue-collar,married,basic.4y,unknown,no,yes,cellular,nov,fri,103,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+44,services,married,high.school,unknown,yes,no,cellular,nov,fri,46,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+43,admin.,divorced,high.school,no,no,yes,cellular,nov,fri,74,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,blue-collar,married,basic.4y,unknown,no,yes,cellular,nov,fri,105,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,technician,single,high.school,no,yes,yes,cellular,nov,fri,206,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,management,married,university.degree,no,no,no,cellular,nov,fri,132,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,management,married,university.degree,no,yes,no,cellular,nov,fri,175,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,admin.,married,high.school,no,yes,no,cellular,nov,fri,140,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,admin.,married,high.school,no,no,no,cellular,nov,fri,148,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,66,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+52,admin.,married,university.degree,unknown,yes,no,cellular,nov,fri,32,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+43,management,single,high.school,no,yes,no,cellular,nov,fri,149,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,entrepreneur,married,high.school,no,yes,no,cellular,nov,fri,1166,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,management,married,university.degree,no,yes,no,cellular,nov,fri,161,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,admin.,married,university.degree,no,yes,no,cellular,nov,fri,262,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,blue-collar,single,basic.4y,no,no,no,cellular,nov,fri,60,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,single,high.school,no,yes,no,cellular,nov,fri,106,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,unemployed,married,university.degree,no,yes,yes,cellular,nov,fri,59,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+38,blue-collar,married,basic.6y,unknown,yes,no,cellular,nov,fri,1055,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,admin.,married,university.degree,no,yes,no,cellular,nov,fri,181,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,admin.,married,university.degree,no,no,no,cellular,nov,fri,218,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,entrepreneur,married,high.school,no,no,yes,cellular,nov,fri,429,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,technician,single,university.degree,no,yes,no,cellular,nov,fri,327,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+57,housemaid,married,basic.4y,no,no,no,cellular,nov,fri,216,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,technician,single,university.degree,no,yes,no,cellular,nov,fri,201,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+50,blue-collar,divorced,professional.course,no,yes,no,cellular,nov,fri,102,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,65,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,entrepreneur,married,university.degree,no,yes,no,cellular,nov,fri,58,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+30,admin.,married,university.degree,no,no,no,cellular,nov,fri,221,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,management,married,university.degree,no,yes,yes,cellular,nov,fri,957,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,yes
+38,blue-collar,single,basic.6y,no,yes,yes,cellular,nov,fri,202,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,admin.,divorced,university.degree,no,no,no,cellular,nov,fri,161,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,technician,married,basic.9y,no,no,no,cellular,nov,fri,705,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+51,technician,married,high.school,no,yes,no,cellular,nov,fri,167,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,admin.,married,unknown,no,yes,no,telephone,nov,fri,29,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,self-employed,married,university.degree,no,no,no,cellular,nov,fri,89,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+38,services,married,high.school,no,yes,no,cellular,nov,fri,306,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+57,management,divorced,professional.course,no,yes,no,cellular,nov,fri,56,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+46,technician,divorced,university.degree,no,yes,no,cellular,nov,fri,796,5,999,1,failure,-0.1,93.2,-42,4.021,5195.8,yes
+36,services,married,basic.6y,unknown,no,no,cellular,nov,fri,1022,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+36,admin.,married,university.degree,no,yes,no,cellular,nov,fri,189,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,fri,74,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,fri,154,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,single,high.school,no,no,no,cellular,nov,fri,89,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,management,single,university.degree,no,yes,no,cellular,nov,fri,79,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,admin.,single,university.degree,unknown,no,yes,cellular,nov,fri,143,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,admin.,married,university.degree,no,yes,no,cellular,nov,fri,169,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,unemployed,married,basic.4y,no,yes,no,cellular,nov,fri,80,10,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,technician,married,basic.9y,no,yes,no,cellular,nov,fri,44,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,management,married,basic.6y,no,no,no,cellular,nov,fri,133,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,technician,divorced,university.degree,no,yes,no,telephone,nov,fri,49,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,fri,586,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,admin.,divorced,university.degree,unknown,no,no,cellular,nov,fri,189,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,technician,single,basic.9y,no,yes,no,telephone,nov,fri,218,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,admin.,married,university.degree,no,yes,no,cellular,nov,fri,235,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,housemaid,married,basic.4y,no,yes,no,cellular,nov,fri,105,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,management,divorced,professional.course,no,yes,no,cellular,nov,fri,849,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+50,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,fri,5,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,271,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,fri,893,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+36,entrepreneur,divorced,high.school,no,yes,no,cellular,nov,fri,230,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,blue-collar,married,basic.6y,no,no,no,cellular,nov,fri,68,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,74,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,unemployed,single,basic.4y,no,yes,yes,cellular,nov,fri,115,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,entrepreneur,single,basic.4y,no,no,no,cellular,nov,fri,100,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+54,technician,married,high.school,unknown,yes,no,cellular,nov,fri,326,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,fri,1182,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,housemaid,married,high.school,no,no,no,cellular,nov,fri,144,6,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+50,admin.,married,university.degree,no,yes,yes,cellular,nov,fri,189,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+39,self-employed,single,high.school,no,yes,no,cellular,nov,fri,169,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,services,single,high.school,unknown,yes,no,cellular,nov,fri,670,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,fri,57,7,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+44,services,married,high.school,unknown,yes,no,telephone,nov,fri,76,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+57,technician,married,professional.course,no,yes,no,cellular,nov,fri,42,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+46,admin.,married,university.degree,no,yes,no,cellular,nov,fri,81,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+41,admin.,divorced,high.school,no,yes,no,cellular,nov,fri,199,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,unemployed,single,basic.4y,no,no,no,cellular,nov,fri,184,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+54,retired,married,basic.4y,no,no,no,cellular,nov,fri,18,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,blue-collar,single,basic.4y,no,yes,no,cellular,nov,fri,451,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,retired,married,university.degree,no,no,no,cellular,nov,fri,51,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,technician,married,university.degree,unknown,yes,yes,cellular,nov,fri,63,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+46,admin.,married,university.degree,no,yes,no,cellular,nov,fri,70,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,housemaid,married,basic.4y,no,no,no,cellular,nov,fri,44,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,technician,single,professional.course,no,yes,yes,telephone,nov,fri,54,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,management,married,university.degree,no,yes,no,cellular,nov,fri,13,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+40,management,married,university.degree,no,yes,no,cellular,nov,fri,401,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+29,technician,single,high.school,no,yes,yes,cellular,nov,fri,484,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,single,high.school,no,yes,no,cellular,nov,fri,59,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,technician,single,university.degree,no,no,no,cellular,nov,fri,64,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,technician,divorced,university.degree,no,yes,no,cellular,nov,fri,526,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,management,married,high.school,no,no,yes,cellular,nov,fri,105,5,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+34,admin.,married,university.degree,no,no,no,cellular,nov,fri,128,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,unemployed,married,university.degree,no,no,no,cellular,nov,fri,115,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+31,unemployed,single,basic.4y,no,no,yes,cellular,nov,fri,573,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+46,management,married,basic.9y,no,yes,no,cellular,nov,fri,996,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,admin.,married,university.degree,no,no,no,cellular,nov,fri,206,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+41,technician,married,university.degree,no,yes,yes,cellular,nov,fri,135,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,single,university.degree,no,yes,no,telephone,nov,fri,36,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,technician,single,professional.course,no,no,no,cellular,nov,fri,1480,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+52,services,married,basic.9y,unknown,yes,no,cellular,nov,fri,160,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+31,services,single,university.degree,unknown,unknown,unknown,cellular,nov,fri,83,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,admin.,divorced,university.degree,no,no,no,telephone,nov,fri,425,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,management,married,university.degree,no,yes,no,telephone,nov,fri,288,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,technician,single,university.degree,no,yes,yes,cellular,nov,fri,244,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,technician,married,basic.4y,no,no,no,cellular,nov,fri,378,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+55,entrepreneur,married,university.degree,no,no,no,cellular,nov,fri,252,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,management,married,university.degree,no,yes,yes,cellular,nov,fri,283,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+49,self-employed,married,university.degree,unknown,yes,no,cellular,nov,fri,110,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+57,management,married,university.degree,no,yes,no,telephone,nov,fri,109,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,admin.,married,high.school,no,yes,no,cellular,nov,fri,162,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,blue-collar,married,high.school,no,yes,no,cellular,nov,fri,144,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,admin.,single,university.degree,no,no,no,telephone,nov,fri,49,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+58,admin.,married,university.degree,no,no,no,cellular,nov,fri,70,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+40,admin.,married,university.degree,no,no,no,cellular,nov,fri,71,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+34,technician,divorced,university.degree,no,no,no,cellular,nov,fri,316,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+31,admin.,single,high.school,no,yes,no,cellular,nov,fri,306,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+36,blue-collar,single,basic.9y,no,yes,yes,cellular,nov,fri,70,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,entrepreneur,married,university.degree,no,yes,yes,cellular,nov,fri,221,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,technician,single,university.degree,no,yes,yes,cellular,nov,fri,44,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,management,divorced,university.degree,no,no,no,cellular,nov,fri,202,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+53,blue-collar,married,basic.4y,unknown,yes,yes,cellular,nov,fri,98,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+39,services,married,high.school,no,yes,no,cellular,nov,fri,552,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+37,management,married,university.degree,no,yes,no,telephone,nov,fri,97,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,unemployed,married,university.degree,no,yes,no,cellular,nov,fri,48,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,admin.,married,university.degree,no,yes,yes,cellular,nov,fri,89,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+29,services,single,high.school,no,yes,no,cellular,nov,fri,171,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,technician,married,university.degree,no,no,no,cellular,nov,fri,744,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,unemployed,married,university.degree,no,yes,yes,cellular,nov,fri,79,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+58,admin.,married,university.degree,no,no,no,cellular,nov,fri,850,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+48,admin.,married,university.degree,no,no,no,cellular,nov,fri,233,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,admin.,divorced,university.degree,no,yes,no,telephone,nov,fri,70,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,management,divorced,university.degree,no,unknown,unknown,telephone,nov,fri,162,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,technician,single,professional.course,no,yes,no,cellular,nov,fri,38,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+32,management,married,university.degree,no,no,no,cellular,nov,fri,8,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,entrepreneur,married,professional.course,no,no,no,cellular,nov,fri,18,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+56,services,married,high.school,unknown,yes,no,cellular,nov,fri,72,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,164,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+52,technician,divorced,university.degree,unknown,no,no,cellular,nov,fri,123,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,technician,married,university.degree,no,yes,no,cellular,nov,fri,100,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,self-employed,married,university.degree,no,no,no,cellular,nov,fri,18,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,admin.,married,high.school,no,no,no,cellular,nov,fri,165,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+54,retired,divorced,university.degree,no,no,no,cellular,nov,fri,296,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,admin.,married,unknown,no,yes,yes,cellular,nov,fri,196,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,self-employed,single,university.degree,no,yes,yes,cellular,nov,fri,203,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,admin.,married,university.degree,no,yes,no,telephone,nov,fri,55,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+38,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,fri,186,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,admin.,single,university.degree,no,unknown,unknown,cellular,nov,fri,59,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,retired,married,high.school,no,no,no,cellular,nov,fri,532,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+38,management,married,university.degree,no,no,yes,cellular,nov,fri,79,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,technician,married,basic.9y,no,yes,yes,cellular,nov,fri,197,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,entrepreneur,single,basic.9y,no,no,no,cellular,nov,fri,84,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,35,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+30,admin.,single,university.degree,no,yes,yes,telephone,nov,fri,26,10,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,technician,married,basic.9y,no,yes,no,cellular,nov,fri,102,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,single,high.school,no,no,no,cellular,nov,fri,100,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,admin.,married,high.school,no,yes,no,cellular,nov,fri,164,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,technician,married,high.school,unknown,yes,no,cellular,nov,fri,183,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+32,technician,single,professional.course,no,yes,no,cellular,nov,fri,67,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,blue-collar,married,basic.4y,no,yes,no,cellular,nov,fri,180,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,admin.,married,high.school,no,yes,no,telephone,nov,fri,182,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+39,technician,married,high.school,no,no,no,cellular,nov,fri,749,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+37,admin.,married,university.degree,no,yes,no,cellular,nov,fri,450,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+58,retired,married,professional.course,unknown,no,no,telephone,nov,fri,28,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,housemaid,married,basic.4y,no,yes,no,cellular,nov,fri,66,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,blue-collar,married,basic.6y,no,yes,yes,cellular,nov,fri,119,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+44,admin.,married,university.degree,no,no,no,cellular,nov,fri,135,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,admin.,married,university.degree,no,no,yes,cellular,nov,fri,902,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+41,housemaid,married,high.school,no,yes,no,telephone,nov,fri,1074,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+37,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,661,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,self-employed,divorced,professional.course,no,yes,no,cellular,nov,fri,492,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,admin.,married,unknown,unknown,no,no,cellular,nov,fri,142,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+43,admin.,single,university.degree,no,yes,no,telephone,nov,fri,43,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,housemaid,married,high.school,no,no,no,cellular,nov,fri,28,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,admin.,married,university.degree,no,yes,no,cellular,nov,fri,82,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,63,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,single,university.degree,no,no,no,cellular,nov,fri,264,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+49,blue-collar,married,basic.6y,no,yes,no,cellular,nov,fri,118,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+34,admin.,married,university.degree,no,no,no,cellular,nov,fri,124,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,admin.,married,high.school,no,no,no,cellular,nov,fri,218,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,student,single,professional.course,no,no,no,telephone,nov,fri,232,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,admin.,single,university.degree,no,yes,no,cellular,nov,fri,190,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,technician,married,basic.9y,no,no,no,cellular,nov,fri,10,7,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+48,blue-collar,divorced,basic.4y,no,yes,no,cellular,nov,fri,456,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+56,admin.,divorced,high.school,no,yes,no,cellular,nov,fri,176,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,fri,312,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+41,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,45,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,admin.,married,university.degree,no,yes,no,cellular,nov,fri,124,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,technician,single,professional.course,no,yes,no,cellular,nov,fri,42,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+58,admin.,divorced,university.degree,no,no,no,cellular,nov,fri,189,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,self-employed,married,university.degree,unknown,unknown,unknown,cellular,nov,fri,31,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,blue-collar,married,basic.9y,no,no,no,cellular,nov,fri,126,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+31,services,single,basic.9y,unknown,yes,no,cellular,nov,fri,232,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,blue-collar,married,basic.6y,no,yes,no,cellular,nov,fri,11,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+56,unemployed,divorced,high.school,unknown,yes,no,cellular,nov,fri,109,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+52,technician,married,professional.course,no,yes,no,cellular,nov,fri,64,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+35,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,28,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+48,technician,married,professional.course,no,yes,yes,cellular,nov,fri,148,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,management,married,university.degree,no,yes,no,cellular,nov,fri,104,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,admin.,divorced,university.degree,unknown,yes,yes,cellular,nov,fri,65,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,admin.,divorced,high.school,no,yes,no,cellular,nov,fri,980,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+39,admin.,single,high.school,no,unknown,unknown,cellular,nov,fri,206,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+54,technician,married,high.school,unknown,yes,no,cellular,nov,fri,82,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+47,admin.,married,university.degree,no,yes,no,cellular,nov,fri,45,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+31,services,married,high.school,no,yes,no,telephone,nov,fri,62,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+48,services,married,professional.course,no,no,no,cellular,nov,fri,10,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,admin.,single,university.degree,unknown,yes,no,cellular,nov,fri,16,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+35,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,102,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+54,admin.,married,university.degree,unknown,no,no,cellular,nov,fri,298,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,technician,married,university.degree,no,no,no,cellular,nov,fri,52,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+38,blue-collar,married,basic.6y,unknown,yes,yes,cellular,nov,fri,213,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+35,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,226,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,blue-collar,divorced,basic.4y,no,yes,no,cellular,nov,fri,58,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+37,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,224,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,fri,48,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+35,management,married,university.degree,no,no,no,cellular,nov,fri,207,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+39,services,divorced,unknown,no,yes,no,cellular,nov,fri,163,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,admin.,single,university.degree,no,yes,no,cellular,nov,fri,24,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,admin.,married,university.degree,no,no,no,cellular,nov,fri,103,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+56,services,single,high.school,no,yes,no,cellular,nov,fri,219,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+35,management,married,university.degree,no,yes,no,cellular,nov,fri,152,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+30,admin.,single,university.degree,no,no,no,cellular,nov,fri,171,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,unemployed,married,high.school,no,no,yes,cellular,nov,fri,94,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+39,services,married,high.school,no,no,yes,cellular,nov,fri,104,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+56,management,married,basic.9y,no,yes,yes,cellular,nov,fri,62,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+51,admin.,married,university.degree,no,no,yes,cellular,nov,fri,220,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,single,high.school,no,yes,yes,cellular,nov,fri,50,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,single,high.school,no,yes,yes,cellular,nov,fri,112,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+43,services,single,high.school,unknown,no,yes,cellular,nov,fri,53,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+56,services,married,basic.4y,unknown,yes,yes,cellular,nov,fri,119,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+50,management,married,professional.course,no,yes,no,cellular,nov,fri,381,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+32,technician,single,professional.course,no,yes,no,cellular,nov,fri,226,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+41,management,divorced,university.degree,no,no,no,cellular,nov,fri,157,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,admin.,married,university.degree,no,yes,no,cellular,nov,fri,673,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,technician,single,professional.course,no,yes,no,cellular,nov,fri,347,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+50,unemployed,married,professional.course,no,yes,no,cellular,nov,fri,58,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+34,admin.,married,university.degree,no,yes,yes,cellular,nov,fri,85,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,admin.,married,university.degree,no,yes,no,cellular,nov,fri,224,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,admin.,married,university.degree,no,yes,no,cellular,nov,fri,127,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,unemployed,divorced,university.degree,no,no,no,cellular,nov,fri,366,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,admin.,married,university.degree,no,no,no,cellular,nov,fri,162,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+39,services,married,high.school,no,yes,no,cellular,nov,fri,197,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,technician,divorced,high.school,no,yes,no,cellular,nov,fri,47,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,admin.,married,university.degree,unknown,no,no,cellular,nov,fri,311,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,technician,married,professional.course,no,yes,no,cellular,nov,fri,98,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,admin.,divorced,university.degree,no,no,no,cellular,nov,fri,549,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+36,admin.,married,basic.6y,no,yes,no,cellular,nov,fri,72,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,technician,married,professional.course,no,no,no,cellular,nov,fri,182,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+36,admin.,married,basic.6y,no,yes,yes,cellular,nov,fri,183,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+34,management,married,university.degree,no,no,no,cellular,nov,fri,158,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,admin.,divorced,university.degree,unknown,no,yes,cellular,nov,fri,48,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,housemaid,married,basic.4y,unknown,no,no,telephone,nov,fri,270,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,admin.,married,high.school,no,yes,yes,cellular,nov,fri,57,5,6,1,success,-0.1,93.2,-42,4.021,5195.8,no
+55,retired,single,university.degree,unknown,no,no,cellular,nov,fri,1199,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,blue-collar,married,basic.6y,no,yes,yes,cellular,nov,fri,36,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,management,married,university.degree,no,no,no,cellular,nov,fri,380,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,admin.,married,university.degree,unknown,yes,no,telephone,nov,fri,366,8,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,admin.,married,university.degree,no,yes,no,cellular,nov,fri,78,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+31,technician,married,professional.course,no,no,yes,cellular,nov,fri,161,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,technician,married,basic.4y,unknown,no,no,cellular,nov,fri,362,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,admin.,married,university.degree,no,no,no,cellular,nov,fri,455,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,management,divorced,professional.course,no,no,no,cellular,nov,fri,83,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,admin.,married,university.degree,no,yes,no,cellular,nov,fri,184,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,technician,married,basic.4y,no,no,yes,cellular,nov,fri,295,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,551,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,services,married,basic.6y,no,no,no,cellular,nov,fri,101,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+46,admin.,single,high.school,no,yes,no,cellular,nov,fri,294,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+54,admin.,divorced,high.school,no,no,no,cellular,nov,fri,13,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,management,married,university.degree,no,no,no,cellular,nov,fri,51,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,student,single,unknown,no,yes,no,cellular,nov,fri,353,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+34,technician,married,professional.course,no,yes,no,cellular,nov,fri,93,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,technician,married,unknown,no,no,no,cellular,nov,fri,138,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,entrepreneur,married,university.degree,no,no,no,cellular,nov,fri,48,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+32,technician,divorced,high.school,no,no,no,cellular,nov,fri,50,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,admin.,single,university.degree,no,yes,no,cellular,nov,fri,718,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,admin.,married,unknown,no,no,no,cellular,nov,fri,288,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+34,management,single,university.degree,no,unknown,unknown,telephone,nov,fri,114,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,technician,single,professional.course,no,no,no,cellular,nov,fri,161,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,blue-collar,married,basic.9y,unknown,no,yes,cellular,nov,fri,150,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,services,divorced,high.school,unknown,yes,no,cellular,nov,fri,120,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,technician,single,high.school,no,yes,no,cellular,nov,fri,41,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+41,self-employed,married,professional.course,unknown,yes,no,cellular,nov,fri,1571,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+44,blue-collar,married,basic.6y,no,no,yes,cellular,nov,fri,240,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,self-employed,married,university.degree,unknown,yes,yes,cellular,nov,fri,198,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+46,technician,divorced,university.degree,no,yes,no,cellular,nov,fri,75,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,admin.,married,high.school,no,yes,no,cellular,nov,fri,108,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,self-employed,married,professional.course,no,yes,no,telephone,nov,fri,47,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,management,married,university.degree,no,yes,yes,cellular,nov,fri,536,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+39,technician,married,high.school,no,yes,no,cellular,nov,fri,408,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+56,services,single,high.school,no,yes,no,cellular,nov,fri,290,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,229,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,admin.,married,university.degree,no,yes,no,telephone,nov,fri,148,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+52,management,divorced,university.degree,no,no,no,cellular,nov,fri,185,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+56,blue-collar,divorced,high.school,no,no,no,telephone,nov,fri,68,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,single,university.degree,no,yes,no,cellular,nov,fri,54,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,self-employed,single,university.degree,no,no,no,cellular,nov,fri,906,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,single,high.school,no,no,no,cellular,nov,fri,186,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,technician,married,university.degree,no,yes,no,cellular,nov,fri,124,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+56,retired,married,basic.4y,no,yes,no,cellular,nov,fri,481,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+53,management,married,university.degree,no,yes,no,cellular,nov,fri,319,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,admin.,married,high.school,no,no,no,cellular,nov,fri,157,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,management,married,university.degree,no,yes,no,cellular,nov,fri,106,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,services,married,unknown,no,yes,no,cellular,nov,fri,56,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+56,management,married,basic.9y,no,yes,no,telephone,nov,fri,94,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,self-employed,single,professional.course,no,no,no,cellular,nov,fri,123,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+41,technician,married,university.degree,no,yes,no,cellular,nov,fri,12,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,75,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,admin.,married,university.degree,no,no,yes,cellular,nov,fri,408,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,unemployed,married,high.school,unknown,no,no,cellular,nov,fri,671,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,admin.,married,basic.9y,no,yes,yes,cellular,nov,fri,664,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+59,self-employed,married,professional.course,unknown,no,no,cellular,nov,fri,383,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+38,technician,single,professional.course,no,yes,no,cellular,nov,fri,119,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+38,technician,single,professional.course,no,yes,yes,cellular,nov,fri,159,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,student,married,high.school,no,no,no,cellular,nov,fri,297,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+43,technician,single,high.school,no,no,no,cellular,nov,fri,61,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,technician,single,professional.course,no,no,no,cellular,nov,fri,142,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,technician,married,professional.course,unknown,yes,no,cellular,nov,fri,222,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,admin.,single,university.degree,no,no,no,telephone,nov,fri,34,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+46,management,married,high.school,no,no,no,cellular,nov,fri,79,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+39,admin.,single,unknown,no,no,no,cellular,nov,fri,188,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,management,married,high.school,no,yes,no,cellular,nov,fri,7,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+58,admin.,married,university.degree,no,no,no,telephone,nov,fri,186,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,technician,married,university.degree,no,yes,no,cellular,nov,fri,105,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+57,blue-collar,married,basic.9y,unknown,yes,no,telephone,nov,fri,126,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+36,admin.,single,high.school,no,yes,yes,telephone,nov,fri,661,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,entrepreneur,married,university.degree,no,yes,no,telephone,nov,fri,45,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+30,blue-collar,married,high.school,no,yes,yes,cellular,nov,fri,14,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,admin.,single,university.degree,unknown,no,no,cellular,nov,fri,224,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+50,blue-collar,married,unknown,no,no,no,telephone,nov,fri,20,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,management,single,university.degree,no,yes,no,cellular,nov,fri,155,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,technician,married,professional.course,no,no,no,cellular,nov,fri,78,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,admin.,married,high.school,no,no,no,cellular,nov,fri,10,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+46,self-employed,married,professional.course,no,yes,no,telephone,nov,fri,379,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,technician,married,unknown,unknown,yes,no,cellular,nov,fri,57,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+32,admin.,single,university.degree,no,no,yes,cellular,nov,fri,21,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+36,admin.,married,university.degree,no,yes,no,cellular,nov,fri,85,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+53,management,married,university.degree,no,yes,yes,cellular,nov,fri,106,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,admin.,married,high.school,no,yes,no,cellular,nov,fri,50,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+56,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,757,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,technician,married,unknown,unknown,yes,no,cellular,nov,fri,624,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,admin.,single,high.school,no,yes,no,cellular,nov,fri,103,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,entrepreneur,married,university.degree,no,yes,no,cellular,nov,fri,570,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,admin.,married,high.school,no,yes,no,cellular,nov,fri,139,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+56,technician,married,professional.course,no,no,no,cellular,nov,fri,157,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+35,management,married,university.degree,no,yes,no,cellular,nov,fri,579,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+40,student,single,high.school,no,no,no,cellular,nov,fri,328,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+46,unemployed,divorced,basic.4y,no,no,no,cellular,nov,fri,366,3,3,1,success,-0.1,93.2,-42,4.021,5195.8,no
+29,technician,single,professional.course,no,yes,no,cellular,nov,fri,1555,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+39,admin.,single,unknown,no,no,no,cellular,nov,fri,504,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,yes
+39,housemaid,married,basic.9y,no,yes,no,cellular,nov,fri,150,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+39,entrepreneur,married,university.degree,no,unknown,unknown,cellular,nov,fri,146,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,admin.,divorced,university.degree,unknown,no,no,cellular,nov,fri,69,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,admin.,single,university.degree,no,no,no,cellular,nov,fri,139,6,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+51,technician,married,professional.course,no,yes,no,cellular,nov,fri,51,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+51,admin.,married,university.degree,no,yes,yes,cellular,nov,fri,175,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+50,retired,married,university.degree,no,no,no,cellular,nov,fri,128,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,technician,married,professional.course,no,yes,no,cellular,nov,fri,11,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+41,technician,married,professional.course,no,yes,no,cellular,nov,fri,82,5,5,1,success,-0.1,93.2,-42,4.021,5195.8,no
+30,admin.,single,university.degree,no,yes,yes,telephone,nov,fri,33,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,technician,married,professional.course,no,yes,yes,cellular,nov,fri,52,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,management,married,university.degree,no,yes,no,cellular,nov,fri,289,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+43,technician,married,university.degree,no,no,yes,cellular,nov,fri,43,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+32,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,101,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,technician,married,professional.course,no,no,no,cellular,nov,fri,402,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+45,admin.,divorced,university.degree,no,no,yes,cellular,nov,fri,59,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,retired,single,university.degree,no,yes,no,cellular,nov,fri,39,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+41,management,divorced,university.degree,no,no,no,cellular,nov,fri,57,8,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+57,technician,divorced,professional.course,no,unknown,unknown,cellular,nov,fri,87,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,management,divorced,university.degree,unknown,no,no,cellular,nov,fri,89,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,management,married,university.degree,no,no,no,cellular,nov,fri,608,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,admin.,divorced,high.school,no,yes,no,cellular,nov,fri,430,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+58,management,married,basic.4y,no,no,no,cellular,nov,fri,240,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,technician,single,professional.course,no,yes,no,cellular,nov,fri,173,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+53,management,married,university.degree,no,no,no,cellular,nov,fri,137,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,technician,married,professional.course,no,yes,yes,cellular,nov,fri,379,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,management,married,university.degree,no,no,no,cellular,nov,fri,1036,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,technician,divorced,professional.course,no,no,no,cellular,nov,fri,675,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+40,management,single,university.degree,no,no,no,cellular,nov,fri,139,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+54,admin.,divorced,high.school,no,no,yes,cellular,nov,fri,377,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,technician,single,professional.course,no,no,no,cellular,nov,fri,394,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,admin.,single,university.degree,no,no,no,cellular,nov,fri,70,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+38,technician,single,professional.course,unknown,no,no,cellular,nov,fri,519,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,61,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+39,management,married,high.school,no,no,no,cellular,nov,fri,163,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+50,technician,married,university.degree,no,no,no,cellular,nov,fri,302,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+57,admin.,married,high.school,no,yes,no,cellular,nov,fri,41,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,self-employed,married,university.degree,no,no,no,telephone,nov,fri,39,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+35,admin.,single,university.degree,no,no,no,cellular,nov,fri,360,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,unemployed,single,university.degree,no,yes,no,cellular,nov,fri,230,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,admin.,divorced,basic.9y,no,yes,no,cellular,nov,fri,155,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+54,technician,single,high.school,no,yes,no,cellular,nov,fri,32,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+30,entrepreneur,divorced,high.school,no,no,no,telephone,nov,fri,61,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+34,technician,married,professional.course,no,yes,no,cellular,nov,fri,251,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,management,married,university.degree,unknown,yes,yes,cellular,nov,fri,22,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+57,services,married,unknown,no,no,no,cellular,nov,fri,58,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+46,technician,married,professional.course,no,no,no,cellular,nov,fri,38,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,single,university.degree,no,yes,no,cellular,nov,fri,36,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+43,housemaid,married,basic.4y,no,no,no,cellular,nov,fri,165,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,unemployed,married,professional.course,unknown,yes,yes,telephone,nov,fri,83,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+56,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,11,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+46,technician,married,professional.course,no,no,yes,cellular,nov,fri,98,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+41,blue-collar,married,unknown,no,yes,no,cellular,nov,fri,663,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+53,admin.,divorced,high.school,no,yes,yes,telephone,nov,fri,544,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,technician,married,university.degree,unknown,yes,no,cellular,nov,fri,39,10,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,blue-collar,married,basic.4y,no,no,no,cellular,nov,fri,122,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+48,technician,married,professional.course,no,yes,yes,cellular,nov,fri,695,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,single,high.school,no,yes,no,cellular,nov,fri,369,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,entrepreneur,married,university.degree,no,no,no,cellular,nov,fri,88,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,admin.,married,basic.9y,no,yes,no,telephone,nov,fri,64,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+43,services,single,high.school,unknown,yes,no,cellular,nov,fri,216,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+36,admin.,single,high.school,no,yes,no,cellular,nov,fri,90,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,management,single,university.degree,no,yes,yes,cellular,nov,fri,164,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,management,married,university.degree,no,no,no,cellular,nov,fri,147,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,retired,married,high.school,no,no,no,cellular,nov,fri,268,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,self-employed,married,university.degree,no,no,no,cellular,nov,fri,169,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+30,student,single,university.degree,no,no,no,cellular,nov,fri,585,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+49,admin.,married,high.school,no,yes,no,cellular,nov,fri,36,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,management,married,university.degree,no,yes,no,cellular,nov,fri,129,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,management,married,university.degree,no,yes,no,cellular,nov,fri,33,8,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,888,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+56,admin.,married,university.degree,no,no,no,cellular,nov,fri,808,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+43,technician,married,professional.course,no,no,no,cellular,nov,fri,14,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,housemaid,married,high.school,no,no,yes,cellular,nov,fri,305,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,technician,single,professional.course,no,yes,no,cellular,nov,fri,18,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,blue-collar,married,basic.9y,unknown,yes,yes,cellular,nov,fri,134,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,admin.,married,university.degree,no,no,no,cellular,nov,fri,77,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,services,single,high.school,unknown,no,no,cellular,nov,fri,107,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+56,admin.,married,basic.4y,no,yes,no,cellular,nov,fri,382,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+59,admin.,married,university.degree,unknown,no,no,cellular,nov,fri,140,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+56,services,married,basic.4y,unknown,yes,no,cellular,nov,fri,39,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+52,blue-collar,married,basic.9y,no,no,no,cellular,nov,fri,13,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,blue-collar,married,basic.9y,no,no,no,cellular,nov,fri,1032,10,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+30,admin.,single,high.school,no,no,yes,cellular,nov,fri,64,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+48,admin.,married,university.degree,no,no,no,cellular,nov,fri,634,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,admin.,married,university.degree,no,yes,no,cellular,nov,fri,138,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,management,married,high.school,no,yes,yes,cellular,nov,fri,225,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,services,divorced,high.school,no,yes,no,cellular,nov,fri,855,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+30,admin.,single,university.degree,no,no,no,cellular,nov,fri,258,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+46,technician,married,professional.course,no,yes,yes,cellular,nov,fri,484,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,technician,married,professional.course,no,yes,no,cellular,nov,fri,229,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+43,technician,married,university.degree,no,yes,no,cellular,nov,fri,330,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,admin.,married,university.degree,no,yes,no,cellular,nov,fri,41,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,1222,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+53,blue-collar,married,basic.9y,no,no,no,cellular,nov,fri,395,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+58,management,divorced,university.degree,no,yes,no,telephone,nov,fri,39,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+54,admin.,divorced,high.school,no,no,no,cellular,nov,fri,639,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+53,retired,married,high.school,no,yes,no,cellular,nov,fri,711,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,admin.,single,high.school,no,no,no,telephone,nov,fri,178,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,management,single,university.degree,unknown,no,no,cellular,nov,fri,534,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+37,unemployed,single,university.degree,no,no,yes,cellular,nov,fri,104,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+43,blue-collar,married,professional.course,no,no,yes,cellular,nov,fri,432,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,services,single,high.school,no,yes,no,cellular,nov,fri,1195,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,blue-collar,married,basic.4y,no,yes,no,cellular,nov,fri,168,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,admin.,single,university.degree,no,no,no,cellular,nov,fri,229,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+56,unemployed,married,basic.9y,no,yes,yes,cellular,nov,fri,322,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,admin.,married,university.degree,no,no,no,cellular,nov,fri,127,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,admin.,married,university.degree,no,yes,no,cellular,nov,fri,59,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+59,technician,single,professional.course,no,yes,no,cellular,nov,fri,246,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,admin.,married,high.school,no,yes,no,cellular,nov,fri,140,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,technician,married,professional.course,unknown,no,no,cellular,nov,fri,210,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,admin.,married,high.school,no,no,no,cellular,nov,fri,11,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,208,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+44,blue-collar,married,basic.6y,no,yes,no,cellular,nov,fri,358,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+41,services,married,unknown,no,no,no,cellular,nov,fri,64,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+41,technician,married,professional.course,no,no,no,cellular,nov,fri,407,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+41,technician,single,university.degree,no,no,no,cellular,nov,fri,903,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+53,blue-collar,married,basic.4y,unknown,no,no,cellular,nov,fri,205,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,admin.,married,university.degree,no,no,no,cellular,nov,fri,66,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,admin.,divorced,high.school,no,yes,no,cellular,nov,fri,127,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+30,admin.,single,university.degree,no,no,no,cellular,nov,fri,331,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes
+30,technician,single,university.degree,no,no,no,cellular,nov,fri,307,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,admin.,single,university.degree,no,no,no,cellular,nov,fri,27,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+56,retired,married,basic.4y,no,no,no,cellular,nov,fri,163,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+32,entrepreneur,single,high.school,unknown,yes,yes,cellular,nov,fri,64,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,unemployed,single,high.school,no,yes,no,telephone,nov,fri,136,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+31,technician,married,professional.course,no,yes,no,cellular,nov,fri,95,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+58,admin.,married,basic.4y,no,no,no,cellular,nov,fri,505,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,blue-collar,married,university.degree,no,no,no,cellular,nov,fri,170,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,technician,single,university.degree,no,yes,yes,cellular,nov,fri,1162,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,unemployed,divorced,professional.course,no,yes,no,telephone,nov,fri,122,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+35,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,72,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+57,technician,married,professional.course,no,yes,no,cellular,nov,fri,294,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+46,housemaid,married,university.degree,unknown,yes,no,cellular,nov,fri,82,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,blue-collar,married,basic.4y,no,yes,no,cellular,nov,fri,15,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+30,blue-collar,single,university.degree,no,yes,no,cellular,nov,fri,7,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+58,admin.,married,university.degree,no,yes,no,cellular,nov,fri,21,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+29,admin.,single,university.degree,no,yes,no,cellular,nov,fri,118,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+47,admin.,married,high.school,no,no,no,cellular,nov,fri,21,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+30,self-employed,single,university.degree,no,no,no,telephone,nov,fri,345,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,96,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+52,unemployed,married,university.degree,no,yes,no,cellular,nov,fri,211,7,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+50,admin.,married,university.degree,no,yes,no,cellular,nov,fri,73,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,6,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,fri,110,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+58,retired,divorced,professional.course,no,yes,no,cellular,nov,fri,321,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+57,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,fri,170,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,56,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+53,unemployed,single,basic.9y,no,no,no,cellular,nov,fri,125,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,technician,married,professional.course,unknown,no,no,cellular,nov,fri,281,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+29,self-employed,single,university.degree,no,yes,no,cellular,nov,fri,328,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+51,management,married,university.degree,no,no,yes,telephone,nov,fri,13,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,management,married,university.degree,no,no,yes,cellular,nov,fri,296,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,48,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+30,unemployed,married,professional.course,no,yes,no,telephone,nov,fri,77,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,admin.,married,high.school,no,yes,no,cellular,nov,fri,8,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+41,admin.,married,university.degree,no,no,no,cellular,nov,fri,182,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,entrepreneur,married,university.degree,no,yes,no,cellular,nov,fri,12,5,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+40,services,single,high.school,unknown,no,no,cellular,nov,fri,8,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+58,retired,married,professional.course,unknown,no,no,cellular,nov,fri,158,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+51,admin.,married,high.school,no,yes,no,cellular,nov,fri,9,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+46,admin.,divorced,university.degree,no,no,no,telephone,nov,fri,11,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+43,technician,married,university.degree,no,no,no,cellular,nov,fri,24,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,technician,married,university.degree,no,yes,no,cellular,nov,fri,175,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+54,self-employed,married,university.degree,unknown,no,no,cellular,nov,fri,9,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+29,blue-collar,single,basic.6y,no,no,no,telephone,nov,fri,69,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,self-employed,divorced,professional.course,no,no,no,cellular,nov,fri,37,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+33,admin.,single,professional.course,no,yes,no,telephone,nov,fri,240,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,11,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+52,services,divorced,basic.4y,unknown,yes,yes,cellular,nov,fri,23,8,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,entrepreneur,married,university.degree,no,yes,no,cellular,nov,fri,13,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+58,retired,married,professional.course,unknown,yes,yes,cellular,nov,fri,22,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+40,management,married,university.degree,no,no,no,cellular,nov,fri,234,5,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+31,technician,single,university.degree,no,yes,yes,telephone,nov,fri,30,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+35,self-employed,married,university.degree,no,no,no,cellular,nov,fri,8,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+45,technician,single,university.degree,no,no,no,cellular,nov,fri,80,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,unemployed,single,basic.4y,no,no,no,cellular,nov,fri,12,8,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+31,admin.,single,university.degree,no,no,no,cellular,nov,fri,85,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,services,single,basic.9y,no,yes,no,cellular,nov,fri,143,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+36,self-employed,married,basic.9y,no,yes,yes,cellular,nov,fri,14,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+44,admin.,married,university.degree,unknown,no,no,cellular,nov,fri,48,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,12,10,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+47,technician,married,high.school,unknown,yes,no,cellular,nov,fri,29,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,blue-collar,married,basic.4y,unknown,no,no,cellular,nov,fri,168,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,retired,single,university.degree,no,no,no,cellular,nov,fri,51,5,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+56,services,single,high.school,no,yes,yes,cellular,nov,fri,12,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,33,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,admin.,single,university.degree,unknown,yes,yes,cellular,nov,fri,53,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+50,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,72,3,1,2,success,-0.1,93.2,-42,4.021,5195.8,no
+39,admin.,single,unknown,no,yes,no,cellular,nov,fri,79,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,management,married,university.degree,no,yes,yes,cellular,nov,fri,1067,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+42,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,10,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+48,admin.,married,university.degree,unknown,no,no,cellular,nov,fri,71,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+49,blue-collar,married,basic.9y,no,no,no,cellular,nov,fri,273,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+51,blue-collar,married,high.school,no,no,no,cellular,nov,fri,11,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,management,married,basic.9y,no,no,no,cellular,nov,fri,189,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+48,admin.,married,university.degree,no,no,no,cellular,nov,fri,61,7,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+39,management,married,university.degree,no,yes,no,telephone,nov,fri,10,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+40,technician,married,university.degree,no,yes,no,telephone,nov,fri,10,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+55,management,married,university.degree,unknown,yes,no,cellular,nov,fri,280,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+39,self-employed,married,professional.course,no,no,no,telephone,nov,fri,47,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+37,admin.,married,unknown,no,no,no,cellular,nov,fri,34,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+41,technician,married,university.degree,no,yes,yes,cellular,nov,fri,38,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+32,admin.,married,high.school,no,no,no,cellular,nov,fri,219,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+34,admin.,married,university.degree,no,no,no,telephone,nov,fri,205,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no
+41,blue-collar,single,basic.9y,unknown,no,no,cellular,nov,fri,643,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no
+38,technician,married,professional.course,no,yes,yes,telephone,nov,wed,49,1,999,0,nonexistent,-0.1,93.2,-42,3.901,5195.8,no
+32,unemployed,single,high.school,no,no,yes,telephone,nov,thu,114,1,999,0,nonexistent,-0.1,93.2,-42,3.879,5195.8,no
+46,entrepreneur,single,professional.course,no,yes,no,telephone,nov,thu,8,1,999,0,nonexistent,-0.1,93.2,-42,3.879,5195.8,no
+27,admin.,single,high.school,no,yes,no,telephone,nov,fri,24,1,999,0,nonexistent,-0.1,93.2,-42,3.853,5195.8,no
+31,admin.,single,high.school,no,yes,no,telephone,dec,mon,36,1,999,0,nonexistent,-0.2,92.756,-45.9,3.816,5176.3,no
+39,housemaid,married,basic.4y,no,yes,no,telephone,dec,wed,11,1,999,1,failure,-0.2,92.756,-45.9,3.743,5176.3,no
+41,technician,divorced,professional.course,no,no,yes,cellular,dec,thu,18,1,999,0,nonexistent,-0.2,92.756,-45.9,3.669,5176.3,no
+37,admin.,married,high.school,no,yes,no,telephone,dec,fri,12,1,999,0,nonexistent,-0.2,92.756,-45.9,3.563,5176.3,no
+48,admin.,married,high.school,no,yes,yes,telephone,dec,fri,291,1,999,0,nonexistent,-0.2,92.756,-45.9,3.563,5176.3,no
+51,blue-collar,married,basic.4y,no,yes,yes,telephone,dec,mon,170,1,999,0,nonexistent,-0.2,92.756,-45.9,3.488,5176.3,no
+39,technician,married,professional.course,no,yes,no,telephone,dec,tue,183,1,999,0,nonexistent,-0.2,92.756,-45.9,3.428,5176.3,no
+36,blue-collar,married,high.school,no,yes,no,cellular,dec,thu,234,1,999,0,nonexistent,-0.2,92.756,-45.9,3.329,5176.3,no
+55,unemployed,divorced,professional.course,no,no,no,telephone,dec,fri,136,1,999,0,nonexistent,-0.2,92.756,-45.9,3.282,5176.3,no
+44,blue-collar,married,basic.4y,no,yes,yes,telephone,dec,mon,119,1,999,0,nonexistent,-0.2,92.756,-45.9,3.053,5176.3,yes
+26,student,single,basic.9y,no,yes,no,cellular,mar,mon,712,4,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes
+38,admin.,single,university.degree,no,yes,no,cellular,mar,mon,111,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes
+26,student,single,basic.9y,no,no,no,cellular,mar,mon,42,4,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+26,student,single,basic.9y,no,yes,no,telephone,mar,mon,169,4,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+30,management,married,university.degree,no,yes,no,telephone,mar,mon,213,7,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+26,student,single,basic.9y,no,yes,yes,cellular,mar,mon,78,4,999,1,failure,-1.8,92.843,-50,1.811,5099.1,no
+28,technician,single,university.degree,no,yes,no,cellular,mar,mon,76,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,mar,mon,378,4,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes
+30,management,married,university.degree,no,no,no,cellular,mar,mon,116,1,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes
+48,admin.,married,basic.6y,no,no,no,telephone,mar,mon,139,5,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+26,admin.,married,university.degree,no,yes,no,cellular,mar,mon,154,1,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes
+28,technician,single,university.degree,no,no,no,cellular,mar,mon,142,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,mar,mon,145,1,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+38,admin.,single,university.degree,no,yes,no,cellular,mar,mon,69,1,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+44,blue-collar,single,professional.course,no,no,no,cellular,mar,mon,239,1,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes
+28,technician,single,university.degree,no,yes,yes,cellular,mar,mon,54,1,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+30,management,married,university.degree,no,yes,no,cellular,mar,mon,170,3,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+26,admin.,married,university.degree,no,yes,no,cellular,mar,mon,175,5,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes
+28,technician,single,university.degree,no,yes,no,cellular,mar,mon,120,3,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes
+26,student,single,basic.9y,no,yes,no,cellular,mar,mon,59,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+28,technician,single,university.degree,no,no,no,cellular,mar,mon,56,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+26,student,single,basic.9y,no,yes,no,cellular,mar,mon,1447,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes
+26,admin.,married,university.degree,no,yes,no,cellular,mar,mon,76,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+70,retired,divorced,basic.4y,no,yes,no,cellular,mar,mon,187,3,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes
+28,technician,single,university.degree,no,yes,no,cellular,mar,mon,131,12,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+61,admin.,married,university.degree,no,yes,no,cellular,mar,mon,136,6,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+26,student,single,basic.9y,no,no,yes,cellular,mar,mon,889,4,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+48,admin.,married,basic.6y,no,yes,no,telephone,mar,mon,382,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes
+26,student,single,basic.9y,no,yes,no,cellular,mar,mon,294,3,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes
+30,management,married,university.degree,no,no,no,telephone,mar,mon,88,3,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+31,admin.,single,university.degree,no,no,yes,telephone,mar,mon,39,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no
+28,admin.,single,high.school,no,yes,no,cellular,mar,tue,143,2,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes
+42,entrepreneur,married,basic.9y,no,unknown,unknown,cellular,mar,tue,133,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,no
+66,technician,married,professional.course,no,yes,no,cellular,mar,tue,83,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes
+26,unknown,single,basic.9y,no,no,no,cellular,mar,tue,212,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,no
+34,management,married,university.degree,no,no,no,cellular,mar,tue,499,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes
+35,admin.,married,high.school,no,yes,no,cellular,mar,tue,350,3,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes
+34,management,married,university.degree,no,yes,no,cellular,mar,tue,225,5,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,no
+24,services,single,unknown,no,no,no,cellular,mar,tue,103,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,no
+28,student,single,basic.9y,no,yes,no,cellular,mar,tue,320,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes
+28,student,single,basic.9y,no,yes,no,cellular,mar,tue,156,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes
+36,admin.,married,high.school,no,no,no,cellular,mar,tue,168,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes
+43,blue-collar,married,basic.9y,no,no,no,cellular,mar,tue,180,2,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes
+24,services,single,unknown,no,yes,no,cellular,mar,tue,305,13,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes
+28,student,single,basic.9y,no,yes,no,cellular,mar,tue,96,2,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes
+32,technician,married,professional.course,no,no,yes,telephone,mar,wed,92,5,999,0,nonexistent,-1.8,92.843,-50,1.778,5099.1,no
+41,services,married,high.school,no,no,no,cellular,mar,wed,377,6,999,0,nonexistent,-1.8,92.843,-50,1.778,5099.1,yes
+41,services,married,high.school,no,no,no,cellular,mar,wed,396,2,999,0,nonexistent,-1.8,92.843,-50,1.778,5099.1,yes
+23,admin.,single,university.degree,no,unknown,unknown,cellular,mar,thu,308,2,999,1,failure,-1.8,92.843,-50,1.757,5099.1,yes
+38,technician,married,professional.course,no,no,no,cellular,mar,thu,66,3,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no
+38,technician,married,professional.course,no,no,no,cellular,mar,thu,92,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no
+44,management,married,basic.6y,no,yes,no,cellular,mar,thu,61,2,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no
+38,technician,married,professional.course,no,yes,yes,cellular,mar,thu,63,2,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,yes
+33,admin.,divorced,high.school,no,yes,no,cellular,mar,thu,86,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no
+23,admin.,single,university.degree,no,yes,no,cellular,mar,thu,64,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no
+44,management,married,basic.6y,no,yes,yes,cellular,mar,thu,218,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no
+33,management,married,university.degree,no,yes,no,telephone,mar,thu,181,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,yes
+44,management,married,basic.6y,no,yes,no,cellular,mar,thu,53,3,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no
+38,technician,married,professional.course,no,yes,no,cellular,mar,thu,182,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,yes
+23,admin.,single,university.degree,no,yes,no,cellular,mar,thu,90,2,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no
+33,admin.,divorced,high.school,no,no,no,cellular,mar,thu,41,2,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no
+38,technician,married,professional.course,no,no,yes,cellular,mar,thu,137,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,yes
+38,technician,married,professional.course,no,no,no,cellular,mar,thu,119,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no
+38,technician,married,professional.course,no,no,no,cellular,mar,thu,106,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,yes
+38,technician,married,professional.course,no,no,yes,cellular,mar,thu,196,2,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,yes
+32,admin.,married,high.school,no,no,no,cellular,mar,thu,115,2,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no
+38,technician,married,professional.course,no,no,no,cellular,mar,thu,84,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no
+76,retired,married,university.degree,no,no,yes,cellular,mar,thu,167,9,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no
+38,technician,married,professional.course,no,no,yes,cellular,mar,fri,195,1,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,yes
+34,technician,single,professional.course,no,no,no,cellular,mar,fri,229,1,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,yes
+34,technician,single,professional.course,no,yes,no,cellular,mar,fri,227,1,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,yes
+34,technician,single,professional.course,no,yes,yes,cellular,mar,fri,136,1,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,no
+38,technician,married,professional.course,no,yes,no,cellular,mar,fri,119,5,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,no
+38,technician,married,professional.course,no,yes,no,cellular,mar,fri,166,3,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,yes
+38,technician,married,professional.course,no,yes,no,cellular,mar,fri,363,2,10,1,success,-1.8,92.843,-50,1.726,5099.1,yes
+34,technician,single,professional.course,no,yes,no,cellular,mar,fri,266,1,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,yes
+34,technician,single,professional.course,no,yes,yes,cellular,mar,fri,544,3,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,yes
+34,technician,single,professional.course,no,no,no,cellular,mar,fri,301,3,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,yes
+38,technician,married,professional.course,no,yes,no,cellular,mar,fri,207,2,7,1,success,-1.8,92.843,-50,1.726,5099.1,yes
+32,management,single,university.degree,no,yes,no,cellular,mar,mon,116,1,999,0,nonexistent,-1.8,92.843,-50,1.703,5099.1,yes
+41,technician,single,professional.course,no,yes,no,cellular,mar,mon,101,1,999,0,nonexistent,-1.8,92.843,-50,1.703,5099.1,no
+37,admin.,single,university.degree,no,yes,yes,cellular,mar,mon,161,2,999,0,nonexistent,-1.8,92.843,-50,1.703,5099.1,no
+55,technician,single,professional.course,no,yes,yes,cellular,mar,mon,217,2,999,0,nonexistent,-1.8,92.843,-50,1.703,5099.1,yes
+32,management,single,university.degree,no,yes,no,cellular,mar,mon,78,2,999,1,failure,-1.8,92.843,-50,1.703,5099.1,no
+67,retired,single,university.degree,no,yes,yes,cellular,mar,mon,70,22,999,0,nonexistent,-1.8,92.843,-50,1.703,5099.1,no
+32,management,single,university.degree,no,yes,no,cellular,mar,mon,75,2,999,0,nonexistent,-1.8,92.843,-50,1.703,5099.1,no
+32,management,single,university.degree,no,no,no,cellular,mar,mon,93,2,999,1,failure,-1.8,92.843,-50,1.703,5099.1,no
+32,management,single,university.degree,no,yes,yes,cellular,mar,tue,97,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no
+38,technician,married,university.degree,no,no,no,cellular,mar,tue,350,2,999,2,failure,-1.8,92.843,-50,1.687,5099.1,yes
+32,management,single,university.degree,no,yes,no,cellular,mar,tue,164,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no
+73,retired,married,university.degree,no,yes,no,cellular,mar,tue,179,1,999,1,failure,-1.8,92.843,-50,1.687,5099.1,no
+32,management,single,university.degree,no,yes,no,cellular,mar,tue,106,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes
+31,blue-collar,single,high.school,no,yes,no,cellular,mar,tue,272,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes
+33,technician,married,university.degree,no,yes,no,cellular,mar,tue,56,2,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no
+32,management,single,university.degree,no,yes,no,cellular,mar,tue,71,3,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes
+39,admin.,single,high.school,no,yes,no,cellular,mar,tue,100,2,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no
+39,admin.,single,high.school,no,no,no,cellular,mar,tue,119,5,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no
+38,technician,married,university.degree,no,yes,no,cellular,mar,tue,122,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes
+38,technician,married,university.degree,no,no,no,cellular,mar,tue,59,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no
+39,admin.,single,high.school,no,yes,no,cellular,mar,tue,395,3,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes
+38,technician,married,university.degree,no,no,no,cellular,mar,tue,261,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes
+38,technician,married,university.degree,no,yes,yes,cellular,mar,tue,113,1,999,1,failure,-1.8,92.843,-50,1.687,5099.1,no
+18,student,single,high.school,no,yes,yes,cellular,mar,tue,103,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no
+32,management,single,university.degree,no,yes,no,cellular,mar,tue,59,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no
+39,blue-collar,single,basic.4y,no,yes,no,telephone,mar,tue,137,3,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no
+37,admin.,married,university.degree,no,yes,yes,cellular,mar,tue,159,3,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes
+30,student,single,basic.4y,no,yes,yes,cellular,mar,tue,70,2,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no
+32,management,single,university.degree,no,yes,no,cellular,mar,tue,427,3,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes
+32,management,single,university.degree,no,yes,no,telephone,mar,tue,230,2,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no
+29,self-employed,married,university.degree,no,yes,no,cellular,mar,wed,60,3,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no
+88,retired,divorced,basic.4y,no,yes,no,cellular,mar,wed,48,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no
+29,self-employed,married,university.degree,no,no,no,cellular,mar,wed,74,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no
+88,retired,divorced,basic.4y,no,no,no,cellular,mar,wed,266,2,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes
+29,self-employed,married,university.degree,no,yes,no,cellular,mar,wed,95,4,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes
+29,self-employed,married,university.degree,no,yes,yes,cellular,mar,wed,231,1,999,1,failure,-1.8,92.843,-50,1.663,5099.1,no
+88,retired,divorced,basic.4y,no,yes,yes,cellular,mar,wed,796,5,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes
+29,self-employed,married,university.degree,no,no,no,cellular,mar,wed,101,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no
+29,self-employed,married,university.degree,no,no,no,cellular,mar,wed,197,2,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes
+88,retired,divorced,basic.4y,no,yes,no,cellular,mar,wed,96,6,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no
+60,retired,married,professional.course,no,yes,no,cellular,mar,wed,74,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no
+88,retired,divorced,basic.4y,no,yes,no,cellular,mar,wed,126,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes
+88,retired,divorced,basic.4y,no,no,no,cellular,mar,wed,323,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes
+88,retired,divorced,basic.4y,no,yes,no,cellular,mar,wed,85,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no
+88,retired,divorced,basic.4y,no,yes,no,cellular,mar,wed,101,7,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes
+88,retired,divorced,basic.4y,no,yes,yes,cellular,mar,wed,103,3,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no
+88,retired,divorced,basic.4y,no,yes,yes,cellular,mar,wed,82,2,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no
+88,retired,divorced,basic.4y,no,yes,no,cellular,mar,wed,188,3,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes
+88,retired,divorced,basic.4y,no,no,no,cellular,mar,wed,203,2,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes
+88,retired,divorced,basic.4y,no,yes,no,cellular,mar,wed,101,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes
+33,admin.,married,university.degree,no,no,no,cellular,mar,thu,56,2,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,mar,thu,71,3,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,no
+27,student,single,high.school,no,yes,no,cellular,mar,thu,80,4,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,yes
+26,management,single,university.degree,no,yes,no,cellular,mar,thu,119,1,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,yes
+66,retired,married,basic.4y,no,yes,no,cellular,mar,thu,156,1,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,yes
+29,technician,married,professional.course,no,no,no,cellular,mar,thu,186,1,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,yes
+26,management,single,university.degree,no,no,no,cellular,mar,thu,139,1,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,yes
+95,retired,divorced,basic.6y,no,no,no,cellular,mar,thu,85,1,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,no
+19,student,single,basic.9y,no,yes,no,cellular,mar,fri,126,4,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,yes
+28,self-employed,single,university.degree,no,yes,no,cellular,mar,fri,186,2,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,no
+32,student,single,university.degree,no,no,no,cellular,mar,fri,61,11,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,no
+28,self-employed,single,university.degree,no,yes,no,cellular,mar,fri,41,1,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,no
+28,self-employed,single,university.degree,no,no,no,cellular,mar,fri,114,1,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,no
+30,student,single,high.school,no,no,no,cellular,mar,fri,268,5,10,2,failure,-1.8,92.843,-50,1.64,5099.1,yes
+28,self-employed,single,university.degree,no,yes,yes,cellular,mar,fri,3076,1,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,yes
+37,unemployed,single,university.degree,no,yes,no,cellular,mar,fri,432,1,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,no
+50,unemployed,unknown,university.degree,no,no,no,cellular,mar,fri,166,2,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,no
+28,self-employed,single,university.degree,no,no,no,cellular,mar,fri,296,2,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,yes
+70,retired,married,basic.4y,no,yes,no,cellular,mar,mon,61,6,999,1,failure,-1.8,92.843,-50,1.629,5099.1,no
+70,retired,married,basic.4y,no,no,no,cellular,mar,mon,422,3,999,1,failure,-1.8,92.843,-50,1.629,5099.1,no
+34,technician,married,professional.course,no,no,no,telephone,mar,mon,80,4,999,0,nonexistent,-1.8,92.843,-50,1.629,5099.1,no
+30,admin.,married,university.degree,no,unknown,unknown,cellular,mar,mon,291,3,8,1,success,-1.8,92.843,-50,1.629,5099.1,no
+56,retired,married,university.degree,no,yes,yes,cellular,mar,mon,104,2,999,0,nonexistent,-1.8,92.843,-50,1.629,5099.1,no
+34,technician,married,professional.course,no,yes,no,cellular,mar,mon,93,1,999,0,nonexistent,-1.8,92.843,-50,1.629,5099.1,no
+34,technician,married,professional.course,no,yes,yes,telephone,mar,mon,44,1,999,0,nonexistent,-1.8,92.843,-50,1.629,5099.1,no
+70,retired,married,basic.4y,no,yes,no,telephone,mar,mon,147,1,999,0,nonexistent,-1.8,92.843,-50,1.629,5099.1,no
+34,technician,married,professional.course,no,no,no,cellular,mar,mon,83,13,999,0,nonexistent,-1.8,92.843,-50,1.629,5099.1,no
+28,technician,single,university.degree,no,no,no,cellular,mar,mon,392,4,999,0,nonexistent,-1.8,92.843,-50,1.629,5099.1,yes
+50,admin.,divorced,university.degree,no,yes,no,cellular,mar,tue,74,1,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,no
+46,technician,married,professional.course,no,no,no,cellular,mar,tue,163,2,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,no
+33,admin.,single,university.degree,no,no,no,cellular,mar,tue,406,2,999,1,failure,-1.8,92.843,-50,1.614,5099.1,yes
+21,student,single,high.school,no,no,no,cellular,mar,tue,220,1,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,yes
+77,retired,divorced,unknown,no,yes,no,cellular,mar,tue,178,1,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,yes
+37,unemployed,married,university.degree,no,yes,no,cellular,mar,tue,195,1,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,yes
+33,admin.,single,university.degree,no,yes,yes,cellular,mar,tue,187,1,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,yes
+33,technician,single,university.degree,no,yes,no,cellular,mar,tue,325,1,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,no
+29,technician,single,professional.course,no,no,no,cellular,mar,tue,299,2,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,yes
+34,admin.,single,university.degree,no,no,no,cellular,mar,tue,325,2,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,yes
+32,admin.,single,professional.course,no,yes,no,cellular,mar,tue,159,2,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,no
+32,admin.,single,professional.course,no,yes,yes,cellular,mar,tue,81,1,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,no
+50,admin.,divorced,university.degree,no,yes,no,cellular,mar,tue,136,19,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,no
+26,student,single,high.school,no,no,no,cellular,mar,wed,236,2,999,0,nonexistent,-1.8,92.843,-50,1.602,5099.1,no
+33,blue-collar,single,high.school,no,yes,no,cellular,mar,wed,140,10,999,0,nonexistent,-1.8,92.843,-50,1.602,5099.1,no
+33,blue-collar,single,high.school,no,no,no,cellular,mar,wed,278,2,999,0,nonexistent,-1.8,92.843,-50,1.602,5099.1,yes
+60,management,single,university.degree,no,yes,yes,cellular,mar,wed,194,1,999,0,nonexistent,-1.8,92.843,-50,1.602,5099.1,yes
+24,admin.,single,high.school,no,yes,yes,cellular,mar,wed,224,1,999,0,nonexistent,-1.8,92.843,-50,1.602,5099.1,yes
+33,blue-collar,single,high.school,no,yes,no,cellular,mar,wed,163,1,999,0,nonexistent,-1.8,92.843,-50,1.602,5099.1,no
+68,retired,married,university.degree,no,no,no,cellular,mar,wed,201,1,999,0,nonexistent,-1.8,92.843,-50,1.602,5099.1,yes
+33,blue-collar,single,high.school,no,yes,no,cellular,mar,wed,203,4,999,1,failure,-1.8,92.843,-50,1.602,5099.1,yes
+32,management,single,university.degree,no,no,yes,cellular,mar,thu,167,1,999,0,nonexistent,-1.8,92.843,-50,1.584,5099.1,yes
+24,admin.,single,high.school,no,no,yes,cellular,mar,thu,181,1,999,0,nonexistent,-1.8,92.843,-50,1.584,5099.1,no
+36,admin.,married,high.school,no,yes,no,cellular,mar,thu,220,3,999,0,nonexistent,-1.8,92.843,-50,1.584,5099.1,yes
+24,management,married,unknown,no,no,no,cellular,mar,fri,93,5,999,0,nonexistent,-1.8,92.843,-50,1.574,5099.1,no
+54,admin.,married,university.degree,no,no,no,cellular,mar,mon,47,2,999,0,nonexistent,-1.8,92.843,-50,1.56,5099.1,no
+31,admin.,divorced,university.degree,no,no,no,cellular,mar,mon,248,4,999,0,nonexistent,-1.8,92.843,-50,1.56,5099.1,yes
+54,admin.,married,university.degree,no,yes,no,cellular,mar,mon,415,1,999,0,nonexistent,-1.8,92.843,-50,1.56,5099.1,yes
+75,retired,divorced,basic.9y,no,no,no,cellular,mar,mon,233,1,999,0,nonexistent,-1.8,92.843,-50,1.56,5099.1,no
+54,admin.,married,university.degree,no,yes,no,cellular,mar,mon,115,1,999,0,nonexistent,-1.8,92.843,-50,1.56,5099.1,yes
+27,unemployed,single,university.degree,no,yes,no,cellular,mar,mon,269,1,999,0,nonexistent,-1.8,92.843,-50,1.56,5099.1,no
+31,admin.,divorced,university.degree,no,yes,yes,cellular,mar,mon,174,2,999,1,failure,-1.8,92.843,-50,1.56,5099.1,yes
+70,admin.,divorced,university.degree,no,no,no,cellular,mar,mon,83,4,999,0,nonexistent,-1.8,92.843,-50,1.56,5099.1,no
+19,student,single,basic.6y,no,no,no,cellular,mar,tue,136,1,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,yes
+35,blue-collar,single,professional.course,no,yes,no,cellular,mar,tue,81,1,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,no
+29,blue-collar,married,basic.4y,no,yes,yes,cellular,mar,tue,74,2,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,no
+32,technician,divorced,professional.course,no,yes,yes,cellular,mar,tue,460,1,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,yes
+32,technician,divorced,professional.course,no,no,no,cellular,mar,tue,115,2,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,no
+28,technician,single,professional.course,no,yes,no,telephone,mar,tue,58,2,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,no
+29,blue-collar,single,basic.9y,no,yes,no,cellular,mar,tue,116,2,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,no
+61,retired,married,basic.9y,no,no,yes,cellular,mar,tue,125,2,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,no
+32,technician,divorced,professional.course,no,yes,no,cellular,mar,tue,144,2,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,yes
+29,blue-collar,single,basic.9y,no,yes,no,cellular,mar,tue,152,13,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,mar,tue,170,3,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,yes
+46,admin.,married,university.degree,no,no,no,cellular,mar,tue,269,3,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,yes
+50,management,married,basic.9y,no,no,no,cellular,mar,wed,115,1,999,0,nonexistent,-1.8,92.843,-50,1.548,5099.1,yes
+28,admin.,single,university.degree,no,no,no,cellular,mar,wed,506,2,999,0,nonexistent,-1.8,92.843,-50,1.548,5099.1,yes
+63,retired,divorced,basic.4y,no,no,no,cellular,mar,wed,78,1,999,0,nonexistent,-1.8,92.843,-50,1.548,5099.1,no
+28,admin.,single,university.degree,no,no,yes,cellular,mar,wed,96,2,999,0,nonexistent,-1.8,92.843,-50,1.548,5099.1,yes
+33,admin.,married,university.degree,no,yes,no,cellular,mar,wed,278,8,999,0,nonexistent,-1.8,92.843,-50,1.548,5099.1,yes
+28,admin.,single,university.degree,no,no,no,cellular,mar,wed,411,2,999,0,nonexistent,-1.8,92.843,-50,1.548,5099.1,yes
+35,admin.,married,high.school,no,yes,no,cellular,mar,thu,117,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,yes
+36,management,married,university.degree,no,no,no,cellular,mar,thu,709,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,yes
+36,management,married,university.degree,no,yes,no,cellular,mar,thu,141,1,999,1,failure,-1.8,92.843,-50,1.538,5099.1,no
+26,student,single,high.school,no,no,no,cellular,mar,thu,200,1,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,yes
+70,housemaid,married,basic.4y,no,no,no,cellular,mar,thu,91,1,999,1,failure,-1.8,92.843,-50,1.538,5099.1,no
+45,technician,single,professional.course,no,yes,yes,cellular,mar,thu,143,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no
+20,student,single,basic.9y,no,yes,no,cellular,mar,thu,325,1,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,yes
+36,management,married,university.degree,no,yes,yes,cellular,mar,thu,94,1,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no
+28,admin.,single,high.school,no,yes,no,cellular,mar,thu,131,4,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no
+20,student,single,basic.9y,no,yes,no,cellular,mar,thu,267,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no
+36,management,married,university.degree,no,yes,no,cellular,mar,thu,86,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no
+37,blue-collar,married,basic.6y,no,yes,yes,cellular,mar,thu,73,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no
+58,unemployed,married,basic.4y,unknown,yes,no,cellular,mar,thu,439,4,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no
+68,retired,married,basic.4y,no,no,no,cellular,mar,thu,331,4,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,yes
+51,technician,married,university.degree,no,yes,no,cellular,mar,thu,278,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no
+28,admin.,single,high.school,no,yes,no,cellular,mar,thu,181,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no
+22,student,single,basic.9y,no,yes,no,cellular,mar,thu,173,1,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no
+27,housemaid,married,high.school,no,yes,no,cellular,mar,fri,101,12,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no
+36,unemployed,married,university.degree,unknown,unknown,unknown,cellular,mar,fri,95,2,999,1,failure,-1.8,92.843,-50,1.531,5099.1,yes
+28,admin.,single,high.school,no,yes,no,telephone,mar,fri,515,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes
+28,admin.,single,high.school,no,yes,no,cellular,mar,fri,300,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes
+28,admin.,single,high.school,no,yes,no,cellular,mar,fri,342,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes
+28,self-employed,single,university.degree,no,yes,no,telephone,mar,fri,124,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no
+56,blue-collar,married,basic.4y,no,yes,no,cellular,mar,fri,283,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes
+28,admin.,single,high.school,no,yes,no,cellular,mar,fri,78,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no
+41,technician,married,professional.course,no,no,no,cellular,mar,fri,229,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes
+28,admin.,single,high.school,no,yes,no,cellular,mar,fri,102,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no
+25,admin.,married,university.degree,no,yes,no,cellular,mar,fri,294,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes
+25,admin.,married,university.degree,no,no,no,cellular,mar,fri,184,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no
+25,admin.,married,university.degree,no,yes,no,cellular,mar,fri,277,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no
+30,blue-collar,single,university.degree,no,no,no,cellular,mar,fri,166,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no
+28,admin.,single,high.school,no,no,yes,cellular,mar,fri,77,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no
+73,retired,married,university.degree,no,yes,no,cellular,mar,fri,179,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes
+43,admin.,married,university.degree,no,yes,no,cellular,mar,fri,689,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no
+31,technician,single,university.degree,no,yes,no,telephone,mar,fri,228,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes
+66,retired,married,unknown,no,yes,no,telephone,mar,fri,64,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no
+27,housemaid,married,high.school,no,yes,no,cellular,mar,fri,378,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes
+36,self-employed,married,university.degree,no,yes,no,cellular,mar,fri,101,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no
+60,admin.,married,university.degree,no,yes,no,cellular,mar,fri,558,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no
+25,admin.,married,university.degree,no,no,no,cellular,mar,fri,243,3,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes
+43,admin.,married,university.degree,no,yes,no,cellular,mar,fri,111,3,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no
+28,admin.,single,high.school,no,no,no,cellular,mar,fri,144,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no
+30,blue-collar,single,university.degree,no,yes,yes,cellular,mar,fri,166,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no
+28,admin.,single,high.school,no,no,no,telephone,mar,fri,234,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes
+32,admin.,single,university.degree,no,yes,no,cellular,mar,fri,271,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes
+28,admin.,single,high.school,no,no,no,cellular,mar,fri,347,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes
+32,admin.,single,university.degree,no,unknown,unknown,cellular,mar,mon,77,3,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no
+34,technician,single,university.degree,no,no,no,cellular,mar,mon,180,2,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,yes
+32,admin.,single,university.degree,no,unknown,unknown,cellular,mar,mon,136,3,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no
+34,technician,single,university.degree,no,yes,no,cellular,mar,mon,253,2,999,1,failure,-1.8,92.843,-50,1.52,5099.1,no
+34,technician,single,university.degree,no,yes,no,cellular,mar,mon,171,4,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no
+32,admin.,single,university.degree,no,yes,yes,cellular,mar,mon,96,6,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no
+80,retired,married,basic.4y,unknown,yes,no,cellular,mar,mon,415,1,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no
+80,retired,married,basic.4y,unknown,no,no,cellular,mar,mon,95,1,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,mar,mon,285,8,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,yes
+32,admin.,single,university.degree,no,yes,no,cellular,mar,mon,364,3,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,yes
+21,student,single,basic.4y,no,no,no,cellular,mar,mon,114,2,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,mar,mon,517,1,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,yes
+32,admin.,single,university.degree,no,yes,no,cellular,mar,mon,167,2,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no
+32,admin.,married,university.degree,no,yes,yes,cellular,mar,mon,78,3,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no
+62,admin.,married,high.school,no,no,no,telephone,mar,mon,163,2,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,yes
+32,admin.,single,university.degree,no,no,no,cellular,mar,mon,52,3,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no
+34,technician,single,university.degree,no,no,no,cellular,mar,mon,138,8,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no
+59,blue-collar,married,basic.4y,no,yes,yes,cellular,mar,tue,684,4,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,no
+59,blue-collar,married,basic.4y,no,no,no,cellular,mar,tue,237,3,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,yes
+80,management,divorced,professional.course,unknown,yes,no,cellular,mar,tue,158,2,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,yes
+33,blue-collar,married,high.school,unknown,yes,no,cellular,mar,tue,494,1,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,no
+39,admin.,married,high.school,unknown,yes,yes,cellular,mar,tue,210,1,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,no
+39,admin.,married,high.school,unknown,yes,no,cellular,mar,tue,310,1,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,no
+39,admin.,married,high.school,unknown,yes,no,cellular,mar,tue,265,1,999,1,failure,-1.8,92.843,-50,1.51,5099.1,no
+45,blue-collar,married,basic.9y,no,yes,no,cellular,mar,tue,257,1,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,no
+45,blue-collar,married,basic.9y,no,yes,no,cellular,mar,tue,829,1,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,no
+44,blue-collar,single,basic.4y,no,yes,no,cellular,mar,tue,1530,2,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,yes
+48,admin.,single,university.degree,no,yes,no,cellular,mar,tue,544,1,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,no
+38,services,married,high.school,no,yes,no,cellular,apr,wed,484,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+33,blue-collar,married,basic.6y,no,yes,no,cellular,apr,wed,351,3,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,yes
+43,self-employed,married,high.school,unknown,yes,no,cellular,apr,wed,345,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+31,technician,married,professional.course,no,yes,no,cellular,apr,wed,131,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+43,self-employed,married,high.school,unknown,no,no,cellular,apr,wed,743,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+34,blue-collar,single,basic.9y,no,no,no,cellular,apr,wed,394,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,apr,wed,73,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+56,entrepreneur,divorced,university.degree,no,no,no,cellular,apr,wed,202,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+30,services,single,high.school,no,yes,no,cellular,apr,wed,247,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+33,blue-collar,married,professional.course,no,yes,yes,cellular,apr,wed,154,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+39,admin.,married,high.school,no,yes,no,cellular,apr,wed,110,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+49,admin.,married,basic.6y,no,yes,no,cellular,apr,wed,805,2,999,1,failure,-1.8,93.075,-47.1,1.498,5099.1,yes
+33,management,single,university.degree,no,yes,yes,cellular,apr,wed,427,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+33,management,single,university.degree,no,yes,no,cellular,apr,wed,212,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+40,blue-collar,single,basic.9y,no,no,no,cellular,apr,wed,274,1,999,1,failure,-1.8,93.075,-47.1,1.498,5099.1,no
+33,management,single,university.degree,no,yes,yes,cellular,apr,wed,1176,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,yes
+33,blue-collar,married,basic.6y,no,yes,no,cellular,apr,wed,165,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,yes
+46,retired,married,basic.6y,unknown,yes,no,cellular,apr,wed,525,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+29,admin.,single,university.degree,no,no,no,cellular,apr,wed,479,1,999,1,failure,-1.8,93.075,-47.1,1.498,5099.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,apr,wed,513,1,5,2,success,-1.8,93.075,-47.1,1.498,5099.1,no
+29,admin.,single,university.degree,no,no,no,cellular,apr,wed,295,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+29,admin.,single,university.degree,no,no,yes,cellular,apr,wed,117,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+63,retired,married,professional.course,no,yes,no,cellular,apr,wed,387,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,yes
+39,admin.,married,high.school,no,yes,no,cellular,apr,wed,286,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,apr,wed,161,2,999,1,failure,-1.8,93.075,-47.1,1.498,5099.1,no
+27,entrepreneur,married,professional.course,no,unknown,unknown,cellular,apr,wed,297,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+38,admin.,divorced,university.degree,no,yes,no,cellular,apr,wed,498,3,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+44,admin.,married,unknown,no,no,no,cellular,apr,wed,251,4,999,1,failure,-1.8,93.075,-47.1,1.498,5099.1,no
+32,technician,married,professional.course,no,yes,no,cellular,apr,wed,625,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+56,entrepreneur,divorced,university.degree,no,unknown,unknown,cellular,apr,wed,121,2,999,1,failure,-1.8,93.075,-47.1,1.498,5099.1,no
+43,self-employed,married,high.school,unknown,yes,no,cellular,apr,wed,253,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+20,student,single,unknown,no,yes,no,cellular,apr,wed,184,4,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,yes
+63,retired,married,professional.course,no,no,no,telephone,apr,wed,74,3,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+34,admin.,single,university.degree,no,no,yes,cellular,apr,wed,203,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+31,technician,married,professional.course,no,yes,no,cellular,apr,wed,647,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,apr,thu,80,3,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+30,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,739,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,yes
+54,blue-collar,married,professional.course,no,yes,no,telephone,apr,thu,173,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+54,blue-collar,married,professional.course,no,no,no,cellular,apr,thu,2870,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+30,admin.,married,university.degree,no,no,no,cellular,apr,thu,90,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+38,admin.,divorced,basic.6y,unknown,yes,no,cellular,apr,thu,926,1,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no
+30,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,82,6,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+43,services,divorced,high.school,unknown,yes,no,cellular,apr,thu,303,1,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no
+43,services,divorced,high.school,unknown,no,no,cellular,apr,thu,473,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+38,services,married,basic.9y,no,yes,no,cellular,apr,thu,101,1,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,apr,thu,243,3,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,yes
+39,blue-collar,single,basic.9y,no,yes,no,cellular,apr,thu,340,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+41,blue-collar,married,basic.4y,unknown,yes,yes,cellular,apr,thu,288,1,999,2,failure,-1.8,93.075,-47.1,1.483,5099.1,no
+34,technician,single,professional.course,no,no,no,cellular,apr,thu,121,1,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no
+26,services,single,high.school,no,no,no,cellular,apr,thu,177,1,1,3,success,-1.8,93.075,-47.1,1.483,5099.1,no
+30,admin.,married,university.degree,no,no,no,cellular,apr,thu,313,3,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,yes
+35,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,thu,114,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+39,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,73,1,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,253,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+40,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,thu,450,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+39,blue-collar,single,basic.9y,no,no,no,cellular,apr,thu,311,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+44,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,thu,361,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+33,admin.,divorced,high.school,no,no,no,cellular,apr,thu,148,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+39,services,married,high.school,no,no,no,cellular,apr,thu,598,2,999,2,failure,-1.8,93.075,-47.1,1.483,5099.1,no
+28,technician,single,professional.course,no,yes,no,cellular,apr,thu,477,2,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no
+55,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,apr,thu,164,1,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no
+42,technician,divorced,professional.course,no,yes,yes,cellular,apr,thu,144,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+33,housemaid,unknown,university.degree,no,yes,no,cellular,apr,thu,80,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+28,blue-collar,single,high.school,no,no,yes,cellular,apr,thu,333,1,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no
+28,blue-collar,single,high.school,no,yes,no,telephone,apr,thu,240,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+50,services,married,basic.4y,unknown,yes,yes,cellular,apr,thu,260,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+44,blue-collar,married,university.degree,no,yes,no,cellular,apr,thu,397,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,yes
+28,technician,single,professional.course,no,no,no,cellular,apr,thu,444,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+28,technician,single,professional.course,no,yes,no,cellular,apr,thu,824,1,999,2,failure,-1.8,93.075,-47.1,1.483,5099.1,no
+30,admin.,married,university.degree,no,no,no,cellular,apr,thu,104,6,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+32,technician,single,university.degree,no,yes,no,cellular,apr,thu,293,2,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no
+28,blue-collar,single,high.school,no,yes,no,telephone,apr,thu,771,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,yes
+46,management,married,university.degree,no,no,no,cellular,apr,thu,249,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+42,admin.,married,basic.9y,no,yes,no,cellular,apr,thu,204,4,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+28,blue-collar,single,high.school,no,yes,yes,cellular,apr,thu,268,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,yes
+39,blue-collar,single,basic.9y,no,yes,no,cellular,apr,thu,173,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+49,admin.,married,basic.6y,unknown,yes,no,cellular,apr,thu,349,3,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+50,self-employed,single,basic.9y,no,no,no,cellular,apr,thu,399,2,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no
+44,admin.,divorced,university.degree,no,no,no,telephone,apr,thu,74,3,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+31,blue-collar,single,basic.9y,no,no,no,telephone,apr,thu,285,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+39,technician,married,professional.course,no,no,no,cellular,apr,thu,225,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+38,services,married,basic.9y,no,no,yes,cellular,apr,thu,96,3,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+28,blue-collar,single,high.school,no,yes,no,cellular,apr,thu,329,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,yes
+28,blue-collar,single,high.school,no,yes,no,cellular,apr,thu,254,2,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no
+30,admin.,married,university.degree,no,no,yes,cellular,apr,thu,206,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,48,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+24,technician,single,university.degree,no,yes,no,cellular,apr,fri,326,3,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+39,admin.,divorced,university.degree,no,no,no,cellular,apr,fri,187,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+40,services,married,high.school,no,yes,no,cellular,apr,fri,456,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+42,technician,divorced,professional.course,no,yes,no,cellular,apr,fri,93,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+45,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,fri,905,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+53,blue-collar,divorced,high.school,no,yes,no,cellular,apr,fri,0,3,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+49,self-employed,divorced,unknown,unknown,yes,no,cellular,apr,fri,74,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+32,blue-collar,married,basic.9y,no,unknown,unknown,telephone,apr,fri,108,3,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,apr,fri,376,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,224,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+26,entrepreneur,single,high.school,no,yes,no,cellular,apr,fri,707,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,yes
+26,entrepreneur,single,high.school,no,no,yes,cellular,apr,fri,297,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+49,housemaid,married,basic.4y,no,no,no,cellular,apr,fri,115,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+30,technician,married,university.degree,no,yes,no,cellular,apr,fri,103,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+42,admin.,married,high.school,no,no,no,cellular,apr,fri,697,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+37,management,married,high.school,no,yes,no,cellular,apr,fri,445,1,999,2,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+51,technician,divorced,professional.course,no,yes,no,cellular,apr,fri,314,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+51,technician,divorced,professional.course,no,yes,yes,cellular,apr,fri,84,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+40,services,married,high.school,no,yes,no,cellular,apr,fri,277,2,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+31,admin.,married,university.degree,no,no,no,cellular,apr,fri,170,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+30,technician,single,high.school,no,no,no,cellular,apr,fri,285,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+33,services,divorced,high.school,no,no,yes,telephone,apr,fri,119,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+39,entrepreneur,married,high.school,no,no,no,cellular,apr,fri,484,1,999,2,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+44,services,married,high.school,no,yes,no,cellular,apr,fri,240,1,999,2,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+33,services,divorced,high.school,no,yes,yes,cellular,apr,fri,420,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,yes,cellular,apr,fri,482,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,yes
+32,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,66,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+54,housemaid,married,unknown,no,yes,no,cellular,apr,fri,117,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,yes
+55,retired,married,high.school,no,yes,no,cellular,apr,fri,213,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+49,self-employed,divorced,unknown,unknown,no,no,cellular,apr,fri,660,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+50,admin.,married,professional.course,unknown,yes,no,cellular,apr,fri,154,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+33,entrepreneur,married,high.school,no,yes,no,cellular,apr,fri,273,2,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+50,admin.,married,unknown,no,yes,no,cellular,apr,fri,121,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+39,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,239,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+56,management,married,university.degree,no,no,no,telephone,apr,fri,362,2,999,2,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+54,housemaid,married,unknown,no,yes,no,cellular,apr,fri,105,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,fri,582,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+36,blue-collar,married,basic.9y,no,unknown,unknown,cellular,apr,fri,329,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+48,admin.,married,high.school,no,yes,no,cellular,apr,fri,190,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+48,admin.,married,high.school,no,no,no,cellular,apr,fri,345,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+32,services,married,high.school,no,no,no,cellular,apr,fri,65,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+43,management,married,university.degree,unknown,no,no,cellular,apr,fri,121,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+32,services,married,high.school,no,no,no,cellular,apr,fri,1090,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+34,blue-collar,single,basic.9y,no,no,no,cellular,apr,fri,203,1,1,1,success,-1.8,93.075,-47.1,1.479,5099.1,no
+49,services,married,basic.6y,no,no,yes,cellular,apr,fri,383,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+50,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,100,3,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+39,entrepreneur,married,high.school,no,no,no,cellular,apr,fri,224,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+37,admin.,married,high.school,no,yes,no,cellular,apr,fri,439,2,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+32,blue-collar,married,basic.6y,no,yes,yes,cellular,apr,fri,205,2,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+44,management,divorced,university.degree,no,yes,no,cellular,apr,fri,230,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+44,management,divorced,university.degree,no,no,no,cellular,apr,fri,1091,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+31,technician,single,high.school,no,yes,no,cellular,apr,fri,596,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+47,technician,married,high.school,no,yes,no,cellular,apr,fri,148,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+36,services,single,high.school,no,no,yes,telephone,apr,fri,514,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+47,blue-collar,married,basic.9y,no,no,yes,cellular,apr,fri,583,2,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no
+46,management,married,high.school,unknown,yes,no,cellular,apr,fri,57,4,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+41,admin.,married,basic.6y,no,no,no,cellular,apr,fri,1203,2,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,yes
+51,technician,divorced,professional.course,no,no,no,cellular,apr,fri,579,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+37,admin.,married,university.degree,no,yes,no,telephone,apr,fri,309,4,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+40,services,married,high.school,no,yes,no,cellular,apr,fri,151,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+49,services,married,basic.6y,no,yes,no,cellular,apr,fri,219,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no
+38,entrepreneur,married,professional.course,no,yes,yes,cellular,apr,mon,278,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no
+46,blue-collar,married,basic.9y,unknown,yes,yes,cellular,apr,mon,479,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+42,management,married,unknown,no,yes,no,cellular,apr,mon,590,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no
+41,unemployed,married,basic.9y,no,no,yes,cellular,apr,mon,322,1,9,1,success,-1.8,93.075,-47.1,1.466,5099.1,no
+50,management,divorced,university.degree,unknown,no,no,telephone,apr,mon,475,6,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,yes
+41,unemployed,married,basic.9y,no,yes,no,cellular,apr,mon,272,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+45,admin.,married,high.school,no,yes,no,cellular,apr,mon,185,3,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+40,management,married,university.degree,no,yes,no,cellular,apr,mon,254,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+25,technician,single,professional.course,no,no,yes,cellular,apr,mon,112,4,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+40,services,single,high.school,no,no,no,cellular,apr,mon,275,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+37,technician,divorced,basic.9y,no,yes,no,cellular,apr,mon,247,1,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no
+38,admin.,single,high.school,no,yes,no,cellular,apr,mon,332,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no
+55,management,divorced,university.degree,no,no,yes,cellular,apr,mon,916,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+53,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,mon,583,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,yes
+31,technician,married,professional.course,no,no,no,cellular,apr,mon,551,3,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no
+26,admin.,married,high.school,no,yes,no,cellular,apr,mon,90,10,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+56,retired,married,basic.6y,no,yes,no,telephone,apr,mon,172,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+55,retired,married,basic.4y,no,yes,no,cellular,apr,mon,158,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,yes
+65,retired,married,university.degree,no,yes,no,cellular,apr,mon,147,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+34,admin.,married,basic.6y,no,yes,no,cellular,apr,mon,599,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+55,management,divorced,university.degree,no,yes,no,cellular,apr,mon,232,3,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+55,technician,married,professional.course,no,no,no,cellular,apr,mon,376,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no
+44,blue-collar,married,high.school,no,no,no,cellular,apr,mon,271,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no
+24,admin.,single,university.degree,no,yes,no,telephone,apr,mon,86,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+46,self-employed,single,university.degree,unknown,no,no,cellular,apr,mon,438,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+42,technician,married,basic.9y,no,no,yes,cellular,apr,mon,437,2,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+46,services,divorced,high.school,no,no,no,cellular,apr,mon,211,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no
+41,unemployed,married,basic.9y,no,yes,no,cellular,apr,mon,263,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+44,technician,married,unknown,no,yes,no,cellular,apr,mon,104,1,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no
+40,services,married,unknown,unknown,no,no,cellular,apr,mon,294,1,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no
+45,blue-collar,single,basic.9y,no,yes,no,cellular,apr,mon,173,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+45,blue-collar,single,basic.9y,no,no,no,cellular,apr,mon,129,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+55,housemaid,married,basic.4y,no,no,no,cellular,apr,mon,197,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+24,student,single,university.degree,no,no,no,cellular,apr,mon,139,2,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+55,housemaid,married,basic.4y,no,yes,no,cellular,apr,mon,139,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+40,blue-collar,divorced,basic.6y,no,no,no,cellular,apr,mon,399,2,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+26,admin.,married,high.school,no,no,no,cellular,apr,mon,190,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+55,housemaid,married,basic.4y,no,yes,no,cellular,apr,mon,1435,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,yes
+26,admin.,married,high.school,no,yes,no,telephone,apr,mon,216,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+58,retired,divorced,high.school,no,yes,no,cellular,apr,mon,75,2,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+55,technician,married,professional.course,no,yes,no,cellular,apr,mon,371,3,999,2,failure,-1.8,93.075,-47.1,1.466,5099.1,no
+43,services,married,professional.course,no,no,no,cellular,apr,mon,230,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,apr,mon,41,2,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+32,blue-collar,married,basic.9y,no,unknown,unknown,cellular,apr,mon,1063,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,yes
+35,technician,married,professional.course,no,yes,no,cellular,apr,mon,272,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+48,admin.,single,high.school,no,no,no,cellular,apr,mon,223,2,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+40,services,married,high.school,no,no,no,cellular,apr,mon,377,3,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no
+57,blue-collar,married,high.school,no,yes,yes,cellular,apr,mon,2316,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+34,blue-collar,married,basic.9y,unknown,yes,no,telephone,apr,mon,1353,2,5,1,success,-1.8,93.075,-47.1,1.466,5099.1,yes
+29,technician,single,professional.course,no,yes,no,cellular,apr,mon,740,3,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,yes
+37,blue-collar,married,basic.6y,no,yes,no,cellular,apr,mon,1138,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,yes
+38,blue-collar,married,basic.9y,no,no,no,cellular,apr,mon,357,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no
+42,technician,married,basic.9y,no,no,no,cellular,apr,mon,441,4,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+53,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,mon,165,4,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+38,blue-collar,married,basic.9y,no,no,yes,cellular,apr,mon,276,2,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+46,blue-collar,married,basic.9y,unknown,yes,no,telephone,apr,mon,125,3,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no
+51,admin.,divorced,professional.course,no,no,yes,cellular,apr,mon,583,3,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no
+56,management,married,university.degree,no,no,no,cellular,apr,tue,72,5,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+60,retired,divorced,basic.4y,no,no,no,cellular,apr,tue,465,4,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,yes
+19,student,single,basic.9y,no,no,no,cellular,apr,tue,43,3,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+32,technician,single,university.degree,no,yes,no,cellular,apr,tue,60,3,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+57,blue-collar,married,high.school,no,yes,no,cellular,apr,tue,355,3,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+39,technician,married,basic.6y,no,yes,no,cellular,apr,tue,226,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+43,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,tue,608,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,yes
+43,blue-collar,married,basic.9y,unknown,yes,yes,cellular,apr,tue,1096,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+35,admin.,married,high.school,no,no,no,cellular,apr,tue,327,2,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+34,admin.,single,high.school,no,no,no,cellular,apr,tue,231,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+44,technician,divorced,professional.course,no,no,no,cellular,apr,tue,208,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+39,blue-collar,married,basic.4y,no,no,no,cellular,apr,tue,91,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,381,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+41,admin.,married,university.degree,no,yes,no,cellular,apr,tue,183,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+22,student,single,high.school,no,no,no,cellular,apr,tue,194,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+41,admin.,married,university.degree,no,yes,yes,cellular,apr,tue,103,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+41,admin.,married,university.degree,no,no,no,cellular,apr,tue,463,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,yes
+40,blue-collar,married,basic.9y,no,no,yes,cellular,apr,tue,479,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+40,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,354,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+46,admin.,divorced,high.school,no,no,no,cellular,apr,tue,345,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+45,services,married,professional.course,no,no,no,cellular,apr,tue,329,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+40,self-employed,married,professional.course,unknown,no,no,cellular,apr,tue,210,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,apr,tue,226,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+39,self-employed,married,professional.course,no,no,yes,cellular,apr,tue,389,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+57,blue-collar,married,high.school,no,yes,no,cellular,apr,tue,97,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+36,admin.,divorced,high.school,no,no,no,cellular,apr,tue,197,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+47,blue-collar,single,basic.4y,unknown,no,no,cellular,apr,tue,369,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+45,management,divorced,university.degree,no,no,no,cellular,apr,tue,196,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+34,admin.,single,high.school,no,yes,yes,cellular,apr,tue,2299,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,yes
+41,admin.,married,basic.6y,unknown,no,no,cellular,apr,tue,226,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+46,technician,married,basic.6y,no,no,no,cellular,apr,tue,254,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+32,technician,single,university.degree,no,no,no,cellular,apr,tue,721,4,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,yes
+40,technician,married,professional.course,no,yes,no,cellular,apr,tue,366,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+31,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,tue,208,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+40,technician,married,professional.course,no,no,no,cellular,apr,tue,274,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+39,admin.,married,high.school,no,yes,no,telephone,apr,tue,189,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+66,retired,single,university.degree,no,yes,no,cellular,apr,tue,411,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+42,technician,divorced,professional.course,no,yes,no,cellular,apr,tue,157,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+19,student,single,basic.9y,no,yes,no,cellular,apr,tue,299,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,yes
+41,blue-collar,married,basic.9y,no,yes,no,cellular,apr,tue,272,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+42,technician,divorced,professional.course,no,no,no,cellular,apr,tue,615,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+34,management,married,university.degree,no,yes,no,cellular,apr,tue,255,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+28,student,single,university.degree,no,yes,no,cellular,apr,tue,93,3,11,2,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+32,admin.,single,university.degree,no,no,no,cellular,apr,tue,49,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+72,retired,married,basic.4y,no,unknown,unknown,cellular,apr,tue,44,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+72,retired,married,basic.4y,no,no,no,telephone,apr,tue,124,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+38,services,divorced,high.school,unknown,yes,no,cellular,apr,tue,620,1,2,1,success,-1.8,93.075,-47.1,1.453,5099.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,84,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,yes
+36,blue-collar,married,basic.9y,no,yes,yes,cellular,apr,tue,99,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+32,technician,single,university.degree,no,no,no,cellular,apr,tue,83,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+45,services,married,high.school,no,no,no,cellular,apr,tue,139,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+38,services,divorced,high.school,unknown,no,no,cellular,apr,tue,311,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+45,services,married,high.school,no,yes,no,cellular,apr,tue,1063,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+38,services,divorced,high.school,unknown,yes,no,cellular,apr,tue,263,2,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+43,admin.,single,high.school,no,no,no,cellular,apr,tue,487,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+57,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,304,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+35,unemployed,divorced,university.degree,no,yes,yes,cellular,apr,tue,66,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+35,unemployed,divorced,university.degree,no,no,no,cellular,apr,tue,253,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+40,retired,single,basic.4y,no,yes,yes,cellular,apr,tue,145,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+46,services,married,unknown,no,yes,no,cellular,apr,tue,244,3,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+25,student,single,high.school,no,no,no,cellular,apr,tue,98,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+36,self-employed,single,university.degree,no,no,yes,cellular,apr,tue,104,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+39,technician,married,basic.6y,no,no,no,cellular,apr,tue,88,3,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+44,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,1,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+40,services,married,high.school,no,yes,no,cellular,apr,tue,158,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+40,blue-collar,married,high.school,no,no,no,cellular,apr,tue,245,8,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+41,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,161,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+59,services,married,high.school,no,yes,no,cellular,apr,tue,542,3,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+44,services,divorced,high.school,no,no,no,cellular,apr,tue,265,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+44,services,divorced,high.school,no,no,no,cellular,apr,tue,562,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+44,services,divorced,high.school,no,yes,yes,cellular,apr,tue,895,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,yes
+38,blue-collar,married,basic.4y,no,no,no,cellular,apr,tue,277,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+38,blue-collar,married,basic.4y,no,no,no,cellular,apr,tue,239,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+38,admin.,divorced,high.school,no,no,no,cellular,apr,tue,172,2,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+33,blue-collar,single,professional.course,no,no,no,cellular,apr,tue,221,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+55,technician,married,high.school,no,yes,yes,cellular,apr,tue,376,3,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+59,retired,married,basic.4y,no,no,no,telephone,apr,tue,353,4,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+43,admin.,single,high.school,no,no,no,cellular,apr,tue,216,2,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+40,blue-collar,married,high.school,no,no,no,cellular,apr,tue,43,3,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no
+36,entrepreneur,married,high.school,no,yes,no,cellular,apr,tue,736,7,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+44,blue-collar,single,basic.9y,no,yes,no,cellular,apr,tue,581,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no
+27,technician,married,professional.course,no,yes,yes,cellular,apr,wed,163,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+27,technician,single,basic.9y,no,no,yes,cellular,apr,wed,79,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+46,services,married,high.school,no,no,no,cellular,apr,wed,325,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+25,student,single,high.school,no,yes,no,cellular,apr,wed,327,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+25,student,single,high.school,no,yes,no,cellular,apr,wed,117,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+34,services,married,high.school,no,yes,no,cellular,apr,wed,98,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+27,technician,single,basic.9y,no,yes,no,cellular,apr,wed,131,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+27,technician,single,basic.9y,no,yes,no,cellular,apr,wed,149,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+43,technician,single,professional.course,unknown,yes,no,cellular,apr,wed,519,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+40,housemaid,married,basic.9y,no,yes,yes,telephone,apr,wed,169,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+32,technician,single,university.degree,no,no,no,cellular,apr,wed,87,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+55,admin.,divorced,university.degree,no,yes,no,cellular,apr,wed,628,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+27,admin.,single,university.degree,no,yes,yes,cellular,apr,wed,98,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+55,admin.,divorced,university.degree,no,yes,no,cellular,apr,wed,952,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+61,retired,married,university.degree,no,yes,no,cellular,apr,wed,205,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+46,blue-collar,divorced,basic.9y,no,no,yes,cellular,apr,wed,903,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+48,technician,married,professional.course,no,no,no,cellular,apr,wed,95,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+29,technician,married,university.degree,no,yes,no,cellular,apr,wed,58,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+32,technician,single,university.degree,no,no,no,cellular,apr,wed,59,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+41,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,123,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+41,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,95,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+27,technician,single,basic.9y,no,yes,no,telephone,apr,wed,523,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+25,unemployed,single,professional.course,no,yes,no,cellular,apr,wed,97,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+25,unemployed,single,professional.course,no,no,no,cellular,apr,wed,268,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+49,blue-collar,divorced,basic.4y,unknown,no,no,cellular,apr,wed,430,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+27,technician,single,basic.9y,no,yes,no,cellular,apr,wed,88,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,apr,wed,120,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,apr,wed,182,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+27,technician,single,basic.9y,no,no,yes,cellular,apr,wed,335,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+37,technician,married,university.degree,no,yes,no,telephone,apr,wed,218,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+29,blue-collar,single,high.school,no,yes,yes,cellular,apr,wed,2129,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+39,blue-collar,married,basic.9y,unknown,no,yes,cellular,apr,wed,393,6,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+34,services,married,high.school,no,no,no,cellular,apr,wed,462,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+39,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,wed,213,4,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+46,blue-collar,divorced,basic.6y,unknown,no,no,cellular,apr,wed,179,5,999,2,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+38,admin.,married,high.school,no,no,yes,cellular,apr,wed,284,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,apr,wed,1032,3,999,2,failure,-1.8,93.075,-47.1,1.445,5099.1,yes
+36,management,married,university.degree,no,no,yes,cellular,apr,wed,241,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+36,housemaid,married,basic.9y,no,yes,no,cellular,apr,wed,291,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+63,retired,married,unknown,no,no,no,cellular,apr,wed,150,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,yes
+63,retired,married,unknown,no,yes,no,telephone,apr,wed,236,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+37,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,281,1,5,1,success,-1.8,93.075,-47.1,1.445,5099.1,no
+50,admin.,married,university.degree,no,unknown,unknown,cellular,apr,wed,101,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+39,blue-collar,married,basic.9y,unknown,yes,yes,cellular,apr,wed,120,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+47,unemployed,divorced,basic.9y,no,no,no,cellular,apr,wed,125,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+63,retired,married,unknown,no,no,no,telephone,apr,wed,185,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+28,admin.,married,university.degree,no,yes,no,cellular,apr,wed,261,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+51,admin.,single,university.degree,no,yes,yes,cellular,apr,wed,233,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+29,admin.,married,university.degree,no,yes,yes,cellular,apr,wed,245,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+25,admin.,single,professional.course,no,yes,no,cellular,apr,wed,67,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+47,entrepreneur,married,high.school,no,no,yes,cellular,apr,wed,663,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+25,admin.,single,professional.course,no,yes,no,cellular,apr,wed,114,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+29,technician,married,university.degree,no,unknown,unknown,cellular,apr,wed,83,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+31,services,married,high.school,no,no,yes,cellular,apr,wed,195,6,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+36,management,married,university.degree,no,no,yes,cellular,apr,wed,180,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+82,retired,married,unknown,no,no,no,cellular,apr,wed,321,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+27,technician,single,basic.9y,no,no,no,cellular,apr,wed,34,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+46,services,married,high.school,no,yes,no,cellular,apr,wed,201,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+24,services,single,high.school,no,yes,no,cellular,apr,wed,209,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+47,admin.,single,university.degree,no,no,no,cellular,apr,wed,167,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,apr,wed,58,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+38,admin.,married,high.school,no,no,no,cellular,apr,wed,518,2,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+24,student,single,high.school,no,yes,no,cellular,apr,wed,74,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+64,technician,married,professional.course,no,yes,no,cellular,apr,wed,250,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+35,admin.,married,high.school,no,yes,no,cellular,apr,wed,1190,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+40,services,divorced,high.school,no,yes,no,cellular,apr,wed,201,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+42,blue-collar,married,basic.6y,no,yes,yes,cellular,apr,wed,110,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+35,technician,divorced,professional.course,no,yes,no,cellular,apr,wed,405,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+40,admin.,divorced,university.degree,no,yes,no,cellular,apr,wed,84,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+35,technician,divorced,professional.course,no,yes,no,cellular,apr,wed,612,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+35,technician,divorced,professional.course,no,yes,no,cellular,apr,wed,229,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+35,services,divorced,basic.9y,no,no,no,cellular,apr,wed,188,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+34,services,married,high.school,no,no,no,cellular,apr,wed,543,2,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,apr,wed,216,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+37,blue-collar,married,basic.4y,no,no,no,cellular,apr,wed,180,2,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+34,admin.,single,professional.course,no,no,no,cellular,apr,wed,174,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+52,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,249,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+46,blue-collar,divorced,basic.9y,no,no,no,cellular,apr,wed,169,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+37,technician,married,professional.course,unknown,yes,yes,cellular,apr,wed,101,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+34,services,divorced,high.school,no,yes,yes,cellular,apr,wed,303,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+58,retired,married,university.degree,no,unknown,unknown,cellular,apr,wed,624,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+40,admin.,divorced,university.degree,no,no,no,cellular,apr,wed,143,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+27,technician,single,basic.9y,no,yes,no,cellular,apr,wed,56,7,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+22,management,single,university.degree,no,yes,no,cellular,apr,wed,179,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+64,technician,married,professional.course,no,yes,no,cellular,apr,wed,65,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,apr,wed,91,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+25,unemployed,single,professional.course,no,no,yes,cellular,apr,wed,274,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+35,services,married,high.school,unknown,yes,no,cellular,apr,wed,222,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+43,services,married,high.school,no,yes,no,telephone,apr,wed,690,7,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+34,services,married,high.school,no,yes,no,cellular,apr,wed,281,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+46,technician,married,basic.6y,unknown,yes,no,cellular,apr,wed,575,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+47,admin.,married,unknown,no,no,yes,cellular,apr,wed,764,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+39,services,married,basic.9y,unknown,yes,yes,telephone,apr,wed,93,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+38,services,single,high.school,no,yes,no,cellular,apr,wed,1665,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+41,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,213,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+29,admin.,single,university.degree,no,no,no,cellular,apr,wed,548,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+33,admin.,single,university.degree,no,no,no,cellular,apr,wed,171,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+30,unemployed,single,basic.9y,no,no,no,cellular,apr,wed,142,4,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+46,services,married,high.school,no,yes,no,cellular,apr,wed,417,2,999,2,failure,-1.8,93.075,-47.1,1.445,5099.1,no
+43,self-employed,married,high.school,unknown,yes,no,cellular,apr,wed,902,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,apr,wed,350,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes
+59,admin.,married,high.school,no,yes,no,cellular,apr,wed,101,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,apr,wed,124,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no
+20,student,single,high.school,no,yes,no,cellular,apr,thu,162,4,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,apr,thu,68,3,999,2,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+37,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,apr,thu,435,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,apr,thu,87,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+21,services,single,high.school,no,yes,no,cellular,apr,thu,374,3,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+41,admin.,married,university.degree,unknown,yes,yes,telephone,apr,thu,40,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+52,admin.,married,high.school,no,no,no,cellular,apr,thu,312,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+21,services,single,high.school,no,yes,yes,cellular,apr,thu,820,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+41,admin.,single,university.degree,no,yes,no,cellular,apr,thu,328,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+28,services,single,high.school,no,no,no,cellular,apr,thu,528,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+46,technician,single,basic.9y,no,yes,no,cellular,apr,thu,168,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+43,admin.,divorced,high.school,no,unknown,unknown,cellular,apr,thu,105,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+43,technician,married,professional.course,no,no,no,cellular,apr,thu,264,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,apr,thu,592,4,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,yes
+59,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,thu,125,6,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+44,management,divorced,university.degree,no,yes,no,cellular,apr,thu,207,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+24,admin.,single,professional.course,no,yes,no,cellular,apr,thu,125,6,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+35,services,married,basic.9y,no,yes,no,cellular,apr,thu,150,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+32,self-employed,single,university.degree,no,no,no,cellular,apr,thu,394,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes
+35,services,married,basic.9y,no,no,no,cellular,apr,thu,85,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+43,admin.,divorced,high.school,no,yes,no,cellular,apr,thu,448,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,yes
+33,technician,single,university.degree,no,no,no,cellular,apr,thu,657,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes
+38,services,married,basic.9y,no,yes,no,cellular,apr,thu,220,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+38,technician,married,high.school,no,no,no,cellular,apr,thu,113,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+37,technician,divorced,professional.course,no,yes,no,cellular,apr,thu,241,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+32,services,divorced,high.school,no,no,no,cellular,apr,thu,765,3,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+35,entrepreneur,married,university.degree,unknown,yes,no,cellular,apr,thu,311,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+33,technician,single,university.degree,no,unknown,unknown,cellular,apr,thu,527,3,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes
+67,retired,married,university.degree,no,yes,no,telephone,apr,thu,126,4,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+33,technician,single,university.degree,no,no,no,cellular,apr,thu,304,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+40,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,161,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+40,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,236,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+41,technician,married,university.degree,unknown,no,yes,cellular,apr,thu,272,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+32,blue-collar,married,high.school,no,yes,no,cellular,apr,thu,259,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+51,services,married,high.school,unknown,no,no,cellular,apr,thu,278,3,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+41,technician,married,university.degree,unknown,yes,yes,cellular,apr,thu,139,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+48,blue-collar,married,basic.9y,unknown,yes,yes,cellular,apr,thu,429,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+33,services,divorced,university.degree,no,yes,no,cellular,apr,thu,230,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,apr,thu,96,4,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+45,admin.,married,high.school,no,no,yes,cellular,apr,thu,109,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+33,technician,single,university.degree,no,yes,no,cellular,apr,thu,530,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes
+33,technician,single,university.degree,no,yes,no,cellular,apr,thu,71,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+30,self-employed,single,university.degree,no,no,no,cellular,apr,thu,159,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+30,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,104,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+30,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,214,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes
+30,self-employed,single,university.degree,no,no,no,cellular,apr,thu,184,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+30,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,331,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,yes
+30,self-employed,single,university.degree,no,no,no,cellular,apr,thu,435,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes
+30,self-employed,single,university.degree,no,no,no,cellular,apr,thu,188,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+45,admin.,single,unknown,no,yes,no,cellular,apr,thu,62,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+35,services,married,high.school,no,yes,no,cellular,apr,thu,466,2,999,2,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+52,admin.,married,university.degree,no,yes,no,telephone,apr,thu,327,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+42,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,290,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+30,blue-collar,married,basic.4y,no,yes,no,cellular,apr,thu,179,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes
+37,technician,divorced,professional.course,no,yes,no,cellular,apr,thu,464,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+46,technician,single,basic.9y,no,no,no,cellular,apr,thu,221,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+49,blue-collar,married,basic.6y,unknown,yes,yes,cellular,apr,thu,504,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+33,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,233,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes
+30,self-employed,single,university.degree,no,no,no,cellular,apr,thu,245,3,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes
+52,admin.,married,high.school,no,yes,no,cellular,apr,thu,152,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+45,entrepreneur,divorced,university.degree,no,yes,no,cellular,apr,thu,132,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+33,technician,single,university.degree,no,yes,no,cellular,apr,thu,106,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+50,blue-collar,married,high.school,unknown,no,no,cellular,apr,thu,339,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+30,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,152,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes
+36,retired,married,high.school,no,yes,no,cellular,apr,thu,98,6,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+41,blue-collar,married,basic.9y,no,unknown,unknown,cellular,apr,thu,268,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+47,technician,divorced,professional.course,no,no,no,cellular,apr,thu,337,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+54,self-employed,married,basic.9y,no,yes,no,cellular,apr,thu,133,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+43,entrepreneur,married,high.school,no,yes,no,cellular,apr,thu,90,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+28,services,single,high.school,no,yes,no,cellular,apr,thu,322,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+46,technician,single,basic.9y,no,no,no,cellular,apr,thu,385,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+45,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,317,5,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes
+36,admin.,single,university.degree,no,no,no,cellular,apr,thu,208,12,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+48,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,thu,627,2,5,3,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+29,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,1042,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes
+41,admin.,married,university.degree,unknown,yes,yes,cellular,apr,thu,240,3,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+40,services,married,basic.6y,unknown,no,no,cellular,apr,thu,140,2,999,2,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,490,3,999,2,failure,-1.8,93.075,-47.1,1.435,5099.1,yes
+57,services,married,high.school,no,yes,no,cellular,apr,thu,275,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+37,blue-collar,married,professional.course,no,no,no,cellular,apr,thu,188,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no
+33,services,married,high.school,no,yes,no,cellular,apr,thu,236,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no
+30,admin.,single,university.degree,no,yes,no,telephone,apr,tue,563,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+26,unemployed,single,university.degree,no,yes,no,cellular,apr,tue,136,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+41,technician,married,high.school,no,yes,yes,cellular,apr,tue,142,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+36,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,tue,283,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,129,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+34,self-employed,single,university.degree,no,no,no,telephone,apr,tue,86,6,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+30,admin.,married,university.degree,no,no,no,cellular,apr,tue,259,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+24,admin.,single,high.school,no,yes,no,cellular,apr,tue,255,1,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no
+41,technician,married,professional.course,no,yes,no,cellular,apr,tue,466,5,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,yes
+41,admin.,divorced,university.degree,no,no,no,cellular,apr,tue,82,4,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,apr,tue,565,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+42,admin.,single,professional.course,no,yes,no,cellular,apr,tue,251,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+42,admin.,single,professional.course,no,no,no,cellular,apr,tue,262,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,tue,269,3,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no
+37,admin.,single,university.degree,no,no,no,cellular,apr,tue,283,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+73,retired,divorced,basic.4y,no,no,yes,cellular,apr,tue,342,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,tue,427,4,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,apr,tue,255,7,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+38,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,110,1,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,apr,tue,461,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+46,admin.,married,professional.course,no,yes,no,cellular,apr,tue,62,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,apr,tue,145,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+42,services,single,basic.6y,no,yes,yes,cellular,apr,tue,213,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+59,blue-collar,married,basic.9y,no,no,no,telephone,apr,tue,111,3,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no
+46,blue-collar,divorced,basic.9y,no,yes,no,telephone,apr,tue,266,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+34,self-employed,single,university.degree,no,yes,no,telephone,apr,tue,118,6,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+34,admin.,single,university.degree,no,no,no,cellular,apr,tue,142,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+35,blue-collar,married,basic.9y,no,yes,no,cellular,apr,tue,855,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+34,admin.,single,university.degree,no,no,no,cellular,apr,tue,344,1,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,yes
+34,unemployed,single,university.degree,no,yes,no,cellular,apr,tue,125,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+24,services,single,high.school,no,yes,no,cellular,apr,tue,850,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+48,blue-collar,single,basic.9y,no,yes,no,cellular,apr,tue,85,1,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no
+34,admin.,single,university.degree,no,yes,yes,cellular,apr,tue,441,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+24,services,single,high.school,no,yes,no,telephone,apr,tue,104,1,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no
+48,blue-collar,single,basic.9y,no,yes,no,cellular,apr,tue,179,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+24,services,single,high.school,no,yes,no,cellular,apr,tue,114,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+24,services,single,high.school,no,yes,no,cellular,apr,tue,114,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+59,retired,married,university.degree,no,no,no,cellular,apr,tue,1073,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+47,self-employed,married,basic.9y,no,yes,no,telephone,apr,tue,226,5,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+34,self-employed,single,university.degree,no,no,no,cellular,apr,tue,94,5,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+24,services,single,high.school,no,yes,no,cellular,apr,tue,1594,1,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,yes
+24,services,single,high.school,no,no,no,cellular,apr,tue,450,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+55,admin.,single,high.school,no,yes,no,cellular,apr,tue,461,2,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no
+30,admin.,single,university.degree,no,no,yes,cellular,apr,tue,505,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+55,admin.,married,high.school,no,no,no,cellular,apr,tue,163,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+42,self-employed,married,university.degree,no,no,no,cellular,apr,tue,133,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+26,unemployed,single,university.degree,no,yes,no,cellular,apr,tue,62,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+26,unemployed,single,university.degree,no,yes,no,cellular,apr,tue,184,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+26,unemployed,single,university.degree,no,yes,no,cellular,apr,tue,168,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+28,blue-collar,single,university.degree,no,yes,no,cellular,apr,tue,49,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+35,admin.,married,university.degree,no,no,no,cellular,apr,tue,72,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+44,blue-collar,married,basic.6y,no,no,no,cellular,apr,tue,314,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+30,admin.,single,university.degree,no,yes,yes,cellular,apr,tue,178,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+57,technician,married,professional.course,no,yes,no,cellular,apr,tue,232,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+57,technician,married,professional.course,no,yes,no,cellular,apr,tue,324,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,tue,252,5,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+56,management,married,basic.9y,unknown,no,no,cellular,apr,tue,584,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+30,admin.,married,university.degree,no,no,no,cellular,apr,tue,161,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+30,admin.,married,university.degree,no,yes,no,cellular,apr,tue,496,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,tue,95,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+46,blue-collar,divorced,basic.9y,no,no,no,cellular,apr,tue,332,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+30,admin.,married,university.degree,no,yes,yes,cellular,apr,tue,111,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+39,admin.,married,university.degree,no,yes,yes,cellular,apr,tue,308,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+71,retired,married,basic.4y,no,no,no,telephone,apr,tue,129,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+25,admin.,single,university.degree,no,no,no,cellular,apr,tue,247,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+28,blue-collar,single,university.degree,no,no,no,cellular,apr,tue,107,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+42,self-employed,married,university.degree,no,yes,no,cellular,apr,tue,216,1,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,yes
+46,technician,married,professional.course,no,no,no,cellular,apr,tue,279,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+31,blue-collar,single,unknown,no,no,no,cellular,apr,tue,424,2,999,2,failure,-1.8,93.075,-47.1,1.423,5099.1,no
+34,blue-collar,single,high.school,no,no,no,cellular,apr,tue,259,2,999,2,failure,-1.8,93.075,-47.1,1.423,5099.1,no
+57,admin.,married,high.school,no,yes,no,cellular,apr,tue,111,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+33,management,married,university.degree,unknown,yes,yes,cellular,apr,tue,258,8,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+61,retired,married,university.degree,no,yes,no,cellular,apr,tue,216,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+36,services,married,high.school,no,unknown,unknown,cellular,apr,tue,104,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+45,admin.,single,basic.9y,no,yes,yes,cellular,apr,tue,119,2,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no
+36,admin.,married,university.degree,no,no,no,cellular,apr,tue,108,6,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no
+45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,tue,72,4,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+42,admin.,married,university.degree,no,yes,yes,cellular,apr,tue,101,5,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+69,retired,divorced,university.degree,no,yes,no,cellular,apr,tue,207,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+26,unemployed,single,university.degree,no,yes,no,telephone,apr,tue,300,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+28,admin.,single,university.degree,no,yes,no,cellular,apr,tue,295,5,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes
+23,technician,single,professional.course,no,no,yes,cellular,apr,tue,422,4,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+29,admin.,single,university.degree,no,yes,no,telephone,apr,tue,61,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,apr,tue,108,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+47,blue-collar,married,professional.course,no,yes,no,cellular,apr,tue,225,4,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no
+41,blue-collar,married,basic.6y,no,yes,yes,cellular,apr,tue,608,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+42,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,tue,189,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no
+46,admin.,divorced,university.degree,no,yes,no,cellular,apr,wed,201,6,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+49,admin.,married,unknown,no,yes,yes,cellular,apr,wed,61,3,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+70,retired,married,basic.4y,no,yes,no,cellular,apr,wed,223,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+67,retired,married,professional.course,no,no,no,telephone,apr,wed,47,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+39,technician,single,professional.course,no,yes,no,cellular,apr,wed,226,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+56,admin.,married,basic.9y,no,yes,no,cellular,apr,wed,431,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+23,student,single,basic.4y,no,yes,no,cellular,apr,wed,1372,4,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+37,self-employed,divorced,basic.9y,no,yes,no,cellular,apr,wed,343,2,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+56,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,wed,141,12,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+38,technician,divorced,university.degree,no,no,no,cellular,apr,wed,141,2,999,2,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+32,unemployed,single,university.degree,no,yes,no,telephone,apr,wed,165,2,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,yes
+34,technician,divorced,professional.course,no,yes,no,cellular,apr,wed,139,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+70,retired,married,basic.4y,no,no,no,cellular,apr,wed,167,2,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,yes
+56,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,wed,332,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+56,blue-collar,married,basic.9y,unknown,no,yes,cellular,apr,wed,87,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+43,management,married,basic.6y,no,no,no,cellular,apr,wed,945,1,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,yes
+25,student,single,high.school,no,yes,yes,cellular,apr,wed,82,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+47,admin.,married,high.school,no,yes,no,cellular,apr,wed,903,2,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,yes
+58,retired,divorced,university.degree,no,yes,no,cellular,apr,wed,282,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+30,admin.,married,university.degree,no,no,yes,cellular,apr,wed,389,2,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+45,services,married,high.school,no,yes,no,cellular,apr,wed,651,4,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+30,management,single,university.degree,no,yes,no,cellular,apr,wed,692,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+29,unemployed,single,high.school,no,no,no,cellular,apr,wed,217,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+36,self-employed,divorced,basic.9y,no,yes,no,cellular,apr,wed,93,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+66,retired,married,basic.4y,no,yes,no,cellular,apr,wed,253,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+44,management,married,basic.6y,no,yes,no,cellular,apr,wed,139,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+44,management,married,basic.6y,no,yes,yes,cellular,apr,wed,154,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+40,management,single,basic.9y,no,yes,no,cellular,apr,wed,601,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+53,retired,married,high.school,no,no,no,telephone,apr,wed,44,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+53,retired,married,high.school,no,no,no,cellular,apr,wed,349,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+35,technician,married,professional.course,no,no,no,cellular,apr,wed,225,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+41,entrepreneur,single,professional.course,no,yes,no,cellular,apr,wed,103,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+44,technician,single,professional.course,no,yes,no,cellular,apr,wed,75,1,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+35,technician,married,professional.course,no,yes,no,cellular,apr,wed,251,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+44,technician,single,professional.course,no,no,no,cellular,apr,wed,609,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+41,services,single,high.school,no,no,no,cellular,apr,wed,134,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,apr,wed,166,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+41,services,married,high.school,no,yes,yes,cellular,apr,wed,301,1,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,apr,wed,177,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+52,entrepreneur,married,university.degree,no,yes,no,cellular,apr,wed,126,1,999,2,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+44,technician,married,professional.course,no,yes,no,cellular,apr,wed,56,1,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+60,housemaid,married,basic.4y,no,no,no,cellular,apr,wed,85,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+40,blue-collar,divorced,unknown,unknown,no,no,cellular,apr,wed,149,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+59,admin.,divorced,university.degree,no,no,no,cellular,apr,wed,194,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+49,management,married,university.degree,no,no,no,cellular,apr,wed,1214,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+21,admin.,single,high.school,no,yes,no,cellular,apr,wed,122,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+32,unemployed,single,university.degree,no,no,no,cellular,apr,wed,110,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+32,unemployed,single,university.degree,no,yes,no,cellular,apr,wed,187,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+44,unemployed,divorced,basic.9y,no,no,no,cellular,apr,wed,114,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+36,housemaid,married,basic.4y,no,yes,no,cellular,apr,wed,310,7,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,apr,wed,1217,3,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+29,technician,single,university.degree,no,yes,no,cellular,apr,wed,389,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+58,retired,divorced,university.degree,no,yes,no,cellular,apr,wed,48,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+26,admin.,single,high.school,no,no,no,cellular,apr,wed,171,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+66,retired,married,basic.4y,no,yes,no,cellular,apr,wed,512,11,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+32,unemployed,single,university.degree,no,yes,no,cellular,apr,wed,125,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+44,technician,single,professional.course,no,yes,no,cellular,apr,wed,412,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+32,admin.,single,high.school,no,yes,yes,cellular,apr,wed,120,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+70,retired,married,basic.4y,no,no,no,cellular,apr,wed,86,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+67,retired,married,professional.course,no,yes,no,cellular,apr,wed,140,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+27,technician,single,professional.course,no,no,no,cellular,apr,wed,72,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,apr,wed,135,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+52,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,437,1,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+33,admin.,married,university.degree,no,no,no,cellular,apr,wed,441,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+52,blue-collar,married,basic.4y,no,no,no,cellular,apr,wed,358,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,apr,wed,355,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+57,technician,married,high.school,no,yes,no,cellular,apr,wed,82,1,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+26,admin.,single,high.school,no,yes,no,telephone,apr,wed,170,3,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+57,technician,married,high.school,no,no,no,cellular,apr,wed,469,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+57,technician,married,high.school,no,yes,no,cellular,apr,wed,99,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+58,retired,divorced,university.degree,no,yes,no,cellular,apr,wed,129,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+31,admin.,married,university.degree,no,no,no,telephone,apr,wed,118,3,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+43,management,married,basic.6y,no,no,no,cellular,apr,wed,121,1,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+25,student,single,high.school,no,no,no,telephone,apr,wed,405,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+25,student,single,high.school,no,no,no,cellular,apr,wed,442,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+25,student,single,high.school,no,no,no,cellular,apr,wed,54,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+30,admin.,married,university.degree,no,no,no,cellular,apr,wed,1038,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+33,admin.,single,university.degree,no,yes,yes,telephone,apr,wed,117,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+31,admin.,single,university.degree,no,no,no,telephone,apr,wed,85,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+55,blue-collar,single,basic.4y,no,yes,no,cellular,apr,wed,171,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+37,services,married,basic.9y,no,yes,no,cellular,apr,wed,103,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+33,blue-collar,married,basic.9y,no,no,no,cellular,apr,wed,397,2,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+51,management,married,unknown,no,yes,no,cellular,apr,wed,309,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,apr,wed,142,5,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+56,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,wed,185,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+30,admin.,married,university.degree,no,no,no,cellular,apr,wed,520,3,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+66,retired,married,basic.4y,no,no,yes,cellular,apr,wed,139,5,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,yes
+30,management,single,university.degree,no,no,no,cellular,apr,wed,244,3,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+45,management,married,university.degree,no,no,no,telephone,apr,wed,221,4,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+54,blue-collar,married,basic.4y,no,no,no,cellular,apr,wed,266,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+43,blue-collar,married,basic.6y,no,no,no,cellular,apr,wed,623,2,999,2,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+71,retired,married,high.school,no,yes,no,cellular,apr,wed,162,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+39,technician,single,professional.course,no,yes,no,cellular,apr,wed,80,3,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no
+40,blue-collar,single,basic.4y,unknown,no,no,cellular,apr,wed,158,2,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+39,technician,single,professional.course,no,no,no,cellular,apr,wed,540,3,9,1,success,-1.8,93.075,-47.1,1.415,5099.1,no
+55,admin.,married,high.school,no,yes,no,cellular,apr,wed,140,3,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no
+41,services,single,high.school,no,yes,yes,cellular,apr,wed,264,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+36,management,married,university.degree,no,no,no,cellular,apr,wed,353,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes
+51,entrepreneur,married,illiterate,no,no,no,cellular,apr,thu,87,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+51,entrepreneur,married,illiterate,no,yes,no,cellular,apr,thu,838,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+63,retired,married,unknown,no,yes,no,cellular,apr,thu,144,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+26,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,78,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+42,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,55,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+47,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,206,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+30,admin.,married,high.school,unknown,yes,no,cellular,apr,thu,648,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+26,blue-collar,married,basic.9y,no,yes,yes,cellular,apr,thu,251,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+39,management,single,university.degree,unknown,no,no,cellular,apr,thu,370,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+26,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,334,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+35,services,married,high.school,no,yes,no,cellular,apr,thu,137,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+29,admin.,married,university.degree,no,yes,yes,telephone,apr,thu,122,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+39,management,single,university.degree,unknown,yes,no,telephone,apr,thu,75,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+57,technician,married,university.degree,no,yes,no,cellular,apr,thu,836,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+40,entrepreneur,married,professional.course,unknown,yes,no,cellular,apr,thu,176,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+29,admin.,single,university.degree,no,no,no,cellular,apr,thu,271,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+33,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,827,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+38,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,218,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+38,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,thu,258,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+64,retired,married,basic.6y,no,yes,no,cellular,apr,thu,67,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+57,retired,married,basic.4y,no,no,no,cellular,apr,thu,199,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+29,admin.,single,university.degree,no,no,no,cellular,apr,thu,71,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+48,blue-collar,married,basic.4y,no,no,yes,cellular,apr,thu,220,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,apr,thu,124,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+42,services,married,high.school,unknown,yes,yes,cellular,apr,thu,243,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+52,services,divorced,high.school,no,no,no,cellular,apr,thu,198,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+54,entrepreneur,divorced,unknown,no,no,yes,cellular,apr,thu,461,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+45,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,82,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+37,entrepreneur,married,professional.course,no,no,no,cellular,apr,thu,284,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+52,retired,married,basic.4y,unknown,no,no,cellular,apr,thu,204,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+31,technician,married,university.degree,no,yes,no,cellular,apr,thu,35,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+52,blue-collar,divorced,basic.4y,no,yes,no,cellular,apr,thu,291,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+27,services,single,university.degree,no,yes,no,cellular,apr,thu,201,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+27,services,single,university.degree,no,yes,no,cellular,apr,thu,297,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+27,services,single,university.degree,no,yes,no,cellular,apr,thu,384,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+35,admin.,married,university.degree,no,no,no,cellular,apr,thu,250,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+45,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,thu,479,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+40,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,thu,324,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+44,entrepreneur,divorced,university.degree,no,no,no,cellular,apr,thu,404,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+27,blue-collar,single,basic.4y,no,yes,no,cellular,apr,thu,156,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+27,blue-collar,single,basic.4y,no,yes,no,cellular,apr,thu,240,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+43,services,married,high.school,no,no,no,cellular,apr,thu,60,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+36,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,thu,403,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,114,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+42,blue-collar,married,basic.4y,no,yes,yes,cellular,apr,thu,35,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,188,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+45,entrepreneur,married,basic.4y,unknown,yes,no,cellular,apr,thu,618,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+27,blue-collar,single,basic.4y,no,yes,no,cellular,apr,thu,528,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+54,blue-collar,married,basic.4y,no,no,no,cellular,apr,thu,104,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+27,blue-collar,single,basic.4y,no,no,no,cellular,apr,thu,622,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,583,1,5,1,success,-1.8,93.075,-47.1,1.41,5099.1,yes
+44,technician,divorced,professional.course,unknown,yes,no,cellular,apr,thu,18,3,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+24,management,single,university.degree,no,yes,no,cellular,apr,thu,91,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+54,blue-collar,married,basic.4y,no,yes,no,cellular,apr,thu,743,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+40,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,thu,283,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+44,technician,divorced,professional.course,unknown,yes,no,cellular,apr,thu,172,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+31,blue-collar,married,basic.4y,no,yes,no,cellular,apr,thu,39,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+52,blue-collar,divorced,basic.4y,no,no,no,cellular,apr,thu,474,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+29,admin.,single,high.school,no,yes,no,cellular,apr,thu,275,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,apr,thu,361,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+24,management,single,university.degree,no,yes,no,cellular,apr,thu,124,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+44,blue-collar,married,high.school,unknown,yes,no,cellular,apr,thu,253,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+29,blue-collar,single,basic.9y,no,unknown,unknown,cellular,apr,thu,350,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+46,technician,married,professional.course,no,yes,no,cellular,apr,thu,309,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+54,management,married,university.degree,no,no,no,cellular,apr,thu,339,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+26,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,77,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+37,admin.,married,university.degree,no,no,no,cellular,apr,thu,58,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+40,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,thu,125,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+35,admin.,married,professional.course,no,no,yes,cellular,apr,thu,34,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+27,blue-collar,single,basic.4y,no,yes,no,cellular,apr,thu,191,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+45,services,divorced,basic.4y,no,no,yes,cellular,apr,thu,1579,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,yes
+40,services,married,high.school,no,yes,no,cellular,apr,thu,228,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+41,blue-collar,married,basic.4y,no,no,no,cellular,apr,thu,316,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+43,management,married,unknown,unknown,no,no,cellular,apr,thu,177,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+43,management,married,unknown,unknown,no,yes,cellular,apr,thu,35,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,apr,thu,495,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+51,blue-collar,married,basic.6y,no,yes,no,cellular,apr,thu,150,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+37,admin.,single,high.school,no,no,no,cellular,apr,thu,617,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+35,admin.,single,high.school,no,yes,no,cellular,apr,thu,352,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+37,technician,divorced,professional.course,no,yes,no,cellular,apr,thu,211,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+50,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,thu,99,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+59,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,177,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+38,entrepreneur,married,university.degree,unknown,yes,no,cellular,apr,thu,137,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+39,blue-collar,married,unknown,unknown,no,no,cellular,apr,thu,156,1,9,1,success,-1.8,93.075,-47.1,1.41,5099.1,no
+45,blue-collar,married,unknown,no,yes,no,cellular,apr,thu,268,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+31,technician,single,professional.course,no,yes,no,cellular,apr,thu,270,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+56,admin.,married,basic.9y,no,no,no,cellular,apr,thu,94,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+38,technician,married,professional.course,no,yes,no,cellular,apr,thu,54,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+32,admin.,single,university.degree,no,no,no,cellular,apr,thu,670,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+47,admin.,single,high.school,no,no,no,cellular,apr,thu,1025,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+46,self-employed,divorced,basic.9y,no,yes,yes,cellular,apr,thu,168,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+47,admin.,single,high.school,no,yes,yes,cellular,apr,thu,1122,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+55,management,married,basic.4y,unknown,no,no,cellular,apr,thu,98,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+43,management,married,unknown,unknown,no,no,cellular,apr,thu,75,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+26,admin.,single,university.degree,no,unknown,unknown,cellular,apr,thu,176,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+36,blue-collar,married,unknown,no,yes,yes,cellular,apr,thu,90,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,172,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+41,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,884,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+29,admin.,single,university.degree,no,no,no,cellular,apr,thu,298,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+69,retired,married,unknown,no,no,no,cellular,apr,thu,117,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+36,blue-collar,married,unknown,no,no,no,cellular,apr,thu,1174,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+27,admin.,single,high.school,no,no,no,cellular,apr,thu,229,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+27,admin.,single,high.school,no,no,no,cellular,apr,thu,284,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+44,blue-collar,married,basic.6y,no,yes,no,telephone,apr,thu,272,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+19,student,single,basic.9y,no,no,no,cellular,apr,thu,165,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,thu,244,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+70,retired,married,unknown,no,yes,no,cellular,apr,thu,346,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+47,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,150,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+20,student,single,high.school,no,yes,no,telephone,apr,thu,80,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+31,blue-collar,married,basic.9y,no,yes,yes,cellular,apr,thu,126,2,999,2,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+47,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,693,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+33,blue-collar,divorced,basic.9y,unknown,no,no,cellular,apr,thu,129,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,apr,thu,83,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+38,services,married,high.school,no,yes,no,cellular,apr,thu,144,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,257,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+50,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,1463,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+42,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,thu,76,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+33,technician,married,professional.course,no,no,no,cellular,apr,thu,285,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+37,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,218,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+34,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,thu,570,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,apr,thu,174,2,999,2,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+29,blue-collar,single,basic.9y,no,unknown,unknown,cellular,apr,thu,462,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+26,student,single,university.degree,no,yes,no,cellular,apr,thu,76,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+45,entrepreneur,married,basic.4y,unknown,no,no,cellular,apr,thu,281,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+37,admin.,married,professional.course,no,yes,no,cellular,apr,thu,1087,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+44,blue-collar,married,basic.4y,no,yes,no,cellular,apr,thu,178,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+33,technician,married,professional.course,no,no,yes,cellular,apr,thu,667,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+37,technician,divorced,professional.course,no,yes,no,cellular,apr,thu,62,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+29,admin.,divorced,basic.9y,no,yes,no,cellular,apr,thu,114,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+41,services,married,high.school,no,yes,no,cellular,apr,thu,60,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+47,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,563,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+35,unemployed,married,professional.course,no,yes,no,cellular,apr,thu,79,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+53,services,divorced,high.school,unknown,yes,no,cellular,apr,thu,198,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+38,admin.,married,high.school,no,yes,no,cellular,apr,thu,118,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+27,admin.,single,high.school,no,no,no,cellular,apr,thu,314,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+28,blue-collar,single,basic.9y,unknown,yes,no,cellular,apr,thu,241,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+53,services,divorced,high.school,unknown,no,yes,cellular,apr,thu,653,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+59,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,66,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+40,management,married,basic.6y,no,yes,no,cellular,apr,thu,77,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+24,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,178,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+24,admin.,single,university.degree,no,yes,no,cellular,apr,thu,127,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+33,services,single,basic.9y,no,yes,no,cellular,apr,thu,483,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,apr,thu,308,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+49,management,married,university.degree,no,no,no,cellular,apr,thu,289,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+49,management,married,university.degree,no,yes,no,cellular,apr,thu,44,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+34,technician,married,university.degree,no,yes,yes,cellular,apr,thu,168,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+32,technician,married,university.degree,no,no,no,telephone,apr,thu,130,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+70,retired,married,unknown,no,yes,yes,cellular,apr,thu,96,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+34,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,thu,249,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+24,admin.,single,university.degree,no,yes,no,telephone,apr,thu,100,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+29,services,single,basic.9y,unknown,yes,no,cellular,apr,thu,105,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+30,admin.,single,high.school,no,no,no,cellular,apr,thu,75,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+56,services,divorced,high.school,unknown,yes,no,cellular,apr,thu,144,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+46,blue-collar,married,basic.4y,no,no,no,cellular,apr,thu,357,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+46,entrepreneur,married,university.degree,no,yes,yes,cellular,apr,thu,285,5,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+37,admin.,married,professional.course,no,yes,yes,cellular,apr,thu,700,5,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+45,blue-collar,married,basic.4y,no,no,no,cellular,apr,thu,257,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+39,admin.,married,high.school,no,yes,no,cellular,apr,thu,487,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+48,services,divorced,high.school,unknown,no,no,cellular,apr,thu,235,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+41,services,single,university.degree,no,no,no,cellular,apr,thu,290,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+31,admin.,married,high.school,no,no,no,cellular,apr,thu,125,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+50,unemployed,married,basic.4y,unknown,yes,no,cellular,apr,thu,241,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+55,blue-collar,married,basic.4y,no,yes,yes,cellular,apr,thu,772,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+32,blue-collar,divorced,basic.4y,no,no,no,cellular,apr,thu,657,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+29,admin.,single,high.school,no,yes,yes,cellular,apr,thu,123,3,9,1,success,-1.8,93.075,-47.1,1.41,5099.1,no
+37,entrepreneur,married,professional.course,no,no,no,cellular,apr,thu,255,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+46,technician,married,university.degree,no,yes,no,cellular,apr,thu,375,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,apr,thu,386,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+53,management,married,high.school,no,yes,no,cellular,apr,thu,280,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+32,blue-collar,married,basic.4y,no,no,no,cellular,apr,thu,772,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+42,admin.,divorced,high.school,no,no,no,cellular,apr,thu,380,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+38,admin.,married,high.school,no,yes,no,cellular,apr,thu,302,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+47,admin.,married,basic.6y,unknown,yes,no,cellular,apr,thu,399,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+46,self-employed,divorced,basic.9y,no,yes,no,cellular,apr,thu,453,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+45,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,567,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+40,services,single,high.school,no,yes,no,cellular,apr,thu,91,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+37,technician,single,high.school,no,yes,no,cellular,apr,thu,44,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+24,management,single,university.degree,no,no,no,cellular,apr,thu,640,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+38,services,married,basic.9y,no,yes,no,cellular,apr,thu,417,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+50,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,1365,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,yes
+40,admin.,divorced,university.degree,no,yes,no,cellular,apr,thu,194,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+31,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,thu,176,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+28,technician,single,professional.course,no,unknown,unknown,cellular,apr,thu,71,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+37,technician,single,high.school,no,yes,no,telephone,apr,thu,63,2,999,2,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+39,admin.,divorced,high.school,no,yes,yes,cellular,apr,thu,433,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+42,entrepreneur,married,basic.9y,no,no,yes,cellular,apr,thu,127,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+52,retired,married,basic.4y,unknown,yes,yes,cellular,apr,thu,449,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+32,services,single,high.school,no,no,no,cellular,apr,thu,472,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+39,services,single,high.school,no,yes,no,cellular,apr,thu,1007,3,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+33,technician,married,professional.course,no,no,yes,cellular,apr,thu,383,3,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+41,blue-collar,divorced,basic.4y,no,yes,no,cellular,apr,thu,256,3,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+36,blue-collar,single,high.school,no,yes,no,telephone,apr,thu,668,3,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+36,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,211,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+24,blue-collar,married,professional.course,unknown,no,no,cellular,apr,thu,348,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+44,admin.,married,high.school,no,no,no,cellular,apr,thu,792,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+41,blue-collar,married,high.school,no,no,yes,telephone,apr,thu,55,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+47,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,282,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+27,admin.,single,high.school,no,no,no,telephone,apr,thu,198,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,104,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+45,technician,single,professional.course,no,no,no,cellular,apr,thu,370,3,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+50,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,thu,1285,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+28,technician,single,high.school,no,yes,yes,cellular,apr,thu,48,4,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+41,blue-collar,divorced,basic.4y,no,no,yes,cellular,apr,thu,316,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+38,technician,divorced,high.school,no,yes,yes,cellular,apr,thu,279,3,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+33,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,225,1,5,1,success,-1.8,93.075,-47.1,1.41,5099.1,no
+56,admin.,married,basic.9y,no,yes,no,cellular,apr,thu,299,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+47,blue-collar,married,basic.9y,no,yes,no,telephone,apr,thu,193,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+44,admin.,single,high.school,no,yes,no,cellular,apr,thu,804,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+55,admin.,married,university.degree,no,yes,no,cellular,apr,thu,211,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,apr,thu,274,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+31,admin.,married,high.school,no,yes,no,cellular,apr,thu,399,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+38,entrepreneur,married,basic.4y,unknown,yes,no,cellular,apr,thu,691,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+28,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,344,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+30,blue-collar,married,basic.9y,no,yes,no,telephone,apr,thu,426,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+25,student,single,university.degree,no,no,no,cellular,apr,thu,539,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+40,services,married,high.school,no,no,no,cellular,apr,thu,161,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+44,management,married,university.degree,no,yes,no,cellular,apr,thu,137,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+44,entrepreneur,divorced,university.degree,no,yes,no,cellular,apr,thu,580,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+50,services,single,basic.6y,unknown,no,no,cellular,apr,thu,119,1,10,1,success,-1.8,93.075,-47.1,1.41,5099.1,no
+45,services,divorced,basic.4y,no,no,no,cellular,apr,thu,296,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+40,management,married,basic.6y,no,yes,no,cellular,apr,thu,179,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+50,services,single,basic.6y,unknown,no,no,cellular,apr,thu,169,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+50,services,single,basic.6y,unknown,yes,no,cellular,apr,thu,429,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+28,technician,married,basic.9y,no,yes,no,cellular,apr,thu,137,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+36,blue-collar,married,unknown,no,yes,no,cellular,apr,thu,466,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+28,technician,married,basic.9y,no,no,no,cellular,apr,thu,263,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+28,technician,married,basic.9y,no,yes,no,cellular,apr,thu,75,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+23,blue-collar,single,basic.4y,no,yes,no,telephone,apr,thu,287,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+43,management,married,university.degree,unknown,no,no,cellular,apr,thu,176,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+28,technician,married,basic.9y,no,no,no,cellular,apr,thu,442,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+44,blue-collar,married,basic.6y,no,yes,no,cellular,apr,thu,304,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+55,management,married,basic.4y,unknown,no,no,cellular,apr,thu,594,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+28,technician,married,basic.9y,no,yes,no,cellular,apr,thu,772,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+30,services,married,high.school,no,no,no,cellular,apr,thu,647,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+45,blue-collar,married,unknown,no,yes,no,cellular,apr,thu,263,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+25,student,married,university.degree,no,yes,yes,telephone,apr,thu,127,7,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+47,entrepreneur,divorced,high.school,no,no,no,cellular,apr,thu,71,5,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+45,blue-collar,married,unknown,no,yes,no,cellular,apr,thu,432,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+59,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,332,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+45,blue-collar,married,unknown,no,no,no,cellular,apr,thu,829,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+45,blue-collar,married,unknown,no,yes,yes,cellular,apr,thu,614,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+45,blue-collar,married,unknown,no,yes,no,cellular,apr,thu,797,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+31,student,single,unknown,unknown,no,no,cellular,apr,thu,102,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+29,blue-collar,single,basic.6y,no,yes,yes,cellular,apr,thu,1410,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+45,blue-collar,married,unknown,no,yes,no,cellular,apr,thu,944,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,yes
+31,student,single,unknown,unknown,no,yes,cellular,apr,thu,246,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,234,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+26,student,single,university.degree,no,no,yes,cellular,apr,thu,551,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes
+31,student,single,unknown,unknown,yes,no,cellular,apr,thu,427,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,340,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no
+42,blue-collar,married,basic.4y,no,no,yes,cellular,apr,thu,579,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+47,services,married,basic.9y,no,yes,no,cellular,apr,thu,561,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+31,student,single,unknown,unknown,yes,no,cellular,apr,thu,1156,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,yes
+39,blue-collar,married,unknown,unknown,yes,no,cellular,apr,thu,307,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no
+43,admin.,single,high.school,no,yes,no,cellular,apr,fri,192,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+42,entrepreneur,married,university.degree,unknown,no,no,cellular,apr,fri,46,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,management,married,basic.9y,no,no,yes,cellular,apr,fri,71,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,single,basic.9y,unknown,yes,no,telephone,apr,fri,109,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+51,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,fri,35,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+42,admin.,single,high.school,no,no,no,cellular,apr,fri,377,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+51,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,fri,81,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,single,professional.course,no,no,no,cellular,apr,fri,360,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,admin.,single,high.school,no,yes,no,cellular,apr,fri,141,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,apr,fri,430,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,single,basic.9y,no,no,no,cellular,apr,fri,282,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,technician,married,professional.course,unknown,yes,no,cellular,apr,fri,260,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,admin.,married,university.degree,unknown,no,no,cellular,apr,fri,226,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,fri,164,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,married,basic.4y,no,no,yes,cellular,apr,fri,125,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,admin.,divorced,high.school,no,no,no,cellular,apr,fri,620,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,technician,married,professional.course,no,no,no,cellular,apr,fri,141,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,fri,557,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+48,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,50,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,married,high.school,unknown,yes,no,cellular,apr,fri,222,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,married,unknown,no,yes,no,cellular,apr,fri,434,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,married,basic.4y,no,no,no,cellular,apr,fri,180,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+19,student,single,unknown,no,yes,no,cellular,apr,fri,156,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+45,management,married,university.degree,no,yes,no,cellular,apr,fri,345,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+25,technician,single,university.degree,no,no,no,cellular,apr,fri,118,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+48,admin.,divorced,unknown,no,no,no,cellular,apr,fri,85,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,blue-collar,married,basic.6y,no,yes,no,cellular,apr,fri,233,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,management,married,university.degree,no,yes,yes,cellular,apr,fri,249,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,services,single,high.school,no,yes,no,cellular,apr,fri,179,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,entrepreneur,married,basic.9y,no,yes,yes,cellular,apr,fri,52,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,self-employed,married,basic.9y,no,no,no,cellular,apr,fri,112,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+42,admin.,single,high.school,no,yes,no,cellular,apr,fri,392,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,blue-collar,married,unknown,unknown,yes,no,cellular,apr,fri,113,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,119,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+28,student,married,university.degree,unknown,yes,no,telephone,apr,fri,98,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,entrepreneur,married,university.degree,no,no,no,cellular,apr,fri,85,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+57,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,515,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,services,married,high.school,unknown,no,no,cellular,apr,fri,402,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+54,services,married,high.school,unknown,no,no,cellular,apr,fri,408,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,technician,divorced,basic.9y,no,yes,no,cellular,apr,fri,76,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+28,student,married,university.degree,unknown,no,no,cellular,apr,fri,224,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+36,services,married,high.school,unknown,yes,yes,cellular,apr,fri,294,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+54,retired,married,basic.4y,no,yes,no,cellular,apr,fri,420,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+28,student,married,university.degree,unknown,yes,no,cellular,apr,fri,346,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+55,admin.,married,basic.4y,no,no,no,cellular,apr,fri,198,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,entrepreneur,married,university.degree,no,yes,yes,cellular,apr,fri,108,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,admin.,married,high.school,no,no,no,cellular,apr,fri,238,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+55,admin.,married,basic.4y,no,yes,no,cellular,apr,fri,548,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+59,admin.,divorced,university.degree,no,yes,no,cellular,apr,fri,416,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,technician,married,professional.course,no,yes,no,cellular,apr,fri,86,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+48,blue-collar,married,basic.6y,unknown,no,no,cellular,apr,fri,599,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,210,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,blue-collar,divorced,basic.6y,no,yes,no,cellular,apr,fri,344,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,admin.,married,high.school,no,yes,yes,cellular,apr,fri,329,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,self-employed,married,basic.4y,unknown,yes,no,cellular,apr,fri,236,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,management,single,university.degree,no,no,no,cellular,apr,fri,82,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,management,married,university.degree,no,yes,no,cellular,apr,fri,416,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,612,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+39,management,married,basic.6y,no,yes,no,cellular,apr,fri,177,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,admin.,single,university.degree,no,no,no,cellular,apr,fri,678,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+43,blue-collar,married,basic.6y,no,no,yes,cellular,apr,fri,150,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,199,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+47,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,112,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,management,married,basic.6y,no,yes,no,cellular,apr,fri,704,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,blue-collar,married,basic.6y,no,yes,no,cellular,apr,fri,372,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,135,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,486,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+32,management,single,university.degree,no,yes,no,cellular,apr,fri,709,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+50,unemployed,married,basic.4y,unknown,yes,no,cellular,apr,fri,71,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,462,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,admin.,divorced,high.school,no,no,no,cellular,apr,fri,156,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,admin.,married,university.degree,no,no,no,cellular,apr,fri,203,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,77,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+36,entrepreneur,married,university.degree,no,yes,no,cellular,apr,fri,486,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,single,high.school,no,yes,no,cellular,apr,fri,341,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+48,services,single,high.school,no,yes,no,cellular,apr,fri,267,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+33,technician,single,high.school,no,no,no,cellular,apr,fri,1017,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+41,unemployed,married,basic.9y,unknown,yes,no,telephone,apr,fri,246,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+57,services,married,basic.9y,unknown,yes,no,cellular,apr,fri,185,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,self-employed,married,basic.9y,no,yes,no,cellular,apr,fri,313,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,apr,fri,115,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,professional.course,no,yes,no,cellular,apr,fri,377,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,135,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+30,services,single,high.school,unknown,yes,no,cellular,apr,fri,451,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,technician,single,university.degree,no,yes,no,cellular,apr,fri,351,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+39,management,married,university.degree,no,yes,no,cellular,apr,fri,126,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,technician,single,university.degree,no,yes,no,cellular,apr,fri,456,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+39,management,married,university.degree,no,yes,no,cellular,apr,fri,306,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+25,admin.,single,high.school,no,no,no,cellular,apr,fri,178,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,management,married,university.degree,unknown,no,yes,cellular,apr,fri,76,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,technician,married,professional.course,no,no,no,cellular,apr,fri,292,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,divorced,basic.4y,no,yes,no,cellular,apr,fri,406,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+44,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,239,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+40,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,514,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,admin.,single,high.school,no,no,no,telephone,apr,fri,51,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,technician,married,professional.course,no,yes,no,cellular,apr,fri,1095,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+44,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,468,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,technician,divorced,professional.course,no,yes,no,cellular,apr,fri,172,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,technician,divorced,professional.course,no,yes,no,cellular,apr,fri,122,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+19,student,single,unknown,no,yes,no,cellular,apr,fri,452,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+34,technician,divorced,professional.course,no,no,no,cellular,apr,fri,185,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,admin.,married,basic.9y,no,yes,no,cellular,apr,fri,196,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,admin.,married,high.school,no,yes,no,cellular,apr,fri,88,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,technician,single,university.degree,no,yes,no,cellular,apr,fri,31,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+29,entrepreneur,single,university.degree,no,yes,yes,cellular,apr,fri,268,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,management,married,high.school,unknown,yes,no,cellular,apr,fri,143,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+53,management,married,university.degree,no,yes,no,cellular,apr,fri,111,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,fri,357,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,services,married,high.school,no,no,no,cellular,apr,fri,151,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,unknown,unknown,yes,no,cellular,apr,fri,400,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,admin.,married,unknown,no,no,no,cellular,apr,fri,952,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+34,housemaid,divorced,university.degree,no,yes,yes,cellular,apr,fri,73,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+49,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,832,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,basic.9y,unknown,no,yes,cellular,apr,fri,251,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,married,unknown,unknown,yes,no,cellular,apr,fri,303,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,services,married,high.school,no,yes,no,cellular,apr,fri,101,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+46,management,married,university.degree,unknown,no,no,cellular,apr,fri,79,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,basic.6y,no,yes,no,cellular,apr,fri,113,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+46,management,married,university.degree,unknown,yes,no,cellular,apr,fri,268,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,unknown,no,no,no,cellular,apr,fri,172,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+48,admin.,single,university.degree,no,yes,no,cellular,apr,fri,237,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,admin.,married,high.school,unknown,no,yes,cellular,apr,fri,517,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,management,married,university.degree,unknown,no,no,cellular,apr,fri,981,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,retired,married,basic.4y,no,yes,no,cellular,apr,fri,531,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,fri,158,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,married,unknown,no,no,no,cellular,apr,fri,106,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+49,management,married,university.degree,no,yes,no,cellular,apr,fri,58,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+53,admin.,single,basic.6y,unknown,no,yes,cellular,apr,fri,351,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,entrepreneur,married,basic.9y,no,no,no,cellular,apr,fri,299,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,69,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+44,blue-collar,married,basic.9y,unknown,yes,yes,cellular,apr,fri,418,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,basic.9y,no,no,yes,cellular,apr,fri,351,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,admin.,divorced,high.school,no,no,no,cellular,apr,fri,471,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,47,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,fri,264,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+42,admin.,divorced,high.school,no,yes,yes,cellular,apr,fri,57,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,technician,married,professional.course,unknown,yes,no,cellular,apr,fri,53,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,admin.,single,high.school,no,yes,no,cellular,apr,fri,183,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+40,blue-collar,single,basic.6y,unknown,no,no,cellular,apr,fri,139,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+24,services,single,high.school,no,yes,no,cellular,apr,fri,515,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,blue-collar,single,basic.6y,unknown,no,no,cellular,apr,fri,289,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,technician,married,professional.course,no,no,no,cellular,apr,fri,132,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,divorced,basic.9y,no,yes,yes,cellular,apr,fri,83,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,retired,married,basic.4y,no,yes,no,cellular,apr,fri,840,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+44,blue-collar,married,high.school,no,yes,no,cellular,apr,fri,921,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+55,management,married,university.degree,no,no,no,cellular,apr,fri,519,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,single,high.school,no,yes,yes,cellular,apr,fri,299,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+57,admin.,divorced,high.school,no,yes,no,cellular,apr,fri,97,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,services,married,high.school,no,yes,no,cellular,apr,fri,84,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,married,university.degree,no,yes,no,cellular,apr,fri,73,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,management,married,university.degree,unknown,yes,yes,cellular,apr,fri,307,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,admin.,divorced,high.school,no,yes,no,cellular,apr,fri,1311,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+24,technician,divorced,professional.course,no,yes,no,cellular,apr,fri,107,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+48,services,married,high.school,no,yes,no,cellular,apr,fri,193,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+55,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,248,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+55,admin.,divorced,unknown,no,no,no,cellular,apr,fri,386,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+24,technician,divorced,professional.course,no,no,no,cellular,apr,fri,332,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+47,admin.,married,high.school,unknown,unknown,unknown,cellular,apr,fri,499,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,unemployed,married,basic.9y,unknown,yes,no,cellular,apr,fri,71,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+45,management,married,university.degree,no,yes,yes,cellular,apr,fri,362,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,unemployed,married,basic.9y,unknown,no,no,cellular,apr,fri,181,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,technician,single,high.school,no,no,no,cellular,apr,fri,161,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,334,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,blue-collar,married,high.school,no,no,no,cellular,apr,fri,997,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+38,technician,single,high.school,no,yes,no,cellular,apr,fri,183,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+56,self-employed,divorced,university.degree,unknown,no,no,telephone,apr,fri,42,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,admin.,married,university.degree,no,unknown,unknown,cellular,apr,fri,462,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,professional.course,unknown,yes,no,cellular,apr,fri,74,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+47,management,married,high.school,no,unknown,unknown,cellular,apr,fri,234,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+47,management,married,high.school,no,no,yes,cellular,apr,fri,245,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+30,technician,single,high.school,no,yes,no,cellular,apr,fri,218,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+44,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,fri,574,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+19,student,single,unknown,no,yes,no,telephone,apr,fri,1161,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,services,married,basic.6y,no,no,yes,cellular,apr,fri,754,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,admin.,married,professional.course,no,no,no,cellular,apr,fri,609,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+36,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,apr,fri,235,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,technician,married,university.degree,no,no,no,cellular,apr,fri,146,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+55,admin.,married,high.school,no,no,no,cellular,apr,fri,518,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+44,management,married,professional.course,no,yes,no,cellular,apr,fri,345,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,blue-collar,married,high.school,unknown,unknown,unknown,cellular,apr,fri,239,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+32,admin.,married,high.school,no,yes,yes,cellular,apr,fri,218,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+26,admin.,single,university.degree,no,no,no,telephone,apr,fri,52,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,admin.,single,university.degree,no,no,no,telephone,apr,fri,82,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,single,high.school,no,no,no,cellular,apr,fri,140,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,admin.,single,high.school,no,no,no,cellular,apr,fri,68,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,services,single,high.school,no,no,no,cellular,apr,fri,707,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+41,management,married,university.degree,no,yes,no,cellular,apr,fri,212,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,technician,married,professional.course,no,yes,no,cellular,apr,fri,51,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,apr,fri,156,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+47,technician,divorced,university.degree,no,no,no,cellular,apr,fri,53,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,blue-collar,married,unknown,no,no,no,cellular,apr,fri,193,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,management,married,university.degree,no,yes,no,telephone,apr,fri,198,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+19,student,single,unknown,no,no,no,cellular,apr,fri,108,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,services,married,high.school,no,yes,no,telephone,apr,fri,137,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,9,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,technician,married,professional.course,unknown,no,no,cellular,apr,fri,92,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,admin.,divorced,university.degree,no,yes,no,cellular,apr,fri,882,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+48,blue-collar,married,basic.6y,unknown,no,no,cellular,apr,fri,576,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+45,admin.,married,high.school,no,no,no,cellular,apr,fri,191,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,98,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,single,high.school,no,yes,no,telephone,apr,fri,777,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,married,university.degree,no,yes,no,cellular,apr,fri,161,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,divorced,high.school,no,yes,no,cellular,apr,fri,117,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,management,married,basic.9y,no,yes,no,cellular,apr,fri,329,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+55,admin.,married,basic.4y,no,no,no,cellular,apr,fri,155,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+55,admin.,married,basic.4y,no,no,yes,cellular,apr,fri,106,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,apr,fri,76,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,apr,fri,1007,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+33,admin.,single,university.degree,no,yes,no,cellular,apr,fri,382,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,married,unknown,no,yes,no,cellular,apr,fri,496,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,services,married,high.school,no,no,no,cellular,apr,fri,464,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,management,married,university.degree,no,no,yes,cellular,apr,fri,82,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,fri,343,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,entrepreneur,married,basic.9y,no,no,no,cellular,apr,fri,75,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,admin.,single,university.degree,unknown,no,yes,cellular,apr,fri,526,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+37,blue-collar,married,basic.9y,no,yes,yes,cellular,apr,fri,43,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+55,services,married,high.school,unknown,yes,no,cellular,apr,fri,45,7,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,technician,married,professional.course,unknown,no,no,cellular,apr,fri,1624,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+33,blue-collar,married,basic.4y,no,no,no,cellular,apr,fri,95,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,services,married,high.school,no,no,yes,cellular,apr,fri,175,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,208,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+39,services,married,high.school,unknown,yes,no,cellular,apr,fri,87,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+53,blue-collar,married,basic.9y,no,no,yes,telephone,apr,fri,26,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,218,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,342,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+28,blue-collar,married,basic.9y,unknown,yes,no,telephone,apr,fri,254,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,admin.,single,university.degree,no,no,yes,cellular,apr,fri,85,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+28,technician,single,university.degree,no,yes,no,cellular,apr,fri,73,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,fri,145,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,admin.,married,high.school,no,yes,yes,cellular,apr,fri,171,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,technician,married,professional.course,no,yes,no,cellular,apr,fri,372,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,technician,married,professional.course,no,yes,no,cellular,apr,fri,108,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+56,blue-collar,married,basic.4y,no,no,no,cellular,apr,fri,153,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+30,self-employed,married,university.degree,no,no,yes,cellular,apr,fri,138,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,married,basic.9y,no,no,yes,cellular,apr,fri,175,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,professional.course,unknown,no,no,cellular,apr,fri,247,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,technician,married,professional.course,no,no,yes,cellular,apr,fri,404,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+26,technician,single,professional.course,no,yes,no,cellular,apr,fri,362,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+39,services,divorced,basic.6y,no,no,no,cellular,apr,fri,286,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+40,technician,married,professional.course,no,no,no,cellular,apr,fri,316,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,professional.course,unknown,yes,no,cellular,apr,fri,251,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,professional.course,unknown,no,no,cellular,apr,fri,370,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+44,admin.,married,university.degree,no,yes,yes,cellular,apr,fri,274,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+48,admin.,married,university.degree,no,no,no,cellular,apr,fri,324,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,management,married,university.degree,no,yes,yes,cellular,apr,fri,206,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,admin.,single,high.school,no,yes,no,cellular,apr,fri,191,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,367,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+43,management,married,university.degree,unknown,yes,no,telephone,apr,fri,141,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,divorced,basic.9y,no,no,no,cellular,apr,fri,200,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+27,unemployed,single,basic.9y,no,yes,no,cellular,apr,fri,279,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,self-employed,married,basic.9y,no,no,no,cellular,apr,fri,214,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,single,professional.course,no,no,no,cellular,apr,fri,122,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,admin.,divorced,university.degree,no,yes,no,cellular,apr,fri,649,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,blue-collar,single,basic.9y,no,yes,no,cellular,apr,fri,14,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,management,married,university.degree,no,unknown,unknown,cellular,apr,fri,397,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,retired,married,basic.4y,no,yes,no,cellular,apr,fri,263,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+19,student,single,unknown,no,yes,yes,cellular,apr,fri,72,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,management,married,university.degree,no,no,no,cellular,apr,fri,433,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,407,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,married,unknown,no,no,no,cellular,apr,fri,278,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,216,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,admin.,married,high.school,no,yes,no,cellular,apr,fri,33,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,unemployed,single,basic.9y,no,yes,no,cellular,apr,fri,55,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,single,basic.9y,no,no,no,cellular,apr,fri,419,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,admin.,married,high.school,no,yes,no,cellular,apr,fri,113,2,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,157,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+49,management,married,university.degree,no,yes,yes,cellular,apr,fri,40,8,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,technician,single,professional.course,no,yes,no,cellular,apr,fri,53,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+53,admin.,married,basic.6y,no,yes,no,cellular,apr,fri,100,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,married,unknown,no,yes,yes,cellular,apr,fri,637,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,services,married,high.school,no,yes,no,cellular,apr,fri,317,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,admin.,single,high.school,no,no,no,cellular,apr,fri,294,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,entrepreneur,married,university.degree,no,no,yes,cellular,apr,fri,77,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,technician,married,university.degree,no,yes,no,cellular,apr,fri,492,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,70,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+55,retired,married,high.school,no,no,no,cellular,apr,fri,401,1,8,1,success,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,238,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,entrepreneur,married,university.degree,no,yes,yes,telephone,apr,fri,130,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+35,blue-collar,divorced,basic.6y,no,yes,no,cellular,apr,fri,212,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,services,married,high.school,no,yes,no,cellular,apr,fri,36,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,blue-collar,married,basic.6y,no,yes,no,cellular,apr,fri,611,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,fri,359,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,services,married,high.school,no,no,no,cellular,apr,fri,280,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,services,divorced,high.school,no,yes,yes,cellular,apr,fri,107,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,654,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+58,unemployed,married,basic.9y,unknown,no,no,cellular,apr,fri,834,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,services,single,unknown,no,no,no,cellular,apr,fri,345,1,6,1,success,-1.8,93.075,-47.1,1.405,5099.1,yes
+39,blue-collar,married,unknown,no,no,no,cellular,apr,fri,79,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+22,admin.,married,high.school,no,yes,yes,cellular,apr,fri,156,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,admin.,single,professional.course,no,yes,yes,cellular,apr,fri,41,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,self-employed,married,basic.6y,no,no,no,cellular,apr,fri,211,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,technician,married,professional.course,no,no,no,cellular,apr,fri,54,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,blue-collar,single,high.school,no,yes,no,cellular,apr,fri,1080,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+38,technician,single,university.degree,no,no,no,cellular,apr,fri,301,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,unknown,unknown,no,no,cellular,apr,fri,203,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+43,blue-collar,married,basic.6y,unknown,yes,no,cellular,apr,fri,19,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,married,basic.9y,no,unknown,unknown,cellular,apr,fri,182,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,apr,fri,401,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+42,admin.,divorced,university.degree,no,yes,no,cellular,apr,fri,237,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,married,university.degree,no,unknown,unknown,cellular,apr,fri,198,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,unemployed,divorced,high.school,no,yes,yes,cellular,apr,fri,715,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+30,technician,single,professional.course,no,yes,no,cellular,apr,fri,346,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,single,high.school,no,yes,no,cellular,apr,fri,508,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,management,divorced,professional.course,no,yes,no,cellular,apr,fri,115,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,admin.,married,high.school,no,no,yes,cellular,apr,fri,463,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+42,services,married,high.school,no,yes,yes,telephone,apr,fri,73,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+40,self-employed,married,university.degree,no,no,no,cellular,apr,fri,775,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,single,high.school,no,yes,no,cellular,apr,fri,140,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,fri,100,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,services,single,unknown,no,no,no,cellular,apr,fri,301,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,blue-collar,married,unknown,no,no,no,cellular,apr,fri,231,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,management,married,basic.9y,no,no,no,cellular,apr,fri,727,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,admin.,married,unknown,no,no,no,cellular,apr,fri,42,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,services,single,high.school,no,no,no,cellular,apr,fri,160,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,single,unknown,no,yes,no,cellular,apr,fri,130,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,admin.,married,university.degree,no,no,no,cellular,apr,fri,222,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,402,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,single,high.school,no,no,no,cellular,apr,fri,297,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,admin.,married,high.school,no,yes,no,cellular,apr,fri,207,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,unemployed,married,basic.9y,unknown,no,no,cellular,apr,fri,135,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+56,blue-collar,unknown,basic.4y,no,no,no,cellular,apr,fri,422,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,blue-collar,single,basic.9y,unknown,no,no,cellular,apr,fri,22,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,apr,fri,107,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+44,entrepreneur,married,university.degree,no,yes,no,cellular,apr,fri,1034,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,admin.,married,high.school,no,yes,no,cellular,apr,fri,326,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+36,blue-collar,married,basic.6y,no,yes,yes,cellular,apr,fri,91,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+30,services,single,high.school,unknown,yes,no,telephone,apr,fri,40,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,management,single,university.degree,unknown,yes,yes,cellular,apr,fri,333,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,admin.,married,university.degree,no,no,no,cellular,apr,fri,476,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+33,admin.,single,university.degree,no,no,no,cellular,apr,fri,326,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+27,admin.,single,high.school,no,yes,no,cellular,apr,fri,108,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+45,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,99,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,married,basic.6y,no,yes,no,cellular,apr,fri,240,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,technician,married,basic.6y,no,no,yes,cellular,apr,fri,158,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,professional.course,no,no,no,cellular,apr,fri,365,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,technician,married,professional.course,no,no,no,cellular,apr,fri,219,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,technician,divorced,high.school,no,no,no,cellular,apr,fri,188,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,student,single,professional.course,no,yes,no,cellular,apr,fri,96,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+22,admin.,single,university.degree,no,no,no,cellular,apr,fri,149,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+41,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,412,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+51,housemaid,divorced,high.school,unknown,no,no,cellular,apr,fri,145,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+44,management,married,professional.course,no,no,no,cellular,apr,fri,65,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,housemaid,divorced,university.degree,no,unknown,unknown,cellular,apr,fri,182,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+41,admin.,divorced,high.school,no,yes,no,cellular,apr,fri,114,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,fri,194,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+71,retired,single,unknown,no,yes,no,cellular,apr,fri,188,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+47,admin.,married,university.degree,unknown,yes,yes,cellular,apr,fri,126,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,technician,married,professional.course,no,no,no,cellular,apr,fri,93,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,technician,married,university.degree,no,no,no,cellular,apr,fri,772,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+28,admin.,single,university.degree,no,no,no,cellular,apr,fri,69,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,divorced,high.school,no,no,no,cellular,apr,fri,165,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+44,admin.,single,university.degree,no,yes,no,cellular,apr,fri,395,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,professional.course,no,no,no,cellular,apr,fri,345,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+44,admin.,single,university.degree,no,no,no,cellular,apr,fri,815,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,blue-collar,married,basic.9y,no,no,yes,cellular,apr,fri,147,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+48,admin.,married,basic.4y,no,yes,no,cellular,apr,fri,224,3,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,fri,150,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+25,student,married,university.degree,no,no,yes,cellular,apr,fri,74,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,technician,single,high.school,no,no,no,cellular,apr,fri,124,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+53,admin.,married,university.degree,no,yes,no,cellular,apr,fri,771,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,housemaid,married,university.degree,no,yes,no,telephone,apr,fri,460,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+49,services,divorced,high.school,no,no,no,cellular,apr,fri,300,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+36,technician,married,professional.course,no,yes,no,cellular,apr,fri,17,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,self-employed,single,university.degree,no,yes,no,cellular,apr,fri,254,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,management,married,professional.course,no,yes,no,cellular,apr,fri,239,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+30,technician,single,professional.course,no,no,no,cellular,apr,fri,73,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,services,single,high.school,no,no,no,cellular,apr,fri,473,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+31,admin.,married,high.school,no,yes,no,cellular,apr,fri,139,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+59,admin.,divorced,university.degree,no,yes,no,cellular,apr,fri,128,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,admin.,single,high.school,no,no,no,cellular,apr,fri,405,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,services,married,high.school,no,no,no,cellular,apr,fri,52,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,unemployed,married,basic.9y,unknown,yes,no,cellular,apr,fri,153,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+48,unemployed,married,high.school,no,yes,no,cellular,apr,fri,370,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,technician,divorced,university.degree,no,no,yes,cellular,apr,fri,642,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,technician,married,professional.course,unknown,no,no,cellular,apr,fri,232,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,student,single,unknown,no,yes,no,cellular,apr,fri,170,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,333,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,single,high.school,no,yes,no,cellular,apr,fri,413,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,married,basic.4y,no,no,yes,cellular,apr,fri,163,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,blue-collar,married,basic.9y,unknown,no,no,telephone,apr,fri,599,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,admin.,married,high.school,no,no,no,cellular,apr,fri,246,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,technician,married,professional.course,unknown,no,no,cellular,apr,fri,322,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+28,technician,single,university.degree,no,no,no,cellular,apr,fri,232,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+75,housemaid,divorced,basic.4y,no,no,no,cellular,apr,fri,95,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,technician,married,professional.course,no,no,no,cellular,apr,fri,181,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,entrepreneur,married,university.degree,no,yes,no,cellular,apr,fri,104,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+30,services,single,professional.course,no,yes,no,cellular,apr,fri,186,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,technician,single,university.degree,no,no,no,cellular,apr,fri,115,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,admin.,married,high.school,no,yes,no,cellular,apr,fri,598,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,divorced,high.school,no,yes,no,cellular,apr,fri,323,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+36,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,fri,273,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+43,blue-collar,married,basic.6y,no,yes,no,cellular,apr,fri,160,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+28,services,married,high.school,no,no,no,cellular,apr,fri,134,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+57,retired,married,basic.6y,unknown,no,no,cellular,apr,fri,203,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+51,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,fri,541,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+40,blue-collar,single,basic.6y,unknown,no,yes,cellular,apr,fri,266,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+49,technician,married,unknown,no,no,no,cellular,apr,fri,378,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+33,admin.,married,high.school,unknown,no,no,cellular,apr,fri,220,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,services,married,high.school,no,no,no,cellular,apr,fri,606,2,1,1,success,-1.8,93.075,-47.1,1.405,5099.1,no
+48,services,single,high.school,no,no,no,cellular,apr,fri,105,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+26,technician,single,professional.course,no,yes,no,cellular,apr,fri,378,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+60,admin.,married,university.degree,no,no,no,cellular,apr,fri,246,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,entrepreneur,married,basic.4y,no,yes,no,cellular,apr,fri,1130,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,156,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+55,management,married,university.degree,no,yes,no,cellular,apr,fri,949,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+44,services,single,high.school,no,no,no,cellular,apr,fri,276,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+40,housemaid,married,basic.6y,unknown,unknown,unknown,cellular,apr,fri,2926,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+49,admin.,divorced,high.school,no,unknown,unknown,cellular,apr,fri,88,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,blue-collar,single,basic.6y,unknown,yes,no,cellular,apr,fri,155,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+39,services,married,high.school,no,no,no,cellular,apr,fri,185,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,management,single,university.degree,no,no,no,cellular,apr,fri,278,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,entrepreneur,married,university.degree,unknown,yes,no,cellular,apr,fri,273,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+55,management,married,university.degree,no,no,no,cellular,apr,fri,171,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,admin.,single,high.school,no,no,no,cellular,apr,fri,166,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+24,services,single,high.school,no,no,yes,cellular,apr,fri,1426,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+47,admin.,married,basic.9y,no,yes,yes,cellular,apr,fri,795,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+49,admin.,single,basic.6y,no,yes,yes,cellular,apr,fri,441,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,services,married,high.school,no,yes,yes,cellular,apr,fri,398,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,services,married,high.school,no,no,yes,cellular,apr,fri,340,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,308,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,218,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,management,divorced,high.school,no,yes,no,cellular,apr,fri,647,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,admin.,married,high.school,no,no,yes,cellular,apr,fri,57,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+30,student,single,professional.course,no,no,yes,cellular,apr,fri,170,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,married,unknown,no,yes,no,cellular,apr,fri,666,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,technician,married,basic.4y,no,no,yes,cellular,apr,fri,244,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,admin.,single,high.school,no,no,no,cellular,apr,fri,146,2,5,2,success,-1.8,93.075,-47.1,1.405,5099.1,no
+37,technician,divorced,high.school,no,no,yes,telephone,apr,fri,318,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+55,admin.,divorced,high.school,no,unknown,unknown,cellular,apr,fri,278,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,admin.,single,university.degree,no,no,no,cellular,apr,fri,426,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,basic.6y,no,no,yes,cellular,apr,fri,229,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,admin.,single,high.school,no,yes,no,cellular,apr,fri,74,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,married,basic.9y,no,no,yes,cellular,apr,fri,1184,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,admin.,single,unknown,unknown,yes,no,cellular,apr,fri,464,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,apr,fri,334,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,blue-collar,married,basic.9y,unknown,no,yes,cellular,apr,fri,61,2,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,divorced,basic.4y,no,no,no,cellular,apr,fri,2053,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,entrepreneur,married,professional.course,no,no,yes,cellular,apr,fri,69,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,services,married,high.school,no,no,no,cellular,apr,fri,277,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,1064,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+46,blue-collar,single,basic.4y,no,unknown,unknown,cellular,apr,fri,163,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+40,services,divorced,high.school,no,yes,no,telephone,apr,fri,501,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,single,high.school,no,yes,no,cellular,apr,fri,245,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,entrepreneur,single,university.degree,no,yes,no,cellular,apr,fri,738,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+55,retired,married,high.school,unknown,yes,no,cellular,apr,fri,87,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+43,blue-collar,married,basic.6y,unknown,no,no,cellular,apr,fri,335,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,divorced,basic.4y,no,no,no,cellular,apr,fri,204,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,management,divorced,professional.course,no,yes,no,cellular,apr,fri,140,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,technician,married,professional.course,unknown,yes,no,cellular,apr,fri,446,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,services,single,unknown,no,yes,no,cellular,apr,fri,164,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+40,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,179,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,blue-collar,single,high.school,no,no,no,cellular,apr,fri,151,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+46,entrepreneur,married,professional.course,no,yes,yes,cellular,apr,fri,65,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,174,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,admin.,married,university.degree,no,yes,no,cellular,apr,fri,489,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,entrepreneur,single,university.degree,no,no,no,cellular,apr,fri,758,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,services,married,high.school,no,no,no,cellular,apr,fri,469,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+27,unemployed,single,basic.9y,no,no,no,cellular,apr,fri,48,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+40,services,married,high.school,no,no,no,cellular,apr,fri,368,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+29,admin.,single,university.degree,no,no,no,telephone,apr,fri,48,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,single,unknown,no,no,no,cellular,apr,fri,54,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+53,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,342,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,management,married,university.degree,unknown,no,no,cellular,apr,fri,183,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+33,services,single,high.school,no,yes,no,cellular,apr,fri,73,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,blue-collar,married,basic.6y,unknown,no,no,cellular,apr,fri,315,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+28,admin.,single,university.degree,no,no,no,telephone,apr,fri,394,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+45,admin.,married,high.school,no,yes,yes,cellular,apr,fri,636,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+22,student,single,high.school,no,yes,no,cellular,apr,fri,14,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,technician,divorced,high.school,no,no,no,telephone,apr,fri,320,3,6,1,success,-1.8,93.075,-47.1,1.405,5099.1,yes
+26,technician,single,professional.course,no,yes,no,telephone,apr,fri,100,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,admin.,divorced,high.school,no,yes,yes,cellular,apr,fri,238,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,professional.course,no,no,no,cellular,apr,fri,317,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+39,management,single,university.degree,no,yes,no,cellular,apr,fri,271,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+40,admin.,single,high.school,no,yes,no,cellular,apr,fri,202,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,single,basic.6y,no,yes,no,cellular,apr,fri,99,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,unknown,unknown,yes,no,cellular,apr,fri,50,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+29,admin.,divorced,basic.9y,no,yes,no,cellular,apr,fri,321,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,single,high.school,no,yes,no,cellular,apr,fri,202,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,management,married,university.degree,no,no,yes,cellular,apr,fri,177,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,services,divorced,unknown,no,no,no,cellular,apr,fri,211,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+22,admin.,married,high.school,no,no,yes,cellular,apr,fri,108,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,672,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+44,blue-collar,single,basic.9y,unknown,yes,no,cellular,apr,fri,225,3,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+39,management,single,university.degree,no,no,no,cellular,apr,fri,952,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,married,unknown,no,no,no,cellular,apr,fri,119,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,management,divorced,university.degree,no,no,yes,cellular,apr,fri,131,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,technician,married,professional.course,no,yes,no,cellular,apr,fri,171,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,technician,married,professional.course,no,no,yes,cellular,apr,fri,239,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,single,high.school,no,no,no,cellular,apr,fri,193,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,services,single,high.school,no,no,no,cellular,apr,fri,544,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+48,admin.,divorced,high.school,no,no,yes,cellular,apr,fri,2139,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+60,retired,married,basic.4y,unknown,yes,no,cellular,apr,fri,314,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+41,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,fri,1038,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,self-employed,married,university.degree,no,no,no,cellular,apr,fri,625,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,student,single,high.school,no,yes,no,cellular,apr,fri,756,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,basic.4y,no,no,no,cellular,apr,fri,191,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+40,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,fri,1013,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,admin.,divorced,high.school,no,no,no,telephone,apr,fri,392,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+49,technician,married,unknown,no,no,no,cellular,apr,fri,119,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,management,married,basic.6y,no,no,no,cellular,apr,fri,324,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,427,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,technician,divorced,professional.course,no,yes,yes,cellular,apr,fri,180,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+43,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,200,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,admin.,divorced,university.degree,no,yes,no,cellular,apr,fri,660,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,services,single,unknown,no,no,no,telephone,apr,fri,541,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+35,blue-collar,married,professional.course,no,yes,yes,telephone,apr,fri,114,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,services,married,high.school,no,no,no,cellular,apr,fri,291,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,married,university.degree,no,no,yes,cellular,apr,fri,72,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,fri,184,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,married,high.school,no,yes,no,cellular,apr,fri,479,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,114,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,196,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+33,technician,single,professional.course,no,no,no,cellular,apr,mon,148,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,housemaid,married,basic.4y,no,yes,no,cellular,apr,mon,158,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+34,admin.,married,basic.9y,no,yes,no,cellular,apr,mon,12,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,services,married,high.school,no,yes,yes,cellular,apr,mon,345,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,services,married,high.school,no,no,no,cellular,apr,mon,95,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+32,admin.,married,high.school,no,no,no,cellular,apr,mon,9,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+58,technician,married,professional.course,unknown,yes,no,cellular,apr,mon,483,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,self-employed,single,university.degree,no,yes,yes,cellular,apr,mon,152,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,technician,single,professional.course,unknown,yes,no,cellular,apr,mon,415,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+19,student,single,unknown,no,yes,yes,cellular,apr,mon,206,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+46,entrepreneur,married,basic.4y,unknown,yes,no,cellular,apr,mon,630,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+60,retired,married,basic.6y,no,yes,yes,telephone,apr,mon,384,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,technician,married,professional.course,no,no,no,cellular,apr,mon,322,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,blue-collar,married,basic.4y,no,no,yes,cellular,apr,mon,287,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,services,married,high.school,unknown,yes,no,cellular,apr,mon,184,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+19,student,single,unknown,no,yes,no,cellular,apr,mon,438,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+40,services,single,high.school,no,no,no,cellular,apr,mon,1332,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+31,management,married,university.degree,unknown,no,no,cellular,apr,mon,397,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+28,entrepreneur,married,university.degree,unknown,no,no,cellular,apr,mon,774,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,services,married,high.school,no,no,no,cellular,apr,mon,390,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+25,self-employed,divorced,university.degree,no,yes,no,telephone,apr,mon,173,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,technician,single,professional.course,no,yes,no,cellular,apr,mon,430,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+51,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,mon,12,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+68,retired,married,high.school,no,no,yes,cellular,apr,mon,263,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+49,entrepreneur,married,basic.4y,no,no,no,cellular,apr,mon,383,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,360,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,311,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,blue-collar,married,basic.6y,unknown,yes,no,cellular,apr,mon,88,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,technician,married,university.degree,no,no,no,cellular,apr,mon,124,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+48,services,single,high.school,no,yes,no,cellular,apr,mon,1202,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+47,blue-collar,married,basic.9y,no,yes,yes,cellular,apr,mon,390,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,technician,divorced,basic.9y,no,no,no,cellular,apr,mon,105,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+30,student,single,university.degree,no,yes,yes,telephone,apr,mon,37,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,services,married,high.school,unknown,yes,no,cellular,apr,mon,79,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+32,services,married,high.school,no,yes,no,cellular,apr,mon,14,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,apr,mon,506,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+49,management,married,university.degree,no,no,no,cellular,apr,mon,257,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,management,single,high.school,no,no,no,cellular,apr,mon,150,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,divorced,basic.9y,no,yes,yes,cellular,apr,mon,156,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,entrepreneur,single,university.degree,no,yes,yes,cellular,apr,mon,142,12,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+48,services,married,high.school,no,no,no,cellular,apr,mon,1112,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+45,blue-collar,married,basic.4y,no,yes,no,telephone,apr,mon,169,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,blue-collar,divorced,basic.6y,no,yes,no,cellular,apr,mon,339,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,admin.,divorced,high.school,no,no,no,cellular,apr,mon,220,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+52,retired,married,high.school,no,yes,no,cellular,apr,mon,525,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,blue-collar,married,basic.6y,no,yes,no,cellular,apr,mon,374,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,single,basic.4y,no,no,no,cellular,apr,mon,210,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,unemployed,single,professional.course,unknown,yes,no,cellular,apr,mon,533,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+24,technician,single,high.school,no,yes,no,cellular,apr,mon,390,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,management,single,university.degree,no,yes,no,cellular,apr,mon,122,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,blue-collar,single,professional.course,unknown,yes,yes,telephone,apr,mon,73,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,services,single,basic.6y,no,yes,no,cellular,apr,mon,249,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,technician,married,professional.course,no,yes,no,cellular,apr,mon,136,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,186,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,admin.,married,basic.9y,no,no,no,telephone,apr,mon,406,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+30,admin.,married,high.school,no,no,no,cellular,apr,mon,566,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+56,blue-collar,married,basic.6y,no,yes,yes,cellular,apr,mon,223,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,421,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,blue-collar,married,basic.6y,no,no,no,cellular,apr,mon,83,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+25,self-employed,divorced,university.degree,no,yes,no,cellular,apr,mon,227,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+59,self-employed,married,professional.course,no,yes,no,cellular,apr,mon,860,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+29,technician,single,university.degree,no,no,no,cellular,apr,mon,354,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,apr,mon,207,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+39,entrepreneur,married,university.degree,unknown,yes,no,cellular,apr,mon,68,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+53,blue-collar,married,high.school,unknown,yes,yes,cellular,apr,mon,62,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,technician,single,professional.course,no,no,no,cellular,apr,mon,17,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,entrepreneur,single,university.degree,no,no,no,cellular,apr,mon,89,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+47,technician,married,high.school,unknown,no,no,cellular,apr,mon,267,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+29,services,single,high.school,no,no,no,cellular,apr,mon,386,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+53,blue-collar,married,high.school,unknown,no,no,cellular,apr,mon,193,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+59,self-employed,married,professional.course,no,unknown,unknown,cellular,apr,mon,69,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,admin.,divorced,high.school,no,unknown,unknown,cellular,apr,mon,214,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,high.school,no,no,no,cellular,apr,mon,239,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,1550,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+42,blue-collar,single,unknown,unknown,no,no,cellular,apr,mon,241,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,high.school,unknown,no,no,cellular,apr,mon,29,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,admin.,married,high.school,unknown,no,no,telephone,apr,mon,121,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+26,admin.,married,high.school,no,yes,no,cellular,apr,mon,61,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,services,married,high.school,no,yes,yes,cellular,apr,mon,234,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,technician,married,university.degree,no,yes,no,cellular,apr,mon,185,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+44,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,399,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,19,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,basic.9y,no,no,yes,cellular,apr,mon,96,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,blue-collar,single,basic.9y,no,yes,yes,cellular,apr,mon,218,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,technician,divorced,professional.course,unknown,no,no,cellular,apr,mon,131,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+43,services,married,high.school,no,no,no,cellular,apr,mon,26,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+51,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,143,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,single,high.school,no,no,no,cellular,apr,mon,159,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,blue-collar,single,basic.9y,no,no,no,cellular,apr,mon,386,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,admin.,single,university.degree,no,yes,no,cellular,apr,mon,279,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,admin.,married,university.degree,no,yes,yes,cellular,apr,mon,245,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,apr,mon,201,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+44,blue-collar,married,basic.6y,no,no,no,cellular,apr,mon,428,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,self-employed,single,university.degree,no,yes,no,cellular,apr,mon,128,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+30,student,single,high.school,no,yes,no,cellular,apr,mon,7,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+46,entrepreneur,married,unknown,no,yes,no,cellular,apr,mon,466,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,single,professional.course,no,yes,no,cellular,apr,mon,304,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+53,admin.,married,professional.course,no,yes,no,cellular,apr,mon,185,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+48,services,divorced,high.school,no,yes,yes,cellular,apr,mon,108,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+48,services,divorced,high.school,no,yes,no,cellular,apr,mon,90,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,technician,married,professional.course,no,yes,no,cellular,apr,mon,122,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+48,services,divorced,high.school,no,yes,no,cellular,apr,mon,365,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,admin.,single,university.degree,no,yes,no,cellular,apr,mon,285,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,admin.,single,university.degree,no,yes,no,cellular,apr,mon,275,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+44,blue-collar,married,basic.6y,no,yes,yes,cellular,apr,mon,7,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,apr,mon,285,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+73,retired,married,basic.4y,no,yes,no,cellular,apr,mon,158,1,6,1,success,-1.8,93.075,-47.1,1.405,5099.1,no
+54,technician,married,high.school,no,yes,no,cellular,apr,mon,178,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,technician,single,professional.course,no,yes,no,cellular,apr,mon,199,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,mon,63,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,blue-collar,single,basic.9y,no,no,no,cellular,apr,mon,65,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+56,retired,divorced,university.degree,no,yes,no,cellular,apr,mon,199,5,9,1,success,-1.8,93.075,-47.1,1.405,5099.1,no
+46,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,188,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,blue-collar,married,basic.6y,unknown,yes,no,telephone,apr,mon,534,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,management,married,university.degree,no,yes,no,cellular,apr,mon,198,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,technician,married,professional.course,unknown,yes,no,cellular,apr,mon,130,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,management,married,university.degree,no,no,no,cellular,apr,mon,352,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,technician,single,university.degree,no,yes,no,cellular,apr,mon,210,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,admin.,single,university.degree,no,yes,no,cellular,apr,mon,670,4,11,1,success,-1.8,93.075,-47.1,1.405,5099.1,yes
+53,services,married,high.school,no,yes,no,cellular,apr,mon,62,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,technician,single,university.degree,unknown,no,no,cellular,apr,mon,712,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,management,married,university.degree,no,no,no,cellular,apr,mon,401,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,technician,married,high.school,no,yes,no,cellular,apr,mon,59,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,services,married,university.degree,no,yes,no,cellular,apr,mon,17,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,services,married,high.school,no,no,no,cellular,apr,mon,319,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+36,services,single,high.school,no,yes,no,cellular,apr,mon,142,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+40,technician,married,professional.course,no,yes,yes,cellular,apr,mon,314,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,management,married,university.degree,unknown,no,no,cellular,apr,mon,28,7,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,admin.,single,high.school,no,yes,no,cellular,apr,mon,133,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+34,admin.,married,basic.9y,no,yes,no,cellular,apr,mon,317,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,admin.,single,basic.9y,no,yes,no,cellular,apr,mon,79,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+26,admin.,single,high.school,no,yes,no,cellular,apr,mon,190,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+41,blue-collar,divorced,high.school,unknown,yes,no,cellular,apr,mon,111,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,technician,single,university.degree,no,no,yes,cellular,apr,mon,222,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,basic.9y,unknown,no,yes,cellular,apr,mon,49,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,technician,married,professional.course,no,no,no,cellular,apr,mon,277,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,9,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,technician,married,professional.course,unknown,yes,no,cellular,apr,mon,698,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+57,entrepreneur,single,university.degree,no,no,yes,cellular,apr,mon,7,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,management,married,university.degree,no,yes,no,cellular,apr,mon,13,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,technician,single,professional.course,no,no,no,cellular,apr,mon,714,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,services,married,university.degree,no,yes,no,cellular,apr,mon,257,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+26,admin.,single,high.school,no,no,no,cellular,apr,mon,785,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+57,management,divorced,university.degree,unknown,no,no,cellular,apr,mon,322,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,married,high.school,no,no,no,cellular,apr,mon,658,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,blue-collar,married,basic.9y,no,no,no,cellular,apr,mon,98,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,management,single,university.degree,unknown,no,yes,cellular,apr,mon,144,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,technician,married,high.school,no,yes,yes,cellular,apr,mon,42,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,services,married,high.school,no,yes,no,cellular,apr,mon,12,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,admin.,married,high.school,no,yes,yes,cellular,apr,mon,254,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+52,admin.,divorced,basic.9y,no,yes,yes,cellular,apr,mon,9,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+26,admin.,single,high.school,no,no,no,cellular,apr,mon,123,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,blue-collar,married,basic.6y,no,no,no,cellular,apr,mon,97,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,entrepreneur,married,unknown,no,yes,yes,cellular,apr,mon,207,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,student,single,university.degree,no,yes,no,cellular,apr,mon,712,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+59,self-employed,married,professional.course,no,yes,no,cellular,apr,mon,274,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,services,married,high.school,no,yes,no,cellular,apr,mon,72,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+36,technician,married,high.school,no,no,no,cellular,apr,mon,207,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,blue-collar,divorced,basic.6y,no,yes,yes,cellular,apr,mon,37,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,high.school,unknown,yes,no,cellular,apr,mon,19,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,technician,married,high.school,no,no,no,cellular,apr,mon,517,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,admin.,married,high.school,no,yes,yes,telephone,apr,mon,24,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+33,services,married,high.school,no,yes,yes,cellular,apr,mon,18,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,admin.,divorced,university.degree,no,yes,no,cellular,apr,mon,238,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,management,married,university.degree,no,yes,yes,cellular,apr,mon,163,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+41,admin.,married,high.school,no,yes,yes,cellular,apr,mon,982,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,services,divorced,basic.9y,no,no,no,cellular,apr,mon,231,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,married,high.school,no,no,no,cellular,apr,mon,164,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,single,basic.4y,no,yes,no,cellular,apr,mon,94,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,management,married,university.degree,no,no,no,cellular,apr,mon,450,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,management,married,university.degree,no,yes,yes,cellular,apr,mon,107,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+42,services,married,high.school,no,yes,no,cellular,apr,mon,274,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,services,married,high.school,no,yes,no,cellular,apr,mon,200,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,single,basic.9y,unknown,yes,no,cellular,apr,mon,90,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+68,retired,married,high.school,no,yes,no,cellular,apr,mon,194,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+40,technician,single,professional.course,no,yes,no,cellular,apr,mon,250,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,technician,single,university.degree,no,yes,no,cellular,apr,mon,79,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,technician,single,professional.course,no,yes,yes,cellular,apr,mon,538,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,257,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,management,married,university.degree,no,yes,yes,cellular,apr,mon,21,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,335,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+30,technician,divorced,university.degree,no,no,no,cellular,apr,mon,96,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,management,divorced,university.degree,no,no,yes,cellular,apr,mon,72,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+40,retired,single,high.school,no,yes,no,cellular,apr,mon,166,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,services,divorced,high.school,unknown,yes,yes,cellular,apr,mon,92,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,high.school,unknown,no,no,cellular,apr,mon,63,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,management,single,high.school,no,yes,no,cellular,apr,mon,508,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,services,married,high.school,unknown,yes,no,cellular,apr,mon,219,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,management,married,university.degree,no,no,no,cellular,apr,mon,51,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+30,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,19,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+58,services,married,basic.6y,no,yes,no,cellular,apr,mon,41,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,technician,single,professional.course,no,unknown,unknown,cellular,apr,mon,80,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,admin.,single,university.degree,no,unknown,unknown,cellular,apr,mon,59,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+49,unemployed,married,basic.6y,unknown,no,no,cellular,apr,mon,68,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,management,divorced,university.degree,no,no,no,cellular,apr,mon,611,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+57,entrepreneur,single,university.degree,no,yes,yes,cellular,apr,mon,45,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+26,admin.,single,high.school,no,no,no,telephone,apr,mon,216,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+35,services,single,professional.course,unknown,no,no,cellular,apr,mon,204,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,management,single,university.degree,no,yes,no,cellular,apr,mon,92,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+46,admin.,married,high.school,unknown,no,no,cellular,apr,mon,11,5,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,admin.,divorced,university.degree,no,no,yes,cellular,apr,mon,473,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,technician,married,basic.9y,no,no,no,cellular,apr,mon,110,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+30,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,87,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+44,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,92,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+57,entrepreneur,single,university.degree,no,yes,no,cellular,apr,mon,720,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+43,services,single,university.degree,no,yes,no,cellular,apr,mon,178,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,blue-collar,married,basic.6y,no,no,no,cellular,apr,mon,84,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,blue-collar,married,professional.course,no,no,yes,cellular,apr,mon,123,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+48,services,single,basic.9y,no,yes,no,cellular,apr,mon,16,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,technician,married,basic.9y,no,no,no,cellular,apr,mon,617,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,services,single,high.school,unknown,no,yes,cellular,apr,mon,76,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,management,married,university.degree,no,no,no,telephone,apr,mon,205,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,technician,single,professional.course,no,no,no,cellular,apr,mon,62,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+32,technician,single,professional.course,no,no,no,cellular,apr,mon,33,1,6,1,success,-1.8,93.075,-47.1,1.405,5099.1,no
+43,management,married,university.degree,no,no,no,cellular,apr,mon,246,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+52,services,married,basic.6y,no,no,yes,cellular,apr,mon,44,2,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+56,self-employed,married,university.degree,no,no,no,cellular,apr,mon,83,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+19,student,single,unknown,no,unknown,unknown,cellular,apr,mon,213,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+26,blue-collar,single,basic.9y,no,no,no,cellular,apr,mon,586,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+43,management,married,university.degree,no,no,yes,cellular,apr,mon,443,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,services,married,basic.9y,unknown,yes,no,cellular,apr,mon,201,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,services,divorced,high.school,no,no,no,cellular,apr,mon,379,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,services,divorced,high.school,no,no,no,cellular,apr,mon,330,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,admin.,divorced,university.degree,no,yes,no,cellular,apr,mon,40,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+21,services,single,basic.9y,no,no,no,cellular,apr,mon,293,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,240,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+45,services,married,basic.4y,no,unknown,unknown,cellular,apr,mon,130,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,technician,single,university.degree,no,no,no,cellular,apr,mon,190,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,technician,divorced,professional.course,no,no,no,cellular,apr,mon,15,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,technician,single,professional.course,unknown,yes,no,cellular,apr,mon,59,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+48,services,divorced,high.school,no,yes,yes,cellular,apr,mon,111,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+57,services,married,high.school,unknown,yes,no,cellular,apr,mon,157,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+53,housemaid,married,basic.6y,unknown,unknown,unknown,cellular,apr,mon,372,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+73,retired,married,basic.4y,no,yes,yes,cellular,apr,mon,128,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+23,student,single,high.school,no,yes,no,cellular,apr,mon,637,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,technician,married,professional.course,no,yes,no,cellular,apr,mon,140,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+56,self-employed,married,university.degree,no,yes,no,cellular,apr,mon,222,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,technician,single,professional.course,no,yes,no,cellular,apr,mon,20,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,151,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+51,services,married,high.school,no,yes,no,cellular,apr,mon,272,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+56,services,married,basic.4y,no,yes,yes,cellular,apr,mon,15,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+28,self-employed,single,university.degree,no,yes,no,cellular,apr,mon,64,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,technician,single,professional.course,no,no,no,cellular,apr,mon,147,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,technician,single,professional.course,no,yes,no,cellular,apr,mon,170,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+31,technician,single,professional.course,no,no,no,cellular,apr,mon,217,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,services,married,high.school,no,no,no,cellular,apr,mon,53,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+28,self-employed,single,university.degree,no,yes,no,cellular,apr,mon,187,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,services,married,high.school,no,no,no,telephone,apr,mon,60,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,services,married,high.school,no,yes,no,cellular,apr,mon,180,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+30,admin.,single,university.degree,unknown,no,no,cellular,apr,mon,162,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,admin.,married,university.degree,no,yes,no,cellular,apr,mon,75,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,mon,405,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,management,married,university.degree,no,yes,no,cellular,apr,mon,818,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+57,services,married,high.school,unknown,yes,no,cellular,apr,mon,297,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+19,student,single,unknown,no,yes,no,cellular,apr,mon,159,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,married,basic.6y,no,no,no,cellular,apr,mon,293,1,1,1,success,-1.8,93.075,-47.1,1.405,5099.1,no
+32,technician,single,professional.course,no,yes,no,cellular,apr,mon,54,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+55,services,married,high.school,no,yes,yes,cellular,apr,mon,691,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+48,retired,divorced,basic.4y,unknown,yes,no,cellular,apr,mon,132,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,567,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+40,self-employed,married,basic.9y,no,yes,yes,cellular,apr,mon,64,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,married,high.school,no,unknown,unknown,cellular,apr,mon,19,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,unemployed,single,high.school,no,yes,no,telephone,apr,mon,22,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,technician,married,basic.9y,no,yes,no,cellular,apr,mon,904,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+31,admin.,single,university.degree,no,yes,no,cellular,apr,mon,239,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+53,blue-collar,married,high.school,unknown,yes,no,cellular,apr,mon,354,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,self-employed,married,university.degree,no,no,no,cellular,apr,mon,145,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+52,admin.,married,university.degree,no,yes,no,cellular,apr,mon,95,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+44,blue-collar,married,basic.6y,no,no,no,cellular,apr,mon,400,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,mon,197,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,admin.,single,university.degree,no,yes,no,cellular,apr,mon,221,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,318,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,management,married,university.degree,no,yes,no,cellular,apr,mon,96,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+46,blue-collar,married,basic.9y,unknown,no,yes,cellular,apr,mon,222,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+44,blue-collar,married,basic.4y,no,unknown,unknown,cellular,apr,mon,308,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+29,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,mon,54,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+71,retired,married,university.degree,no,no,no,cellular,apr,mon,349,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+38,admin.,single,university.degree,no,yes,yes,cellular,apr,mon,6,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,services,married,high.school,no,no,no,cellular,apr,mon,91,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+52,services,married,basic.6y,no,yes,no,cellular,apr,mon,44,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+49,entrepreneur,married,university.degree,no,yes,no,cellular,apr,mon,48,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+52,services,married,basic.6y,no,no,no,cellular,apr,mon,157,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+48,services,divorced,high.school,no,no,no,cellular,apr,mon,715,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,married,high.school,no,no,no,cellular,apr,mon,87,2,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+56,housemaid,married,basic.4y,no,yes,no,cellular,apr,mon,325,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+49,entrepreneur,married,university.degree,no,yes,no,cellular,apr,mon,334,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,admin.,married,high.school,unknown,yes,no,cellular,apr,mon,9,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,72,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,238,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,admin.,married,university.degree,no,yes,yes,cellular,apr,mon,245,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+75,retired,divorced,basic.4y,no,no,no,cellular,apr,mon,227,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+23,admin.,married,high.school,no,no,no,cellular,apr,mon,297,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+57,management,divorced,university.degree,unknown,yes,no,cellular,apr,mon,108,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,technician,married,professional.course,no,yes,no,cellular,apr,mon,38,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+53,admin.,single,university.degree,no,no,no,cellular,apr,mon,59,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,technician,married,high.school,unknown,no,no,cellular,apr,mon,222,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,divorced,basic.9y,no,yes,no,cellular,apr,mon,23,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,148,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+52,admin.,married,university.degree,no,yes,no,cellular,apr,mon,181,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+29,management,single,university.degree,no,no,no,cellular,apr,mon,190,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,technician,married,high.school,no,yes,no,cellular,apr,mon,82,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,services,married,high.school,no,no,no,telephone,apr,mon,151,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+30,admin.,single,high.school,no,yes,no,cellular,apr,mon,180,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,253,3,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+30,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,202,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,admin.,divorced,high.school,unknown,yes,no,cellular,apr,mon,47,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,technician,married,high.school,no,no,no,cellular,apr,mon,211,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+53,management,divorced,university.degree,unknown,unknown,unknown,cellular,apr,mon,249,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,admin.,married,basic.9y,no,yes,no,cellular,apr,mon,63,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,admin.,single,university.degree,no,unknown,unknown,cellular,apr,mon,147,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,married,basic.6y,no,yes,no,cellular,apr,mon,170,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,entrepreneur,single,university.degree,no,no,no,cellular,apr,mon,151,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+22,services,single,high.school,no,yes,no,cellular,apr,mon,224,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,430,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,mon,107,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+19,student,single,unknown,no,yes,no,cellular,apr,mon,205,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+40,self-employed,single,university.degree,no,yes,no,cellular,apr,mon,379,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+30,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,42,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,apr,mon,129,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,entrepreneur,divorced,university.degree,no,no,no,cellular,apr,mon,76,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+52,admin.,divorced,basic.9y,no,yes,yes,cellular,apr,mon,20,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+31,services,divorced,high.school,no,no,no,cellular,apr,mon,379,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,admin.,divorced,university.degree,no,yes,no,telephone,apr,mon,180,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,technician,married,high.school,no,yes,no,cellular,apr,mon,116,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+33,technician,divorced,professional.course,no,yes,no,cellular,apr,mon,153,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,self-employed,married,university.degree,unknown,yes,no,cellular,apr,mon,93,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,services,divorced,high.school,unknown,yes,no,cellular,apr,mon,369,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,self-employed,married,university.degree,no,yes,no,cellular,apr,mon,291,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,268,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,143,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+40,services,married,high.school,unknown,yes,no,cellular,apr,mon,78,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,services,married,high.school,unknown,yes,no,cellular,apr,mon,226,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,174,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+55,admin.,married,university.degree,no,yes,no,cellular,apr,mon,247,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+56,housemaid,married,university.degree,no,yes,no,cellular,apr,mon,148,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+31,admin.,single,university.degree,no,yes,no,cellular,apr,mon,98,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+59,self-employed,married,professional.course,no,yes,no,cellular,apr,mon,121,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,housemaid,single,high.school,unknown,yes,yes,cellular,apr,mon,114,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,single,basic.4y,no,yes,no,cellular,apr,mon,326,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+60,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,mon,89,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+30,technician,divorced,university.degree,no,no,no,cellular,apr,mon,281,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,technician,married,university.degree,no,no,no,cellular,apr,mon,345,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,53,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+24,admin.,single,professional.course,no,yes,no,cellular,apr,mon,97,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+53,management,divorced,university.degree,unknown,yes,no,cellular,apr,mon,165,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+57,services,married,high.school,no,yes,no,cellular,apr,mon,113,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,married,high.school,no,no,no,cellular,apr,mon,207,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+59,technician,divorced,professional.course,no,no,no,cellular,apr,mon,185,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+40,blue-collar,married,basic.6y,unknown,unknown,unknown,cellular,apr,mon,121,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+30,technician,single,university.degree,no,unknown,unknown,cellular,apr,mon,112,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+29,technician,single,basic.9y,no,unknown,unknown,telephone,apr,mon,116,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,admin.,married,high.school,no,no,no,cellular,apr,mon,177,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+25,self-employed,divorced,university.degree,no,no,no,cellular,apr,mon,111,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,technician,single,university.degree,unknown,yes,yes,cellular,apr,mon,378,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+44,management,married,university.degree,no,no,no,cellular,apr,mon,44,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+25,self-employed,divorced,university.degree,no,no,no,cellular,apr,mon,241,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+25,self-employed,divorced,university.degree,no,no,yes,cellular,apr,mon,163,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+32,admin.,single,university.degree,no,yes,no,cellular,apr,mon,237,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,management,married,university.degree,no,no,no,cellular,apr,mon,666,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,admin.,divorced,basic.9y,no,yes,yes,cellular,apr,mon,137,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,management,married,university.degree,no,yes,no,cellular,apr,mon,305,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+43,management,married,university.degree,no,yes,no,cellular,apr,mon,87,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,admin.,married,high.school,no,no,no,cellular,apr,mon,131,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+21,student,single,high.school,no,yes,no,cellular,apr,mon,110,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,management,single,university.degree,no,no,no,cellular,apr,mon,333,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,management,single,university.degree,no,yes,no,cellular,apr,mon,48,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,apr,mon,86,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,technician,married,basic.9y,no,yes,no,cellular,apr,mon,419,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+51,blue-collar,divorced,basic.4y,no,no,yes,cellular,apr,mon,16,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,services,divorced,basic.9y,no,yes,no,cellular,apr,mon,325,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,services,married,high.school,unknown,yes,no,cellular,apr,mon,766,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+21,self-employed,single,university.degree,no,yes,yes,cellular,apr,mon,169,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,services,divorced,high.school,no,yes,no,cellular,apr,mon,97,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,technician,married,high.school,no,no,no,cellular,apr,mon,58,3,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+31,services,divorced,high.school,no,yes,no,cellular,apr,mon,267,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+21,self-employed,single,university.degree,no,yes,no,cellular,apr,mon,345,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+53,admin.,married,professional.course,no,yes,no,cellular,apr,mon,476,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,admin.,single,university.degree,no,no,no,cellular,apr,mon,115,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,entrepreneur,married,high.school,no,yes,no,cellular,apr,mon,257,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,management,married,university.degree,no,no,no,cellular,apr,mon,163,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+38,admin.,unknown,university.degree,no,no,no,cellular,apr,mon,517,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,blue-collar,married,high.school,no,no,no,telephone,apr,mon,340,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+48,services,divorced,high.school,no,unknown,unknown,cellular,apr,mon,124,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+23,student,single,university.degree,no,unknown,unknown,cellular,apr,mon,131,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+48,services,divorced,high.school,no,yes,no,cellular,apr,mon,436,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,married,high.school,no,yes,no,cellular,apr,mon,53,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,married,basic.4y,no,yes,yes,cellular,apr,mon,172,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,technician,single,university.degree,no,yes,yes,cellular,apr,mon,861,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+53,management,divorced,university.degree,unknown,no,no,cellular,apr,mon,414,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+31,services,married,basic.9y,no,no,no,cellular,apr,mon,74,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,admin.,single,basic.6y,no,no,no,cellular,apr,mon,28,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+44,blue-collar,divorced,basic.4y,unknown,yes,yes,cellular,apr,mon,542,3,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,admin.,single,basic.6y,no,no,no,cellular,apr,mon,170,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,single,university.degree,unknown,yes,no,cellular,apr,mon,198,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+24,admin.,single,university.degree,no,yes,no,cellular,apr,mon,393,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,technician,married,professional.course,no,yes,yes,cellular,apr,mon,168,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+32,technician,single,professional.course,no,yes,yes,cellular,apr,mon,230,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+43,management,married,university.degree,no,no,no,cellular,apr,mon,48,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,243,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,blue-collar,single,university.degree,no,no,no,cellular,apr,mon,1422,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+31,services,divorced,high.school,no,no,no,cellular,apr,mon,150,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,services,single,high.school,unknown,no,yes,cellular,apr,mon,18,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,admin.,married,high.school,no,no,yes,cellular,apr,mon,239,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+24,admin.,single,professional.course,no,no,no,cellular,apr,mon,267,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+40,blue-collar,married,basic.4y,no,yes,yes,cellular,apr,mon,45,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+41,admin.,married,professional.course,no,yes,yes,cellular,apr,mon,528,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,single,high.school,no,yes,yes,cellular,apr,mon,55,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,single,university.degree,no,yes,no,cellular,apr,mon,72,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+31,technician,single,professional.course,no,yes,no,telephone,apr,mon,16,12,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,services,single,basic.9y,unknown,yes,no,cellular,apr,mon,54,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,management,married,university.degree,no,yes,yes,cellular,apr,mon,228,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+19,student,single,unknown,no,yes,no,cellular,apr,mon,104,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,admin.,single,university.degree,unknown,no,no,cellular,apr,mon,73,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,687,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,technician,married,university.degree,no,yes,no,cellular,apr,mon,90,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,technician,divorced,professional.course,unknown,yes,no,cellular,apr,mon,104,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,technician,single,basic.9y,no,yes,no,cellular,apr,mon,114,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+37,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,233,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+21,student,single,high.school,no,no,no,cellular,apr,mon,258,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+36,services,married,high.school,no,yes,no,cellular,apr,mon,334,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,management,married,university.degree,no,yes,no,cellular,apr,mon,143,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+27,technician,single,university.degree,no,no,yes,cellular,apr,mon,400,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+31,services,single,high.school,no,yes,yes,cellular,apr,mon,289,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,management,married,university.degree,no,no,no,cellular,apr,mon,81,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,married,basic.4y,unknown,no,yes,cellular,apr,mon,64,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+42,services,married,university.degree,no,yes,no,cellular,apr,mon,155,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+25,self-employed,single,university.degree,unknown,yes,no,cellular,apr,mon,66,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,services,married,high.school,no,no,no,cellular,apr,mon,1010,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,management,married,university.degree,unknown,no,yes,cellular,apr,mon,1817,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+25,admin.,married,university.degree,no,yes,no,cellular,apr,mon,137,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+52,entrepreneur,married,basic.9y,no,yes,yes,telephone,apr,mon,67,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+25,admin.,single,university.degree,no,no,yes,cellular,apr,mon,120,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+31,services,married,basic.9y,no,yes,no,cellular,apr,mon,1030,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+47,technician,married,basic.9y,no,yes,no,cellular,apr,mon,151,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+35,admin.,divorced,university.degree,no,yes,yes,cellular,apr,mon,121,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+37,blue-collar,married,basic.4y,unknown,yes,yes,cellular,apr,mon,17,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+31,admin.,single,university.degree,no,yes,yes,cellular,apr,mon,885,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+69,retired,divorced,basic.4y,no,no,no,cellular,apr,mon,92,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,married,basic.6y,no,yes,no,cellular,apr,mon,724,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,blue-collar,single,basic.9y,unknown,yes,no,cellular,apr,mon,68,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,blue-collar,single,professional.course,unknown,no,no,cellular,apr,mon,36,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+69,retired,divorced,basic.4y,no,yes,no,cellular,apr,mon,453,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+34,admin.,single,university.degree,no,yes,no,cellular,apr,mon,58,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,admin.,married,basic.9y,no,yes,no,cellular,apr,mon,304,7,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,282,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,admin.,single,high.school,unknown,yes,no,telephone,apr,mon,58,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,services,divorced,high.school,unknown,yes,no,cellular,apr,mon,81,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,admin.,married,basic.9y,no,yes,no,cellular,apr,mon,401,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,246,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,services,married,high.school,unknown,no,no,cellular,apr,mon,270,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,single,basic.4y,no,yes,no,cellular,apr,mon,108,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,services,married,basic.9y,no,no,no,cellular,apr,mon,643,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,management,married,university.degree,no,no,yes,cellular,apr,mon,76,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,mon,11,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,admin.,single,basic.9y,no,no,no,cellular,apr,mon,91,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,blue-collar,single,basic.6y,no,no,no,cellular,apr,mon,87,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,89,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,apr,mon,81,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,married,professional.course,no,yes,no,cellular,apr,mon,93,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+52,entrepreneur,divorced,university.degree,unknown,yes,no,telephone,apr,mon,70,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,services,married,high.school,no,no,no,cellular,apr,mon,226,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,housemaid,married,basic.4y,no,yes,no,cellular,apr,mon,172,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,single,high.school,no,no,no,cellular,apr,mon,121,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,249,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,single,basic.9y,no,yes,no,cellular,apr,mon,8,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,divorced,basic.9y,no,no,no,cellular,apr,mon,10,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,married,basic.6y,no,yes,no,cellular,apr,mon,132,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,services,married,university.degree,no,no,no,cellular,apr,mon,890,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,apr,mon,10,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+27,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,294,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+57,self-employed,married,basic.4y,no,yes,no,telephone,apr,mon,534,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+56,retired,divorced,university.degree,no,yes,no,cellular,apr,mon,529,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,8,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,technician,married,basic.9y,no,yes,yes,cellular,apr,mon,7,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,housemaid,married,basic.4y,no,yes,no,cellular,apr,mon,8,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+44,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,81,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,admin.,married,professional.course,no,no,no,cellular,apr,mon,9,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,10,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+23,student,single,high.school,no,no,no,cellular,apr,mon,400,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+24,technician,single,professional.course,no,yes,no,cellular,apr,mon,200,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+38,services,married,high.school,no,yes,no,cellular,apr,mon,22,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,management,married,university.degree,unknown,yes,no,cellular,apr,mon,241,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,admin.,single,high.school,no,yes,no,telephone,apr,mon,32,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,52,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,technician,single,professional.course,no,no,no,cellular,apr,mon,69,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+30,blue-collar,single,basic.9y,unknown,yes,no,cellular,apr,mon,145,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+50,admin.,married,high.school,no,yes,no,cellular,apr,mon,562,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,services,married,basic.9y,no,yes,no,telephone,apr,mon,26,4,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+46,services,married,high.school,no,no,no,cellular,apr,mon,124,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,technician,divorced,professional.course,unknown,yes,no,telephone,apr,mon,18,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+33,services,single,high.school,no,no,no,cellular,apr,mon,11,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,technician,single,professional.course,no,yes,no,cellular,apr,mon,21,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,technician,single,unknown,no,no,no,cellular,apr,mon,415,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,admin.,single,university.degree,no,no,no,cellular,apr,mon,140,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+43,blue-collar,married,basic.6y,no,no,no,cellular,apr,mon,87,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+54,management,married,university.degree,unknown,no,no,cellular,apr,mon,138,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+44,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,apr,mon,16,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,married,basic.9y,no,no,yes,cellular,apr,mon,116,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,technician,married,basic.6y,no,no,no,cellular,apr,mon,316,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+60,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,mon,198,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+24,admin.,married,professional.course,no,yes,no,cellular,apr,mon,102,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+57,technician,married,university.degree,no,no,no,cellular,apr,mon,72,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,management,married,university.degree,no,no,no,cellular,apr,mon,31,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,9,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,admin.,divorced,high.school,no,no,no,cellular,apr,mon,190,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+31,blue-collar,married,professional.course,unknown,yes,no,cellular,apr,mon,280,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,technician,single,professional.course,no,yes,no,cellular,apr,mon,152,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,single,basic.9y,unknown,no,no,cellular,apr,mon,36,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+46,entrepreneur,married,unknown,no,yes,no,cellular,apr,mon,58,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,mon,13,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+49,admin.,married,university.degree,no,yes,no,cellular,apr,mon,404,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+56,technician,married,professional.course,unknown,no,no,cellular,apr,mon,136,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,basic.6y,no,yes,no,telephone,apr,mon,7,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,admin.,single,university.degree,no,no,no,cellular,apr,mon,277,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,services,single,professional.course,no,yes,no,cellular,apr,mon,93,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+30,student,single,university.degree,no,yes,no,cellular,apr,mon,23,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+49,entrepreneur,married,university.degree,no,no,yes,cellular,apr,mon,281,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,technician,married,university.degree,no,yes,no,cellular,apr,mon,20,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,blue-collar,married,professional.course,no,no,no,cellular,apr,mon,233,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+45,blue-collar,divorced,basic.4y,no,no,no,telephone,apr,mon,197,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,220,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+28,admin.,single,high.school,no,no,no,cellular,apr,mon,1333,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+51,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,104,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,179,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,single,professional.course,no,yes,no,cellular,apr,mon,12,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,admin.,married,university.degree,no,no,no,cellular,apr,mon,69,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+60,retired,married,basic.6y,no,yes,no,cellular,apr,mon,579,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+49,services,married,high.school,no,no,no,cellular,apr,mon,173,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,apr,mon,231,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+32,services,married,high.school,no,no,no,cellular,apr,mon,259,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,married,basic.9y,no,no,yes,cellular,apr,mon,780,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,admin.,married,basic.9y,no,no,no,cellular,apr,mon,405,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,divorced,basic.9y,no,no,no,cellular,apr,mon,20,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+55,admin.,married,university.degree,no,yes,yes,cellular,apr,mon,204,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,mon,847,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,single,basic.4y,no,no,no,cellular,apr,mon,242,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,married,basic.9y,unknown,no,yes,cellular,apr,mon,243,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,married,university.degree,no,no,no,cellular,apr,mon,505,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,married,university.degree,no,no,no,cellular,apr,mon,355,3,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+37,services,single,professional.course,no,yes,no,cellular,apr,mon,307,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,blue-collar,married,basic.9y,no,unknown,unknown,cellular,apr,mon,72,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,services,married,high.school,no,no,no,cellular,apr,mon,250,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,admin.,single,university.degree,no,no,no,cellular,apr,mon,164,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+60,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,mon,18,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,57,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,single,university.degree,unknown,yes,no,cellular,apr,mon,372,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+43,blue-collar,married,basic.6y,unknown,yes,no,cellular,apr,mon,353,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,technician,single,professional.course,no,yes,no,cellular,apr,mon,8,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+46,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,250,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,admin.,divorced,basic.9y,no,yes,no,cellular,apr,mon,39,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,22,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,technician,married,high.school,no,unknown,unknown,cellular,apr,mon,122,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+27,management,single,university.degree,no,yes,yes,cellular,apr,mon,21,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,apr,mon,31,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+39,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,554,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+35,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,mon,212,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,mon,144,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,blue-collar,divorced,basic.9y,no,no,yes,cellular,apr,mon,34,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+40,admin.,married,professional.course,unknown,no,no,cellular,apr,mon,98,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,self-employed,single,university.degree,no,yes,no,cellular,apr,mon,639,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,services,married,high.school,no,yes,no,cellular,apr,mon,106,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,technician,married,high.school,no,yes,no,cellular,apr,mon,94,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+32,services,married,high.school,no,yes,yes,cellular,apr,mon,6,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+40,admin.,single,university.degree,no,yes,yes,cellular,apr,mon,8,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+38,entrepreneur,single,basic.4y,no,yes,yes,cellular,apr,mon,7,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,technician,married,professional.course,no,no,no,cellular,apr,mon,1156,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+42,blue-collar,married,high.school,no,no,yes,cellular,apr,mon,178,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+53,blue-collar,married,basic.6y,no,yes,yes,cellular,apr,mon,208,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+52,technician,married,professional.course,no,yes,no,telephone,apr,mon,43,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+48,services,divorced,high.school,no,yes,no,cellular,apr,mon,25,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,technician,single,university.degree,no,yes,no,cellular,apr,mon,6,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+57,self-employed,married,basic.4y,no,yes,no,cellular,apr,mon,659,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+36,admin.,married,university.degree,no,yes,no,telephone,apr,mon,5,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,married,high.school,no,yes,no,cellular,apr,mon,149,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+57,self-employed,married,basic.4y,no,yes,no,cellular,apr,mon,627,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+37,blue-collar,married,high.school,no,no,no,cellular,apr,mon,943,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+34,admin.,single,university.degree,no,yes,no,cellular,apr,mon,305,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,admin.,married,university.degree,no,yes,yes,cellular,apr,tue,235,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+64,retired,married,university.degree,no,yes,no,cellular,apr,tue,146,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+31,technician,single,university.degree,no,no,yes,cellular,apr,tue,333,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+56,self-employed,married,university.degree,no,no,no,cellular,apr,tue,110,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+75,retired,married,basic.4y,no,no,no,cellular,apr,tue,186,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+64,retired,married,university.degree,no,yes,yes,cellular,apr,tue,159,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+53,admin.,married,university.degree,no,yes,no,cellular,apr,tue,142,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,management,married,university.degree,no,yes,no,cellular,apr,tue,336,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+78,retired,married,basic.4y,no,yes,no,cellular,apr,tue,274,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+57,retired,married,basic.4y,no,yes,yes,telephone,apr,tue,1348,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+19,student,single,unknown,no,yes,no,telephone,apr,tue,396,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+31,technician,single,university.degree,no,no,no,telephone,apr,tue,207,17,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+75,retired,married,basic.4y,no,no,no,cellular,apr,tue,109,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+44,unknown,divorced,unknown,no,no,no,cellular,apr,tue,189,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+41,technician,married,university.degree,no,no,no,cellular,apr,tue,219,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+31,technician,single,university.degree,no,unknown,unknown,telephone,apr,tue,222,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,housemaid,single,professional.course,no,yes,no,cellular,apr,tue,100,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+61,retired,married,professional.course,no,unknown,unknown,cellular,apr,tue,164,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+70,retired,married,basic.6y,no,yes,no,cellular,apr,tue,252,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+54,management,married,university.degree,no,yes,no,cellular,apr,tue,211,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+54,management,married,university.degree,no,no,no,cellular,apr,tue,243,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+78,retired,married,basic.4y,no,yes,yes,cellular,apr,tue,75,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+66,retired,married,basic.4y,no,yes,no,cellular,apr,tue,63,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+29,technician,single,university.degree,no,no,no,cellular,apr,tue,95,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+65,self-employed,married,professional.course,no,no,no,telephone,apr,tue,110,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+65,retired,married,basic.4y,no,unknown,unknown,cellular,apr,tue,106,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+20,student,single,unknown,no,yes,yes,cellular,apr,tue,47,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+47,housemaid,married,basic.4y,no,no,no,cellular,apr,tue,645,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,admin.,divorced,high.school,no,no,no,cellular,apr,tue,446,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+34,admin.,divorced,high.school,no,yes,no,cellular,apr,tue,121,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+34,admin.,divorced,high.school,no,yes,no,telephone,apr,tue,946,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+75,retired,married,basic.4y,no,no,no,cellular,apr,tue,356,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+53,admin.,married,university.degree,no,yes,no,cellular,apr,tue,158,2,6,1,success,-1.8,93.075,-47.1,1.405,5099.1,yes
+31,technician,single,university.degree,no,yes,no,telephone,apr,tue,847,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+47,housemaid,single,professional.course,no,yes,no,cellular,apr,tue,242,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+78,retired,married,basic.4y,no,yes,no,telephone,apr,tue,137,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+19,student,single,unknown,no,yes,yes,cellular,apr,tue,278,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+85,retired,married,basic.4y,unknown,yes,no,cellular,apr,tue,129,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+64,retired,married,university.degree,no,no,no,cellular,apr,tue,157,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+27,services,single,high.school,no,yes,no,cellular,apr,tue,204,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+31,technician,single,university.degree,no,no,no,telephone,apr,tue,126,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+61,admin.,married,university.degree,no,yes,no,cellular,apr,wed,183,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,admin.,married,university.degree,no,yes,no,telephone,apr,wed,94,7,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+46,admin.,married,university.degree,no,yes,no,telephone,apr,wed,154,8,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+23,admin.,single,university.degree,no,yes,no,cellular,apr,wed,71,7,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+33,admin.,single,university.degree,no,yes,no,telephone,apr,wed,220,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,admin.,single,high.school,no,yes,yes,telephone,apr,wed,186,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+23,admin.,single,university.degree,no,no,yes,cellular,apr,wed,343,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+23,admin.,single,university.degree,no,no,no,cellular,apr,wed,341,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+30,unemployed,single,university.degree,no,yes,no,cellular,apr,wed,400,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+23,admin.,single,university.degree,no,yes,no,cellular,apr,wed,621,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+23,admin.,single,university.degree,no,yes,no,cellular,apr,wed,219,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+52,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,315,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+45,self-employed,single,basic.9y,no,yes,no,cellular,apr,wed,156,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+23,admin.,single,university.degree,no,no,no,cellular,apr,wed,314,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+45,technician,divorced,university.degree,no,no,yes,telephone,apr,wed,101,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+29,admin.,single,high.school,no,no,yes,cellular,apr,wed,319,1,6,1,success,-1.8,93.075,-47.1,1.405,5099.1,yes
+46,admin.,married,university.degree,no,yes,no,cellular,apr,wed,164,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+64,retired,married,basic.4y,no,yes,no,cellular,apr,wed,104,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+29,admin.,single,university.degree,no,yes,no,cellular,apr,wed,145,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+64,retired,married,university.degree,no,yes,no,cellular,apr,wed,102,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,married,university.degree,no,no,no,cellular,apr,wed,94,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+37,services,single,high.school,no,yes,no,cellular,apr,wed,165,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+25,admin.,single,high.school,no,yes,no,cellular,apr,wed,416,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+55,admin.,married,high.school,no,no,yes,cellular,apr,wed,307,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+54,technician,married,professional.course,no,yes,no,cellular,apr,wed,138,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+48,admin.,married,university.degree,no,yes,no,cellular,apr,wed,87,9,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+57,management,divorced,unknown,no,no,no,cellular,apr,wed,279,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+50,technician,divorced,basic.9y,no,yes,no,cellular,apr,wed,91,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+25,admin.,single,high.school,no,yes,no,cellular,apr,wed,108,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no
+61,retired,married,basic.4y,no,yes,no,cellular,apr,wed,245,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes
+65,retired,married,university.degree,no,no,no,cellular,apr,wed,124,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+60,technician,married,professional.course,no,no,no,cellular,apr,wed,107,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+30,student,single,unknown,no,yes,no,cellular,apr,wed,176,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+39,admin.,married,university.degree,no,no,no,cellular,apr,wed,382,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+30,student,single,unknown,no,yes,no,cellular,apr,wed,116,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no
+52,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,229,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+58,retired,single,professional.course,no,yes,no,cellular,apr,wed,1288,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+60,blue-collar,married,professional.course,no,yes,no,cellular,apr,wed,545,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+19,student,single,basic.4y,no,no,yes,cellular,apr,wed,371,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes
+25,admin.,single,university.degree,no,yes,no,cellular,apr,thu,229,2,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes
+34,unknown,married,basic.4y,no,yes,no,cellular,apr,thu,328,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes
+62,self-employed,married,university.degree,no,yes,yes,telephone,apr,thu,164,4,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no
+53,retired,married,basic.9y,no,no,no,telephone,apr,thu,67,3,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no
+34,unknown,married,basic.4y,no,yes,no,cellular,apr,thu,477,2,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no
+34,unknown,married,basic.4y,no,yes,yes,cellular,apr,thu,94,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no
+61,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,266,5,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes
+52,blue-collar,married,basic.6y,no,no,no,cellular,apr,thu,247,5,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes
+37,technician,single,high.school,no,yes,no,telephone,apr,thu,201,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no
+44,admin.,married,university.degree,no,no,no,cellular,apr,thu,172,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes
+35,technician,married,university.degree,no,no,no,cellular,apr,thu,270,2,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes
+50,admin.,married,university.degree,no,yes,yes,telephone,apr,thu,413,3,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes
+27,student,single,university.degree,no,no,no,telephone,apr,thu,141,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no
+38,technician,married,professional.course,no,yes,yes,cellular,apr,thu,117,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no
+42,technician,married,high.school,no,yes,no,cellular,apr,thu,163,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes
+33,self-employed,married,university.degree,no,no,no,telephone,apr,thu,155,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no
+43,admin.,married,university.degree,no,no,no,cellular,apr,thu,522,4,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes
+34,unknown,married,basic.4y,no,yes,yes,cellular,apr,thu,91,4,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no
+28,blue-collar,single,basic.9y,no,yes,no,cellular,apr,thu,106,3,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no
+28,blue-collar,single,basic.9y,no,yes,yes,cellular,apr,thu,333,2,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no
+26,student,single,high.school,no,yes,no,cellular,apr,thu,116,4,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes
+37,technician,single,high.school,no,yes,no,telephone,apr,thu,77,2,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no
+29,student,single,high.school,no,no,no,cellular,apr,thu,86,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no
+85,retired,married,basic.4y,no,yes,no,cellular,apr,thu,191,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no
+31,admin.,single,university.degree,no,no,no,cellular,apr,thu,115,16,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no
+28,blue-collar,single,basic.9y,no,yes,no,cellular,apr,fri,65,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,no
+30,technician,single,university.degree,no,yes,no,cellular,apr,fri,143,1,999,1,failure,-1.8,93.075,-47.1,1.4,5099.1,no
+50,admin.,married,university.degree,no,yes,no,cellular,apr,fri,160,1,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,yes
+36,admin.,married,high.school,no,no,no,cellular,apr,fri,78,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,no
+85,retired,married,basic.4y,no,yes,no,cellular,apr,fri,117,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,no
+80,blue-collar,married,high.school,no,no,no,cellular,apr,fri,105,6,999,3,failure,-1.8,93.075,-47.1,1.4,5099.1,no
+64,retired,married,high.school,no,yes,no,cellular,apr,fri,111,1,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,no
+64,management,married,high.school,no,yes,no,cellular,apr,fri,693,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,yes
+27,student,single,university.degree,no,no,no,cellular,apr,fri,227,1,999,1,failure,-1.8,93.075,-47.1,1.4,5099.1,yes
+38,technician,single,university.degree,no,no,no,cellular,apr,fri,202,5,999,1,failure,-1.8,93.075,-47.1,1.4,5099.1,yes
+66,retired,married,professional.course,no,yes,yes,cellular,apr,fri,222,4,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,no
+64,retired,married,university.degree,no,no,no,cellular,apr,fri,173,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,no
+34,unknown,married,basic.4y,no,no,yes,cellular,apr,fri,83,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,no
+33,services,single,high.school,no,yes,no,cellular,apr,mon,44,3,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no
+71,retired,married,university.degree,no,yes,yes,telephone,apr,mon,89,12,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no
+38,admin.,married,university.degree,no,unknown,unknown,cellular,apr,mon,124,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,yes
+27,management,married,university.degree,no,no,no,cellular,apr,mon,54,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no
+36,management,married,university.degree,no,no,no,cellular,apr,mon,98,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no
+28,unemployed,single,high.school,no,no,no,cellular,apr,mon,97,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,yes
+28,blue-collar,single,basic.9y,no,no,no,cellular,apr,mon,218,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no
+28,blue-collar,single,basic.9y,no,no,no,cellular,apr,mon,107,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no
+64,retired,married,university.degree,no,no,no,telephone,apr,mon,227,3,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,apr,mon,148,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,yes
+27,management,married,university.degree,no,no,no,cellular,apr,mon,444,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,yes
+55,services,divorced,professional.course,no,no,no,cellular,apr,mon,88,1,999,1,failure,-1.8,93.075,-47.1,1.392,5099.1,no
+41,admin.,married,high.school,no,no,no,cellular,apr,mon,160,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no
+53,admin.,single,high.school,no,yes,no,cellular,apr,mon,167,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no
+38,admin.,divorced,university.degree,no,no,no,cellular,apr,mon,360,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,yes
+38,admin.,divorced,university.degree,no,no,no,cellular,apr,mon,62,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no
+85,retired,married,basic.4y,no,no,no,cellular,apr,mon,81,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no
+62,self-employed,married,university.degree,no,no,no,cellular,apr,mon,66,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no
+23,management,single,university.degree,no,yes,no,cellular,apr,mon,122,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,yes
+38,technician,married,professional.course,no,yes,no,cellular,apr,mon,90,2,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no
+34,unknown,married,basic.4y,no,no,no,telephone,apr,mon,151,3,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,apr,tue,151,3,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no
+52,blue-collar,married,basic.6y,no,no,no,cellular,apr,tue,139,2,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no
+85,retired,married,basic.4y,no,no,no,cellular,apr,tue,165,3,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no
+61,retired,divorced,university.degree,no,yes,no,cellular,apr,tue,118,2,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no
+38,admin.,divorced,university.degree,no,yes,no,cellular,apr,tue,177,2,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,yes
+38,services,married,high.school,no,no,no,cellular,apr,tue,186,2,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no
+61,technician,married,university.degree,no,no,no,cellular,apr,tue,50,2,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no
+23,management,single,university.degree,no,yes,no,cellular,apr,tue,56,2,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,apr,tue,101,2,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no
+51,blue-collar,married,basic.6y,no,yes,no,cellular,apr,wed,89,2,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,no
+33,admin.,single,high.school,no,yes,no,cellular,apr,wed,507,3,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,yes
+47,services,married,high.school,no,yes,no,cellular,apr,wed,636,2,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,yes
+33,admin.,single,high.school,no,yes,no,cellular,apr,wed,961,2,999,1,failure,-1.8,93.075,-47.1,1.372,5099.1,yes
+30,technician,single,university.degree,no,no,no,cellular,apr,wed,80,5,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,no
+53,admin.,single,high.school,no,yes,yes,telephone,apr,wed,75,3,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,no
+69,retired,married,high.school,no,yes,no,cellular,apr,wed,153,4,999,1,failure,-1.8,93.075,-47.1,1.372,5099.1,no
+55,services,divorced,professional.course,no,yes,no,telephone,apr,wed,164,23,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,no
+30,technician,single,university.degree,no,yes,no,telephone,apr,wed,169,8,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,no
+52,management,divorced,professional.course,no,yes,no,cellular,apr,wed,85,7,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,no
+24,technician,single,university.degree,no,yes,no,cellular,apr,thu,170,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+31,management,single,university.degree,no,yes,no,cellular,apr,thu,211,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+24,technician,single,university.degree,no,yes,no,cellular,apr,thu,192,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+33,admin.,married,university.degree,no,no,no,cellular,apr,thu,179,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+35,admin.,single,university.degree,no,yes,yes,cellular,apr,thu,358,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+27,admin.,single,university.degree,no,no,no,cellular,apr,thu,523,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+79,retired,married,basic.9y,no,yes,no,cellular,apr,thu,510,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+60,admin.,married,professional.course,no,yes,no,cellular,apr,thu,571,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+60,retired,married,high.school,no,no,no,cellular,apr,thu,400,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+58,retired,married,basic.4y,no,yes,no,cellular,apr,thu,185,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no
+39,technician,married,professional.course,no,yes,no,cellular,apr,thu,67,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+60,retired,divorced,professional.course,no,yes,no,cellular,apr,thu,968,1,5,2,failure,-1.8,93.075,-47.1,1.365,5099.1,yes
+31,technician,single,university.degree,no,yes,no,cellular,apr,thu,701,1,5,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+39,technician,married,professional.course,no,yes,no,cellular,apr,thu,381,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes
+28,admin.,single,high.school,no,no,no,cellular,apr,thu,571,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+18,student,single,basic.4y,no,no,no,cellular,apr,thu,108,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,apr,thu,239,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+44,admin.,married,university.degree,no,no,no,cellular,apr,thu,109,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+55,admin.,married,unknown,no,yes,no,cellular,apr,thu,525,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+30,admin.,single,university.degree,no,no,no,cellular,apr,thu,224,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+31,admin.,single,university.degree,no,yes,no,cellular,apr,thu,63,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+30,admin.,single,university.degree,no,no,no,cellular,apr,thu,662,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+53,admin.,single,university.degree,no,no,no,cellular,apr,thu,494,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+46,admin.,married,high.school,no,no,no,cellular,apr,thu,243,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+46,management,married,university.degree,no,yes,no,cellular,apr,thu,364,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+39,services,married,high.school,no,yes,no,cellular,apr,thu,243,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+35,services,married,high.school,no,yes,no,cellular,apr,thu,412,1,5,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+31,admin.,single,university.degree,no,no,no,cellular,apr,thu,353,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+46,admin.,married,high.school,no,no,no,telephone,apr,thu,268,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+21,admin.,single,high.school,no,no,no,cellular,apr,thu,264,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+60,admin.,married,high.school,no,unknown,unknown,cellular,apr,thu,208,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+40,admin.,married,university.degree,no,no,yes,cellular,apr,thu,499,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+51,services,married,basic.6y,no,no,no,cellular,apr,thu,407,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+45,management,married,university.degree,unknown,yes,no,cellular,apr,thu,220,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+60,admin.,married,high.school,no,no,no,cellular,apr,thu,447,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+48,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,62,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no
+57,retired,married,university.degree,no,yes,yes,telephone,apr,thu,41,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+54,management,married,university.degree,no,yes,no,cellular,apr,thu,85,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+54,management,married,university.degree,no,yes,no,cellular,apr,thu,121,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+40,admin.,married,high.school,no,yes,no,cellular,apr,thu,160,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+48,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,619,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+49,management,married,university.degree,no,yes,no,cellular,apr,thu,387,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+40,admin.,married,high.school,no,yes,no,cellular,apr,thu,401,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+33,services,married,high.school,no,yes,no,cellular,apr,thu,239,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+77,retired,divorced,basic.4y,no,no,no,cellular,apr,thu,155,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+34,technician,single,professional.course,no,yes,no,cellular,apr,thu,313,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+53,management,divorced,university.degree,no,no,no,cellular,apr,thu,152,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+48,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,871,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+53,management,divorced,university.degree,no,yes,no,cellular,apr,thu,297,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+24,student,single,professional.course,no,yes,no,cellular,apr,thu,413,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+46,admin.,married,high.school,no,yes,no,cellular,apr,thu,231,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+43,admin.,married,university.degree,no,no,no,cellular,apr,thu,104,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+40,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,328,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+41,management,married,basic.6y,no,no,no,cellular,apr,thu,281,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+31,admin.,single,high.school,no,yes,no,cellular,apr,thu,119,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+29,admin.,single,high.school,no,yes,no,cellular,apr,thu,733,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+40,technician,divorced,university.degree,no,yes,no,cellular,apr,thu,335,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+31,admin.,single,high.school,no,no,no,cellular,apr,thu,252,1,5,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+40,admin.,married,university.degree,no,no,no,cellular,apr,thu,815,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+39,technician,married,basic.9y,no,yes,no,cellular,apr,thu,620,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+31,admin.,single,high.school,no,no,no,cellular,apr,thu,706,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+45,admin.,single,high.school,no,yes,no,cellular,apr,thu,354,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+41,technician,divorced,professional.course,no,unknown,unknown,cellular,apr,thu,347,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+30,management,married,university.degree,no,yes,no,cellular,apr,thu,271,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+38,technician,married,professional.course,no,yes,no,cellular,apr,thu,110,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+46,technician,married,unknown,no,no,no,cellular,apr,thu,551,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+30,admin.,single,university.degree,no,no,no,cellular,apr,thu,222,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+48,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,294,2,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+31,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,383,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+54,housemaid,married,high.school,no,yes,no,cellular,apr,thu,41,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+34,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,177,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+30,admin.,single,university.degree,no,no,no,cellular,apr,thu,368,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+53,technician,married,university.degree,no,no,yes,cellular,apr,thu,126,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+41,admin.,single,university.degree,no,unknown,unknown,cellular,apr,thu,1277,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+54,housemaid,married,high.school,no,yes,yes,cellular,apr,thu,267,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+38,admin.,married,high.school,no,yes,yes,cellular,apr,thu,390,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+54,housemaid,married,high.school,no,no,no,cellular,apr,thu,381,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+40,self-employed,married,university.degree,no,no,no,cellular,apr,thu,187,10,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+30,student,single,university.degree,no,no,no,cellular,apr,thu,200,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+28,unemployed,single,basic.4y,no,yes,no,cellular,apr,thu,156,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+36,technician,single,professional.course,no,yes,no,cellular,apr,thu,218,1,2,2,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+32,admin.,married,university.degree,no,yes,no,cellular,apr,thu,116,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+37,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,465,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+33,services,married,high.school,no,yes,no,cellular,apr,thu,900,2,999,2,failure,-1.8,93.075,-47.1,1.365,5099.1,yes
+23,admin.,single,high.school,no,yes,no,cellular,apr,thu,132,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,apr,thu,394,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+35,management,married,university.degree,no,no,no,cellular,apr,thu,127,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+83,retired,married,basic.4y,no,yes,no,cellular,apr,thu,321,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+59,retired,married,basic.4y,no,yes,no,cellular,apr,thu,381,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes
+34,admin.,married,university.degree,no,no,no,cellular,apr,thu,279,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+30,entrepreneur,single,university.degree,no,no,no,cellular,apr,thu,202,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+35,management,married,university.degree,no,no,no,cellular,apr,thu,375,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+38,self-employed,married,professional.course,no,yes,no,cellular,apr,thu,779,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+27,blue-collar,single,university.degree,no,yes,no,cellular,apr,thu,246,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+35,management,married,university.degree,no,yes,no,cellular,apr,thu,584,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+35,management,married,university.degree,no,yes,no,cellular,apr,thu,878,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+44,technician,married,university.degree,no,yes,yes,cellular,apr,thu,504,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+20,student,single,high.school,no,yes,no,cellular,apr,thu,195,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+81,retired,married,professional.course,no,yes,no,cellular,apr,thu,99,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+49,admin.,single,university.degree,no,no,no,cellular,apr,thu,222,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+71,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,78,2,5,1,success,-1.8,93.075,-47.1,1.365,5099.1,no
+35,admin.,single,university.degree,no,yes,yes,cellular,apr,thu,58,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+31,technician,married,professional.course,no,yes,no,cellular,apr,thu,160,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+35,technician,married,professional.course,no,no,no,cellular,apr,thu,337,2,5,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+51,technician,married,professional.course,no,yes,yes,cellular,apr,thu,200,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+51,technician,married,professional.course,no,yes,no,cellular,apr,thu,115,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+46,technician,married,professional.course,no,yes,no,cellular,apr,thu,369,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+51,technician,married,professional.course,no,yes,no,cellular,apr,thu,341,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+51,technician,married,professional.course,no,yes,yes,cellular,apr,thu,297,1,2,2,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+39,services,married,university.degree,no,no,no,cellular,apr,thu,237,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+55,admin.,married,unknown,no,yes,no,cellular,apr,thu,110,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+51,technician,married,professional.course,no,yes,no,cellular,apr,thu,687,1,0,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+27,admin.,single,university.degree,no,yes,no,cellular,apr,thu,193,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+49,admin.,married,high.school,no,yes,no,cellular,apr,thu,216,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+81,retired,married,professional.course,no,no,no,cellular,apr,thu,135,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+60,retired,divorced,professional.course,no,yes,no,cellular,apr,thu,126,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+36,technician,married,professional.course,no,yes,yes,cellular,apr,thu,266,2,2,2,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+44,blue-collar,married,basic.9y,no,yes,no,telephone,apr,thu,455,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+47,admin.,married,university.degree,no,yes,no,cellular,apr,thu,53,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+33,services,married,high.school,no,yes,no,cellular,apr,thu,524,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+39,technician,married,professional.course,no,no,no,cellular,apr,thu,225,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+34,technician,married,professional.course,no,yes,no,cellular,apr,thu,258,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+25,technician,single,professional.course,no,yes,yes,cellular,apr,thu,104,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+40,services,married,high.school,no,yes,no,cellular,apr,thu,124,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+30,admin.,married,university.degree,no,unknown,unknown,cellular,apr,thu,308,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+42,services,married,high.school,no,yes,no,cellular,apr,thu,344,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+48,technician,divorced,high.school,no,yes,no,cellular,apr,thu,400,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes
+24,admin.,single,university.degree,no,yes,no,cellular,apr,thu,103,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+56,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,24,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+48,technician,divorced,university.degree,no,yes,no,cellular,apr,thu,132,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+56,entrepreneur,married,university.degree,no,yes,no,telephone,apr,thu,141,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+56,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,207,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+56,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,284,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+29,admin.,single,university.degree,no,no,no,cellular,apr,thu,800,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+56,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,204,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+56,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,85,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+56,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,472,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+56,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,99,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+56,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,196,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no
+45,management,married,university.degree,unknown,yes,no,cellular,apr,thu,452,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+53,admin.,single,university.degree,no,no,yes,cellular,apr,thu,586,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,apr,thu,316,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes
+37,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,270,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,apr,thu,461,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+27,admin.,single,high.school,no,yes,no,cellular,apr,thu,127,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+25,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,113,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+51,technician,married,university.degree,no,yes,no,cellular,apr,thu,526,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes
+28,blue-collar,single,basic.9y,no,yes,no,cellular,apr,thu,315,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+29,admin.,single,professional.course,no,yes,no,cellular,apr,thu,130,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+49,management,married,university.degree,no,no,no,cellular,apr,thu,97,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+39,technician,married,professional.course,no,yes,no,cellular,apr,thu,423,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+54,management,married,university.degree,no,yes,no,cellular,apr,thu,311,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+49,unemployed,married,university.degree,no,no,no,cellular,apr,thu,171,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+20,student,single,basic.4y,no,yes,no,cellular,apr,thu,209,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+43,technician,single,university.degree,no,no,no,cellular,apr,thu,64,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+24,student,single,high.school,no,no,yes,cellular,apr,thu,209,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+56,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,457,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+25,unemployed,single,university.degree,no,yes,no,cellular,apr,thu,260,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+46,services,married,high.school,no,no,no,cellular,apr,thu,146,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+46,services,married,high.school,no,yes,yes,cellular,apr,thu,354,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+42,technician,married,professional.course,no,no,no,cellular,apr,thu,94,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+60,admin.,married,high.school,no,yes,yes,cellular,apr,thu,482,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+47,blue-collar,single,basic.6y,no,no,no,cellular,apr,thu,309,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+48,technician,divorced,university.degree,no,yes,yes,cellular,apr,thu,173,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+37,admin.,single,university.degree,no,yes,no,cellular,apr,thu,261,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+47,blue-collar,married,high.school,no,no,no,cellular,apr,thu,439,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+36,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,171,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+69,retired,married,university.degree,no,yes,no,cellular,apr,thu,616,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+63,retired,married,high.school,no,no,no,cellular,apr,thu,198,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+28,admin.,single,university.degree,no,yes,yes,cellular,apr,thu,76,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+46,admin.,married,basic.6y,no,no,no,cellular,apr,thu,278,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+28,admin.,single,university.degree,no,yes,no,cellular,apr,thu,280,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+28,admin.,single,university.degree,no,yes,no,cellular,apr,thu,249,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+28,admin.,single,university.degree,no,yes,yes,cellular,apr,thu,68,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no
+48,technician,married,professional.course,no,yes,yes,cellular,apr,thu,269,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes
+49,admin.,divorced,university.degree,no,no,no,cellular,apr,thu,532,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+30,technician,married,university.degree,no,yes,yes,cellular,apr,thu,1373,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+21,admin.,single,high.school,no,no,no,cellular,apr,thu,97,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+31,admin.,single,university.degree,no,yes,yes,cellular,apr,thu,102,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+37,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,48,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+37,admin.,married,high.school,no,yes,no,cellular,apr,thu,226,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no
+24,student,single,high.school,no,yes,no,cellular,apr,thu,88,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+37,admin.,married,high.school,no,yes,no,cellular,apr,thu,574,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+28,admin.,single,university.degree,no,no,yes,telephone,apr,thu,917,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+48,unemployed,single,basic.9y,no,yes,no,cellular,apr,thu,242,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+58,retired,divorced,professional.course,no,no,no,cellular,apr,thu,430,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+48,unemployed,single,basic.9y,no,yes,no,cellular,apr,thu,228,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,apr,thu,483,1,0,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+39,management,married,professional.course,no,no,no,cellular,apr,thu,156,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+51,technician,divorced,high.school,no,no,yes,cellular,apr,thu,306,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+34,admin.,single,professional.course,no,no,no,telephone,apr,thu,130,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+29,technician,single,professional.course,no,no,no,cellular,apr,thu,96,2,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no
+33,blue-collar,single,basic.4y,no,no,no,cellular,apr,thu,452,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+35,admin.,divorced,high.school,no,yes,no,cellular,apr,thu,285,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+30,entrepreneur,single,university.degree,no,yes,no,cellular,apr,thu,666,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+27,student,single,unknown,unknown,yes,no,cellular,apr,thu,458,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+60,admin.,married,professional.course,no,yes,no,cellular,apr,thu,473,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes
+24,student,single,high.school,no,yes,no,cellular,apr,thu,209,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+30,admin.,single,university.degree,no,no,no,cellular,apr,thu,69,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+33,blue-collar,single,basic.4y,no,yes,no,cellular,apr,thu,352,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+48,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,27,1,999,2,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+57,retired,married,university.degree,no,no,no,cellular,apr,thu,81,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+55,admin.,divorced,university.degree,no,no,no,cellular,apr,thu,260,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+22,student,single,high.school,no,no,no,cellular,apr,thu,780,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+54,management,married,university.degree,no,no,no,telephone,apr,thu,107,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no
+40,technician,married,professional.course,no,yes,no,cellular,apr,thu,580,2,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+31,admin.,single,high.school,no,yes,yes,cellular,apr,thu,398,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+73,retired,married,university.degree,no,yes,no,cellular,apr,thu,79,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+71,retired,divorced,basic.4y,no,no,yes,cellular,apr,thu,214,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+28,admin.,married,university.degree,no,no,no,cellular,apr,thu,258,1,2,2,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+41,technician,divorced,professional.course,no,yes,no,cellular,apr,thu,834,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+43,admin.,married,university.degree,no,yes,no,cellular,apr,thu,114,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+35,management,married,university.degree,no,yes,yes,cellular,apr,thu,435,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+58,retired,divorced,university.degree,no,no,no,cellular,apr,thu,211,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no
+32,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,441,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+20,student,single,high.school,no,yes,no,cellular,apr,thu,615,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+38,admin.,single,university.degree,no,yes,yes,cellular,apr,thu,555,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+47,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,149,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no
+40,self-employed,single,university.degree,unknown,yes,no,cellular,apr,thu,384,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+34,admin.,single,professional.course,no,no,no,cellular,apr,thu,168,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+28,student,single,high.school,no,no,no,cellular,apr,thu,319,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+41,admin.,single,high.school,no,unknown,unknown,cellular,apr,thu,664,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+18,student,single,basic.4y,no,yes,yes,cellular,apr,thu,184,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+41,technician,divorced,professional.course,no,yes,no,cellular,apr,thu,811,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+25,admin.,single,university.degree,no,no,yes,telephone,apr,thu,71,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+23,student,single,high.school,no,yes,no,cellular,apr,thu,354,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+47,unknown,married,unknown,no,no,no,cellular,apr,thu,85,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+44,technician,single,professional.course,no,no,no,cellular,apr,thu,116,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+56,entrepreneur,married,university.degree,no,no,yes,cellular,apr,thu,488,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+33,blue-collar,single,basic.4y,no,yes,yes,cellular,apr,thu,460,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+24,technician,single,university.degree,no,yes,no,cellular,apr,thu,477,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+28,admin.,married,university.degree,no,yes,no,cellular,apr,thu,63,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,apr,thu,970,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes
+58,retired,married,basic.4y,no,no,no,cellular,apr,thu,266,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes
+49,technician,married,professional.course,no,no,no,cellular,apr,thu,618,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+41,technician,divorced,professional.course,no,no,no,cellular,apr,thu,774,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes
+51,housemaid,married,unknown,no,yes,yes,cellular,apr,thu,132,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+28,student,single,high.school,no,yes,no,cellular,apr,thu,121,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+45,management,married,university.degree,unknown,yes,no,cellular,apr,thu,175,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+49,technician,single,university.degree,no,yes,no,cellular,apr,thu,861,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+49,management,married,university.degree,no,no,yes,cellular,apr,thu,296,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+49,management,married,university.degree,no,yes,no,cellular,apr,thu,240,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes
+29,management,single,high.school,no,yes,no,cellular,apr,thu,329,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+59,admin.,married,high.school,no,yes,no,cellular,apr,thu,147,3,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+33,admin.,married,high.school,no,no,no,cellular,apr,thu,113,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+48,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,327,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+40,services,married,basic.9y,no,yes,no,cellular,apr,thu,264,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+28,admin.,married,university.degree,no,no,no,cellular,apr,thu,115,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+34,technician,married,university.degree,no,no,no,cellular,apr,thu,82,6,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+32,blue-collar,married,professional.course,unknown,yes,yes,cellular,apr,thu,127,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+30,admin.,single,university.degree,no,yes,yes,telephone,apr,thu,874,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+37,self-employed,single,university.degree,no,yes,no,telephone,apr,thu,44,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+66,unemployed,single,basic.4y,no,no,no,telephone,apr,thu,56,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+38,admin.,single,university.degree,no,yes,no,cellular,apr,thu,510,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+46,admin.,married,basic.6y,no,yes,no,cellular,apr,thu,513,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+38,retired,divorced,basic.9y,unknown,yes,no,cellular,apr,thu,189,3,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+66,unemployed,single,basic.4y,no,yes,no,cellular,apr,thu,416,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+35,services,divorced,high.school,no,no,no,cellular,apr,thu,301,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+41,management,married,high.school,no,yes,no,cellular,apr,thu,243,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+32,blue-collar,married,professional.course,unknown,no,no,cellular,apr,thu,140,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+25,blue-collar,single,basic.9y,no,yes,no,cellular,apr,thu,109,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+48,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,126,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+33,blue-collar,single,professional.course,no,yes,no,cellular,apr,thu,652,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+71,retired,divorced,basic.4y,no,yes,no,telephone,apr,thu,96,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+33,technician,married,basic.9y,no,yes,no,cellular,apr,thu,144,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+25,student,single,university.degree,no,yes,no,cellular,apr,thu,92,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,apr,thu,475,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+25,student,single,university.degree,no,no,no,cellular,apr,thu,236,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+34,technician,married,university.degree,no,yes,no,cellular,apr,thu,193,2,8,1,success,-1.8,93.075,-47.1,1.365,5099.1,no
+38,admin.,single,university.degree,no,yes,no,cellular,apr,thu,645,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+24,admin.,single,university.degree,no,yes,no,cellular,apr,thu,342,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+32,blue-collar,married,professional.course,unknown,yes,no,cellular,apr,thu,73,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no
+53,technician,married,professional.course,no,yes,no,cellular,apr,thu,301,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+32,admin.,single,high.school,no,no,no,cellular,apr,thu,1143,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+33,admin.,single,high.school,no,no,no,cellular,apr,thu,380,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+49,management,married,university.degree,no,yes,no,cellular,apr,thu,210,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+29,admin.,single,professional.course,no,no,no,cellular,apr,thu,427,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+31,admin.,single,university.degree,no,yes,no,cellular,apr,thu,370,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+37,admin.,married,high.school,no,no,no,cellular,apr,thu,73,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+61,retired,divorced,university.degree,no,no,no,cellular,apr,thu,949,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+32,student,married,high.school,no,yes,no,cellular,apr,thu,753,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+60,unemployed,married,high.school,no,yes,no,cellular,apr,thu,1260,2,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+60,admin.,married,professional.course,no,yes,no,cellular,apr,thu,108,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+56,entrepreneur,married,university.degree,no,no,no,telephone,apr,thu,95,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+32,blue-collar,married,professional.course,no,yes,no,cellular,apr,thu,652,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+35,services,married,high.school,no,no,no,cellular,apr,thu,1034,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+64,admin.,married,university.degree,no,no,yes,telephone,apr,thu,766,3,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+56,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,266,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+27,student,single,unknown,unknown,yes,no,cellular,apr,thu,35,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+39,services,married,university.degree,no,yes,no,cellular,apr,thu,369,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,apr,thu,502,1,0,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+40,self-employed,single,university.degree,unknown,yes,yes,cellular,apr,thu,509,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes
+30,admin.,married,university.degree,no,no,no,cellular,apr,thu,132,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+30,student,single,high.school,no,yes,no,telephone,apr,thu,136,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+32,student,married,high.school,no,no,no,cellular,apr,thu,567,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+42,services,married,high.school,no,yes,no,cellular,apr,thu,501,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+57,retired,married,university.degree,no,yes,no,cellular,apr,thu,374,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no
+25,unknown,single,university.degree,no,yes,no,telephone,apr,thu,712,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+27,admin.,single,professional.course,no,yes,yes,telephone,apr,thu,117,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+49,admin.,divorced,university.degree,no,yes,no,cellular,apr,thu,347,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+24,student,single,high.school,no,no,yes,cellular,apr,thu,157,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+56,entrepreneur,married,university.degree,no,yes,yes,cellular,apr,thu,259,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes
+66,unemployed,single,basic.4y,no,yes,no,cellular,apr,thu,1958,11,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no
+88,retired,divorced,high.school,no,yes,no,cellular,may,mon,119,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+63,retired,married,high.school,no,yes,no,telephone,may,mon,87,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+38,management,married,university.degree,no,no,no,cellular,may,mon,208,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+57,entrepreneur,married,basic.9y,no,yes,no,cellular,may,mon,47,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+35,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,265,2,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes
+61,retired,married,high.school,no,yes,no,cellular,may,mon,104,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+21,student,single,unknown,no,yes,yes,cellular,may,mon,374,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+59,housemaid,married,professional.course,no,no,no,cellular,may,mon,675,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+46,technician,married,high.school,no,no,no,cellular,may,mon,60,5,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no
+36,entrepreneur,married,university.degree,no,no,no,telephone,may,mon,410,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+33,technician,married,professional.course,no,yes,no,telephone,may,mon,390,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+39,admin.,married,high.school,no,yes,no,cellular,may,mon,303,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+42,services,married,high.school,no,no,no,cellular,may,mon,312,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,may,mon,244,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,may,mon,160,4,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+35,admin.,single,high.school,no,yes,yes,cellular,may,mon,130,1,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+44,entrepreneur,single,professional.course,no,no,no,cellular,may,mon,74,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+60,management,married,university.degree,no,yes,no,telephone,may,mon,364,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+35,services,married,basic.6y,no,no,no,cellular,may,mon,392,2,3,2,success,-1.8,92.893,-46.2,1.354,5099.1,yes
+28,self-employed,single,university.degree,no,yes,no,cellular,may,mon,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+60,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,193,1,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,yes
+36,management,married,university.degree,no,yes,no,cellular,may,mon,267,1,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,yes
+60,admin.,married,university.degree,no,yes,no,cellular,may,mon,1602,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+31,admin.,divorced,university.degree,no,no,no,cellular,may,mon,200,1,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+26,services,single,high.school,no,yes,no,cellular,may,mon,244,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+30,unknown,married,professional.course,no,yes,no,cellular,may,mon,359,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+49,admin.,married,university.degree,no,yes,yes,telephone,may,mon,16,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+58,retired,married,university.degree,no,yes,no,cellular,may,mon,45,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+30,management,single,university.degree,no,yes,yes,cellular,may,mon,447,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+31,admin.,divorced,university.degree,no,yes,no,cellular,may,mon,226,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+81,retired,married,basic.9y,no,no,no,cellular,may,mon,170,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+39,admin.,married,high.school,no,no,no,cellular,may,mon,597,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+41,technician,married,unknown,no,yes,yes,cellular,may,mon,963,1,3,2,success,-1.8,92.893,-46.2,1.354,5099.1,yes
+30,unemployed,married,high.school,no,no,no,cellular,may,mon,417,1,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes
+39,admin.,married,high.school,no,yes,no,cellular,may,mon,301,3,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes
+35,services,married,basic.6y,no,yes,no,cellular,may,mon,136,1,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+36,admin.,married,high.school,no,yes,no,telephone,may,mon,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+65,management,married,university.degree,no,no,no,telephone,may,mon,1076,3,6,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes
+28,admin.,married,university.degree,no,yes,no,cellular,may,mon,643,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+36,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,47,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+34,services,married,professional.course,no,yes,yes,cellular,may,mon,275,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+36,unemployed,single,university.degree,no,yes,no,cellular,may,mon,251,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+50,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,293,3,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes
+35,services,married,basic.6y,no,no,no,cellular,may,mon,592,1,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes
+26,student,single,university.degree,no,no,yes,cellular,may,mon,90,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+52,admin.,single,high.school,no,no,no,cellular,may,mon,437,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+34,services,married,professional.course,no,yes,no,cellular,may,mon,101,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+25,technician,unknown,university.degree,no,yes,no,cellular,may,mon,346,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+28,blue-collar,married,basic.6y,unknown,no,no,cellular,may,mon,364,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+43,entrepreneur,married,basic.6y,no,yes,no,cellular,may,mon,195,3,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+51,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,59,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+30,services,single,high.school,no,yes,yes,cellular,may,mon,95,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+59,retired,married,basic.6y,no,no,no,cellular,may,mon,233,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+27,student,single,high.school,no,no,no,cellular,may,mon,64,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+27,management,single,university.degree,no,yes,no,cellular,may,mon,77,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+32,student,single,unknown,no,no,yes,cellular,may,mon,77,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+66,management,married,university.degree,no,no,no,cellular,may,mon,98,4,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,may,mon,274,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+49,admin.,married,university.degree,no,yes,no,telephone,may,mon,15,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+52,admin.,single,high.school,no,no,no,cellular,may,mon,127,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+57,admin.,single,university.degree,no,no,yes,cellular,may,mon,532,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+31,student,single,unknown,no,no,yes,cellular,may,mon,535,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+25,technician,married,university.degree,no,no,no,cellular,may,mon,106,1,999,2,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+36,technician,married,university.degree,no,no,yes,cellular,may,mon,287,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,yes
+42,admin.,married,professional.course,no,yes,no,cellular,may,mon,174,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+62,retired,married,professional.course,no,yes,no,cellular,may,mon,212,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+42,admin.,married,professional.course,no,no,yes,cellular,may,mon,300,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+53,admin.,divorced,university.degree,no,yes,no,cellular,may,mon,367,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+27,management,single,university.degree,no,no,no,cellular,may,mon,52,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+35,services,married,high.school,no,no,no,cellular,may,mon,297,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+26,admin.,single,university.degree,no,yes,no,telephone,may,mon,77,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+30,unemployed,married,high.school,no,yes,no,cellular,may,mon,214,3,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes
+59,retired,married,basic.6y,no,yes,no,cellular,may,mon,228,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+39,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,378,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+45,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,7,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+43,admin.,single,university.degree,no,yes,no,telephone,may,mon,34,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+33,services,married,high.school,no,no,yes,cellular,may,mon,347,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+35,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,291,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+34,services,married,professional.course,no,no,no,cellular,may,mon,190,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+33,blue-collar,married,high.school,unknown,yes,yes,cellular,may,mon,164,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+33,blue-collar,married,high.school,unknown,yes,no,cellular,may,mon,92,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+60,blue-collar,married,unknown,unknown,yes,no,cellular,may,mon,26,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+34,services,married,professional.course,no,no,no,cellular,may,mon,90,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+30,admin.,single,university.degree,no,no,no,telephone,may,mon,222,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+42,services,married,high.school,no,yes,no,cellular,may,mon,74,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+53,management,married,high.school,no,yes,no,cellular,may,mon,383,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,may,mon,434,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+42,admin.,married,professional.course,no,yes,yes,cellular,may,mon,172,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+45,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,54,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+49,unemployed,married,high.school,no,yes,no,telephone,may,mon,96,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+57,technician,married,university.degree,no,yes,no,cellular,may,mon,334,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+55,technician,married,basic.9y,unknown,no,no,cellular,may,mon,180,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+25,technician,unknown,university.degree,no,yes,yes,cellular,may,mon,150,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+35,admin.,married,professional.course,no,yes,no,cellular,may,mon,76,2,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no
+27,blue-collar,unknown,high.school,no,no,no,cellular,may,mon,173,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+31,student,single,unknown,no,no,yes,cellular,may,mon,63,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+58,retired,married,university.degree,no,yes,no,telephone,may,mon,101,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+43,admin.,married,professional.course,no,yes,yes,cellular,may,mon,238,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+31,admin.,divorced,university.degree,no,yes,yes,cellular,may,mon,79,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+31,services,married,high.school,unknown,no,no,cellular,may,mon,619,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+38,admin.,single,university.degree,no,no,no,cellular,may,mon,190,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+36,entrepreneur,married,basic.9y,no,no,no,cellular,may,mon,257,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,may,mon,370,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+41,admin.,single,high.school,no,yes,no,cellular,may,mon,306,3,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+35,services,married,high.school,no,no,no,cellular,may,mon,130,3,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+39,technician,married,professional.course,no,yes,no,cellular,may,mon,1046,3,11,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes
+27,technician,single,university.degree,no,yes,no,cellular,may,mon,77,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+27,technician,single,university.degree,no,yes,no,cellular,may,mon,90,4,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+53,admin.,married,high.school,unknown,yes,no,cellular,may,mon,181,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+19,student,single,unknown,no,yes,no,cellular,may,mon,121,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+27,technician,single,university.degree,no,yes,no,telephone,may,mon,336,9,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+44,admin.,divorced,high.school,no,yes,no,cellular,may,mon,72,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+20,technician,single,university.degree,no,no,no,cellular,may,mon,237,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+45,entrepreneur,married,basic.4y,unknown,no,no,cellular,may,mon,211,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+42,admin.,married,professional.course,no,yes,no,cellular,may,mon,458,3,9,2,failure,-1.8,92.893,-46.2,1.354,5099.1,yes
+36,management,married,university.degree,no,no,yes,cellular,may,mon,110,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+31,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,392,7,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+34,self-employed,married,basic.4y,unknown,no,no,cellular,may,mon,100,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+39,blue-collar,married,basic.9y,no,no,yes,cellular,may,mon,124,3,999,2,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+35,admin.,married,professional.course,no,yes,no,cellular,may,mon,115,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+44,self-employed,single,professional.course,no,yes,no,cellular,may,mon,922,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+30,self-employed,married,university.degree,no,no,no,cellular,may,mon,107,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+51,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,77,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+31,technician,single,university.degree,no,no,no,cellular,may,mon,220,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+34,admin.,single,university.degree,no,no,no,cellular,may,mon,75,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+51,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,601,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+39,admin.,single,university.degree,no,no,no,cellular,may,mon,198,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+54,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,191,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+52,admin.,married,university.degree,no,no,yes,cellular,may,mon,434,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+28,admin.,single,university.degree,no,no,no,cellular,may,mon,497,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+48,admin.,married,university.degree,no,no,yes,cellular,may,mon,312,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+42,housemaid,single,high.school,no,yes,no,telephone,may,mon,186,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+53,technician,married,professional.course,no,yes,no,telephone,may,mon,25,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+39,blue-collar,single,basic.9y,no,yes,yes,cellular,may,mon,78,3,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no
+39,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,264,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+58,admin.,married,university.degree,no,yes,yes,cellular,may,mon,353,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+56,housemaid,married,high.school,no,yes,yes,telephone,may,mon,290,3,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+30,technician,single,professional.course,no,no,no,cellular,may,mon,79,4,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+57,self-employed,married,university.degree,no,yes,no,cellular,may,mon,949,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+39,admin.,married,high.school,no,unknown,unknown,cellular,may,mon,99,2,999,2,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+56,admin.,married,basic.9y,no,yes,yes,cellular,may,mon,313,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+30,unemployed,married,high.school,no,yes,yes,telephone,may,mon,104,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+30,admin.,married,university.degree,no,yes,yes,cellular,may,mon,742,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+22,student,single,high.school,no,yes,yes,cellular,may,mon,1370,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+42,admin.,married,university.degree,no,yes,no,cellular,may,mon,20,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+52,blue-collar,married,basic.4y,unknown,no,no,cellular,may,mon,528,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+34,services,married,professional.course,no,yes,yes,cellular,may,mon,675,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+28,technician,single,high.school,no,yes,no,cellular,may,mon,134,3,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+35,housemaid,single,university.degree,no,no,yes,cellular,may,mon,126,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+35,admin.,married,high.school,no,yes,yes,telephone,may,mon,159,10,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+32,self-employed,married,basic.6y,no,yes,no,cellular,may,mon,1121,3,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no
+61,technician,divorced,professional.course,no,yes,no,cellular,may,mon,268,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+42,admin.,married,university.degree,no,yes,no,cellular,may,mon,230,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+50,self-employed,married,high.school,no,yes,no,cellular,may,mon,172,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+41,services,single,high.school,no,yes,no,cellular,may,mon,417,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+26,student,single,high.school,no,no,no,cellular,may,mon,716,3,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,yes
+40,admin.,married,university.degree,no,no,no,cellular,may,mon,365,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+38,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,240,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+36,entrepreneur,married,basic.9y,no,no,no,cellular,may,mon,104,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+81,retired,married,basic.4y,no,no,no,cellular,may,mon,617,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+46,services,married,basic.6y,no,yes,no,telephone,may,mon,89,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+56,technician,married,professional.course,no,yes,yes,cellular,may,mon,333,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+59,retired,married,basic.4y,no,no,no,cellular,may,mon,13,6,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+21,student,single,unknown,no,no,no,cellular,may,mon,288,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+44,technician,married,high.school,no,no,no,cellular,may,mon,174,5,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+50,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,483,4,3,2,success,-1.8,92.893,-46.2,1.354,5099.1,yes
+51,technician,married,professional.course,no,yes,no,cellular,may,mon,8,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+39,admin.,married,high.school,no,no,no,telephone,may,mon,6,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+46,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,1091,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+53,technician,married,professional.course,no,no,no,cellular,may,mon,206,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+29,management,married,university.degree,no,no,no,telephone,may,mon,150,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+39,admin.,married,high.school,no,no,no,cellular,may,mon,1063,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+39,admin.,married,university.degree,no,yes,no,telephone,may,mon,36,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+37,entrepreneur,married,university.degree,no,yes,no,cellular,may,mon,79,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+53,management,married,high.school,no,yes,no,cellular,may,mon,8,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+37,technician,single,professional.course,no,no,no,telephone,may,mon,21,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+43,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,99,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+34,services,married,professional.course,no,yes,no,cellular,may,mon,72,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+27,student,single,university.degree,no,yes,no,telephone,may,mon,354,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+42,services,married,high.school,no,yes,no,cellular,may,mon,520,2,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no
+59,management,married,university.degree,no,no,no,telephone,may,mon,340,8,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+45,admin.,married,university.degree,no,yes,no,cellular,may,mon,254,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+43,admin.,married,high.school,no,yes,no,cellular,may,mon,76,4,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no
+44,self-employed,married,high.school,no,yes,no,cellular,may,mon,108,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+57,entrepreneur,married,basic.9y,no,yes,no,cellular,may,mon,429,4,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,yes
+59,unknown,married,unknown,no,yes,no,cellular,may,mon,399,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+48,unemployed,married,professional.course,no,yes,yes,cellular,may,mon,10,4,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+32,services,single,high.school,no,no,no,cellular,may,mon,196,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+30,unknown,married,professional.course,no,no,no,cellular,may,mon,399,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+50,entrepreneur,married,basic.9y,no,yes,no,telephone,may,mon,331,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+29,admin.,married,university.degree,unknown,yes,no,cellular,may,mon,11,4,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no
+44,self-employed,single,professional.course,no,yes,no,cellular,may,mon,775,5,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,yes
+37,technician,single,professional.course,no,yes,no,cellular,may,mon,78,4,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+46,admin.,single,high.school,no,no,yes,cellular,may,mon,83,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+49,technician,married,high.school,no,yes,no,cellular,may,mon,143,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+53,admin.,married,basic.9y,no,no,no,telephone,may,mon,40,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+51,unemployed,married,high.school,no,no,no,cellular,may,mon,14,5,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no
+24,technician,single,high.school,no,yes,no,cellular,may,mon,841,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+44,self-employed,single,professional.course,no,no,no,cellular,may,mon,230,6,12,1,success,-1.8,92.893,-46.2,1.354,5099.1,no
+37,unknown,single,university.degree,no,yes,no,cellular,may,mon,23,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+44,self-employed,married,high.school,no,no,yes,cellular,may,mon,15,4,999,2,failure,-1.8,92.893,-46.2,1.354,5099.1,no
+36,management,married,university.degree,no,yes,no,cellular,may,mon,7,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+39,unemployed,single,basic.9y,no,yes,no,telephone,may,mon,846,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+31,services,married,high.school,unknown,no,no,telephone,may,mon,211,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+56,housemaid,married,high.school,no,no,no,cellular,may,mon,9,8,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+56,services,divorced,high.school,no,no,no,telephone,may,mon,640,7,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes
+49,admin.,divorced,university.degree,no,no,no,cellular,may,mon,124,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+36,technician,married,professional.course,no,yes,no,cellular,may,mon,16,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+50,self-employed,married,basic.9y,no,yes,yes,cellular,may,mon,673,6,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes
+25,management,single,university.degree,no,yes,no,cellular,may,mon,362,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+56,services,married,high.school,no,yes,no,cellular,may,mon,520,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+34,admin.,married,university.degree,no,yes,yes,telephone,may,mon,75,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+59,unknown,married,unknown,no,yes,no,cellular,may,mon,8,7,6,1,success,-1.8,92.893,-46.2,1.354,5099.1,no
+45,admin.,married,university.degree,no,yes,yes,telephone,may,mon,157,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no
+60,admin.,married,university.degree,no,yes,no,cellular,may,mon,226,2,11,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes
+39,blue-collar,single,basic.4y,no,no,yes,cellular,may,tue,205,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,services,married,high.school,no,yes,no,cellular,may,tue,574,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,may,tue,159,8,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,85,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+25,services,married,high.school,no,no,no,cellular,may,tue,171,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,admin.,divorced,high.school,no,yes,no,cellular,may,tue,136,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,retired,married,high.school,no,yes,no,cellular,may,tue,762,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+32,blue-collar,single,basic.4y,no,yes,no,cellular,may,tue,813,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+28,services,single,unknown,no,no,no,cellular,may,tue,466,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,tue,88,3,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+58,services,divorced,high.school,unknown,yes,no,cellular,may,tue,29,6,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+40,admin.,single,high.school,no,yes,no,cellular,may,tue,142,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,94,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,management,married,university.degree,no,yes,no,cellular,may,tue,35,6,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+38,admin.,married,university.degree,no,no,no,telephone,may,tue,11,6,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+48,services,married,basic.4y,no,no,no,cellular,may,tue,17,5,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+57,retired,married,basic.6y,no,no,no,cellular,may,tue,148,4,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,155,4,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+55,retired,married,basic.4y,no,no,no,cellular,may,tue,43,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+40,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,307,4,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+36,admin.,divorced,high.school,no,yes,no,telephone,may,tue,19,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+32,technician,single,professional.course,no,no,no,cellular,may,tue,146,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,39,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+19,student,single,high.school,unknown,no,yes,cellular,may,tue,106,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+44,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,15,7,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,admin.,married,basic.9y,no,yes,no,cellular,may,tue,272,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+44,services,married,high.school,no,yes,no,cellular,may,tue,10,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+29,admin.,single,university.degree,no,no,no,cellular,may,tue,245,6,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+44,admin.,single,professional.course,unknown,no,no,cellular,may,tue,18,6,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,84,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,admin.,married,basic.9y,no,yes,no,cellular,may,tue,24,7,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,housemaid,married,basic.9y,unknown,yes,no,cellular,may,tue,145,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+40,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,337,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+43,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,184,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+42,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,632,5,10,1,success,-1.8,92.893,-46.2,1.344,5099.1,no
+38,admin.,divorced,high.school,no,no,no,cellular,may,tue,326,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,222,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,169,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+32,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,tue,105,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,363,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,332,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+42,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,334,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,72,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+35,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,tue,214,1,0,1,success,-1.8,92.893,-46.2,1.344,5099.1,no
+38,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,276,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+34,management,married,university.degree,no,yes,yes,cellular,may,tue,106,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,admin.,divorced,high.school,no,no,yes,cellular,may,tue,461,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+35,services,married,high.school,unknown,yes,no,cellular,may,tue,31,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+32,technician,single,university.degree,no,yes,no,cellular,may,tue,51,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+35,services,married,high.school,unknown,yes,no,cellular,may,tue,215,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,301,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,415,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,admin.,married,high.school,unknown,yes,no,cellular,may,tue,17,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,151,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+29,services,divorced,high.school,no,no,no,cellular,may,tue,259,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+41,admin.,married,high.school,no,yes,no,cellular,may,tue,181,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+33,admin.,married,high.school,unknown,yes,no,cellular,may,tue,169,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,admin.,married,high.school,unknown,no,no,cellular,may,tue,168,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+47,technician,married,professional.course,unknown,yes,no,cellular,may,tue,60,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,98,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,243,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+47,services,married,high.school,unknown,yes,no,cellular,may,tue,377,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+49,admin.,married,high.school,no,no,no,cellular,may,tue,57,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+41,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,234,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.4y,unknown,no,no,cellular,may,tue,234,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+40,admin.,single,high.school,no,no,no,cellular,may,tue,17,6,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,129,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+30,admin.,single,high.school,no,no,no,cellular,may,tue,154,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+39,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,29,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+38,entrepreneur,married,professional.course,no,no,yes,cellular,may,tue,266,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+39,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,163,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+38,entrepreneur,married,professional.course,no,yes,no,cellular,may,tue,382,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+39,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,225,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+58,admin.,single,university.degree,no,no,no,cellular,may,tue,358,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+49,admin.,married,high.school,no,yes,no,cellular,may,tue,668,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,yes
+44,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,180,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+39,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,494,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+49,blue-collar,married,professional.course,no,yes,yes,cellular,may,tue,121,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+38,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,tue,391,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+51,admin.,married,basic.4y,unknown,no,no,cellular,may,tue,142,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+41,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,1240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+35,blue-collar,married,high.school,no,no,no,cellular,may,tue,895,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+58,admin.,single,university.degree,no,yes,no,cellular,may,tue,851,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+49,blue-collar,married,professional.course,no,yes,yes,cellular,may,tue,145,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+49,blue-collar,married,professional.course,no,no,no,cellular,may,tue,118,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+50,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,392,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+43,blue-collar,married,basic.6y,no,no,yes,cellular,may,tue,175,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,self-employed,married,basic.9y,no,yes,yes,cellular,may,tue,731,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+35,technician,divorced,professional.course,no,no,no,cellular,may,tue,301,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+38,technician,married,university.degree,no,yes,no,cellular,may,tue,55,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+43,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,286,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+47,management,married,university.degree,no,no,no,cellular,may,tue,242,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+51,admin.,married,basic.4y,unknown,no,no,cellular,may,tue,516,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,blue-collar,married,unknown,no,yes,no,cellular,may,tue,163,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+31,services,single,basic.9y,no,no,no,cellular,may,tue,163,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+35,blue-collar,single,high.school,no,yes,no,cellular,may,tue,173,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+45,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,86,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,blue-collar,married,high.school,no,yes,no,cellular,may,tue,863,1,3,2,success,-1.8,92.893,-46.2,1.344,5099.1,yes
+35,admin.,single,university.degree,no,yes,no,telephone,may,tue,227,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+29,student,single,high.school,unknown,no,yes,cellular,may,tue,139,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+36,admin.,single,high.school,no,yes,no,cellular,may,tue,479,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+31,services,single,high.school,no,yes,no,cellular,may,tue,28,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+45,entrepreneur,divorced,basic.9y,no,yes,yes,cellular,may,tue,17,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+31,services,single,high.school,no,yes,no,cellular,may,tue,62,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+42,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,80,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+41,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,tue,48,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+40,management,married,university.degree,no,yes,no,cellular,may,tue,459,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+44,services,married,high.school,no,yes,no,cellular,may,tue,358,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+48,blue-collar,single,basic.4y,unknown,yes,yes,cellular,may,tue,233,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+35,blue-collar,divorced,high.school,no,yes,no,cellular,may,tue,187,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+45,blue-collar,married,unknown,unknown,yes,no,cellular,may,tue,131,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+39,retired,divorced,basic.4y,no,yes,no,cellular,may,tue,188,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+50,technician,married,unknown,no,no,no,cellular,may,tue,95,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+35,blue-collar,single,high.school,no,no,no,cellular,may,tue,1090,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+55,self-employed,married,basic.9y,no,yes,no,cellular,may,tue,604,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+41,management,single,basic.9y,no,no,no,cellular,may,tue,381,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+39,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,103,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+54,blue-collar,married,high.school,unknown,yes,yes,cellular,may,tue,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,entrepreneur,single,university.degree,no,yes,no,cellular,may,tue,168,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+39,blue-collar,married,basic.6y,no,yes,yes,cellular,may,tue,225,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+43,blue-collar,married,basic.9y,unknown,unknown,unknown,cellular,may,tue,46,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+40,management,married,professional.course,no,unknown,unknown,cellular,may,tue,247,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+50,technician,married,unknown,no,yes,yes,cellular,may,tue,400,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+54,blue-collar,married,high.school,unknown,yes,no,cellular,may,tue,323,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+57,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,269,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+50,technician,married,unknown,no,yes,no,cellular,may,tue,500,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+43,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,180,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,management,married,university.degree,no,no,yes,cellular,may,tue,252,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+43,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,545,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+45,technician,divorced,university.degree,unknown,yes,no,cellular,may,tue,298,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+28,blue-collar,single,basic.9y,unknown,no,no,cellular,may,tue,718,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,620,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,blue-collar,married,unknown,no,yes,no,cellular,may,tue,696,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.9y,no,no,yes,cellular,may,tue,239,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,services,married,professional.course,no,yes,no,cellular,may,tue,44,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,blue-collar,married,basic.6y,no,yes,yes,cellular,may,tue,98,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+43,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,68,1,6,1,success,-1.8,92.893,-46.2,1.344,5099.1,no
+38,technician,married,professional.course,no,no,no,cellular,may,tue,188,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+43,blue-collar,married,basic.9y,unknown,unknown,unknown,cellular,may,tue,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+48,services,married,basic.4y,no,no,no,cellular,may,tue,1130,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+35,services,married,basic.6y,unknown,yes,no,cellular,may,tue,136,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+30,admin.,married,high.school,no,no,yes,cellular,may,tue,838,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+34,technician,single,professional.course,no,yes,no,cellular,may,tue,325,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+45,blue-collar,married,basic.4y,unknown,no,yes,cellular,may,tue,397,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+46,blue-collar,married,high.school,no,no,yes,cellular,may,tue,173,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+44,blue-collar,married,basic.4y,unknown,no,no,cellular,may,tue,659,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+44,admin.,married,university.degree,no,yes,no,cellular,may,tue,201,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+30,blue-collar,single,basic.9y,no,no,yes,cellular,may,tue,143,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+30,technician,single,university.degree,no,no,yes,cellular,may,tue,39,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+46,blue-collar,married,high.school,no,no,no,cellular,may,tue,456,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,196,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+30,technician,single,university.degree,no,yes,no,cellular,may,tue,150,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,tue,108,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,single,basic.6y,unknown,no,no,cellular,may,tue,141,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+36,admin.,divorced,high.school,no,yes,no,cellular,may,tue,236,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+38,technician,married,university.degree,no,no,no,telephone,may,tue,125,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+46,blue-collar,married,high.school,no,yes,no,cellular,may,tue,675,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+44,entrepreneur,married,basic.4y,no,unknown,unknown,cellular,may,tue,84,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,258,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,admin.,single,high.school,no,no,no,telephone,may,tue,60,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+40,admin.,single,high.school,no,no,no,cellular,may,tue,18,6,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+44,entrepreneur,married,basic.4y,no,unknown,unknown,cellular,may,tue,241,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+33,admin.,single,high.school,no,no,no,cellular,may,tue,151,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,admin.,single,high.school,no,no,no,cellular,may,tue,154,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,admin.,single,high.school,no,no,no,cellular,may,tue,399,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,technician,married,university.degree,no,no,no,cellular,may,tue,34,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+47,blue-collar,divorced,basic.9y,no,no,no,cellular,may,tue,295,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+51,blue-collar,married,professional.course,unknown,yes,no,cellular,may,tue,273,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,admin.,single,high.school,no,yes,no,cellular,may,tue,659,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,admin.,married,high.school,no,yes,no,cellular,may,tue,345,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+39,services,divorced,professional.course,no,yes,yes,cellular,may,tue,227,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+32,admin.,married,high.school,no,yes,no,cellular,may,tue,323,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+40,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,335,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+32,admin.,divorced,high.school,no,yes,no,cellular,may,tue,294,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+54,self-employed,married,university.degree,no,no,yes,cellular,may,tue,388,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+49,entrepreneur,married,high.school,no,no,no,cellular,may,tue,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+28,services,single,unknown,no,yes,no,cellular,may,tue,87,4,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+49,entrepreneur,married,high.school,no,no,no,cellular,may,tue,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+58,retired,married,high.school,unknown,no,no,cellular,may,tue,127,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+32,services,married,high.school,no,no,no,cellular,may,tue,106,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+32,services,married,high.school,no,no,no,cellular,may,tue,79,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+47,entrepreneur,married,unknown,unknown,yes,no,telephone,may,tue,22,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+58,retired,married,high.school,unknown,yes,no,cellular,may,tue,159,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+32,technician,married,high.school,no,yes,no,cellular,may,tue,67,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+45,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,tue,623,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+47,entrepreneur,married,unknown,unknown,yes,no,cellular,may,tue,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+44,admin.,single,professional.course,unknown,yes,no,cellular,may,tue,54,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,blue-collar,married,unknown,unknown,no,no,cellular,may,tue,409,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+45,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,tue,335,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+35,technician,married,professional.course,no,yes,no,cellular,may,tue,206,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+40,technician,married,high.school,no,yes,no,cellular,may,tue,394,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+51,blue-collar,married,basic.6y,no,unknown,unknown,cellular,may,tue,811,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+42,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,272,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+35,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,65,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+57,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,145,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,442,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+49,blue-collar,married,basic.6y,unknown,no,no,cellular,may,tue,568,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,yes
+34,admin.,married,high.school,no,yes,yes,cellular,may,tue,259,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+36,admin.,single,high.school,no,yes,no,cellular,may,tue,220,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+32,management,divorced,university.degree,no,yes,no,cellular,may,tue,59,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,management,single,university.degree,no,yes,no,cellular,may,tue,42,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+32,management,divorced,university.degree,no,yes,no,cellular,may,tue,313,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+45,entrepreneur,divorced,basic.9y,no,yes,no,cellular,may,tue,29,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+43,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,13,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+39,blue-collar,single,basic.4y,no,no,no,cellular,may,tue,231,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+32,technician,married,professional.course,no,yes,no,cellular,may,tue,235,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+44,entrepreneur,married,basic.4y,no,yes,no,cellular,may,tue,955,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+37,management,divorced,unknown,no,yes,no,cellular,may,tue,221,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+52,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,157,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,may,tue,359,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+53,admin.,single,high.school,no,yes,no,cellular,may,tue,470,2,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+31,unemployed,single,university.degree,no,yes,no,cellular,may,tue,11,9,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,admin.,married,high.school,no,yes,no,cellular,may,tue,495,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+29,entrepreneur,married,basic.6y,no,yes,no,cellular,may,tue,383,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,admin.,married,high.school,no,no,no,cellular,may,tue,295,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+35,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,management,single,university.degree,no,no,no,cellular,may,tue,107,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+36,retired,single,university.degree,no,yes,no,cellular,may,tue,93,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,management,single,university.degree,no,yes,no,cellular,may,tue,277,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+50,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,166,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+34,services,married,high.school,no,no,no,cellular,may,tue,542,4,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+37,management,single,university.degree,no,yes,no,cellular,may,tue,58,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+58,services,divorced,high.school,unknown,yes,no,cellular,may,tue,237,4,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+38,entrepreneur,married,basic.4y,no,no,no,cellular,may,tue,184,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+49,blue-collar,married,professional.course,no,no,no,cellular,may,tue,325,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,technician,single,professional.course,no,no,no,cellular,may,tue,1221,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,yes
+38,entrepreneur,married,basic.4y,no,yes,no,cellular,may,tue,360,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+34,services,married,high.school,unknown,no,no,cellular,may,tue,245,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,admin.,single,high.school,no,yes,no,cellular,may,tue,67,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+52,blue-collar,married,high.school,no,yes,no,cellular,may,tue,131,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+52,blue-collar,married,high.school,no,no,no,cellular,may,tue,57,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,services,single,basic.9y,no,no,no,cellular,may,tue,37,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,257,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+39,blue-collar,married,basic.6y,unknown,no,no,cellular,may,tue,132,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,services,single,basic.9y,no,no,no,cellular,may,tue,247,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,services,single,basic.9y,no,no,no,cellular,may,tue,348,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+54,services,divorced,university.degree,no,yes,no,cellular,may,tue,335,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+43,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,217,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,admin.,married,basic.9y,no,no,no,cellular,may,tue,127,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+30,services,married,high.school,no,yes,no,cellular,may,tue,93,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+54,services,divorced,university.degree,no,no,no,cellular,may,tue,499,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+44,management,married,university.degree,no,yes,no,cellular,may,tue,71,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+30,services,married,high.school,no,no,no,cellular,may,tue,414,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+27,blue-collar,single,basic.9y,no,no,no,cellular,may,tue,64,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+27,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,352,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+51,services,divorced,high.school,unknown,no,no,cellular,may,tue,398,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+57,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,399,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,253,3,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+47,blue-collar,divorced,basic.4y,no,no,no,cellular,may,tue,227,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,160,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+32,management,divorced,university.degree,no,yes,yes,cellular,may,tue,160,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+40,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,316,1,11,1,success,-1.8,92.893,-46.2,1.344,5099.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,may,tue,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+29,admin.,single,university.degree,no,no,no,cellular,may,tue,41,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+29,admin.,single,university.degree,no,yes,yes,cellular,may,tue,76,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+31,services,married,high.school,no,no,yes,cellular,may,tue,284,3,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,may,tue,90,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+29,admin.,single,university.degree,no,no,no,cellular,may,tue,206,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+37,services,married,high.school,no,no,no,cellular,may,tue,157,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.4y,unknown,no,no,cellular,may,tue,246,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+34,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,162,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+40,admin.,single,professional.course,no,yes,no,cellular,may,tue,43,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+41,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,tue,259,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+28,blue-collar,single,university.degree,no,no,no,cellular,may,tue,585,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+39,retired,divorced,basic.4y,no,yes,yes,cellular,may,tue,209,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+31,admin.,divorced,university.degree,no,no,no,cellular,may,tue,290,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+31,admin.,married,high.school,no,yes,no,cellular,may,tue,387,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+36,technician,married,basic.9y,no,yes,yes,cellular,may,tue,67,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,253,1,12,1,success,-1.8,92.893,-46.2,1.344,5099.1,no
+32,self-employed,married,basic.9y,no,no,no,cellular,may,tue,301,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,tue,106,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,entrepreneur,married,high.school,no,no,no,cellular,may,tue,179,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+36,entrepreneur,married,high.school,no,yes,no,cellular,may,tue,283,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+37,services,married,basic.6y,no,yes,no,cellular,may,tue,114,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+54,management,married,university.degree,no,no,no,cellular,may,tue,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+32,technician,married,basic.9y,no,no,no,cellular,may,tue,64,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+54,management,married,university.degree,no,yes,yes,cellular,may,tue,198,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+47,blue-collar,single,basic.4y,unknown,no,no,cellular,may,tue,343,4,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+39,services,married,high.school,no,yes,yes,cellular,may,tue,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+54,management,married,university.degree,no,yes,yes,cellular,may,tue,552,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+30,management,single,university.degree,no,yes,yes,cellular,may,tue,228,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+30,management,single,university.degree,no,no,no,cellular,may,tue,223,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+30,management,single,university.degree,no,no,yes,cellular,may,tue,496,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+51,management,married,high.school,unknown,yes,no,cellular,may,tue,397,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,88,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+30,management,single,university.degree,no,yes,no,cellular,may,tue,876,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+45,admin.,single,high.school,no,yes,no,cellular,may,tue,305,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+31,admin.,divorced,high.school,no,no,no,cellular,may,tue,101,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,334,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+38,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,788,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+31,blue-collar,married,basic.9y,no,no,yes,cellular,may,tue,183,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+33,admin.,married,basic.9y,no,yes,no,cellular,may,tue,118,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+33,services,married,high.school,no,no,no,cellular,may,tue,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+42,entrepreneur,divorced,professional.course,no,yes,no,cellular,may,tue,355,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+41,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,894,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+41,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,1101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,tue,170,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+26,student,single,high.school,unknown,yes,no,cellular,may,tue,205,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+43,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,tue,325,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+41,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,150,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,tue,442,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+31,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,tue,160,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,may,tue,85,8,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+28,services,single,unknown,no,yes,no,cellular,may,tue,83,9,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+44,management,married,university.degree,no,yes,no,cellular,may,tue,281,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,services,unknown,high.school,no,yes,yes,cellular,may,tue,369,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+58,blue-collar,single,basic.4y,unknown,no,no,cellular,may,tue,304,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+46,management,divorced,professional.course,no,no,no,cellular,may,tue,159,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+35,services,single,high.school,no,no,no,cellular,may,tue,71,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+30,services,single,high.school,no,no,no,cellular,may,tue,263,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,technician,married,university.degree,no,no,no,cellular,may,tue,219,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+32,management,divorced,university.degree,no,no,no,cellular,may,tue,342,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,services,married,professional.course,no,yes,no,cellular,may,tue,335,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+38,blue-collar,divorced,high.school,no,yes,no,cellular,may,tue,334,6,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+37,admin.,single,university.degree,no,yes,no,cellular,may,tue,414,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,services,divorced,high.school,unknown,no,no,cellular,may,tue,342,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+45,admin.,single,high.school,no,yes,no,cellular,may,tue,200,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,technician,married,basic.9y,no,yes,no,cellular,may,tue,297,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+32,technician,married,basic.9y,no,yes,no,cellular,may,tue,500,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+26,management,single,university.degree,no,no,no,cellular,may,tue,279,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+19,student,single,high.school,unknown,yes,no,cellular,may,tue,338,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+45,admin.,single,high.school,no,yes,no,cellular,may,tue,318,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+43,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,322,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,management,divorced,unknown,no,yes,no,cellular,may,tue,147,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+42,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,63,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+55,blue-collar,married,high.school,no,no,no,cellular,may,tue,306,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+49,entrepreneur,married,high.school,no,yes,yes,cellular,may,tue,214,3,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+32,technician,married,professional.course,no,yes,no,cellular,may,tue,81,9,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,services,married,high.school,no,no,no,cellular,may,tue,378,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+26,student,single,high.school,unknown,no,no,cellular,may,tue,176,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+33,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,tue,670,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,yes
+43,management,married,university.degree,unknown,no,no,cellular,may,tue,167,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.6y,no,yes,yes,cellular,may,tue,333,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+52,management,married,basic.4y,no,yes,no,cellular,may,tue,1100,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,tue,192,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+39,self-employed,single,university.degree,no,no,no,cellular,may,tue,180,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,477,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+35,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,240,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+41,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,may,tue,124,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,tue,122,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+38,technician,divorced,professional.course,no,yes,yes,cellular,may,tue,351,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,180,3,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+35,services,married,basic.6y,unknown,no,no,cellular,may,tue,178,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+43,blue-collar,divorced,basic.4y,no,unknown,unknown,cellular,may,tue,157,7,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+34,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,211,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+36,admin.,single,university.degree,no,yes,no,telephone,may,tue,521,6,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+48,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,862,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+48,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,169,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,319,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+53,unemployed,married,basic.9y,unknown,yes,no,cellular,may,tue,67,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,75,7,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+57,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,674,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+39,admin.,single,professional.course,no,yes,no,cellular,may,tue,209,5,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+34,technician,married,professional.course,no,yes,no,cellular,may,tue,185,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+40,technician,married,professional.course,no,yes,no,cellular,may,tue,211,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+44,admin.,married,university.degree,no,yes,no,cellular,may,tue,203,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,admin.,married,high.school,no,no,no,cellular,may,tue,205,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+47,management,married,university.degree,no,yes,no,cellular,may,tue,469,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+35,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,tue,523,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,yes,telephone,may,tue,36,7,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+38,technician,married,professional.course,no,no,no,cellular,may,tue,371,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,52,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+55,self-employed,married,basic.9y,no,yes,yes,cellular,may,tue,475,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+39,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,233,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+45,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,672,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+46,blue-collar,married,high.school,no,yes,yes,telephone,may,tue,328,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,1085,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes
+29,entrepreneur,married,basic.6y,no,no,no,cellular,may,tue,118,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+31,admin.,married,university.degree,no,no,no,cellular,may,tue,102,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+31,services,single,high.school,no,no,no,cellular,may,tue,206,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+35,blue-collar,divorced,basic.9y,no,no,no,cellular,may,tue,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,technician,married,university.degree,no,yes,no,cellular,may,tue,370,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+41,blue-collar,married,basic.6y,unknown,no,no,cellular,may,tue,278,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+42,admin.,married,high.school,no,yes,no,cellular,may,tue,111,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+48,blue-collar,single,basic.4y,no,no,no,cellular,may,tue,275,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,320,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+37,admin.,married,high.school,no,no,no,cellular,may,tue,305,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+31,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,259,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,399,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+26,management,single,university.degree,no,yes,no,cellular,may,tue,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+27,technician,single,professional.course,unknown,yes,no,cellular,may,tue,126,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+36,admin.,single,high.school,no,no,no,cellular,may,tue,189,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+46,technician,married,professional.course,no,yes,no,telephone,may,tue,193,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+49,admin.,married,high.school,no,no,no,cellular,may,tue,104,1,6,1,success,-1.8,92.893,-46.2,1.344,5099.1,no
+38,blue-collar,married,professional.course,no,yes,no,cellular,may,tue,418,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+33,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,408,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+40,services,married,high.school,no,no,no,cellular,may,tue,74,8,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+44,management,divorced,university.degree,no,yes,no,cellular,may,tue,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+42,technician,divorced,basic.6y,no,yes,no,cellular,may,tue,221,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no
+46,admin.,divorced,high.school,no,no,no,cellular,may,tue,84,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+46,technician,married,high.school,no,yes,no,cellular,may,tue,368,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+40,admin.,married,professional.course,no,unknown,unknown,cellular,may,tue,305,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,may,tue,614,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no
+53,admin.,married,university.degree,unknown,no,no,cellular,may,wed,160,7,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+34,housemaid,married,high.school,unknown,no,no,cellular,may,wed,104,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+34,housemaid,married,high.school,unknown,no,no,cellular,may,wed,142,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,single,basic.9y,unknown,yes,yes,cellular,may,wed,55,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+31,admin.,married,unknown,no,yes,no,cellular,may,wed,7,11,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+33,technician,married,professional.course,no,yes,no,cellular,may,wed,199,7,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+33,admin.,married,high.school,no,no,no,cellular,may,wed,105,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+50,services,divorced,high.school,no,no,no,cellular,may,wed,148,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,admin.,single,university.degree,no,no,no,cellular,may,wed,88,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+42,services,married,high.school,no,yes,no,cellular,may,wed,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,54,1,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,wed,201,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,blue-collar,single,professional.course,unknown,yes,no,cellular,may,wed,206,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+52,management,divorced,university.degree,no,no,no,cellular,may,wed,451,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes
+38,technician,married,university.degree,no,yes,no,cellular,may,wed,147,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+38,technician,married,university.degree,no,yes,yes,cellular,may,wed,121,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+54,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,303,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+48,blue-collar,married,basic.4y,unknown,no,no,cellular,may,wed,78,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+36,management,married,basic.9y,no,yes,yes,cellular,may,wed,438,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,219,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,management,married,university.degree,no,no,no,cellular,may,wed,210,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+46,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,113,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,may,wed,241,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+51,admin.,divorced,professional.course,no,no,no,cellular,may,wed,194,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+38,technician,married,university.degree,no,yes,no,cellular,may,wed,814,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+47,blue-collar,married,high.school,no,no,no,cellular,may,wed,327,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+35,services,married,high.school,unknown,yes,yes,cellular,may,wed,224,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+38,admin.,married,high.school,no,no,no,cellular,may,wed,275,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,services,married,high.school,unknown,yes,no,cellular,may,wed,257,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,248,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+38,blue-collar,single,basic.4y,no,no,no,cellular,may,wed,207,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+38,admin.,married,high.school,no,yes,no,cellular,may,wed,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,admin.,single,high.school,no,yes,no,cellular,may,wed,653,1,11,1,success,-1.8,92.893,-46.2,1.334,5099.1,yes
+40,services,single,high.school,no,no,no,cellular,may,wed,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,services,single,high.school,no,yes,no,cellular,may,wed,87,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,married,high.school,no,yes,no,cellular,may,wed,207,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+58,services,married,basic.6y,unknown,no,no,cellular,may,wed,327,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,may,wed,215,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+36,technician,married,professional.course,no,yes,no,cellular,may,wed,62,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,293,1,11,1,success,-1.8,92.893,-46.2,1.334,5099.1,no
+48,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,334,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+37,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,372,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+37,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,345,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,admin.,single,high.school,no,no,no,cellular,may,wed,473,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,may,wed,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,blue-collar,married,high.school,no,no,no,cellular,may,wed,285,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,may,wed,128,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+41,entrepreneur,married,basic.4y,no,yes,no,cellular,may,wed,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,technician,married,professional.course,no,yes,no,cellular,may,wed,731,1,10,1,success,-1.8,92.893,-46.2,1.334,5099.1,yes
+41,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,488,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+29,admin.,single,university.degree,no,no,no,cellular,may,wed,401,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+36,management,single,university.degree,no,yes,no,cellular,may,wed,38,1,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+29,admin.,single,university.degree,no,yes,yes,cellular,may,wed,74,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+46,admin.,married,high.school,unknown,yes,no,cellular,may,wed,293,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+33,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,473,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+25,student,single,basic.9y,no,no,yes,cellular,may,wed,219,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+48,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,14,11,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+50,services,divorced,high.school,no,no,yes,cellular,may,wed,178,5,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+32,technician,single,professional.course,no,no,no,cellular,may,wed,362,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,wed,343,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+27,services,married,high.school,no,yes,no,cellular,may,wed,152,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+53,blue-collar,married,professional.course,unknown,no,no,cellular,may,wed,403,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+41,entrepreneur,married,basic.4y,no,no,yes,cellular,may,wed,767,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+45,housemaid,married,basic.6y,no,yes,no,cellular,may,wed,236,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+55,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,249,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,227,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+41,self-employed,married,unknown,unknown,no,no,cellular,may,wed,100,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+45,entrepreneur,married,university.degree,no,no,no,cellular,may,wed,139,6,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+53,blue-collar,married,professional.course,unknown,no,yes,cellular,may,wed,595,5,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+48,technician,single,professional.course,no,yes,no,cellular,may,wed,142,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,may,wed,376,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+33,services,married,professional.course,unknown,yes,no,cellular,may,wed,160,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+54,technician,divorced,university.degree,no,yes,no,cellular,may,wed,132,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+37,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,438,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+38,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,100,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+44,blue-collar,married,basic.4y,no,yes,yes,cellular,may,wed,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+46,services,divorced,basic.9y,no,unknown,unknown,cellular,may,wed,222,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,blue-collar,married,basic.9y,no,no,yes,cellular,may,wed,50,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+40,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,954,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+46,services,divorced,basic.9y,no,yes,no,cellular,may,wed,403,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,divorced,basic.9y,unknown,no,no,cellular,may,wed,106,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+30,blue-collar,divorced,high.school,unknown,no,no,cellular,may,wed,848,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes
+39,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,may,wed,304,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,blue-collar,married,basic.9y,no,no,yes,cellular,may,wed,439,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+48,entrepreneur,married,basic.6y,no,no,no,cellular,may,wed,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,may,wed,36,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+57,admin.,married,high.school,no,no,no,cellular,may,wed,644,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+31,services,married,high.school,no,no,yes,cellular,may,wed,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,34,9,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+42,blue-collar,single,basic.9y,no,yes,yes,cellular,may,wed,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,married,professional.course,no,yes,no,cellular,may,wed,145,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,married,professional.course,no,yes,no,cellular,may,wed,72,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+46,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,19,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,272,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,married,professional.course,no,yes,no,cellular,may,wed,177,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,single,high.school,no,no,no,cellular,may,wed,90,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,single,high.school,no,yes,no,cellular,may,wed,125,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+31,services,married,high.school,no,no,no,cellular,may,wed,339,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,single,high.school,no,no,no,cellular,may,wed,153,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,admin.,single,university.degree,unknown,yes,no,cellular,may,wed,530,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+31,blue-collar,single,high.school,no,yes,no,cellular,may,wed,291,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+28,admin.,single,university.degree,no,no,yes,cellular,may,wed,223,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+37,admin.,married,university.degree,no,no,no,cellular,may,wed,208,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+35,technician,married,professional.course,no,yes,no,cellular,may,wed,54,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+36,management,married,basic.9y,no,yes,no,cellular,may,wed,503,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,technician,single,professional.course,no,no,no,cellular,may,wed,174,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,divorced,basic.9y,unknown,no,no,cellular,may,wed,95,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,single,high.school,no,no,no,cellular,may,wed,465,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+35,services,married,high.school,unknown,no,no,cellular,may,wed,257,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+44,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,168,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,services,married,high.school,unknown,yes,no,cellular,may,wed,404,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+27,student,single,university.degree,no,no,no,cellular,may,wed,253,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+43,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,wed,147,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+43,blue-collar,married,basic.4y,unknown,no,yes,cellular,may,wed,153,1,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+41,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+27,student,single,university.degree,no,no,no,cellular,may,wed,274,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+44,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,278,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+51,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+25,admin.,single,university.degree,no,no,no,cellular,may,wed,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+49,admin.,married,high.school,no,yes,no,cellular,may,wed,115,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+41,blue-collar,single,basic.9y,no,yes,yes,cellular,may,wed,366,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+30,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,129,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+45,unemployed,divorced,high.school,no,no,no,cellular,may,wed,90,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+28,technician,single,high.school,no,yes,no,cellular,may,wed,576,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+25,admin.,single,university.degree,no,yes,no,cellular,may,wed,209,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+41,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,597,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+45,unemployed,divorced,high.school,no,yes,yes,cellular,may,wed,274,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+41,admin.,single,basic.9y,unknown,no,no,cellular,may,wed,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,188,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+37,housemaid,married,basic.6y,unknown,no,no,cellular,may,wed,177,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,technician,married,professional.course,no,yes,yes,cellular,may,wed,137,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+38,blue-collar,single,basic.6y,unknown,no,yes,cellular,may,wed,42,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,services,single,high.school,no,yes,no,cellular,may,wed,305,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,married,basic.4y,unknown,no,yes,cellular,may,wed,162,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,151,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,technician,single,professional.course,no,no,no,cellular,may,wed,340,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+48,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,109,1,12,1,success,-1.8,92.893,-46.2,1.334,5099.1,no
+26,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,209,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+48,blue-collar,married,basic.4y,no,no,yes,cellular,may,wed,170,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+47,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,569,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+39,technician,divorced,professional.course,no,yes,no,cellular,may,wed,597,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+48,technician,married,professional.course,unknown,yes,no,cellular,may,wed,274,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+46,services,married,basic.9y,no,no,no,cellular,may,wed,984,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes
+31,services,single,high.school,no,yes,no,cellular,may,wed,234,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,technician,married,professional.course,no,yes,no,cellular,may,wed,156,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,technician,married,professional.course,no,no,no,cellular,may,wed,339,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+33,entrepreneur,married,university.degree,unknown,no,no,cellular,may,wed,205,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+43,management,married,university.degree,no,yes,no,cellular,may,wed,124,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+42,blue-collar,married,high.school,no,yes,no,cellular,may,wed,597,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+43,management,married,university.degree,no,no,yes,cellular,may,wed,226,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,143,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,181,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+46,services,divorced,basic.9y,no,no,no,cellular,may,wed,96,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+48,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,164,5,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+48,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,238,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+57,entrepreneur,divorced,basic.9y,no,yes,no,cellular,may,wed,236,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+39,admin.,single,high.school,no,no,no,cellular,may,wed,158,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,admin.,married,basic.9y,no,yes,yes,telephone,may,wed,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+20,blue-collar,single,high.school,no,yes,no,cellular,may,wed,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,blue-collar,married,basic.4y,no,yes,yes,cellular,may,wed,338,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,entrepreneur,married,university.degree,no,yes,no,cellular,may,wed,187,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+28,technician,single,professional.course,no,no,no,cellular,may,wed,116,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+28,technician,single,professional.course,no,yes,yes,cellular,may,wed,196,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,admin.,married,high.school,no,yes,no,cellular,may,wed,49,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+20,blue-collar,single,high.school,no,yes,no,cellular,may,wed,410,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+42,services,married,high.school,no,no,no,cellular,may,wed,990,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+28,technician,single,professional.course,no,yes,no,cellular,may,wed,244,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,single,basic.6y,unknown,no,no,cellular,may,wed,47,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,technician,divorced,professional.course,no,no,no,cellular,may,wed,258,8,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,267,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,blue-collar,married,unknown,no,yes,no,cellular,may,wed,123,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+36,admin.,married,university.degree,no,no,no,cellular,may,wed,37,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,blue-collar,married,high.school,no,yes,no,telephone,may,wed,186,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+53,admin.,married,university.degree,unknown,yes,no,cellular,may,wed,59,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+25,services,single,high.school,no,no,no,cellular,may,wed,333,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+58,retired,married,basic.9y,no,no,yes,cellular,may,wed,144,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+37,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,225,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+38,admin.,married,basic.9y,no,yes,no,cellular,may,wed,472,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,technician,single,professional.course,no,no,no,cellular,may,wed,45,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,single,basic.4y,no,unknown,unknown,cellular,may,wed,1079,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+41,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+38,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,161,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+36,technician,single,professional.course,no,no,no,cellular,may,wed,199,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,admin.,single,university.degree,no,no,no,cellular,may,wed,68,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,may,wed,60,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,wed,686,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+42,self-employed,married,university.degree,unknown,unknown,unknown,cellular,may,wed,64,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+29,admin.,single,high.school,no,unknown,unknown,cellular,may,wed,249,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+38,blue-collar,married,high.school,unknown,yes,no,cellular,may,wed,198,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+38,admin.,married,university.degree,no,unknown,unknown,cellular,may,wed,118,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+51,admin.,single,university.degree,no,no,no,cellular,may,wed,187,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+50,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,146,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+37,blue-collar,married,basic.6y,no,no,yes,cellular,may,wed,364,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+31,admin.,married,unknown,no,yes,no,cellular,may,wed,208,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+47,services,married,high.school,unknown,no,no,cellular,may,wed,378,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+31,technician,single,unknown,no,yes,no,cellular,may,wed,84,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+54,management,divorced,university.degree,no,no,no,telephone,may,wed,10,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+54,management,divorced,university.degree,no,yes,yes,telephone,may,wed,39,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+35,technician,married,professional.course,no,no,no,cellular,may,wed,66,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,admin.,single,high.school,no,yes,no,cellular,may,wed,78,1,12,1,success,-1.8,92.893,-46.2,1.334,5099.1,no
+31,services,married,high.school,no,yes,no,cellular,may,wed,611,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes
+46,services,single,high.school,unknown,yes,no,cellular,may,wed,193,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+38,self-employed,married,basic.9y,no,yes,no,cellular,may,wed,155,5,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+29,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,318,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+27,admin.,married,high.school,no,yes,no,cellular,may,wed,175,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+57,management,married,university.degree,no,no,no,cellular,may,wed,1205,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+29,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,413,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+53,technician,divorced,university.degree,no,yes,no,cellular,may,wed,167,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+27,admin.,married,high.school,no,no,yes,cellular,may,wed,251,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+46,services,married,high.school,no,yes,yes,cellular,may,wed,270,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,211,1,10,1,success,-1.8,92.893,-46.2,1.334,5099.1,no
+32,blue-collar,married,basic.4y,no,yes,yes,cellular,may,wed,107,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+46,admin.,married,high.school,no,no,no,cellular,may,wed,124,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,technician,married,professional.course,no,no,yes,cellular,may,wed,17,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+48,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,477,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,may,wed,265,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+46,admin.,married,high.school,no,no,no,cellular,may,wed,159,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+29,blue-collar,married,basic.9y,no,no,yes,cellular,may,wed,837,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+33,technician,married,professional.course,no,yes,no,cellular,may,wed,221,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+37,blue-collar,married,basic.9y,no,unknown,unknown,cellular,may,wed,136,5,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,technician,married,professional.course,no,yes,no,cellular,may,wed,318,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+42,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,51,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+37,services,married,high.school,unknown,yes,no,cellular,may,wed,285,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+42,blue-collar,married,basic.6y,unknown,no,yes,cellular,may,wed,29,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+33,entrepreneur,married,university.degree,unknown,yes,no,cellular,may,wed,585,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+34,blue-collar,married,unknown,no,no,yes,cellular,may,wed,106,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+46,management,married,university.degree,unknown,no,no,telephone,may,wed,16,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,184,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+41,services,divorced,high.school,no,no,no,cellular,may,wed,52,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+32,admin.,married,high.school,no,yes,no,cellular,may,wed,128,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+48,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,282,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+28,self-employed,single,university.degree,no,yes,no,cellular,may,wed,57,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+38,blue-collar,married,high.school,unknown,yes,no,cellular,may,wed,839,2,7,1,success,-1.8,92.893,-46.2,1.334,5099.1,yes
+36,management,married,basic.9y,no,no,no,cellular,may,wed,50,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+31,housemaid,divorced,basic.6y,no,no,yes,cellular,may,wed,457,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+42,technician,married,university.degree,unknown,yes,no,cellular,may,wed,301,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+31,technician,single,high.school,no,no,no,cellular,may,wed,37,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+32,services,single,basic.9y,no,no,yes,cellular,may,wed,148,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+28,admin.,married,high.school,no,yes,no,cellular,may,wed,72,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+38,blue-collar,single,basic.4y,no,yes,no,cellular,may,wed,203,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,18,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+51,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,254,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+28,admin.,married,high.school,no,no,no,cellular,may,wed,204,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+51,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,451,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,334,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,428,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+59,admin.,married,high.school,no,no,no,cellular,may,wed,289,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,technician,single,university.degree,no,yes,no,cellular,may,wed,317,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,153,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+37,services,single,high.school,no,no,no,cellular,may,wed,150,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+55,retired,married,basic.9y,unknown,no,no,cellular,may,wed,674,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+37,services,single,high.school,no,yes,no,cellular,may,wed,445,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes
+51,entrepreneur,single,basic.9y,no,no,no,cellular,may,wed,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+30,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+30,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,297,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,technician,single,university.degree,no,yes,no,telephone,may,wed,92,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+41,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,189,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+44,admin.,single,high.school,no,yes,no,cellular,may,wed,728,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,may,wed,127,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+43,blue-collar,married,basic.9y,no,no,yes,cellular,may,wed,179,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+28,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,98,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+49,admin.,single,basic.6y,unknown,no,no,cellular,may,wed,135,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+28,admin.,single,high.school,no,no,no,cellular,may,wed,251,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,1131,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,148,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,156,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+33,technician,single,professional.course,no,yes,no,cellular,may,wed,519,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,yes
+31,services,single,high.school,no,no,no,cellular,may,wed,343,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+41,admin.,married,high.school,no,no,no,cellular,may,wed,64,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+27,services,married,high.school,no,yes,no,cellular,may,wed,903,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,services,married,high.school,no,no,no,cellular,may,wed,106,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,459,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,admin.,single,university.degree,no,no,no,cellular,may,wed,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+39,unemployed,married,high.school,no,no,no,cellular,may,wed,100,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,admin.,unknown,university.degree,no,no,no,cellular,may,wed,139,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+47,blue-collar,single,basic.9y,unknown,no,no,cellular,may,wed,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+58,retired,married,professional.course,no,yes,no,cellular,may,wed,47,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+37,blue-collar,single,professional.course,no,yes,yes,cellular,may,wed,161,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+31,services,married,high.school,no,yes,no,cellular,may,wed,322,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+26,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,45,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+36,blue-collar,divorced,basic.6y,no,yes,no,cellular,may,wed,197,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+28,technician,single,professional.course,no,no,no,cellular,may,wed,687,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes
+51,entrepreneur,single,basic.9y,no,no,yes,cellular,may,wed,89,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+32,admin.,married,high.school,no,yes,yes,cellular,may,wed,231,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,230,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+41,blue-collar,married,basic.4y,no,yes,yes,cellular,may,wed,389,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+40,admin.,married,basic.9y,unknown,yes,yes,cellular,may,wed,323,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,admin.,single,high.school,no,yes,yes,cellular,may,wed,125,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+46,services,married,high.school,no,no,no,cellular,may,wed,174,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+49,technician,married,university.degree,no,yes,no,cellular,may,wed,89,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+58,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,wed,74,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+41,blue-collar,single,basic.9y,no,no,yes,cellular,may,wed,540,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+44,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,181,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+45,blue-collar,married,basic.4y,unknown,no,no,cellular,may,wed,193,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+44,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,288,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+37,admin.,married,university.degree,no,no,no,cellular,may,wed,305,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,353,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+47,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,169,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+47,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,139,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+54,management,divorced,university.degree,no,yes,no,cellular,may,wed,127,2,12,1,success,-1.8,92.893,-46.2,1.334,5099.1,no
+37,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,204,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,admin.,married,high.school,no,yes,no,cellular,may,wed,137,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+35,admin.,married,professional.course,no,yes,no,cellular,may,wed,827,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,wed,150,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,admin.,single,basic.6y,no,yes,no,cellular,may,wed,402,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+27,admin.,married,high.school,no,yes,no,cellular,may,wed,319,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,203,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+38,blue-collar,unknown,high.school,no,no,no,cellular,may,wed,311,1,6,1,success,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,110,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+42,blue-collar,divorced,high.school,unknown,yes,no,cellular,may,wed,175,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+34,admin.,divorced,university.degree,no,no,no,cellular,may,wed,207,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+33,entrepreneur,married,university.degree,unknown,yes,no,cellular,may,wed,92,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+52,admin.,single,unknown,unknown,yes,no,cellular,may,wed,147,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,admin.,married,high.school,no,yes,no,telephone,may,wed,48,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+37,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,164,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+52,admin.,single,unknown,unknown,no,no,cellular,may,wed,321,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+31,management,single,high.school,no,no,no,cellular,may,wed,90,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,admin.,married,high.school,no,no,no,cellular,may,wed,191,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+37,services,married,high.school,no,yes,no,cellular,may,wed,130,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+37,services,married,high.school,no,no,no,cellular,may,wed,317,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+34,admin.,married,university.degree,no,no,no,cellular,may,wed,138,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,may,wed,194,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+28,technician,married,professional.course,no,no,no,cellular,may,wed,550,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+34,admin.,married,high.school,no,no,yes,cellular,may,wed,811,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,admin.,single,basic.6y,no,yes,no,telephone,may,wed,125,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+33,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,430,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+53,admin.,married,university.degree,unknown,yes,no,cellular,may,wed,124,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+54,blue-collar,married,high.school,no,yes,yes,cellular,may,wed,184,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+27,services,single,high.school,unknown,yes,no,cellular,may,wed,124,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+40,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,182,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+38,blue-collar,married,high.school,unknown,yes,no,cellular,may,wed,118,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+48,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,79,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+37,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,138,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+29,technician,single,professional.course,no,no,yes,cellular,may,wed,289,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,divorced,basic.9y,unknown,no,no,cellular,may,wed,482,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,technician,single,professional.course,unknown,no,no,cellular,may,wed,654,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+29,admin.,single,university.degree,no,no,no,cellular,may,wed,198,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,145,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,116,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+35,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,wed,500,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+29,services,married,high.school,unknown,unknown,unknown,cellular,may,wed,141,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+48,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+44,admin.,married,high.school,no,yes,no,cellular,may,wed,346,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+40,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,wed,131,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+51,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,wed,220,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,181,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+37,housemaid,married,basic.6y,unknown,yes,yes,cellular,may,wed,756,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+41,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,309,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+54,technician,divorced,university.degree,no,no,no,cellular,may,wed,91,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,services,married,high.school,no,yes,yes,cellular,may,wed,323,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+30,admin.,single,university.degree,no,no,no,cellular,may,wed,82,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+51,admin.,divorced,high.school,no,yes,yes,cellular,may,wed,316,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,283,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+24,student,single,basic.9y,no,no,no,cellular,may,wed,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+51,admin.,single,university.degree,no,yes,yes,cellular,may,wed,120,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+48,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,189,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+58,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,127,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+53,blue-collar,married,professional.course,unknown,yes,no,cellular,may,wed,251,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+27,technician,single,university.degree,no,yes,yes,cellular,may,wed,754,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+37,blue-collar,single,professional.course,no,no,no,cellular,may,wed,84,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+33,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,320,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+39,unemployed,married,basic.9y,no,yes,no,cellular,may,wed,222,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+28,self-employed,single,university.degree,no,no,no,cellular,may,wed,554,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+32,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,302,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+52,blue-collar,married,basic.4y,unknown,no,no,cellular,may,wed,239,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+51,entrepreneur,single,basic.9y,no,yes,no,cellular,may,wed,396,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+58,self-employed,married,unknown,unknown,no,no,cellular,may,wed,250,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,technician,married,professional.course,unknown,no,no,cellular,may,wed,167,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+40,housemaid,divorced,high.school,no,yes,no,cellular,may,wed,136,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+37,housemaid,married,basic.6y,unknown,no,no,cellular,may,wed,322,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+32,technician,single,professional.course,no,yes,no,cellular,may,wed,97,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,206,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+37,admin.,single,university.degree,no,no,no,cellular,may,wed,51,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,services,single,high.school,no,no,no,cellular,may,wed,281,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+34,housemaid,married,high.school,unknown,yes,yes,cellular,may,wed,17,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,management,married,university.degree,unknown,no,no,cellular,may,wed,825,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+30,admin.,divorced,high.school,no,yes,no,telephone,may,wed,62,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+28,admin.,single,high.school,no,yes,yes,cellular,may,wed,253,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+48,entrepreneur,married,basic.9y,unknown,no,no,cellular,may,wed,487,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+49,admin.,married,university.degree,no,no,no,cellular,may,wed,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,may,wed,96,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,311,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+51,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,90,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+30,management,single,high.school,no,no,yes,cellular,may,wed,402,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+51,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,wed,22,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,services,married,high.school,no,yes,no,cellular,may,wed,89,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+36,technician,single,professional.course,unknown,yes,no,cellular,may,wed,228,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,admin.,married,high.school,no,no,no,cellular,may,wed,350,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+34,technician,divorced,professional.course,no,yes,no,telephone,may,wed,175,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+28,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,549,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+32,technician,married,professional.course,no,yes,yes,cellular,may,wed,160,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+43,management,married,university.degree,no,yes,no,cellular,may,wed,192,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+32,technician,divorced,basic.9y,no,yes,yes,cellular,may,wed,103,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+46,services,married,high.school,unknown,no,no,cellular,may,wed,765,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes
+40,blue-collar,married,unknown,no,yes,no,cellular,may,wed,88,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+30,admin.,divorced,high.school,no,yes,no,cellular,may,wed,422,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+47,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,74,6,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+34,admin.,married,university.degree,no,no,no,telephone,may,wed,149,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+30,services,single,high.school,unknown,yes,no,cellular,may,wed,70,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+29,blue-collar,single,professional.course,no,yes,no,cellular,may,wed,87,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,233,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+43,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,wed,28,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+52,admin.,single,unknown,unknown,no,yes,cellular,may,wed,346,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+46,management,married,university.degree,unknown,yes,yes,cellular,may,wed,172,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,services,married,basic.9y,no,yes,no,cellular,may,wed,523,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+36,management,single,university.degree,no,yes,yes,cellular,may,wed,147,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+54,management,divorced,university.degree,no,yes,yes,cellular,may,wed,265,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+54,technician,divorced,university.degree,no,yes,no,cellular,may,wed,57,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+40,services,married,high.school,no,no,no,cellular,may,wed,246,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,wed,82,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+33,entrepreneur,single,high.school,no,yes,yes,cellular,may,wed,328,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+37,admin.,single,high.school,no,no,no,cellular,may,wed,151,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,management,married,university.degree,no,yes,no,cellular,may,wed,85,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+51,management,divorced,university.degree,no,no,no,cellular,may,wed,345,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,168,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,entrepreneur,married,university.degree,no,yes,no,cellular,may,wed,239,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+52,services,married,basic.6y,no,yes,no,cellular,may,wed,169,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+58,retired,married,basic.4y,no,yes,no,cellular,may,wed,358,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,single,high.school,no,yes,no,cellular,may,wed,116,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,222,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+33,technician,married,university.degree,no,no,no,cellular,may,wed,1489,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+33,entrepreneur,married,basic.9y,no,no,no,cellular,may,wed,349,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+30,services,married,high.school,unknown,no,yes,cellular,may,wed,102,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+41,admin.,single,university.degree,no,no,yes,cellular,may,wed,593,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+36,blue-collar,single,high.school,no,no,yes,cellular,may,wed,1347,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes
+28,admin.,single,university.degree,no,yes,no,cellular,may,wed,69,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,technician,single,university.degree,no,no,no,cellular,may,wed,307,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,242,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+37,self-employed,divorced,university.degree,no,no,no,cellular,may,wed,143,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,129,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+42,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,320,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,290,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+44,unemployed,married,basic.9y,no,yes,no,cellular,may,wed,206,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+38,self-employed,married,basic.9y,no,no,no,cellular,may,wed,270,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+48,entrepreneur,married,basic.6y,no,no,no,cellular,may,wed,1369,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+35,technician,married,professional.course,no,yes,no,cellular,may,wed,456,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+41,blue-collar,married,basic.4y,unknown,no,yes,cellular,may,wed,17,3,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+49,services,single,high.school,no,no,yes,cellular,may,wed,231,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+28,admin.,married,high.school,no,yes,no,cellular,may,wed,293,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,services,married,high.school,no,no,no,cellular,may,wed,215,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+35,technician,married,professional.course,no,no,yes,cellular,may,wed,273,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,804,2,9,1,success,-1.8,92.893,-46.2,1.334,5099.1,no
+48,entrepreneur,single,professional.course,no,yes,no,cellular,may,wed,606,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+29,admin.,single,university.degree,no,no,no,cellular,may,wed,142,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+44,admin.,married,basic.9y,unknown,no,no,cellular,may,wed,217,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+35,admin.,single,university.degree,no,no,no,cellular,may,wed,261,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+32,services,married,high.school,no,yes,no,telephone,may,wed,309,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+37,admin.,married,university.degree,no,no,no,cellular,may,wed,232,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+48,blue-collar,married,basic.6y,unknown,no,yes,cellular,may,wed,152,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+50,admin.,divorced,university.degree,no,yes,no,cellular,may,wed,335,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+52,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,437,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+33,admin.,married,high.school,no,no,no,telephone,may,wed,167,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+29,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,140,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+42,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,458,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,technician,married,professional.course,no,yes,no,cellular,may,wed,91,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,284,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+45,services,divorced,high.school,unknown,no,no,cellular,may,wed,185,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+28,blue-collar,single,basic.9y,unknown,no,no,cellular,may,wed,77,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+29,student,single,basic.9y,no,no,no,cellular,may,wed,467,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+41,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,187,8,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+45,entrepreneur,married,university.degree,no,yes,no,cellular,may,wed,1074,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes
+37,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,97,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,services,married,high.school,no,no,yes,cellular,may,wed,362,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,technician,divorced,professional.course,no,no,yes,cellular,may,wed,445,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+46,services,married,basic.9y,no,no,yes,cellular,may,wed,227,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+33,admin.,single,high.school,no,yes,no,cellular,may,wed,281,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+52,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,667,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+33,blue-collar,married,basic.6y,no,yes,yes,cellular,may,wed,686,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+34,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,157,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+48,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,22,6,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,services,married,high.school,no,yes,no,telephone,may,wed,276,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,blue-collar,married,unknown,no,no,no,cellular,may,wed,232,6,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+43,unemployed,married,basic.4y,no,no,no,cellular,may,wed,117,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+59,admin.,married,high.school,no,no,no,cellular,may,wed,232,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+39,technician,single,professional.course,no,no,no,cellular,may,wed,940,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+42,services,married,high.school,no,yes,no,cellular,may,wed,337,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+34,housemaid,married,high.school,unknown,no,no,cellular,may,wed,361,5,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no
+31,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,796,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no
+38,technician,single,university.degree,no,yes,yes,cellular,may,wed,606,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes
+39,technician,married,professional.course,no,no,no,cellular,may,thu,31,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+57,admin.,married,high.school,unknown,yes,no,cellular,may,thu,55,5,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,technician,single,professional.course,no,no,no,cellular,may,thu,86,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+38,admin.,single,university.degree,no,no,no,cellular,may,thu,219,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+38,management,married,unknown,no,no,no,telephone,may,thu,25,5,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+31,blue-collar,married,basic.4y,unknown,no,no,cellular,may,thu,210,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+42,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,thu,16,5,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+51,services,married,professional.course,unknown,no,no,cellular,may,thu,113,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+44,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,315,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+28,services,married,basic.9y,unknown,yes,no,cellular,may,thu,343,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,management,married,basic.4y,no,no,no,cellular,may,thu,175,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,82,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+45,admin.,divorced,basic.9y,unknown,no,no,cellular,may,thu,270,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,technician,married,university.degree,no,yes,no,cellular,may,thu,83,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+44,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,57,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,management,married,basic.4y,no,yes,no,cellular,may,thu,124,5,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+27,admin.,single,high.school,no,yes,no,cellular,may,thu,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,413,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,technician,married,university.degree,no,yes,no,telephone,may,thu,755,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+35,admin.,single,high.school,no,yes,yes,cellular,may,thu,106,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+35,admin.,single,high.school,no,yes,no,cellular,may,thu,187,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,housemaid,single,high.school,no,yes,no,cellular,may,thu,633,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+50,blue-collar,married,professional.course,no,yes,no,cellular,may,thu,247,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+35,management,married,university.degree,no,no,no,cellular,may,thu,370,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,205,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+50,blue-collar,married,professional.course,unknown,yes,no,cellular,may,thu,51,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+32,admin.,single,university.degree,no,yes,yes,cellular,may,thu,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+50,blue-collar,married,professional.course,unknown,yes,no,cellular,may,thu,157,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+26,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,531,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,technician,single,professional.course,no,yes,no,cellular,may,thu,512,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+45,admin.,married,high.school,no,yes,no,cellular,may,thu,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,263,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,204,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,98,1,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,82,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,31,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+35,admin.,single,high.school,no,no,no,cellular,may,thu,923,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+36,blue-collar,married,basic.4y,no,unknown,unknown,cellular,may,thu,92,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,47,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,admin.,single,basic.6y,no,no,no,cellular,may,thu,22,11,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,entrepreneur,divorced,basic.6y,no,no,yes,cellular,may,thu,149,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+54,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,98,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,may,thu,62,6,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+37,blue-collar,single,university.degree,unknown,no,no,cellular,may,thu,203,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+24,services,single,high.school,unknown,yes,no,cellular,may,thu,689,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,102,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,technician,married,professional.course,no,yes,no,cellular,may,thu,191,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+36,admin.,single,high.school,no,yes,no,cellular,may,thu,27,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+28,admin.,single,high.school,no,yes,no,cellular,may,thu,203,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,admin.,single,high.school,no,yes,yes,cellular,may,thu,277,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,technician,single,university.degree,unknown,yes,no,cellular,may,thu,722,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,technician,married,professional.course,no,yes,no,cellular,may,thu,449,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+38,management,married,high.school,no,yes,no,telephone,may,thu,224,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,services,single,high.school,no,yes,no,cellular,may,thu,189,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,services,married,high.school,no,yes,no,telephone,may,thu,45,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,248,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,admin.,single,high.school,no,yes,yes,cellular,may,thu,127,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,admin.,single,university.degree,no,no,no,cellular,may,thu,189,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+40,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,549,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,admin.,single,professional.course,no,yes,yes,cellular,may,thu,104,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+39,entrepreneur,married,unknown,no,yes,yes,cellular,may,thu,85,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,blue-collar,single,basic.9y,no,no,yes,cellular,may,thu,252,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+54,technician,single,university.degree,no,yes,yes,cellular,may,thu,121,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+43,services,married,high.school,no,yes,no,cellular,may,thu,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,348,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+57,retired,divorced,high.school,no,yes,yes,cellular,may,thu,265,5,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+54,technician,single,university.degree,no,yes,no,cellular,may,thu,333,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,unknown,no,yes,no,cellular,may,thu,25,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,623,1,10,1,success,-1.8,92.893,-46.2,1.327,5099.1,yes
+32,admin.,married,high.school,no,no,no,cellular,may,thu,84,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,unknown,no,yes,no,cellular,may,thu,131,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+32,admin.,married,high.school,no,yes,no,cellular,may,thu,132,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+32,admin.,married,high.school,no,no,no,cellular,may,thu,104,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+45,admin.,single,high.school,no,yes,no,cellular,may,thu,19,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+32,admin.,married,high.school,no,no,no,cellular,may,thu,187,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,entrepreneur,single,university.degree,no,no,no,cellular,may,thu,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+41,blue-collar,married,basic.9y,no,unknown,unknown,cellular,may,thu,50,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+38,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,201,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,may,thu,171,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,services,married,high.school,unknown,yes,no,cellular,may,thu,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+42,blue-collar,single,basic.9y,unknown,no,no,cellular,may,thu,183,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,admin.,married,basic.9y,no,no,no,cellular,may,thu,113,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,317,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,admin.,married,high.school,no,no,no,cellular,may,thu,329,1,6,1,success,-1.8,92.893,-46.2,1.327,5099.1,no
+43,blue-collar,married,basic.6y,no,yes,yes,cellular,may,thu,95,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,services,married,basic.9y,no,yes,no,cellular,may,thu,144,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,1957,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,admin.,married,high.school,no,yes,no,cellular,may,thu,556,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+26,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,49,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+43,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,393,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+34,management,married,university.degree,unknown,yes,no,cellular,may,thu,383,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,admin.,married,high.school,no,yes,no,cellular,may,thu,141,8,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,services,married,university.degree,no,no,no,cellular,may,thu,70,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+43,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,327,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,375,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+47,technician,divorced,university.degree,unknown,yes,no,cellular,may,thu,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+41,self-employed,married,professional.course,no,yes,no,cellular,may,thu,46,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,services,single,high.school,no,no,no,cellular,may,thu,146,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+35,services,single,high.school,no,no,yes,cellular,may,thu,184,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+26,technician,single,professional.course,no,yes,no,cellular,may,thu,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,admin.,married,university.degree,no,yes,yes,cellular,may,thu,148,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+50,services,divorced,basic.9y,no,yes,no,cellular,may,thu,429,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+25,services,single,high.school,no,no,no,cellular,may,thu,213,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+28,technician,married,university.degree,no,yes,no,cellular,may,thu,402,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,blue-collar,married,basic.9y,no,unknown,unknown,cellular,may,thu,155,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+33,self-employed,divorced,university.degree,no,yes,no,cellular,may,thu,130,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,self-employed,divorced,university.degree,no,yes,no,cellular,may,thu,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+32,admin.,single,professional.course,no,no,no,cellular,may,thu,290,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+60,admin.,single,university.degree,no,yes,yes,cellular,may,thu,107,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+60,admin.,single,university.degree,no,no,no,cellular,may,thu,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+38,technician,single,high.school,unknown,yes,yes,cellular,may,thu,754,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,services,married,professional.course,no,yes,yes,telephone,may,thu,29,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,self-employed,divorced,university.degree,no,no,no,cellular,may,thu,345,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,services,married,professional.course,no,no,no,cellular,may,thu,48,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,services,married,professional.course,no,yes,no,cellular,may,thu,92,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,193,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,student,single,university.degree,unknown,no,no,telephone,may,thu,149,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+30,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,252,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+52,entrepreneur,married,high.school,no,yes,no,cellular,may,thu,69,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+52,entrepreneur,married,high.school,no,yes,no,cellular,may,thu,198,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+33,services,married,high.school,no,no,no,telephone,may,thu,63,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+34,admin.,single,unknown,no,yes,no,cellular,may,thu,172,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+43,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,83,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+42,blue-collar,married,university.degree,unknown,yes,no,cellular,may,thu,462,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,services,married,high.school,no,yes,no,cellular,may,thu,397,1,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+36,admin.,married,professional.course,no,no,no,cellular,may,thu,229,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+32,admin.,single,professional.course,no,yes,yes,cellular,may,thu,1046,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+32,admin.,single,professional.course,no,no,no,cellular,may,thu,1145,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+30,blue-collar,single,basic.6y,no,no,no,cellular,may,thu,159,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+32,services,married,high.school,unknown,no,no,cellular,may,thu,56,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+28,admin.,divorced,university.degree,no,yes,no,cellular,may,thu,1148,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+40,unemployed,married,professional.course,no,yes,no,cellular,may,thu,609,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+25,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+51,services,divorced,high.school,no,no,no,cellular,may,thu,502,1,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+25,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,162,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+38,technician,single,professional.course,no,yes,no,cellular,may,thu,855,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,yes
+30,blue-collar,single,basic.6y,no,yes,no,cellular,may,thu,542,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+35,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,91,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+34,unemployed,single,university.degree,no,yes,no,cellular,may,thu,245,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+40,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,blue-collar,divorced,unknown,no,yes,no,cellular,may,thu,40,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,234,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+39,blue-collar,divorced,unknown,no,no,no,cellular,may,thu,126,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+28,technician,single,high.school,no,yes,yes,cellular,may,thu,609,1,11,1,success,-1.8,92.893,-46.2,1.327,5099.1,yes
+45,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,may,thu,219,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+57,retired,married,basic.6y,no,yes,no,cellular,may,thu,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+57,retired,married,basic.6y,no,no,yes,cellular,may,thu,93,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+57,retired,married,basic.6y,no,yes,no,cellular,may,thu,189,1,6,2,success,-1.8,92.893,-46.2,1.327,5099.1,no
+37,blue-collar,divorced,high.school,no,yes,no,cellular,may,thu,217,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,services,married,basic.9y,no,yes,no,cellular,may,thu,302,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+26,services,single,university.degree,no,yes,no,cellular,may,thu,223,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+44,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,102,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,11,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+55,self-employed,married,basic.9y,no,yes,no,cellular,may,thu,1191,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,406,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+42,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,thu,36,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+28,blue-collar,single,high.school,no,no,no,cellular,may,thu,16,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+26,services,single,university.degree,no,yes,no,cellular,may,thu,551,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+38,blue-collar,divorced,high.school,no,yes,no,cellular,may,thu,158,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+28,blue-collar,single,high.school,no,no,no,cellular,may,thu,278,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+38,blue-collar,divorced,high.school,no,no,no,cellular,may,thu,192,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+37,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,79,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,273,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,thu,143,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+34,blue-collar,married,basic.4y,no,no,yes,cellular,may,thu,346,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+38,blue-collar,divorced,high.school,no,yes,no,cellular,may,thu,272,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+38,blue-collar,divorced,high.school,no,no,no,cellular,may,thu,282,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,admin.,married,high.school,no,no,yes,cellular,may,thu,147,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+34,management,married,basic.4y,no,yes,no,cellular,may,thu,60,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+43,blue-collar,married,basic.4y,unknown,no,yes,cellular,may,thu,50,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+45,management,married,university.degree,no,yes,no,cellular,may,thu,239,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+38,technician,married,university.degree,no,unknown,unknown,cellular,may,thu,86,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+41,management,married,basic.6y,unknown,no,no,cellular,may,thu,163,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,356,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,services,divorced,high.school,unknown,no,no,cellular,may,thu,124,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,technician,single,high.school,no,yes,no,cellular,may,thu,229,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,technician,single,high.school,no,yes,no,cellular,may,thu,208,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+31,services,divorced,high.school,unknown,yes,no,cellular,may,thu,236,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+45,management,married,university.degree,no,no,no,cellular,may,thu,647,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,yes
+36,technician,single,high.school,no,yes,no,cellular,may,thu,426,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+43,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,625,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+38,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,259,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+51,services,divorced,basic.6y,no,no,yes,cellular,may,thu,122,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+38,admin.,married,high.school,no,yes,yes,cellular,may,thu,574,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+41,management,married,university.degree,no,no,yes,cellular,may,thu,35,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+32,unemployed,single,university.degree,no,no,no,cellular,may,thu,213,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+31,technician,married,professional.course,unknown,yes,no,cellular,may,thu,46,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+42,blue-collar,single,basic.4y,no,no,no,cellular,may,thu,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+41,management,married,university.degree,no,yes,no,cellular,may,thu,93,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,admin.,single,basic.9y,unknown,yes,no,cellular,may,thu,983,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+35,technician,single,professional.course,no,yes,no,cellular,may,thu,49,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+49,admin.,divorced,high.school,no,yes,no,cellular,may,thu,168,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+35,technician,single,professional.course,no,yes,no,cellular,may,thu,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,technician,divorced,professional.course,no,no,no,cellular,may,thu,31,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+47,management,married,university.degree,unknown,yes,no,cellular,may,thu,72,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,technician,married,professional.course,no,yes,no,cellular,may,thu,232,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,services,single,professional.course,unknown,yes,no,cellular,may,thu,199,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+39,admin.,married,basic.9y,no,yes,no,cellular,may,thu,279,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,314,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,282,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,282,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+37,technician,married,professional.course,no,yes,no,cellular,may,thu,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,391,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+48,blue-collar,married,basic.4y,no,unknown,unknown,cellular,may,thu,313,1,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+47,self-employed,married,basic.4y,unknown,no,no,cellular,may,thu,168,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,admin.,single,university.degree,no,no,no,cellular,may,thu,199,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+47,services,married,high.school,no,no,no,cellular,may,thu,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,unknown,no,no,no,cellular,may,thu,446,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,275,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,self-employed,married,basic.4y,no,no,no,cellular,may,thu,281,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,may,thu,143,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+24,student,single,university.degree,no,yes,no,cellular,may,thu,362,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+35,admin.,married,university.degree,no,yes,yes,cellular,may,thu,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+41,blue-collar,married,basic.6y,unknown,yes,yes,cellular,may,thu,65,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,may,thu,320,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,services,married,basic.9y,no,yes,no,cellular,may,thu,166,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+40,technician,married,university.degree,no,yes,no,cellular,may,thu,248,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+41,blue-collar,married,basic.6y,unknown,no,no,cellular,may,thu,170,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+26,blue-collar,single,basic.4y,no,no,yes,cellular,may,thu,54,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+44,technician,divorced,professional.course,no,no,no,cellular,may,thu,569,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+41,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,thu,220,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+43,services,married,high.school,no,no,no,cellular,may,thu,57,2,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+33,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,490,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,admin.,married,high.school,no,yes,no,cellular,may,thu,59,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,158,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,147,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,134,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+37,services,married,basic.9y,no,no,yes,cellular,may,thu,447,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+43,admin.,single,high.school,no,yes,no,cellular,may,thu,304,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,services,married,professional.course,no,no,no,cellular,may,thu,293,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,management,married,university.degree,no,no,yes,cellular,may,thu,130,2,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+32,services,married,high.school,no,yes,no,cellular,may,thu,1129,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+34,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,41,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,may,thu,242,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+39,technician,married,professional.course,no,yes,yes,cellular,may,thu,113,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,263,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+37,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,199,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+49,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,105,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,may,thu,332,4,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+38,management,married,unknown,no,no,no,cellular,may,thu,155,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+37,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,271,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+32,admin.,married,high.school,no,no,yes,cellular,may,thu,142,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+32,technician,single,high.school,no,yes,no,cellular,may,thu,491,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,thu,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,admin.,married,high.school,no,no,no,cellular,may,thu,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,admin.,married,high.school,no,no,yes,cellular,may,thu,154,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+32,blue-collar,married,professional.course,unknown,yes,no,cellular,may,thu,196,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+37,admin.,married,high.school,no,yes,no,cellular,may,thu,290,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+34,technician,married,university.degree,no,yes,no,telephone,may,thu,309,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,technician,married,university.degree,no,yes,no,cellular,may,thu,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+28,admin.,single,high.school,unknown,yes,yes,cellular,may,thu,275,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,481,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+45,admin.,divorced,basic.9y,unknown,yes,no,cellular,may,thu,355,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,services,single,high.school,no,yes,no,cellular,may,thu,230,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,services,single,high.school,no,yes,no,telephone,may,thu,207,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,admin.,single,high.school,no,yes,yes,cellular,may,thu,326,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,blue-collar,single,basic.9y,no,yes,yes,cellular,may,thu,468,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+37,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,125,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+56,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,118,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,172,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+23,student,single,basic.9y,no,yes,yes,cellular,may,thu,6,7,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+40,management,married,university.degree,no,yes,no,cellular,may,thu,188,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+45,technician,married,professional.course,no,no,no,cellular,may,thu,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,management,single,university.degree,unknown,no,no,cellular,may,thu,412,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+40,management,married,university.degree,no,no,no,cellular,may,thu,245,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+38,blue-collar,single,basic.4y,no,no,yes,cellular,may,thu,213,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,blue-collar,single,high.school,no,yes,no,cellular,may,thu,361,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+40,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,160,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+26,admin.,single,basic.9y,unknown,yes,no,cellular,may,thu,661,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+37,management,divorced,university.degree,no,no,no,cellular,may,thu,51,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+45,technician,married,professional.course,no,no,no,cellular,may,thu,183,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+27,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,thu,99,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+27,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,thu,110,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+27,blue-collar,single,basic.9y,unknown,yes,yes,cellular,may,thu,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+45,technician,divorced,high.school,no,yes,no,cellular,may,thu,174,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+35,services,single,high.school,no,yes,no,cellular,may,thu,66,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+33,technician,married,university.degree,no,no,no,cellular,may,thu,191,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,services,single,high.school,no,yes,yes,cellular,may,thu,332,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,management,married,university.degree,no,yes,no,cellular,may,thu,162,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,management,married,university.degree,no,yes,no,cellular,may,thu,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+42,admin.,divorced,high.school,no,yes,no,cellular,may,thu,304,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+39,management,married,university.degree,no,yes,no,cellular,may,thu,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+38,unemployed,divorced,high.school,unknown,yes,no,cellular,may,thu,43,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+27,blue-collar,single,basic.9y,unknown,yes,yes,cellular,may,thu,623,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+32,services,married,high.school,no,no,no,cellular,may,thu,213,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+42,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+42,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,219,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+28,technician,single,basic.9y,no,yes,no,cellular,may,thu,263,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+50,admin.,married,basic.9y,no,unknown,unknown,cellular,may,thu,446,6,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+27,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,267,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+27,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,135,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+40,services,married,high.school,unknown,no,no,cellular,may,thu,67,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+38,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,228,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,476,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+41,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,118,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,blue-collar,married,high.school,unknown,no,no,cellular,may,thu,207,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,193,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+41,management,married,university.degree,no,no,no,cellular,may,thu,247,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+42,services,single,high.school,no,no,no,cellular,may,thu,122,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+42,services,married,professional.course,no,yes,no,cellular,may,thu,103,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+45,blue-collar,married,basic.4y,no,unknown,unknown,cellular,may,thu,67,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,blue-collar,single,university.degree,unknown,no,no,cellular,may,thu,159,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+45,technician,divorced,high.school,no,yes,no,cellular,may,thu,121,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+45,admin.,married,high.school,no,yes,no,cellular,may,thu,182,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+27,student,single,high.school,no,yes,no,cellular,may,thu,101,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+39,management,married,professional.course,no,yes,no,cellular,may,thu,156,1,6,1,success,-1.8,92.893,-46.2,1.327,5099.1,no
+34,services,single,high.school,no,no,no,cellular,may,thu,957,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+44,self-employed,divorced,professional.course,no,yes,no,cellular,may,thu,652,2,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+36,technician,married,professional.course,no,yes,no,cellular,may,thu,258,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,72,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,unknown,no,yes,no,cellular,may,thu,349,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+34,management,married,university.degree,unknown,yes,no,cellular,may,thu,281,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+43,self-employed,married,professional.course,no,yes,no,cellular,may,thu,104,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,management,single,university.degree,no,no,no,telephone,may,thu,287,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+51,management,divorced,university.degree,no,yes,no,cellular,may,thu,154,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+27,services,single,high.school,no,yes,no,cellular,may,thu,193,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+52,technician,married,professional.course,no,no,no,cellular,may,thu,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+27,services,single,high.school,no,yes,yes,cellular,may,thu,356,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+39,management,single,university.degree,no,no,no,cellular,may,thu,122,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+43,management,single,university.degree,no,yes,no,telephone,may,thu,140,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,technician,divorced,professional.course,no,yes,no,cellular,may,thu,135,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+59,retired,divorced,high.school,unknown,no,no,cellular,may,thu,97,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+48,admin.,divorced,university.degree,no,yes,no,cellular,may,thu,590,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,services,married,high.school,no,yes,no,cellular,may,thu,87,2,12,1,success,-1.8,92.893,-46.2,1.327,5099.1,no
+32,admin.,divorced,high.school,no,yes,no,cellular,may,thu,633,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,may,thu,92,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+48,blue-collar,married,basic.4y,no,no,yes,cellular,may,thu,370,2,1,1,success,-1.8,92.893,-46.2,1.327,5099.1,no
+42,blue-collar,single,basic.4y,no,yes,no,cellular,may,thu,560,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,admin.,single,unknown,no,yes,no,cellular,may,thu,473,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+43,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,352,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+51,services,divorced,high.school,unknown,yes,no,cellular,may,thu,295,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+39,entrepreneur,married,basic.6y,no,no,no,cellular,may,thu,121,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+41,admin.,single,high.school,no,yes,no,cellular,may,thu,360,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,blue-collar,married,basic.6y,no,yes,yes,cellular,may,thu,195,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+33,services,married,basic.9y,no,no,no,cellular,may,thu,225,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+37,blue-collar,single,university.degree,unknown,yes,no,cellular,may,thu,166,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,admin.,single,university.degree,no,yes,yes,cellular,may,thu,589,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,unemployed,married,basic.4y,no,no,no,cellular,may,thu,228,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+58,technician,divorced,university.degree,no,no,no,cellular,may,thu,101,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+41,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,thu,102,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+32,admin.,married,university.degree,no,yes,yes,cellular,may,thu,178,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+32,admin.,married,university.degree,no,no,no,cellular,may,thu,235,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,services,married,professional.course,unknown,yes,yes,cellular,may,thu,18,8,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,253,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+27,technician,married,professional.course,no,no,no,cellular,may,thu,347,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,yes
+40,technician,single,university.degree,no,no,no,telephone,may,thu,430,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,may,thu,100,4,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+32,admin.,married,university.degree,no,no,no,cellular,may,thu,1030,1,6,1,success,-1.8,92.893,-46.2,1.327,5099.1,yes
+31,services,divorced,high.school,unknown,no,no,cellular,may,thu,45,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+46,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,127,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,56,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+39,technician,married,professional.course,no,yes,no,cellular,may,thu,1254,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+55,technician,married,university.degree,no,yes,yes,cellular,may,thu,895,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,yes
+28,services,married,basic.9y,unknown,yes,yes,cellular,may,thu,65,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,270,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,entrepreneur,married,high.school,no,no,no,telephone,may,thu,325,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+27,admin.,married,high.school,no,no,yes,cellular,may,thu,279,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+37,management,married,university.degree,unknown,no,yes,cellular,may,thu,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,entrepreneur,married,high.school,no,yes,no,cellular,may,thu,539,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+27,admin.,married,high.school,no,no,no,cellular,may,thu,643,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,blue-collar,married,basic.4y,unknown,no,yes,cellular,may,thu,262,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+41,self-employed,married,basic.9y,no,no,no,cellular,may,thu,54,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,admin.,married,high.school,no,yes,no,cellular,may,thu,798,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+36,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,115,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+50,admin.,married,basic.9y,no,no,no,cellular,may,thu,95,6,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,unemployed,married,basic.6y,no,yes,no,cellular,may,thu,425,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+33,blue-collar,married,professional.course,unknown,no,no,cellular,may,thu,153,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+38,admin.,single,university.degree,no,no,yes,cellular,may,thu,266,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+43,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,57,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+26,admin.,single,basic.9y,unknown,yes,no,cellular,may,thu,33,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,330,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+35,management,married,university.degree,no,no,no,cellular,may,thu,304,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+27,blue-collar,single,high.school,no,no,yes,cellular,may,thu,308,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+54,admin.,married,high.school,no,yes,no,cellular,may,thu,594,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+56,blue-collar,married,basic.4y,unknown,no,no,cellular,may,thu,373,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+41,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+41,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,may,thu,314,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,services,single,high.school,no,no,yes,cellular,may,thu,50,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+46,blue-collar,single,basic.6y,unknown,no,yes,cellular,may,thu,245,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+46,management,married,university.degree,no,yes,no,cellular,may,thu,247,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+35,management,married,university.degree,no,no,no,cellular,may,thu,437,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+46,management,married,university.degree,no,yes,no,cellular,may,thu,458,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,96,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+49,technician,single,high.school,no,no,yes,cellular,may,thu,253,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,admin.,married,professional.course,no,no,no,cellular,may,thu,271,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,services,married,high.school,no,no,no,cellular,may,thu,227,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,services,married,high.school,no,unknown,unknown,cellular,may,thu,582,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+32,technician,single,professional.course,no,no,yes,cellular,may,thu,423,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,entrepreneur,divorced,basic.6y,no,no,no,cellular,may,thu,422,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,admin.,single,university.degree,no,no,yes,cellular,may,thu,49,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+44,blue-collar,married,basic.6y,no,no,yes,cellular,may,thu,244,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,management,single,university.degree,no,yes,no,cellular,may,thu,924,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,126,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,services,married,professional.course,no,yes,no,cellular,may,thu,188,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+59,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,190,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,580,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+46,admin.,married,university.degree,no,no,no,cellular,may,thu,227,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+59,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,600,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+33,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,580,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+40,admin.,married,basic.9y,no,yes,yes,cellular,may,thu,639,2,10,1,success,-1.8,92.893,-46.2,1.327,5099.1,no
+30,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,244,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,admin.,married,university.degree,no,no,no,cellular,may,thu,245,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,single,basic.4y,no,no,yes,cellular,may,thu,178,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+44,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,212,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,technician,married,professional.course,no,unknown,unknown,cellular,may,thu,35,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+40,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,227,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,admin.,divorced,university.degree,no,no,yes,cellular,may,thu,201,8,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,services,married,basic.9y,no,yes,no,cellular,may,thu,158,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,admin.,married,high.school,no,no,yes,cellular,may,thu,198,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,1806,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+48,blue-collar,married,professional.course,no,no,no,cellular,may,thu,146,2,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+54,admin.,married,high.school,no,no,no,cellular,may,thu,202,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+44,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,556,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,728,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,technician,married,professional.course,no,no,no,cellular,may,thu,189,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,services,married,high.school,no,no,no,cellular,may,thu,262,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+28,admin.,single,high.school,unknown,no,no,cellular,may,thu,1391,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+30,services,single,high.school,no,no,no,cellular,may,thu,132,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+28,services,married,basic.9y,unknown,no,no,telephone,may,thu,11,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,166,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+26,unemployed,married,basic.9y,no,yes,yes,cellular,may,thu,217,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,single,basic.9y,no,no,yes,cellular,may,thu,1516,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+41,admin.,single,high.school,no,no,no,telephone,may,thu,202,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+45,technician,divorced,university.degree,no,yes,yes,cellular,may,thu,252,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+42,admin.,divorced,high.school,no,yes,no,cellular,may,thu,350,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+43,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,93,4,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+44,services,married,professional.course,unknown,yes,no,cellular,may,thu,428,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+24,student,single,university.degree,no,no,no,telephone,may,thu,908,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,student,single,basic.9y,unknown,yes,no,cellular,may,thu,246,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,140,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+32,admin.,single,professional.course,no,yes,no,cellular,may,thu,603,2,7,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,592,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+35,services,single,high.school,no,no,yes,cellular,may,thu,195,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+28,student,single,university.degree,unknown,yes,no,cellular,may,thu,191,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+44,technician,divorced,professional.course,no,yes,no,cellular,may,thu,245,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,entrepreneur,single,basic.9y,unknown,no,no,cellular,may,thu,300,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,services,married,high.school,no,yes,no,cellular,may,thu,739,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+56,admin.,married,basic.9y,no,no,yes,cellular,may,thu,225,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,429,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+46,management,married,university.degree,no,yes,no,cellular,may,thu,293,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,434,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+46,services,married,high.school,unknown,no,no,telephone,may,thu,79,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+40,services,married,high.school,unknown,no,no,cellular,may,thu,388,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+31,services,married,high.school,no,yes,no,cellular,may,thu,128,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,services,single,high.school,no,yes,yes,cellular,may,thu,269,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,services,married,high.school,no,yes,yes,cellular,may,thu,273,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+48,blue-collar,married,professional.course,no,no,yes,cellular,may,thu,291,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+46,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,364,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,unknown,no,no,no,cellular,may,thu,249,4,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+29,services,married,professional.course,no,yes,no,cellular,may,thu,109,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+43,services,single,high.school,no,no,no,cellular,may,thu,337,5,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,219,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,thu,235,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,unemployed,married,professional.course,no,yes,no,cellular,may,thu,700,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+26,admin.,single,basic.9y,unknown,yes,yes,cellular,may,thu,161,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,technician,single,professional.course,no,no,yes,cellular,may,thu,181,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+36,student,single,basic.9y,unknown,yes,yes,cellular,may,thu,432,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,technician,married,professional.course,unknown,yes,no,cellular,may,thu,476,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+44,blue-collar,divorced,basic.6y,unknown,no,no,cellular,may,thu,877,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+24,services,single,high.school,unknown,yes,no,cellular,may,thu,263,2,10,1,success,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,unknown,no,no,no,cellular,may,thu,156,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+46,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,792,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+49,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,589,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,services,married,high.school,no,unknown,unknown,cellular,may,thu,215,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+46,management,married,university.degree,no,yes,yes,cellular,may,thu,84,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+33,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,329,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+48,technician,married,basic.9y,no,no,no,cellular,may,thu,553,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+38,technician,married,university.degree,no,yes,no,cellular,may,thu,174,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+47,admin.,single,basic.9y,no,no,no,cellular,may,thu,253,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+47,management,married,university.degree,no,yes,no,cellular,may,thu,127,6,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+45,management,married,university.degree,no,yes,yes,cellular,may,thu,265,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,management,married,university.degree,no,no,no,cellular,may,thu,272,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,admin.,married,high.school,unknown,yes,no,cellular,may,thu,113,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+42,admin.,divorced,professional.course,no,no,no,cellular,may,thu,37,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+41,self-employed,married,basic.9y,no,yes,no,cellular,may,thu,1135,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,yes
+31,management,single,university.degree,no,yes,no,cellular,may,thu,239,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+53,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,376,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+37,admin.,single,university.degree,no,yes,no,cellular,may,thu,255,6,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+49,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,324,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,228,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,technician,married,professional.course,no,no,no,cellular,may,thu,20,8,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+37,blue-collar,married,basic.6y,unknown,no,no,cellular,may,thu,635,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+43,admin.,single,high.school,no,no,no,cellular,may,thu,209,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+43,management,single,university.degree,no,unknown,unknown,cellular,may,thu,274,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+39,technician,married,professional.course,no,no,yes,cellular,may,thu,831,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+34,services,single,high.school,no,yes,no,cellular,may,thu,541,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+46,blue-collar,unknown,unknown,no,no,no,cellular,may,thu,162,7,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+43,admin.,divorced,high.school,no,yes,yes,cellular,may,thu,892,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,admin.,married,basic.6y,no,yes,no,telephone,may,thu,123,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,technician,single,university.degree,unknown,yes,no,cellular,may,thu,63,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+46,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,882,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+46,admin.,married,high.school,no,yes,no,telephone,may,thu,146,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,463,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+51,self-employed,married,high.school,no,yes,no,cellular,may,thu,43,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+55,unemployed,divorced,university.degree,no,no,no,cellular,may,thu,190,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,services,married,high.school,no,no,no,cellular,may,thu,62,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,thu,350,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+26,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,273,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+43,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,thu,172,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+46,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,thu,304,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+33,admin.,married,university.degree,no,no,no,cellular,may,thu,245,5,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+49,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,411,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+50,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,251,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+26,services,single,high.school,no,yes,no,cellular,may,thu,177,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+25,services,single,high.school,no,yes,no,cellular,may,thu,239,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,technician,single,professional.course,no,yes,no,cellular,may,thu,100,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+42,admin.,married,high.school,no,unknown,unknown,cellular,may,thu,878,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,yes
+41,services,single,unknown,no,yes,no,cellular,may,thu,206,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+35,blue-collar,married,unknown,no,yes,no,cellular,may,thu,1262,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+35,management,married,university.degree,no,no,no,cellular,may,thu,597,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes
+50,admin.,married,basic.9y,no,yes,no,telephone,may,thu,138,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+50,blue-collar,married,basic.4y,unknown,no,no,cellular,may,thu,857,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+45,admin.,divorced,basic.9y,unknown,no,no,cellular,may,thu,133,1,12,1,success,-1.8,92.893,-46.2,1.327,5099.1,no
+46,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,10,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+43,technician,married,professional.course,unknown,no,no,cellular,may,thu,681,5,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+29,services,married,professional.course,no,no,no,cellular,may,thu,1051,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,technician,single,university.degree,no,no,no,cellular,may,thu,235,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,admin.,single,high.school,no,no,no,cellular,may,thu,42,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+41,technician,single,university.degree,no,yes,no,cellular,may,thu,59,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+56,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,369,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,unknown,no,no,no,telephone,may,thu,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,490,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,227,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+48,services,married,high.school,no,no,no,cellular,may,thu,388,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+45,technician,married,professional.course,no,yes,yes,cellular,may,thu,702,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+43,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,1297,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+28,technician,married,university.degree,no,yes,no,cellular,may,thu,201,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+39,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,208,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,189,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+30,blue-collar,single,high.school,unknown,yes,no,cellular,may,thu,340,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+44,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,thu,148,5,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+41,services,married,basic.6y,unknown,yes,no,cellular,may,thu,378,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+58,technician,divorced,university.degree,no,no,no,cellular,may,thu,181,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no
+41,blue-collar,married,unknown,no,no,yes,cellular,may,thu,373,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+57,retired,married,basic.6y,no,no,no,cellular,may,thu,873,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no
+41,technician,married,university.degree,no,yes,yes,cellular,may,fri,170,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,admin.,married,high.school,no,yes,no,cellular,may,fri,141,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+28,blue-collar,married,basic.9y,unknown,no,no,cellular,may,fri,182,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+25,admin.,single,high.school,no,no,no,telephone,may,fri,128,8,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,management,divorced,university.degree,no,yes,no,cellular,may,fri,156,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+50,blue-collar,divorced,basic.9y,no,no,no,cellular,may,fri,262,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,single,basic.4y,no,no,yes,cellular,may,fri,328,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+30,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,142,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+32,admin.,married,high.school,unknown,yes,no,telephone,may,fri,17,9,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+39,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,may,fri,143,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+39,technician,married,professional.course,unknown,yes,no,cellular,may,fri,608,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+39,admin.,single,university.degree,no,yes,no,cellular,may,fri,150,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,management,single,high.school,no,yes,yes,cellular,may,fri,130,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,admin.,single,university.degree,unknown,no,no,telephone,may,fri,145,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,admin.,single,unknown,no,yes,no,cellular,may,fri,191,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,management,single,university.degree,no,no,yes,cellular,may,fri,662,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+38,services,married,high.school,no,yes,yes,cellular,may,fri,302,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,admin.,single,university.degree,unknown,yes,yes,cellular,may,fri,440,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,41,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+48,admin.,married,basic.9y,no,no,no,cellular,may,fri,253,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+45,admin.,divorced,professional.course,no,no,yes,cellular,may,fri,132,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+49,admin.,divorced,university.degree,no,yes,no,cellular,may,fri,164,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+32,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,906,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+44,admin.,married,high.school,no,no,no,cellular,may,fri,131,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+44,admin.,married,high.school,no,no,no,cellular,may,fri,127,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+34,admin.,married,university.degree,no,no,no,cellular,may,fri,104,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,may,fri,317,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+44,admin.,married,high.school,no,yes,no,cellular,may,fri,263,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,admin.,married,high.school,unknown,no,no,cellular,may,fri,67,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+37,admin.,divorced,high.school,no,no,no,cellular,may,fri,11,8,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,admin.,married,high.school,no,yes,yes,cellular,may,fri,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+25,admin.,single,high.school,no,yes,yes,cellular,may,fri,795,6,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+31,services,single,high.school,no,no,no,cellular,may,fri,98,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,services,married,high.school,no,yes,no,cellular,may,fri,729,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+27,blue-collar,single,high.school,no,no,no,cellular,may,fri,80,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+39,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,138,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,admin.,married,basic.9y,no,yes,yes,cellular,may,fri,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,blue-collar,single,basic.6y,unknown,no,no,cellular,may,fri,39,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,admin.,married,basic.9y,no,no,no,cellular,may,fri,159,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+39,blue-collar,married,basic.6y,no,yes,yes,cellular,may,fri,298,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+41,admin.,single,high.school,no,yes,no,cellular,may,fri,57,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+32,services,married,high.school,no,yes,no,cellular,may,fri,76,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,fri,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+56,management,divorced,university.degree,no,no,no,cellular,may,fri,166,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+30,technician,single,professional.course,no,yes,no,cellular,may,fri,68,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+33,services,married,high.school,no,yes,no,cellular,may,fri,88,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+45,technician,married,basic.9y,no,no,yes,cellular,may,fri,1077,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+32,technician,divorced,professional.course,no,no,yes,cellular,may,fri,168,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+30,technician,single,professional.course,no,no,no,cellular,may,fri,440,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+28,student,single,university.degree,no,no,no,cellular,may,fri,81,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+28,student,single,university.degree,no,yes,no,cellular,may,fri,126,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+60,management,married,basic.4y,unknown,no,no,cellular,may,fri,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+41,services,divorced,high.school,no,yes,no,cellular,may,fri,380,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+36,services,married,high.school,unknown,no,no,cellular,may,fri,114,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+37,blue-collar,married,high.school,unknown,yes,no,cellular,may,fri,181,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,157,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,services,single,basic.9y,no,yes,no,cellular,may,fri,293,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+38,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,fri,1022,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+42,admin.,married,high.school,no,yes,no,cellular,may,fri,106,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+39,technician,single,professional.course,unknown,yes,no,cellular,may,fri,264,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+45,technician,divorced,university.degree,unknown,yes,no,cellular,may,fri,84,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+37,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,72,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+31,admin.,married,high.school,no,yes,no,cellular,may,fri,364,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+42,technician,married,professional.course,no,yes,no,cellular,may,fri,108,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,services,single,high.school,no,no,no,cellular,may,fri,7,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+43,unemployed,married,basic.9y,no,yes,no,cellular,may,fri,105,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,married,high.school,no,yes,no,cellular,may,fri,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,admin.,single,university.degree,unknown,yes,no,cellular,may,fri,266,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+37,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,206,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,married,high.school,no,yes,no,cellular,may,fri,103,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,328,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,technician,married,university.degree,no,yes,no,cellular,may,fri,285,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,63,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+45,technician,divorced,university.degree,unknown,no,no,cellular,may,fri,776,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+37,technician,married,professional.course,no,yes,yes,cellular,may,fri,132,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,211,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+39,management,married,university.degree,no,yes,no,cellular,may,fri,53,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,blue-collar,married,basic.9y,no,no,yes,cellular,may,fri,763,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+35,services,single,high.school,no,yes,yes,cellular,may,fri,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,admin.,married,high.school,no,yes,no,cellular,may,fri,213,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+37,blue-collar,married,high.school,no,yes,no,cellular,may,fri,475,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,housemaid,married,basic.4y,no,yes,no,cellular,may,fri,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,services,single,high.school,no,no,no,cellular,may,fri,198,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,housemaid,married,basic.4y,no,yes,yes,cellular,may,fri,340,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+39,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,fri,247,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+39,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,fri,191,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,blue-collar,married,high.school,no,yes,no,cellular,may,fri,154,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,122,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+36,blue-collar,married,high.school,no,yes,no,cellular,may,fri,232,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+37,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,65,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+37,self-employed,married,university.degree,no,yes,no,cellular,may,fri,279,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,blue-collar,married,high.school,no,yes,no,cellular,may,fri,130,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,services,single,high.school,no,yes,no,cellular,may,fri,557,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+37,entrepreneur,married,basic.9y,no,yes,no,telephone,may,fri,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,services,single,high.school,unknown,no,no,cellular,may,fri,77,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+37,self-employed,married,university.degree,no,no,no,cellular,may,fri,395,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+46,admin.,divorced,basic.9y,no,yes,no,cellular,may,fri,275,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+37,admin.,single,university.degree,no,yes,yes,cellular,may,fri,171,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,entrepreneur,married,university.degree,no,no,no,cellular,may,fri,17,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+40,blue-collar,married,unknown,unknown,no,no,cellular,may,fri,265,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+39,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,40,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+57,retired,single,university.degree,no,no,no,cellular,may,fri,208,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+42,management,divorced,high.school,no,yes,no,cellular,may,fri,163,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+38,admin.,married,high.school,no,no,no,cellular,may,fri,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+58,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,74,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+49,blue-collar,single,unknown,unknown,yes,no,cellular,may,fri,49,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+33,technician,single,professional.course,no,yes,no,cellular,may,fri,70,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,blue-collar,married,university.degree,no,no,yes,cellular,may,fri,208,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+41,services,single,high.school,no,no,no,cellular,may,fri,103,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+31,self-employed,single,university.degree,no,no,no,cellular,may,fri,302,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+50,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,103,6,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,75,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+41,services,married,high.school,no,yes,no,cellular,may,fri,97,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+29,technician,divorced,professional.course,unknown,yes,no,cellular,may,fri,14,5,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+25,admin.,single,high.school,no,yes,yes,cellular,may,fri,137,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+39,services,married,high.school,unknown,yes,yes,cellular,may,fri,19,6,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,management,married,university.degree,no,yes,no,cellular,may,fri,144,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+42,entrepreneur,married,basic.6y,no,yes,yes,cellular,may,fri,158,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+47,services,single,basic.6y,unknown,no,yes,cellular,may,fri,307,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,self-employed,married,university.degree,no,no,no,cellular,may,fri,182,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,admin.,married,high.school,no,yes,no,cellular,may,fri,1281,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+51,blue-collar,married,university.degree,no,no,no,cellular,may,fri,153,4,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+24,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,389,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,technician,married,professional.course,no,no,no,cellular,may,fri,290,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,technician,married,professional.course,no,yes,yes,cellular,may,fri,134,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,fri,153,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+29,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,851,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,single,basic.6y,no,unknown,unknown,cellular,may,fri,295,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,139,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,services,single,high.school,unknown,no,no,cellular,may,fri,182,2,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+31,self-employed,married,university.degree,no,no,no,cellular,may,fri,704,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,yes
+33,technician,married,professional.course,no,yes,yes,cellular,may,fri,500,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+47,blue-collar,married,high.school,no,no,yes,cellular,may,fri,168,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+37,self-employed,single,university.degree,no,no,yes,cellular,may,fri,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+55,entrepreneur,divorced,university.degree,unknown,no,no,cellular,may,fri,56,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+25,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,299,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,admin.,married,high.school,no,yes,no,cellular,may,fri,6,5,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,fri,159,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+44,services,single,high.school,no,no,no,cellular,may,fri,318,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+37,self-employed,single,university.degree,no,no,no,cellular,may,fri,263,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,single,basic.6y,no,unknown,unknown,telephone,may,fri,833,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+53,admin.,married,high.school,no,yes,no,cellular,may,fri,291,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,student,single,university.degree,no,no,no,cellular,may,fri,209,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+49,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,86,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+34,admin.,single,high.school,no,yes,no,cellular,may,fri,80,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,52,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+39,technician,married,professional.course,no,yes,no,cellular,may,fri,346,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,813,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+44,management,divorced,university.degree,no,unknown,unknown,cellular,may,fri,47,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+42,technician,married,professional.course,no,no,no,cellular,may,fri,1014,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,612,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,144,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+33,admin.,single,university.degree,no,unknown,unknown,cellular,may,fri,498,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,232,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+51,management,married,university.degree,no,no,no,cellular,may,fri,203,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,management,single,university.degree,no,yes,no,cellular,may,fri,268,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+37,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,210,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+22,student,single,high.school,no,no,no,cellular,may,fri,312,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,management,married,university.degree,no,no,no,cellular,may,fri,364,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+32,technician,single,university.degree,no,unknown,unknown,cellular,may,fri,31,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+45,technician,single,university.degree,no,no,no,cellular,may,fri,561,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+39,admin.,divorced,university.degree,no,no,no,telephone,may,fri,44,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,212,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,blue-collar,married,basic.9y,no,no,yes,cellular,may,fri,49,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+55,blue-collar,divorced,basic.4y,no,no,no,cellular,may,fri,278,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+45,technician,single,university.degree,no,no,no,cellular,may,fri,763,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+56,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,50,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+32,admin.,married,university.degree,no,no,no,cellular,may,fri,402,1,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,349,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,technician,married,high.school,no,no,no,cellular,may,fri,134,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+28,services,married,high.school,no,no,yes,cellular,may,fri,343,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+42,services,married,high.school,no,yes,no,cellular,may,fri,120,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+42,services,married,high.school,no,yes,no,telephone,may,fri,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,fri,191,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+41,admin.,married,university.degree,unknown,yes,no,cellular,may,fri,114,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+40,services,single,high.school,unknown,no,no,cellular,may,fri,239,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+29,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,111,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,admin.,single,high.school,no,no,yes,cellular,may,fri,93,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+42,admin.,single,high.school,no,yes,no,cellular,may,fri,92,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,43,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+37,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,301,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+41,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,fri,88,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+47,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,87,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+28,student,single,university.degree,no,yes,yes,cellular,may,fri,108,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+46,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,577,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+46,admin.,married,basic.9y,unknown,no,no,cellular,may,fri,175,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+33,admin.,married,high.school,no,no,no,telephone,may,fri,396,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,98,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+49,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,86,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+38,blue-collar,single,unknown,unknown,no,no,cellular,may,fri,936,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,39,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+25,admin.,single,university.degree,no,yes,no,cellular,may,fri,80,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+57,services,divorced,unknown,no,no,no,cellular,may,fri,144,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,admin.,married,high.school,unknown,yes,no,cellular,may,fri,310,2,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+38,management,married,university.degree,no,no,no,cellular,may,fri,525,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+45,services,single,high.school,no,yes,no,cellular,may,fri,127,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+51,blue-collar,married,university.degree,no,yes,no,cellular,may,fri,99,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,services,single,basic.9y,no,yes,no,cellular,may,fri,501,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+37,admin.,single,university.degree,no,yes,no,cellular,may,fri,105,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,blue-collar,married,basic.9y,unknown,no,no,cellular,may,fri,414,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,318,2,11,1,success,-1.8,92.893,-46.2,1.313,5099.1,no
+45,technician,single,university.degree,no,no,no,cellular,may,fri,445,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,may,fri,374,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+47,blue-collar,married,high.school,no,yes,no,cellular,may,fri,191,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,management,married,university.degree,no,yes,no,cellular,may,fri,1276,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+34,technician,married,university.degree,no,no,no,cellular,may,fri,51,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+40,services,married,basic.4y,unknown,no,no,cellular,may,fri,139,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+40,services,married,basic.4y,unknown,yes,no,cellular,may,fri,237,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+23,student,single,basic.9y,no,no,no,cellular,may,fri,145,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+38,blue-collar,single,high.school,no,no,no,cellular,may,fri,136,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+40,services,married,basic.4y,unknown,no,no,cellular,may,fri,308,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,self-employed,single,university.degree,no,no,no,cellular,may,fri,1243,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+40,management,single,university.degree,no,yes,no,cellular,may,fri,52,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+40,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,77,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+40,management,single,university.degree,no,no,yes,cellular,may,fri,217,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+31,blue-collar,single,high.school,no,yes,no,cellular,may,fri,197,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,services,married,high.school,no,unknown,unknown,cellular,may,fri,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,admin.,single,high.school,no,unknown,unknown,cellular,may,fri,579,2,10,1,success,-1.8,92.893,-46.2,1.313,5099.1,yes
+35,services,married,high.school,no,no,no,cellular,may,fri,125,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+58,management,single,university.degree,no,no,no,cellular,may,fri,90,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+58,management,single,university.degree,no,no,yes,cellular,may,fri,131,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+40,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,171,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,services,married,high.school,no,yes,no,cellular,may,fri,478,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,may,fri,70,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+30,services,married,high.school,no,yes,no,cellular,may,fri,424,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,120,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+28,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,326,1,11,1,success,-1.8,92.893,-46.2,1.313,5099.1,no
+40,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,fri,1080,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+34,admin.,single,university.degree,no,no,yes,cellular,may,fri,398,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+28,blue-collar,married,basic.9y,no,no,yes,cellular,may,fri,157,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+24,technician,single,basic.9y,no,no,no,cellular,may,fri,87,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+43,services,divorced,professional.course,no,no,no,cellular,may,fri,196,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,blue-collar,married,basic.6y,no,yes,no,cellular,may,fri,164,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+28,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,137,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+34,blue-collar,single,high.school,no,yes,no,cellular,may,fri,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+37,blue-collar,married,basic.4y,no,no,yes,cellular,may,fri,269,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,admin.,married,high.school,no,yes,yes,cellular,may,fri,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+27,admin.,single,high.school,no,yes,no,cellular,may,fri,340,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+48,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,94,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+42,admin.,divorced,university.degree,no,no,no,cellular,may,fri,308,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+35,admin.,married,university.degree,no,yes,no,cellular,may,fri,763,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+41,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,fri,140,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,admin.,single,university.degree,no,yes,no,cellular,may,fri,132,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+41,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,fri,261,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+32,technician,married,high.school,no,no,no,cellular,may,fri,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+43,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,66,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+28,technician,married,high.school,unknown,yes,no,cellular,may,fri,197,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+43,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,254,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+43,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,157,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+29,management,single,university.degree,no,yes,no,cellular,may,fri,468,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,451,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,admin.,single,university.degree,no,no,no,cellular,may,fri,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+55,blue-collar,married,unknown,unknown,no,no,cellular,may,fri,9,2,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+26,blue-collar,single,basic.6y,no,yes,yes,cellular,may,fri,191,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+49,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,services,married,high.school,no,no,no,cellular,may,fri,301,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,may,fri,662,1,12,1,success,-1.8,92.893,-46.2,1.313,5099.1,yes
+39,blue-collar,married,high.school,no,yes,no,telephone,may,fri,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+54,technician,married,university.degree,unknown,no,no,cellular,may,fri,56,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+39,blue-collar,married,high.school,no,no,yes,cellular,may,fri,248,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+39,blue-collar,married,high.school,no,yes,yes,cellular,may,fri,273,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+37,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,78,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,18,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+56,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,705,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+37,self-employed,single,basic.9y,no,yes,no,cellular,may,fri,82,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+52,services,married,high.school,no,yes,no,cellular,may,fri,207,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+24,services,single,high.school,no,yes,no,cellular,may,fri,53,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,568,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+37,admin.,married,university.degree,no,yes,yes,cellular,may,fri,364,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+43,blue-collar,married,basic.6y,no,no,yes,cellular,may,fri,67,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,admin.,married,high.school,unknown,no,no,cellular,may,fri,131,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,technician,married,university.degree,no,no,no,cellular,may,fri,186,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+41,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+42,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,306,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,198,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+57,management,married,high.school,no,yes,no,cellular,may,fri,129,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+44,services,single,high.school,no,yes,no,cellular,may,fri,161,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+28,admin.,married,high.school,no,yes,no,cellular,may,fri,579,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+41,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,491,1,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+33,admin.,married,high.school,no,yes,no,cellular,may,fri,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+27,admin.,single,high.school,no,yes,no,cellular,may,fri,1448,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+33,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,99,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+44,management,married,university.degree,no,yes,no,cellular,may,fri,69,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,392,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+37,blue-collar,married,high.school,no,yes,no,cellular,may,fri,142,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,428,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,admin.,married,university.degree,no,no,no,cellular,may,fri,209,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,656,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+33,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,728,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+38,blue-collar,single,high.school,no,yes,no,cellular,may,fri,81,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,720,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+37,blue-collar,married,high.school,no,no,no,cellular,may,fri,171,1,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+34,admin.,single,high.school,no,yes,no,cellular,may,fri,291,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,single,high.school,no,yes,no,cellular,may,fri,435,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+45,technician,single,university.degree,no,no,no,cellular,may,fri,272,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+52,services,married,high.school,no,yes,no,cellular,may,fri,121,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+42,admin.,divorced,university.degree,no,yes,no,cellular,may,fri,243,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+29,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,164,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+45,technician,married,basic.9y,no,no,no,cellular,may,fri,144,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,339,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+52,retired,divorced,basic.6y,no,no,no,cellular,may,fri,154,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+32,blue-collar,married,high.school,no,no,no,cellular,may,fri,319,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+38,blue-collar,married,professional.course,no,no,no,cellular,may,fri,218,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+34,services,married,high.school,no,no,no,telephone,may,fri,125,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+46,technician,married,professional.course,no,no,no,cellular,may,fri,124,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+22,student,single,high.school,no,no,no,cellular,may,fri,87,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+30,services,single,high.school,unknown,no,no,cellular,may,fri,87,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+40,services,married,high.school,no,yes,no,cellular,may,fri,151,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+58,admin.,married,high.school,no,yes,no,cellular,may,fri,67,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,admin.,married,university.degree,no,no,no,cellular,may,fri,89,6,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,blue-collar,married,university.degree,no,yes,yes,cellular,may,fri,183,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,entrepreneur,married,university.degree,no,no,no,cellular,may,fri,270,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+47,services,married,high.school,no,no,yes,cellular,may,fri,196,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,admin.,married,university.degree,no,no,no,cellular,may,fri,247,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+29,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,fri,206,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+30,self-employed,married,basic.9y,unknown,no,no,cellular,may,fri,73,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+40,services,married,basic.4y,unknown,yes,no,cellular,may,fri,85,1,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+29,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,fri,325,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+39,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,180,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,self-employed,single,professional.course,no,yes,no,cellular,may,fri,76,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+37,services,single,professional.course,no,yes,no,cellular,may,fri,279,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+26,student,single,basic.9y,unknown,yes,no,cellular,may,fri,682,2,3,2,success,-1.8,92.893,-46.2,1.313,5099.1,no
+37,services,single,professional.course,no,no,no,cellular,may,fri,462,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+25,admin.,single,high.school,no,yes,no,cellular,may,fri,238,6,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+34,technician,married,professional.course,no,yes,no,cellular,may,fri,81,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+21,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,279,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,blue-collar,married,basic.9y,no,unknown,unknown,cellular,may,fri,68,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+51,management,married,university.degree,no,no,no,cellular,may,fri,127,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,management,married,university.degree,no,no,no,cellular,may,fri,238,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+32,technician,married,professional.course,no,no,no,cellular,may,fri,158,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+41,services,single,high.school,no,no,no,cellular,may,fri,1642,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+39,blue-collar,married,basic.9y,unknown,no,no,cellular,may,fri,69,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+40,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,fri,356,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,25,6,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+47,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,146,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,264,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,management,single,high.school,no,yes,no,cellular,may,fri,345,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,single,basic.6y,no,yes,no,cellular,may,fri,474,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+54,admin.,divorced,professional.course,no,yes,no,telephone,may,fri,75,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+41,services,single,high.school,unknown,yes,no,cellular,may,fri,77,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,admin.,married,high.school,no,no,yes,cellular,may,fri,254,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,219,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,management,single,university.degree,no,yes,no,cellular,may,fri,175,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,management,single,university.degree,no,no,no,cellular,may,fri,261,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,fri,456,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+37,services,single,professional.course,no,yes,no,cellular,may,fri,241,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,297,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+51,admin.,married,high.school,unknown,no,no,cellular,may,fri,117,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+41,blue-collar,single,basic.6y,unknown,no,no,cellular,may,fri,103,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+55,management,married,basic.4y,no,no,no,cellular,may,fri,95,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,fri,198,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+40,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,182,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,technician,married,professional.course,no,yes,no,cellular,may,fri,226,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+55,entrepreneur,divorced,university.degree,unknown,no,no,cellular,may,fri,133,8,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,admin.,married,high.school,no,no,no,cellular,may,fri,123,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+41,blue-collar,single,basic.6y,unknown,no,no,cellular,may,fri,211,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,services,single,high.school,no,yes,no,telephone,may,fri,473,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+29,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,137,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+29,blue-collar,single,basic.9y,unknown,no,no,cellular,may,fri,85,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+25,blue-collar,single,basic.9y,no,yes,yes,cellular,may,fri,238,6,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,management,married,university.degree,no,no,no,cellular,may,fri,316,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+41,services,single,high.school,no,yes,no,cellular,may,fri,408,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,144,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,technician,married,high.school,no,no,no,cellular,may,fri,428,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+30,services,single,high.school,unknown,no,no,cellular,may,fri,422,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,44,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,294,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+41,admin.,married,university.degree,unknown,yes,no,telephone,may,fri,288,3,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+48,admin.,married,basic.9y,no,no,no,cellular,may,fri,311,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+39,admin.,single,university.degree,no,yes,no,cellular,may,fri,273,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+32,blue-collar,single,basic.6y,no,yes,no,cellular,may,fri,91,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+43,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,36,5,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+38,blue-collar,married,professional.course,no,yes,no,telephone,may,fri,37,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,technician,married,high.school,unknown,yes,no,cellular,may,fri,104,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+40,admin.,married,high.school,unknown,no,yes,cellular,may,fri,326,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,management,married,professional.course,no,no,yes,cellular,may,fri,376,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,blue-collar,married,university.degree,no,yes,no,cellular,may,fri,44,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+37,admin.,single,university.degree,no,no,no,cellular,may,fri,104,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+37,blue-collar,married,high.school,unknown,no,no,cellular,may,fri,323,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,309,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+49,blue-collar,single,unknown,unknown,yes,no,cellular,may,fri,347,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,admin.,married,high.school,no,yes,no,cellular,may,fri,247,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,admin.,married,high.school,no,no,no,cellular,may,fri,217,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,technician,married,university.degree,no,yes,no,cellular,may,fri,47,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,207,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+31,services,married,high.school,no,no,no,cellular,may,fri,130,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,blue-collar,single,high.school,no,no,no,cellular,may,fri,455,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,management,married,professional.course,no,unknown,unknown,cellular,may,fri,154,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+29,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,202,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,admin.,married,basic.9y,no,yes,no,telephone,may,fri,147,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+27,services,single,high.school,no,yes,no,cellular,may,fri,86,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+46,admin.,married,high.school,no,no,no,cellular,may,fri,318,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+37,admin.,married,high.school,unknown,yes,no,cellular,may,fri,503,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+42,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,262,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,technician,married,professional.course,no,no,no,cellular,may,fri,83,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+32,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,177,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+39,services,married,high.school,unknown,yes,yes,telephone,may,fri,186,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,may,fri,334,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+29,services,married,basic.9y,no,no,yes,cellular,may,fri,274,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+30,admin.,single,high.school,no,no,yes,cellular,may,fri,154,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,may,fri,286,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+31,self-employed,single,high.school,no,yes,no,cellular,may,fri,187,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+39,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,557,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+30,services,divorced,high.school,no,unknown,unknown,cellular,may,fri,186,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+34,admin.,single,university.degree,no,no,no,cellular,may,fri,134,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+28,services,married,high.school,no,yes,no,cellular,may,fri,237,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+37,blue-collar,married,high.school,unknown,no,yes,telephone,may,fri,367,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,services,married,high.school,no,yes,no,cellular,may,fri,104,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+37,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,612,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,technician,married,professional.course,no,no,yes,cellular,may,fri,40,6,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+47,services,married,high.school,no,no,yes,cellular,may,fri,506,2,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+36,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,191,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+34,admin.,married,high.school,unknown,no,no,cellular,may,fri,267,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+46,services,married,basic.4y,no,yes,no,cellular,may,fri,187,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,married,high.school,unknown,no,yes,cellular,may,fri,296,5,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,admin.,single,university.degree,no,no,yes,cellular,may,fri,174,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+27,technician,married,professional.course,no,no,yes,cellular,may,fri,224,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+49,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,235,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+29,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,128,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+30,services,single,high.school,unknown,yes,no,cellular,may,fri,55,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+43,blue-collar,married,basic.6y,no,yes,no,cellular,may,fri,156,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+58,management,single,university.degree,no,yes,no,cellular,may,fri,685,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+45,blue-collar,single,professional.course,no,yes,no,cellular,may,fri,1954,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+44,admin.,divorced,high.school,no,yes,yes,cellular,may,fri,211,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+39,blue-collar,married,basic.9y,unknown,no,no,cellular,may,fri,143,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+28,admin.,married,high.school,no,no,no,cellular,may,fri,129,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+42,management,divorced,high.school,no,no,no,cellular,may,fri,13,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+38,admin.,married,high.school,no,unknown,unknown,cellular,may,fri,295,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+52,services,married,high.school,no,no,yes,cellular,may,fri,38,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+37,blue-collar,married,basic.4y,no,yes,yes,cellular,may,fri,456,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+54,technician,married,university.degree,unknown,no,no,cellular,may,fri,217,7,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,technician,single,university.degree,no,no,no,cellular,may,fri,216,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,entrepreneur,married,university.degree,no,yes,yes,cellular,may,fri,152,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+33,admin.,single,university.degree,no,yes,yes,cellular,may,fri,1024,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,yes
+57,services,divorced,unknown,no,no,no,cellular,may,fri,405,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+43,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,518,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,admin.,married,high.school,no,yes,no,cellular,may,fri,438,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,may,fri,129,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+25,admin.,single,high.school,no,no,no,cellular,may,fri,682,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,yes
+44,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,361,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+45,technician,single,university.degree,no,no,no,cellular,may,fri,311,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,1094,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,fri,746,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,may,fri,348,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,entrepreneur,divorced,basic.6y,no,yes,no,cellular,may,fri,53,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,management,married,university.degree,no,yes,no,telephone,may,fri,283,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+32,services,single,high.school,no,yes,no,cellular,may,fri,583,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+54,technician,married,university.degree,unknown,yes,no,telephone,may,fri,265,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+36,admin.,single,university.degree,no,no,no,cellular,may,fri,146,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+42,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,114,7,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,487,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+28,services,married,high.school,no,no,no,cellular,may,fri,1049,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+50,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,213,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+37,blue-collar,married,high.school,no,yes,no,cellular,may,fri,466,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,may,fri,348,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+44,services,married,high.school,no,no,no,cellular,may,fri,263,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+59,admin.,married,university.degree,no,yes,no,cellular,may,fri,324,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+32,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,83,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+36,admin.,married,university.degree,no,no,yes,telephone,may,fri,267,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+29,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,fri,340,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+30,admin.,married,university.degree,no,no,no,cellular,may,fri,418,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+29,admin.,single,high.school,no,no,no,cellular,may,fri,553,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+32,admin.,married,university.degree,no,no,no,telephone,may,fri,546,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+30,technician,married,professional.course,no,yes,no,cellular,may,fri,156,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+43,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,288,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+49,technician,married,professional.course,no,yes,no,cellular,may,fri,364,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+34,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,fri,219,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+37,unemployed,married,basic.9y,no,yes,yes,cellular,may,fri,129,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+35,admin.,single,high.school,no,no,no,cellular,may,fri,282,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,services,married,high.school,unknown,no,no,cellular,may,fri,89,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,admin.,married,basic.9y,no,yes,no,cellular,may,fri,152,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+29,services,divorced,high.school,no,yes,no,cellular,may,fri,323,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,services,married,high.school,unknown,no,no,cellular,may,fri,311,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+36,services,married,high.school,unknown,yes,yes,cellular,may,fri,108,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+29,services,divorced,high.school,no,yes,no,cellular,may,fri,548,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+44,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,199,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,63,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,173,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,177,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+44,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,383,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+47,blue-collar,married,high.school,no,yes,yes,telephone,may,fri,72,6,6,1,success,-1.8,92.893,-46.2,1.313,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+38,blue-collar,married,professional.course,no,yes,no,telephone,may,fri,713,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+33,blue-collar,married,professional.course,no,yes,no,telephone,may,fri,15,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,423,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes
+52,admin.,married,high.school,no,yes,yes,cellular,may,fri,81,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+32,blue-collar,single,basic.6y,no,yes,no,cellular,may,fri,211,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,322,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+28,unemployed,married,basic.9y,no,yes,no,cellular,may,fri,349,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no
+34,admin.,married,basic.9y,no,unknown,unknown,cellular,may,fri,248,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no
+34,technician,married,basic.9y,no,yes,yes,cellular,may,mon,142,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,self-employed,single,university.degree,no,yes,no,cellular,may,mon,102,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+53,self-employed,divorced,basic.4y,no,no,no,cellular,may,mon,82,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+26,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,84,7,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+41,housemaid,single,university.degree,no,yes,no,telephone,may,mon,9,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+43,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,20,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+29,entrepreneur,married,basic.4y,unknown,no,no,cellular,may,mon,332,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+44,technician,married,professional.course,no,no,no,cellular,may,mon,13,6,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+34,unemployed,single,high.school,no,yes,no,telephone,may,mon,21,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+29,blue-collar,single,high.school,no,yes,no,cellular,may,mon,62,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+34,technician,single,professional.course,no,yes,no,cellular,may,mon,240,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+54,management,married,high.school,unknown,no,no,cellular,may,mon,229,5,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+30,management,married,university.degree,no,yes,no,cellular,may,mon,61,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+38,entrepreneur,single,university.degree,no,yes,no,telephone,may,mon,30,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+50,blue-collar,married,unknown,unknown,yes,yes,telephone,may,mon,10,8,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+27,admin.,married,high.school,no,no,no,cellular,may,mon,88,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+29,services,single,high.school,no,yes,no,cellular,may,mon,14,8,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+56,services,divorced,high.school,unknown,yes,no,cellular,may,mon,125,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+39,admin.,married,university.degree,no,yes,no,cellular,may,mon,156,7,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+44,services,married,basic.9y,no,yes,no,cellular,may,mon,50,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,technician,married,university.degree,no,yes,no,cellular,may,mon,15,8,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,blue-collar,single,high.school,no,no,no,cellular,may,mon,80,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+27,services,married,basic.9y,no,yes,yes,cellular,may,mon,304,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+43,services,divorced,professional.course,no,no,no,cellular,may,mon,108,6,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+45,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,295,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,blue-collar,married,basic.9y,unknown,no,no,cellular,may,mon,259,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+54,management,married,basic.6y,no,yes,no,cellular,may,mon,54,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,technician,single,professional.course,no,no,no,cellular,may,mon,573,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+39,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,652,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,may,mon,443,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+44,admin.,married,basic.9y,no,yes,no,cellular,may,mon,55,1,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+34,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,mon,67,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,services,single,high.school,no,yes,no,cellular,may,mon,206,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+25,blue-collar,single,high.school,unknown,yes,no,cellular,may,mon,23,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,249,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+43,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,may,mon,485,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+40,technician,married,professional.course,no,yes,no,cellular,may,mon,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+29,admin.,single,high.school,no,yes,no,telephone,may,mon,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+44,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,309,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,194,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+33,admin.,single,university.degree,no,no,no,cellular,may,mon,657,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+33,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,313,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,services,married,high.school,no,yes,no,cellular,may,mon,577,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,457,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+37,admin.,married,high.school,unknown,no,no,cellular,may,mon,547,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,management,single,university.degree,no,unknown,unknown,cellular,may,mon,246,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+27,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,210,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,admin.,married,high.school,no,yes,no,cellular,may,mon,27,7,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+53,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,mon,267,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,technician,married,university.degree,no,yes,no,cellular,may,mon,502,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,139,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,may,mon,57,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+24,services,single,high.school,no,yes,yes,cellular,may,mon,590,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+42,services,single,high.school,no,yes,no,cellular,may,mon,7,5,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+29,admin.,divorced,basic.9y,no,no,no,cellular,may,mon,81,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+34,admin.,married,high.school,no,yes,yes,cellular,may,mon,528,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+39,admin.,married,university.degree,no,no,no,cellular,may,mon,195,5,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+29,admin.,married,high.school,no,yes,no,cellular,may,mon,106,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+26,admin.,single,university.degree,no,yes,yes,cellular,may,mon,9,7,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+27,admin.,single,high.school,no,yes,no,cellular,may,mon,156,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+27,admin.,single,high.school,no,yes,no,cellular,may,mon,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,mon,351,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+26,student,single,high.school,no,yes,no,cellular,may,mon,73,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+27,admin.,single,high.school,no,yes,no,cellular,may,mon,313,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+32,self-employed,single,university.degree,no,yes,no,cellular,may,mon,66,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+26,admin.,single,university.degree,no,no,no,cellular,may,mon,143,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+26,student,single,high.school,no,yes,no,cellular,may,mon,255,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+33,self-employed,single,university.degree,no,no,no,cellular,may,mon,164,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,55,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+37,management,single,basic.9y,no,yes,no,cellular,may,mon,189,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+37,management,single,basic.9y,no,no,no,cellular,may,mon,261,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+40,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,84,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+27,entrepreneur,married,university.degree,no,no,yes,cellular,may,mon,117,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+30,services,single,high.school,no,yes,no,cellular,may,mon,288,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+23,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,58,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+25,admin.,married,university.degree,no,no,no,cellular,may,mon,496,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+48,technician,married,basic.9y,no,yes,no,cellular,may,mon,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+37,services,married,high.school,no,no,no,telephone,may,mon,108,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+23,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,285,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+37,entrepreneur,married,basic.9y,no,no,no,cellular,may,mon,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,207,7,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+49,admin.,divorced,high.school,no,no,no,cellular,may,mon,128,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+37,entrepreneur,married,basic.9y,no,no,no,cellular,may,mon,277,1,9,1,success,-1.8,92.893,-46.2,1.299,5099.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,1038,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,yes
+23,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,657,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+35,blue-collar,married,unknown,no,yes,no,cellular,may,mon,40,8,10,1,success,-1.8,92.893,-46.2,1.299,5099.1,no
+37,entrepreneur,married,basic.9y,no,yes,no,cellular,may,mon,346,1,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+31,technician,single,university.degree,no,yes,no,cellular,may,mon,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+53,self-employed,married,basic.4y,unknown,yes,no,cellular,may,mon,62,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,65,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+32,admin.,married,high.school,no,yes,no,cellular,may,mon,689,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+47,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,mon,341,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+41,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,12,8,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+33,services,single,high.school,no,yes,no,telephone,may,mon,32,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+38,admin.,divorced,high.school,no,no,no,cellular,may,mon,344,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+36,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+38,admin.,divorced,high.school,no,yes,no,cellular,may,mon,469,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+44,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,58,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+32,admin.,married,high.school,no,yes,no,cellular,may,mon,155,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,technician,single,university.degree,no,no,no,cellular,may,mon,629,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,yes
+52,services,married,high.school,unknown,yes,no,telephone,may,mon,243,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+37,admin.,married,high.school,no,no,no,telephone,may,mon,42,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,admin.,married,high.school,no,yes,yes,cellular,may,mon,12,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+36,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,460,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,technician,single,professional.course,no,yes,no,cellular,may,mon,183,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,technician,single,professional.course,no,yes,no,cellular,may,mon,242,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+36,admin.,married,university.degree,no,no,no,cellular,may,mon,112,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,8,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+45,technician,unknown,basic.6y,no,no,no,cellular,may,mon,197,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+26,student,single,basic.4y,no,no,yes,cellular,may,mon,802,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+31,technician,single,university.degree,no,yes,no,cellular,may,mon,1514,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,yes
+40,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,15,7,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+52,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,182,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,technician,married,professional.course,no,yes,no,cellular,may,mon,934,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,yes
+36,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,mon,422,1,12,1,success,-1.8,92.893,-46.2,1.299,5099.1,no
+51,blue-collar,married,basic.4y,unknown,no,no,cellular,may,mon,214,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+26,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,152,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,248,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+27,self-employed,married,university.degree,no,yes,no,cellular,may,mon,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,may,mon,67,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,housemaid,single,basic.9y,no,yes,no,cellular,may,mon,279,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,may,mon,188,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+54,management,married,high.school,unknown,yes,no,cellular,may,mon,254,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+38,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,135,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+51,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,mon,231,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+51,entrepreneur,divorced,university.degree,no,yes,no,cellular,may,mon,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+51,entrepreneur,divorced,university.degree,no,no,no,cellular,may,mon,227,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+39,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+39,blue-collar,single,basic.9y,no,yes,yes,cellular,may,mon,75,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+35,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,220,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+27,admin.,single,university.degree,no,yes,yes,cellular,may,mon,80,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+53,admin.,married,university.degree,no,yes,no,cellular,may,mon,202,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+33,technician,single,university.degree,no,yes,no,cellular,may,mon,340,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+46,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,549,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,admin.,divorced,high.school,no,yes,no,cellular,may,mon,472,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+27,admin.,single,university.degree,no,no,no,cellular,may,mon,409,1,1,1,success,-1.8,92.893,-46.2,1.299,5099.1,no
+31,admin.,divorced,high.school,no,no,no,cellular,may,mon,479,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+48,blue-collar,married,basic.9y,unknown,no,no,cellular,may,mon,236,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,technician,single,professional.course,no,yes,no,cellular,may,mon,308,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,91,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,technician,married,professional.course,no,yes,no,cellular,may,mon,90,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+42,blue-collar,married,basic.6y,unknown,no,no,cellular,may,mon,15,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+52,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,186,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+28,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,200,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,services,married,high.school,no,no,no,cellular,may,mon,161,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,technician,married,university.degree,no,yes,no,cellular,may,mon,262,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+39,services,married,high.school,no,yes,no,cellular,may,mon,49,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+31,services,single,high.school,no,no,yes,cellular,may,mon,369,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,may,mon,471,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+39,services,married,high.school,no,yes,no,cellular,may,mon,198,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+42,management,married,university.degree,no,yes,no,cellular,may,mon,568,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+39,services,married,high.school,no,no,no,cellular,may,mon,410,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,blue-collar,married,basic.9y,no,no,yes,cellular,may,mon,116,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+55,blue-collar,divorced,basic.4y,unknown,yes,yes,cellular,may,mon,163,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+47,blue-collar,married,unknown,no,yes,no,cellular,may,mon,100,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+51,entrepreneur,married,professional.course,unknown,no,no,cellular,may,mon,59,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+41,technician,single,professional.course,no,no,no,cellular,may,mon,686,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,technician,single,high.school,no,no,no,telephone,may,mon,28,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+51,entrepreneur,married,professional.course,unknown,no,no,cellular,may,mon,256,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+51,entrepreneur,married,professional.course,unknown,no,no,cellular,may,mon,295,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+46,management,single,university.degree,no,no,yes,cellular,may,mon,114,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+57,technician,married,university.degree,no,no,no,cellular,may,mon,200,6,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+31,technician,married,university.degree,no,no,no,cellular,may,mon,733,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+29,technician,single,basic.9y,no,yes,no,cellular,may,mon,170,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+29,technician,single,basic.9y,no,yes,no,cellular,may,mon,214,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+50,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,474,1,9,1,success,-1.8,92.893,-46.2,1.299,5099.1,yes
+47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,101,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+38,blue-collar,married,high.school,unknown,yes,no,cellular,may,mon,306,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,115,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+31,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,106,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,231,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,admin.,single,university.degree,no,no,yes,cellular,may,mon,14,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+56,management,married,professional.course,no,yes,no,cellular,may,mon,240,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+27,technician,single,basic.9y,no,no,yes,cellular,may,mon,701,1,12,1,success,-1.8,92.893,-46.2,1.299,5099.1,yes
+46,technician,married,university.degree,no,yes,no,cellular,may,mon,231,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+29,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,666,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+31,admin.,married,university.degree,no,yes,no,cellular,may,mon,712,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,239,5,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+47,admin.,single,high.school,no,no,no,cellular,may,mon,219,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+36,services,married,basic.6y,unknown,yes,no,cellular,may,mon,102,6,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+30,services,single,high.school,no,no,no,cellular,may,mon,75,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+33,services,single,high.school,no,unknown,unknown,cellular,may,mon,216,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+45,blue-collar,divorced,basic.4y,no,yes,no,cellular,may,mon,190,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+39,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,181,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,services,single,high.school,no,yes,yes,cellular,may,mon,178,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,blue-collar,single,basic.6y,no,no,no,cellular,may,mon,204,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,services,single,high.school,no,yes,yes,cellular,may,mon,405,1,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+26,services,single,high.school,no,yes,no,cellular,may,mon,274,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+48,admin.,divorced,basic.4y,no,yes,no,cellular,may,mon,227,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,blue-collar,single,basic.4y,unknown,yes,yes,cellular,may,mon,46,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+26,services,single,high.school,no,yes,no,cellular,may,mon,360,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+43,blue-collar,married,basic.9y,unknown,no,no,cellular,may,mon,7,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+36,admin.,single,professional.course,no,yes,no,cellular,may,mon,74,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,may,mon,490,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+36,services,married,university.degree,no,yes,no,cellular,may,mon,105,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+29,admin.,divorced,basic.9y,no,yes,no,cellular,may,mon,226,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+36,services,married,university.degree,no,no,no,cellular,may,mon,189,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+28,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,87,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,admin.,single,university.degree,no,no,no,cellular,may,mon,386,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+51,admin.,married,basic.9y,unknown,yes,no,cellular,may,mon,18,6,6,2,success,-1.8,92.893,-46.2,1.299,5099.1,no
+39,blue-collar,married,professional.course,no,no,no,cellular,may,mon,149,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+40,admin.,single,high.school,unknown,yes,no,cellular,may,mon,222,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+34,management,married,basic.9y,no,no,yes,cellular,may,mon,131,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,technician,married,high.school,no,yes,no,cellular,may,mon,225,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+47,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,21,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,technician,married,high.school,no,no,no,cellular,may,mon,40,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+38,blue-collar,married,high.school,unknown,no,no,cellular,may,mon,627,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,services,single,high.school,no,yes,no,cellular,may,mon,151,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+44,admin.,single,professional.course,no,yes,no,cellular,may,mon,105,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,may,mon,8,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+55,retired,married,basic.9y,unknown,no,no,telephone,may,mon,114,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+34,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,281,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+34,technician,married,high.school,no,no,no,cellular,may,mon,347,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+27,unknown,single,high.school,unknown,yes,yes,cellular,may,mon,154,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+34,technician,married,basic.9y,no,no,no,cellular,may,mon,103,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,technician,married,basic.9y,no,yes,no,cellular,may,mon,95,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+37,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,214,8,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+38,services,married,high.school,unknown,no,no,cellular,may,mon,323,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+50,blue-collar,married,basic.4y,no,yes,yes,cellular,may,mon,197,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+27,unknown,single,high.school,unknown,yes,yes,cellular,may,mon,628,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,services,divorced,basic.9y,no,yes,no,cellular,may,mon,465,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,admin.,single,high.school,no,no,no,cellular,may,mon,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+37,admin.,single,university.degree,no,no,yes,cellular,may,mon,553,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+31,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,225,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+38,blue-collar,married,professional.course,unknown,no,no,cellular,may,mon,388,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,blue-collar,married,basic.9y,no,no,yes,cellular,may,mon,49,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+36,technician,single,professional.course,no,yes,no,cellular,may,mon,59,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+49,services,married,high.school,no,no,no,telephone,may,mon,86,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+33,unemployed,married,basic.9y,no,yes,yes,cellular,may,mon,21,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+43,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,99,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+49,services,married,high.school,no,yes,no,cellular,may,mon,165,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+34,unemployed,married,basic.9y,no,no,no,cellular,may,mon,123,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+37,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,54,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+28,technician,married,university.degree,no,no,no,cellular,may,mon,41,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+45,admin.,single,high.school,no,no,no,cellular,may,mon,1487,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+27,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,653,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+37,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,327,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,177,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+31,management,single,university.degree,no,yes,yes,cellular,may,mon,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,management,single,university.degree,no,yes,no,cellular,may,mon,125,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,technician,married,university.degree,no,yes,no,cellular,may,mon,42,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+29,admin.,single,basic.9y,no,no,no,cellular,may,mon,79,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,technician,single,professional.course,no,yes,yes,cellular,may,mon,214,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,may,mon,85,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+50,blue-collar,divorced,basic.6y,no,yes,no,cellular,may,mon,82,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,239,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,technician,single,professional.course,no,yes,yes,cellular,may,mon,187,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+32,technician,married,high.school,no,yes,no,cellular,may,mon,329,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,mon,29,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+33,admin.,single,university.degree,no,no,no,cellular,may,mon,234,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+26,admin.,single,high.school,no,no,no,cellular,may,mon,610,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+31,technician,single,professional.course,no,yes,yes,cellular,may,mon,282,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+44,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,144,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+34,admin.,unknown,university.degree,no,no,no,cellular,may,mon,257,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,may,mon,75,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+41,services,divorced,high.school,no,yes,no,cellular,may,mon,622,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,admin.,unknown,university.degree,no,yes,yes,cellular,may,mon,56,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+27,student,single,university.degree,unknown,no,no,cellular,may,mon,489,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,102,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+39,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,583,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+34,admin.,unknown,university.degree,no,yes,no,cellular,may,mon,304,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+24,services,married,high.school,no,yes,no,cellular,may,mon,278,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+37,technician,divorced,professional.course,no,no,no,cellular,may,mon,66,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+36,admin.,married,high.school,no,no,no,cellular,may,mon,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+39,admin.,married,high.school,no,yes,no,cellular,may,mon,432,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+29,admin.,divorced,high.school,no,yes,yes,cellular,may,mon,78,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+27,technician,married,professional.course,no,yes,no,cellular,may,mon,275,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,technician,single,professional.course,no,unknown,unknown,cellular,may,mon,146,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+39,admin.,single,university.degree,no,yes,yes,cellular,may,mon,292,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+29,blue-collar,single,high.school,no,yes,no,cellular,may,mon,134,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+39,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,313,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+39,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,333,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+47,admin.,single,high.school,no,no,no,cellular,may,mon,1114,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+54,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,50,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+27,entrepreneur,married,university.degree,no,yes,no,cellular,may,mon,207,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+23,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,672,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+31,technician,single,high.school,no,no,no,cellular,may,mon,552,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+30,management,married,university.degree,no,yes,no,cellular,may,mon,249,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+33,services,married,basic.6y,no,yes,no,cellular,may,mon,72,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+33,admin.,married,high.school,unknown,yes,no,cellular,may,mon,412,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+28,blue-collar,single,professional.course,no,no,no,cellular,may,mon,299,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+33,admin.,married,high.school,no,yes,yes,cellular,may,mon,124,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+33,admin.,married,high.school,no,yes,yes,cellular,may,mon,109,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+49,blue-collar,single,basic.4y,no,yes,no,cellular,may,mon,251,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+39,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,400,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+32,blue-collar,married,basic.6y,no,yes,yes,cellular,may,mon,101,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,admin.,married,high.school,no,yes,yes,cellular,may,mon,82,9,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+29,entrepreneur,married,basic.4y,unknown,no,no,cellular,may,mon,494,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+52,services,married,high.school,unknown,yes,no,cellular,may,mon,930,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+28,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,146,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,admin.,married,basic.6y,no,yes,no,cellular,may,mon,262,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+29,admin.,single,basic.9y,no,no,no,cellular,may,mon,177,4,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,124,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+31,admin.,divorced,university.degree,no,no,no,cellular,may,mon,239,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+39,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,158,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+36,admin.,married,university.degree,no,no,no,cellular,may,mon,91,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+28,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,52,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+38,blue-collar,married,basic.9y,no,no,yes,telephone,may,mon,159,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+39,services,married,high.school,no,no,no,cellular,may,mon,294,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,175,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+44,technician,married,professional.course,no,no,no,cellular,may,mon,132,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,technician,married,university.degree,no,yes,no,cellular,may,mon,282,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,services,divorced,basic.9y,no,no,yes,cellular,may,mon,295,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+48,admin.,divorced,high.school,unknown,no,no,cellular,may,mon,146,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+28,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,505,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,technician,married,university.degree,no,yes,no,cellular,may,mon,580,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+55,management,married,university.degree,no,yes,no,cellular,may,mon,90,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+27,housemaid,married,basic.6y,no,no,no,cellular,may,mon,608,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+48,admin.,divorced,high.school,unknown,yes,yes,cellular,may,mon,466,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+25,admin.,married,high.school,no,no,no,cellular,may,mon,261,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+49,entrepreneur,married,basic.6y,unknown,yes,yes,cellular,may,mon,330,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+35,technician,married,professional.course,no,yes,no,cellular,may,mon,148,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+46,management,married,basic.6y,no,yes,yes,telephone,may,mon,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,may,mon,76,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+30,blue-collar,married,basic.4y,no,no,yes,cellular,may,mon,255,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+36,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,193,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+28,services,married,high.school,no,yes,no,cellular,may,mon,643,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,475,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,yes
+57,technician,married,high.school,no,yes,no,cellular,may,mon,74,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+28,blue-collar,married,basic.6y,unknown,no,no,cellular,may,mon,68,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+29,admin.,single,high.school,no,yes,no,telephone,may,mon,41,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+38,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,mon,168,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,93,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+51,admin.,married,basic.6y,no,no,yes,cellular,may,mon,228,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+57,technician,married,high.school,no,no,yes,cellular,may,mon,161,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,services,divorced,university.degree,no,yes,no,cellular,may,mon,215,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+46,management,married,basic.6y,no,no,no,cellular,may,mon,966,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+57,technician,married,high.school,no,yes,no,cellular,may,mon,758,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+50,admin.,single,basic.9y,unknown,no,yes,telephone,may,mon,52,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+57,technician,married,high.school,no,no,yes,cellular,may,mon,371,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+32,technician,single,high.school,no,yes,yes,cellular,may,mon,426,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,369,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+54,management,married,basic.4y,unknown,yes,no,cellular,may,mon,264,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,technician,married,professional.course,no,yes,no,cellular,may,mon,246,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+53,self-employed,married,basic.4y,unknown,yes,no,cellular,may,mon,145,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+36,admin.,married,high.school,no,yes,no,cellular,may,mon,329,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,services,divorced,high.school,no,no,no,cellular,may,mon,159,2,11,1,success,-1.8,92.893,-46.2,1.299,5099.1,no
+30,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,mon,242,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,77,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+40,services,divorced,high.school,no,yes,no,cellular,may,mon,262,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+28,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,may,mon,267,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+29,entrepreneur,married,basic.4y,unknown,yes,no,telephone,may,mon,224,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+46,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,184,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,mon,289,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+33,blue-collar,single,basic.9y,unknown,yes,yes,cellular,may,mon,143,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+45,management,married,basic.9y,unknown,yes,no,cellular,may,mon,288,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+41,services,single,high.school,unknown,yes,no,cellular,may,mon,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+45,management,married,basic.9y,unknown,yes,no,cellular,may,mon,305,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,386,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,entrepreneur,married,high.school,no,yes,no,cellular,may,mon,101,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+34,technician,married,basic.9y,no,yes,no,cellular,may,mon,35,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,629,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+53,admin.,married,high.school,no,yes,yes,cellular,may,mon,186,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+27,unknown,single,high.school,unknown,yes,no,cellular,may,mon,334,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+40,admin.,married,university.degree,no,yes,no,cellular,may,mon,174,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,services,married,high.school,no,yes,yes,cellular,may,mon,296,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+38,admin.,divorced,university.degree,no,no,no,cellular,may,mon,79,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+28,entrepreneur,single,professional.course,no,yes,no,cellular,may,mon,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,blue-collar,married,basic.6y,no,yes,yes,cellular,may,mon,261,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+46,admin.,married,basic.6y,unknown,no,yes,cellular,may,mon,270,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+43,admin.,divorced,basic.9y,no,yes,no,cellular,may,mon,47,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+30,technician,single,basic.9y,no,no,no,cellular,may,mon,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,technician,single,basic.9y,no,yes,no,cellular,may,mon,112,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+47,blue-collar,married,high.school,no,yes,yes,cellular,may,mon,57,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+28,technician,single,professional.course,no,yes,no,cellular,may,mon,77,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+57,technician,married,professional.course,no,yes,no,cellular,may,mon,190,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,blue-collar,single,university.degree,unknown,yes,no,cellular,may,mon,321,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,200,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+56,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,161,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,may,mon,188,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+49,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,mon,204,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+49,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,mon,290,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+47,services,divorced,high.school,no,yes,no,cellular,may,mon,254,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,may,mon,232,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+36,services,married,university.degree,no,yes,no,cellular,may,mon,97,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+28,technician,single,professional.course,no,yes,no,telephone,may,mon,296,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+48,admin.,divorced,high.school,unknown,no,no,cellular,may,mon,263,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+42,admin.,married,university.degree,no,no,no,cellular,may,mon,98,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+57,technician,married,high.school,no,yes,no,cellular,may,mon,228,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,admin.,divorced,high.school,no,yes,no,cellular,may,mon,274,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+42,management,married,university.degree,no,yes,no,cellular,may,mon,306,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,blue-collar,married,basic.6y,no,yes,yes,cellular,may,mon,429,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+52,admin.,single,basic.4y,no,no,no,cellular,may,mon,776,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+28,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,51,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+29,services,divorced,high.school,no,no,no,cellular,may,mon,150,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+46,admin.,married,basic.6y,unknown,yes,no,cellular,may,mon,275,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+25,student,single,high.school,unknown,yes,no,cellular,may,mon,160,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+27,entrepreneur,married,university.degree,no,yes,no,cellular,may,mon,153,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,146,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+38,services,married,high.school,unknown,no,no,cellular,may,mon,171,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+36,admin.,married,high.school,no,yes,yes,cellular,may,mon,142,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+49,blue-collar,single,high.school,no,yes,no,cellular,may,mon,430,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,technician,single,basic.9y,no,no,yes,cellular,may,mon,189,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,technician,single,high.school,no,no,no,cellular,may,mon,236,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,technician,married,basic.9y,no,no,no,cellular,may,mon,798,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+44,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,technician,single,university.degree,no,no,no,cellular,may,mon,66,4,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+29,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,34,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+28,blue-collar,single,professional.course,no,yes,no,cellular,may,mon,333,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+58,technician,divorced,basic.9y,no,no,no,cellular,may,mon,128,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+36,entrepreneur,married,high.school,no,yes,yes,cellular,may,mon,102,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,services,married,basic.9y,no,no,no,cellular,may,mon,400,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+29,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,175,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+33,admin.,married,university.degree,no,no,yes,cellular,may,mon,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+55,management,married,university.degree,no,yes,no,cellular,may,mon,126,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,blue-collar,married,basic.4y,no,no,yes,cellular,may,mon,285,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+39,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,327,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+37,admin.,single,university.degree,no,yes,no,telephone,may,mon,168,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,127,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+26,blue-collar,single,high.school,unknown,no,no,cellular,may,mon,314,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+44,technician,married,professional.course,no,yes,no,cellular,may,mon,147,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+26,student,single,high.school,no,no,no,cellular,may,mon,472,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+44,admin.,married,high.school,no,yes,no,cellular,may,mon,246,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,services,single,high.school,no,yes,no,cellular,may,mon,213,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+28,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,173,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+27,services,married,basic.9y,no,yes,no,cellular,may,mon,220,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+33,blue-collar,single,basic.9y,unknown,no,no,cellular,may,mon,130,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,299,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+43,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,247,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+24,technician,single,basic.9y,no,yes,no,cellular,may,mon,111,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+37,entrepreneur,married,basic.9y,no,yes,no,cellular,may,mon,195,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+32,admin.,single,high.school,no,yes,no,cellular,may,mon,148,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,services,married,high.school,no,no,no,cellular,may,mon,286,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+50,blue-collar,married,unknown,unknown,yes,no,cellular,may,mon,96,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+43,services,divorced,professional.course,no,no,no,telephone,may,mon,75,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+46,blue-collar,married,basic.9y,no,yes,yes,telephone,may,mon,386,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,544,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+36,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,127,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+30,admin.,single,university.degree,no,no,no,cellular,may,mon,155,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+32,entrepreneur,married,basic.9y,no,no,no,cellular,may,mon,184,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+42,entrepreneur,married,basic.4y,unknown,no,no,cellular,may,mon,120,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+56,services,single,basic.4y,unknown,yes,no,cellular,may,mon,480,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+54,management,married,high.school,unknown,no,no,cellular,may,mon,194,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+39,blue-collar,married,basic.6y,unknown,no,no,cellular,may,mon,1232,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+35,services,married,basic.9y,unknown,no,no,cellular,may,mon,69,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+31,blue-collar,single,basic.6y,unknown,no,no,cellular,may,mon,133,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+37,admin.,married,high.school,no,no,no,telephone,may,mon,193,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,70,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,206,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+54,blue-collar,divorced,unknown,unknown,no,no,cellular,may,mon,152,2,10,1,success,-1.8,92.893,-46.2,1.299,5099.1,no
+30,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,243,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,services,married,basic.9y,no,yes,yes,telephone,may,mon,437,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+30,admin.,single,university.degree,no,no,no,telephone,may,mon,259,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+40,services,married,high.school,unknown,yes,no,cellular,may,mon,182,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,admin.,unknown,university.degree,no,yes,no,cellular,may,mon,447,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+37,entrepreneur,married,basic.9y,no,no,no,cellular,may,mon,238,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+33,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,410,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+47,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,472,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,mon,83,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+30,technician,single,professional.course,no,yes,no,cellular,may,mon,254,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+33,admin.,married,high.school,no,yes,yes,cellular,may,mon,56,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+50,services,married,high.school,unknown,no,no,cellular,may,mon,204,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+37,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,102,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+37,housemaid,divorced,basic.9y,unknown,yes,no,telephone,may,mon,226,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+55,self-employed,married,university.degree,unknown,no,no,cellular,may,mon,217,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+49,blue-collar,single,high.school,no,yes,yes,cellular,may,mon,217,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,entrepreneur,married,basic.6y,unknown,yes,no,cellular,may,mon,379,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+44,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,145,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+27,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,74,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,technician,single,university.degree,no,yes,no,cellular,may,mon,271,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,0,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+29,admin.,single,basic.9y,no,yes,no,cellular,may,mon,258,4,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+33,services,married,basic.9y,no,unknown,unknown,cellular,may,mon,180,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+36,technician,single,professional.course,no,yes,no,cellular,may,mon,196,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+29,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,135,2,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+25,blue-collar,single,high.school,unknown,yes,no,telephone,may,mon,300,3,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,347,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+47,blue-collar,married,basic.4y,unknown,no,no,cellular,may,mon,1001,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+44,technician,married,professional.course,no,no,no,cellular,may,mon,72,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,blue-collar,single,university.degree,unknown,yes,no,cellular,may,mon,498,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+44,blue-collar,married,high.school,no,unknown,unknown,cellular,may,mon,279,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,technician,married,university.degree,no,yes,no,cellular,may,mon,50,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+33,services,single,high.school,no,no,yes,cellular,may,mon,171,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+26,admin.,single,high.school,no,yes,no,cellular,may,mon,211,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+29,entrepreneur,married,basic.4y,unknown,no,no,telephone,may,mon,567,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+37,blue-collar,married,basic.9y,unknown,unknown,unknown,cellular,may,mon,170,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+41,services,single,high.school,unknown,unknown,unknown,cellular,may,mon,772,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+26,services,single,high.school,no,no,no,cellular,may,mon,298,2,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+31,technician,single,university.degree,no,yes,no,cellular,may,mon,120,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+36,technician,married,university.degree,no,yes,no,cellular,may,mon,219,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+27,blue-collar,married,basic.4y,unknown,no,no,cellular,may,mon,877,7,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+35,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,214,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+35,admin.,divorced,high.school,no,yes,yes,telephone,may,mon,82,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+25,technician,single,university.degree,no,no,yes,cellular,may,mon,304,3,12,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,273,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+46,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,471,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+41,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,133,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,mon,301,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+23,services,single,basic.9y,unknown,yes,no,cellular,may,mon,350,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,may,mon,86,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+40,unemployed,single,high.school,unknown,yes,no,cellular,may,mon,94,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+33,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,1388,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+35,entrepreneur,married,high.school,no,yes,no,cellular,may,mon,508,3,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+46,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,338,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+47,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,208,4,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+29,student,single,unknown,no,no,no,telephone,may,mon,1143,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+33,services,single,high.school,no,no,no,cellular,may,mon,503,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+37,services,married,high.school,unknown,yes,no,telephone,may,mon,58,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+54,management,married,basic.6y,no,yes,no,cellular,may,mon,142,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+45,admin.,single,high.school,no,yes,no,cellular,may,mon,276,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+24,services,single,high.school,no,yes,no,cellular,may,mon,201,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+53,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,may,mon,63,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+46,services,divorced,high.school,no,no,no,cellular,may,mon,222,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+32,admin.,married,professional.course,no,no,no,cellular,may,mon,168,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+40,technician,married,university.degree,no,no,no,cellular,may,mon,192,4,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no
+47,admin.,single,high.school,no,yes,no,cellular,may,mon,911,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes
+35,admin.,single,university.degree,no,yes,yes,cellular,may,mon,439,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+28,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,163,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+54,management,married,high.school,unknown,no,no,cellular,may,mon,273,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+33,technician,single,university.degree,no,no,no,cellular,may,mon,284,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+29,technician,single,basic.9y,no,yes,no,cellular,may,mon,288,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+31,technician,single,university.degree,no,yes,no,telephone,may,mon,136,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+30,services,married,professional.course,no,no,no,cellular,may,mon,66,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+43,self-employed,single,university.degree,no,yes,no,cellular,may,mon,445,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+46,management,married,university.degree,no,no,no,cellular,may,mon,123,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+41,entrepreneur,married,basic.9y,no,no,yes,cellular,may,mon,285,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+46,technician,divorced,professional.course,unknown,no,no,cellular,may,mon,927,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no
+28,services,single,high.school,no,unknown,unknown,cellular,may,tue,48,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+32,technician,married,university.degree,no,no,no,cellular,may,tue,164,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+27,blue-collar,single,high.school,no,no,no,cellular,may,tue,81,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,admin.,single,university.degree,no,no,no,cellular,may,tue,89,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,278,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,214,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,student,single,university.degree,unknown,yes,no,cellular,may,tue,116,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+26,self-employed,married,basic.4y,no,no,no,telephone,may,tue,16,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,services,single,basic.6y,no,yes,no,cellular,may,tue,546,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+23,blue-collar,married,basic.6y,unknown,no,no,cellular,may,tue,8,8,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,167,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+28,admin.,married,university.degree,no,no,no,cellular,may,tue,72,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,services,divorced,high.school,no,yes,no,cellular,may,tue,75,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,services,married,high.school,no,yes,no,telephone,may,tue,14,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,blue-collar,single,basic.4y,no,yes,no,telephone,may,tue,200,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+35,admin.,single,high.school,no,yes,no,cellular,may,tue,13,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,technician,married,high.school,unknown,yes,no,cellular,may,tue,312,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,management,single,professional.course,no,no,no,cellular,may,tue,134,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+39,services,married,high.school,no,yes,no,telephone,may,tue,34,12,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+27,services,married,high.school,no,yes,yes,cellular,may,tue,15,8,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+37,admin.,married,high.school,no,yes,no,cellular,may,tue,188,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+29,admin.,single,professional.course,no,yes,no,cellular,may,tue,788,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+40,blue-collar,married,basic.4y,no,yes,yes,cellular,may,tue,103,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+36,admin.,married,university.degree,no,yes,yes,cellular,may,tue,106,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+26,services,single,university.degree,no,yes,no,cellular,may,tue,25,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+30,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,52,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+27,admin.,single,high.school,unknown,yes,no,cellular,may,tue,41,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+47,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,234,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+36,services,divorced,basic.9y,no,yes,no,cellular,may,tue,255,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,admin.,single,high.school,no,yes,yes,cellular,may,tue,200,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,217,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+27,housemaid,single,university.degree,no,yes,no,cellular,may,tue,9,9,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+29,admin.,married,high.school,no,no,no,cellular,may,tue,315,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+43,blue-collar,married,unknown,no,yes,no,cellular,may,tue,128,7,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+51,blue-collar,divorced,high.school,no,yes,yes,cellular,may,tue,10,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,admin.,single,high.school,no,yes,yes,telephone,may,tue,352,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+49,admin.,married,high.school,no,no,no,cellular,may,tue,97,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,tue,54,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+45,admin.,single,high.school,unknown,unknown,unknown,cellular,may,tue,7,12,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+50,management,divorced,university.degree,no,no,no,telephone,may,tue,63,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+50,unknown,married,basic.4y,unknown,no,yes,cellular,may,tue,77,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,services,married,basic.6y,no,no,no,cellular,may,tue,117,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+30,self-employed,married,professional.course,no,no,no,cellular,may,tue,34,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+31,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,104,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+26,admin.,single,university.degree,no,yes,yes,cellular,may,tue,15,7,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+34,admin.,divorced,university.degree,no,yes,no,cellular,may,tue,14,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+30,services,single,basic.6y,no,yes,no,cellular,may,tue,208,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,11,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,technician,single,professional.course,no,yes,no,cellular,may,tue,160,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+39,admin.,single,high.school,no,no,no,cellular,may,tue,197,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+38,blue-collar,married,high.school,unknown,yes,no,cellular,may,tue,151,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+51,blue-collar,divorced,high.school,no,no,no,cellular,may,tue,131,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,single,basic.6y,no,yes,no,cellular,may,tue,731,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,yes
+43,blue-collar,married,unknown,no,yes,no,cellular,may,tue,756,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,admin.,married,high.school,no,yes,no,cellular,may,tue,12,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+38,technician,married,high.school,no,yes,no,cellular,may,tue,114,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+50,unknown,married,basic.4y,unknown,yes,no,cellular,may,tue,12,8,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,management,single,professional.course,no,no,no,cellular,may,tue,365,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+37,blue-collar,divorced,professional.course,no,yes,no,cellular,may,tue,304,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,blue-collar,married,unknown,no,no,yes,telephone,may,tue,11,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,blue-collar,married,high.school,no,yes,no,cellular,may,tue,20,8,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+34,admin.,married,high.school,no,yes,no,cellular,may,tue,109,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+54,blue-collar,divorced,basic.4y,no,yes,no,cellular,may,tue,138,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,services,single,high.school,no,yes,yes,cellular,may,tue,6,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+29,admin.,single,professional.course,no,yes,no,cellular,may,tue,200,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+40,services,married,basic.9y,no,yes,yes,cellular,may,tue,271,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,technician,single,professional.course,no,yes,no,cellular,may,tue,42,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,341,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,admin.,single,high.school,no,yes,no,cellular,may,tue,100,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+51,admin.,married,high.school,no,no,no,cellular,may,tue,40,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,services,single,basic.9y,no,no,no,cellular,may,tue,114,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,150,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+42,blue-collar,married,basic.6y,no,no,yes,cellular,may,tue,431,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,admin.,divorced,university.degree,unknown,yes,no,telephone,may,tue,11,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,admin.,single,high.school,no,yes,no,cellular,may,tue,91,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,admin.,single,high.school,no,yes,yes,cellular,may,tue,52,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,blue-collar,married,unknown,no,no,no,telephone,may,tue,257,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+48,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,99,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+40,services,divorced,high.school,no,no,no,cellular,may,tue,49,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+34,technician,single,university.degree,no,no,no,cellular,may,tue,882,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+31,blue-collar,single,basic.9y,no,no,no,cellular,may,tue,7,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,services,single,basic.9y,no,no,yes,cellular,may,tue,515,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,yes
+59,services,divorced,basic.6y,no,yes,no,cellular,may,tue,158,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+27,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,259,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+27,blue-collar,single,basic.4y,no,yes,no,cellular,may,tue,206,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+35,blue-collar,married,high.school,no,yes,no,cellular,may,tue,25,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+27,blue-collar,single,basic.4y,no,no,no,cellular,may,tue,300,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+36,services,single,high.school,no,yes,no,telephone,may,tue,246,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,blue-collar,married,high.school,no,yes,yes,cellular,may,tue,178,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+59,services,divorced,basic.6y,no,yes,no,cellular,may,tue,318,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,blue-collar,married,high.school,no,yes,no,cellular,may,tue,201,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+47,admin.,divorced,high.school,no,yes,no,cellular,may,tue,105,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+44,admin.,divorced,high.school,no,no,no,cellular,may,tue,214,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+45,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,67,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+49,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,tue,85,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+28,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,82,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,services,married,basic.6y,no,unknown,unknown,cellular,may,tue,142,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+45,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,187,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,admin.,married,basic.9y,no,yes,no,cellular,may,tue,69,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+35,technician,married,basic.9y,no,no,no,cellular,may,tue,580,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+48,technician,divorced,basic.9y,unknown,yes,no,cellular,may,tue,62,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+48,blue-collar,single,basic.4y,no,yes,no,cellular,may,tue,1203,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,yes
+45,services,married,basic.6y,no,no,no,cellular,may,tue,58,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+48,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,64,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+27,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,631,1,11,1,success,-1.8,92.893,-46.2,1.291,5099.1,no
+29,blue-collar,married,basic.4y,unknown,no,no,cellular,may,tue,658,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,yes
+35,blue-collar,married,high.school,no,yes,no,cellular,may,tue,942,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+45,services,married,basic.6y,no,no,no,cellular,may,tue,207,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,may,tue,104,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,technician,single,professional.course,no,yes,no,cellular,may,tue,377,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+41,housemaid,married,basic.4y,no,no,no,cellular,may,tue,66,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+41,housemaid,married,basic.4y,no,yes,no,cellular,may,tue,128,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+54,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,291,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+46,entrepreneur,married,high.school,no,yes,no,cellular,may,tue,115,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,524,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,may,tue,358,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+46,entrepreneur,married,high.school,no,no,no,cellular,may,tue,366,1,6,1,success,-1.8,92.893,-46.2,1.291,5099.1,no
+43,admin.,single,university.degree,no,yes,yes,cellular,may,tue,23,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+26,services,married,basic.9y,no,no,yes,cellular,may,tue,560,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+43,admin.,single,university.degree,no,yes,no,telephone,may,tue,52,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,entrepreneur,single,university.degree,no,yes,yes,cellular,may,tue,347,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,admin.,single,university.degree,no,no,no,cellular,may,tue,107,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,admin.,single,university.degree,no,yes,no,telephone,may,tue,48,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,entrepreneur,married,unknown,unknown,yes,no,cellular,may,tue,145,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+54,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,74,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+58,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,tue,451,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+29,student,single,high.school,unknown,no,no,cellular,may,tue,53,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,entrepreneur,single,university.degree,no,no,no,cellular,may,tue,612,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+43,admin.,single,university.degree,no,yes,no,cellular,may,tue,305,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,may,tue,104,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+27,blue-collar,single,basic.4y,no,no,no,cellular,may,tue,176,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+35,technician,divorced,university.degree,no,yes,no,cellular,may,tue,507,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+39,management,single,university.degree,no,yes,no,cellular,may,tue,103,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+59,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,242,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+34,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,137,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,services,married,high.school,no,yes,no,cellular,may,tue,223,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+37,services,married,high.school,no,no,no,cellular,may,tue,124,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+32,admin.,single,university.degree,no,no,no,cellular,may,tue,63,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+24,student,single,basic.4y,no,yes,no,cellular,may,tue,137,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+49,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,23,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+30,admin.,married,university.degree,no,no,no,cellular,may,tue,22,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,admin.,single,high.school,no,yes,no,cellular,may,tue,59,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+50,blue-collar,divorced,basic.4y,no,yes,no,cellular,may,tue,703,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+34,admin.,married,high.school,no,yes,yes,cellular,may,tue,179,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+59,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,690,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+41,management,married,high.school,unknown,yes,no,cellular,may,tue,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,married,high.school,unknown,no,no,telephone,may,tue,25,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+39,management,single,university.degree,no,no,no,cellular,may,tue,11,12,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,entrepreneur,married,unknown,unknown,no,no,cellular,may,tue,1272,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+57,retired,divorced,basic.9y,no,yes,no,cellular,may,tue,69,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+41,management,married,high.school,unknown,no,no,cellular,may,tue,256,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,admin.,married,high.school,no,yes,no,cellular,may,tue,300,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+26,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,256,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,admin.,single,university.degree,no,no,no,cellular,may,tue,7,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+37,admin.,married,university.degree,no,yes,yes,cellular,may,tue,43,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+38,student,divorced,unknown,no,no,no,cellular,may,tue,244,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+48,admin.,divorced,university.degree,no,no,no,cellular,may,tue,1062,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+33,blue-collar,single,basic.6y,no,yes,no,cellular,may,tue,22,8,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+34,admin.,divorced,professional.course,no,yes,yes,cellular,may,tue,429,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+44,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,tue,494,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+44,management,married,basic.9y,no,no,no,cellular,may,tue,296,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+55,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,tue,92,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,17,7,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+45,admin.,married,university.degree,no,yes,yes,cellular,may,tue,826,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+39,blue-collar,single,basic.4y,no,yes,no,cellular,may,tue,243,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+31,blue-collar,married,high.school,no,yes,yes,cellular,may,tue,184,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,245,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+32,entrepreneur,married,high.school,no,unknown,unknown,cellular,may,tue,198,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,360,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+26,services,single,university.degree,no,yes,no,telephone,may,tue,139,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+26,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,54,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+26,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,232,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,blue-collar,single,high.school,no,yes,no,cellular,may,tue,517,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+40,blue-collar,single,high.school,unknown,no,no,cellular,may,tue,418,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,technician,married,basic.9y,no,yes,no,cellular,may,tue,153,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,admin.,single,high.school,no,yes,no,cellular,may,tue,116,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,admin.,single,university.degree,no,no,no,telephone,may,tue,168,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+28,technician,married,basic.9y,no,no,no,cellular,may,tue,261,1,12,1,success,-1.8,92.893,-46.2,1.291,5099.1,no
+36,admin.,single,university.degree,no,no,no,cellular,may,tue,69,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+37,admin.,single,high.school,unknown,no,no,cellular,may,tue,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+54,management,divorced,professional.course,no,yes,no,cellular,may,tue,121,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,admin.,divorced,high.school,no,no,no,cellular,may,tue,23,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+38,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,306,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,blue-collar,single,high.school,no,yes,yes,cellular,may,tue,202,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+29,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,342,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+42,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,22,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+29,blue-collar,married,basic.6y,no,no,yes,cellular,may,tue,455,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+34,self-employed,single,university.degree,no,yes,no,cellular,may,tue,245,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,33,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+27,services,married,high.school,no,yes,no,cellular,may,tue,58,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+27,student,single,high.school,no,yes,no,cellular,may,tue,41,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,360,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,may,tue,179,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+34,blue-collar,single,basic.9y,no,yes,yes,cellular,may,tue,174,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+26,services,married,basic.9y,no,no,no,telephone,may,tue,43,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+21,services,single,high.school,no,no,no,cellular,may,tue,68,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+29,services,married,basic.9y,no,no,no,cellular,may,tue,212,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+35,admin.,single,basic.9y,no,yes,no,telephone,may,tue,38,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+26,services,single,university.degree,no,yes,yes,cellular,may,tue,639,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+34,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,483,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+53,unemployed,married,basic.9y,unknown,no,no,cellular,may,tue,205,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+29,services,married,basic.9y,no,no,no,cellular,may,tue,344,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,self-employed,single,high.school,no,no,no,cellular,may,tue,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,self-employed,single,high.school,no,yes,yes,cellular,may,tue,113,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+46,technician,married,professional.course,no,no,no,cellular,may,tue,87,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,self-employed,single,high.school,no,no,no,cellular,may,tue,238,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+36,services,single,high.school,unknown,yes,no,cellular,may,tue,27,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+51,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,155,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,self-employed,single,high.school,no,yes,no,cellular,may,tue,337,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+31,services,single,high.school,no,yes,no,telephone,may,tue,24,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,365,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,technician,married,professional.course,no,no,no,cellular,may,tue,37,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+34,admin.,divorced,university.degree,no,yes,no,cellular,may,tue,25,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,services,single,high.school,no,yes,no,cellular,may,tue,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,admin.,married,high.school,no,yes,no,cellular,may,tue,152,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+34,unemployed,single,high.school,no,yes,no,telephone,may,tue,179,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+34,admin.,divorced,university.degree,no,yes,no,cellular,may,tue,118,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,married,high.school,unknown,no,no,cellular,may,tue,272,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+39,admin.,married,university.degree,no,no,no,cellular,may,tue,30,7,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,services,single,university.degree,no,yes,no,cellular,may,tue,79,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+47,admin.,divorced,high.school,no,no,no,cellular,may,tue,324,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,technician,married,university.degree,unknown,unknown,unknown,cellular,may,tue,426,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,yes
+53,technician,single,professional.course,unknown,no,no,cellular,may,tue,196,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,151,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,services,single,university.degree,no,yes,no,cellular,may,tue,366,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+51,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,tue,211,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+31,admin.,single,university.degree,no,no,no,cellular,may,tue,43,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+47,admin.,divorced,high.school,no,yes,no,cellular,may,tue,816,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+28,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,189,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,590,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+42,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,315,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+41,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,131,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,single,basic.6y,no,yes,no,cellular,may,tue,78,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,97,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,blue-collar,married,basic.4y,no,no,yes,cellular,may,tue,337,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,services,married,high.school,no,yes,no,cellular,may,tue,185,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+29,admin.,single,professional.course,no,yes,no,cellular,may,tue,78,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+49,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,55,2,999,2,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+28,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,442,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+50,technician,married,basic.6y,unknown,no,no,cellular,may,tue,36,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,74,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+34,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,may,tue,326,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,blue-collar,unknown,basic.9y,no,no,no,telephone,may,tue,81,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,tue,179,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+41,management,married,high.school,unknown,yes,no,cellular,may,tue,527,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+37,admin.,divorced,university.degree,no,yes,no,cellular,may,tue,918,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+41,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,225,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,married,high.school,no,yes,no,cellular,may,tue,787,10,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,yes
+39,technician,single,professional.course,no,no,no,telephone,may,tue,15,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,blue-collar,married,basic.4y,no,yes,yes,cellular,may,tue,279,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+27,services,married,high.school,no,no,yes,cellular,may,tue,416,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+39,technician,single,professional.course,no,yes,no,cellular,may,tue,83,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+39,technician,single,professional.course,no,yes,no,telephone,may,tue,25,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,technician,single,university.degree,no,no,yes,cellular,may,tue,542,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+39,technician,single,professional.course,no,yes,no,cellular,may,tue,256,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+39,technician,single,professional.course,no,no,no,cellular,may,tue,189,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+39,technician,single,professional.course,no,no,no,cellular,may,tue,251,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+50,services,married,university.degree,unknown,no,no,cellular,may,tue,116,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,technician,single,university.degree,no,no,yes,telephone,may,tue,1100,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+39,technician,married,high.school,no,yes,no,cellular,may,tue,451,4,3,1,success,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,single,basic.4y,no,yes,no,cellular,may,tue,184,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+29,admin.,married,university.degree,no,no,yes,telephone,may,tue,232,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,single,basic.4y,no,no,no,cellular,may,tue,209,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+30,admin.,married,high.school,no,yes,no,cellular,may,tue,16,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,340,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,single,basic.4y,no,no,no,cellular,may,tue,313,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+26,services,single,basic.9y,unknown,yes,no,cellular,may,tue,191,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+37,admin.,married,high.school,no,yes,no,cellular,may,tue,7,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,technician,divorced,professional.course,no,yes,no,cellular,may,tue,493,10,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,1182,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,yes
+28,unemployed,married,high.school,unknown,no,no,cellular,may,tue,216,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+47,entrepreneur,divorced,basic.9y,no,no,no,cellular,may,tue,184,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+53,technician,single,professional.course,unknown,no,no,telephone,may,tue,360,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+55,admin.,married,high.school,unknown,no,no,cellular,may,tue,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,161,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+46,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,84,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,housemaid,married,basic.9y,no,yes,no,cellular,may,tue,61,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+27,technician,single,professional.course,no,no,no,cellular,may,tue,267,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,services,divorced,basic.6y,no,unknown,unknown,cellular,may,tue,351,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+55,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,183,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,services,unknown,high.school,no,no,no,cellular,may,tue,516,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+48,management,married,basic.9y,no,yes,no,cellular,may,tue,393,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,286,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,blue-collar,married,high.school,no,no,no,cellular,may,tue,87,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,services,married,basic.9y,no,no,yes,cellular,may,tue,277,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,technician,single,university.degree,no,yes,no,cellular,may,tue,200,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+48,management,married,basic.9y,no,yes,no,cellular,may,tue,725,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+33,technician,divorced,high.school,no,no,no,cellular,may,tue,204,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,technician,divorced,high.school,no,yes,no,cellular,may,tue,175,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,technician,divorced,high.school,no,yes,no,cellular,may,tue,247,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,136,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+40,blue-collar,single,basic.4y,no,no,no,cellular,may,tue,218,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+56,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,may,tue,59,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,services,married,professional.course,no,yes,no,cellular,may,tue,146,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+45,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,77,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+28,management,single,university.degree,no,yes,no,cellular,may,tue,245,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+42,blue-collar,single,basic.6y,no,no,no,cellular,may,tue,482,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+49,blue-collar,married,basic.6y,unknown,no,yes,cellular,may,tue,354,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+29,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,396,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,may,tue,136,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+50,entrepreneur,married,university.degree,no,no,no,cellular,may,tue,549,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+30,admin.,single,basic.9y,no,no,no,cellular,may,tue,17,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,439,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,blue-collar,single,high.school,unknown,yes,no,cellular,may,tue,107,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+41,management,married,university.degree,no,unknown,unknown,cellular,may,tue,369,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,unemployed,married,professional.course,no,unknown,unknown,cellular,may,tue,356,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,services,single,high.school,no,no,no,cellular,may,tue,561,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+28,admin.,single,basic.9y,no,no,yes,cellular,may,tue,175,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+48,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,309,1,10,1,success,-1.8,92.893,-46.2,1.291,5099.1,yes
+54,retired,divorced,professional.course,no,yes,no,telephone,may,tue,139,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+34,services,married,high.school,unknown,no,no,cellular,may,tue,148,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+55,admin.,married,high.school,unknown,yes,no,cellular,may,tue,139,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+28,admin.,single,basic.9y,no,no,yes,cellular,may,tue,549,1,10,1,success,-1.8,92.893,-46.2,1.291,5099.1,yes
+36,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,395,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+29,blue-collar,married,high.school,no,yes,yes,cellular,may,tue,145,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+23,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,119,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+26,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,88,2,6,1,success,-1.8,92.893,-46.2,1.291,5099.1,no
+43,management,married,basic.6y,unknown,yes,no,cellular,may,tue,463,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+55,admin.,married,high.school,unknown,yes,no,cellular,may,tue,232,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+29,admin.,married,high.school,no,yes,no,cellular,may,tue,57,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+39,blue-collar,married,basic.4y,no,no,yes,cellular,may,tue,300,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+42,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,83,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,technician,single,professional.course,no,no,no,cellular,may,tue,200,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,single,basic.4y,no,unknown,unknown,cellular,may,tue,225,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+39,technician,single,professional.course,no,no,no,cellular,may,tue,844,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+32,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,293,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,services,divorced,high.school,no,no,no,cellular,may,tue,262,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,admin.,married,high.school,no,yes,no,cellular,may,tue,137,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+59,housemaid,divorced,basic.6y,unknown,yes,no,cellular,may,tue,130,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,tue,387,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,technician,single,university.degree,no,yes,no,cellular,may,tue,211,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+37,technician,single,university.degree,no,no,yes,cellular,may,tue,246,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+39,blue-collar,single,basic.6y,no,yes,no,cellular,may,tue,357,1,999,2,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+37,technician,single,university.degree,no,yes,no,cellular,may,tue,322,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,services,married,basic.9y,no,no,no,cellular,may,tue,584,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+27,self-employed,married,university.degree,no,yes,no,cellular,may,tue,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,may,tue,374,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+44,unemployed,married,high.school,no,yes,no,cellular,may,tue,215,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,22,8,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+41,blue-collar,married,basic.6y,no,yes,yes,telephone,may,tue,207,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,technician,single,university.degree,no,no,no,cellular,may,tue,183,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,100,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+48,management,married,basic.9y,no,yes,yes,cellular,may,tue,955,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+34,admin.,single,university.degree,no,no,no,cellular,may,tue,146,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,31,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,334,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+34,admin.,single,university.degree,no,no,no,cellular,may,tue,271,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+41,housemaid,married,basic.6y,no,yes,no,cellular,may,tue,223,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,services,married,basic.6y,no,yes,yes,cellular,may,tue,95,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+28,admin.,single,high.school,no,yes,no,cellular,may,tue,106,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+48,blue-collar,single,basic.4y,no,yes,no,cellular,may,tue,36,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,admin.,single,basic.9y,no,yes,no,cellular,may,tue,458,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+29,admin.,single,high.school,no,yes,yes,cellular,may,tue,53,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+49,retired,married,basic.4y,unknown,yes,no,cellular,may,tue,148,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+49,retired,married,basic.4y,unknown,no,no,cellular,may,tue,179,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+28,technician,single,basic.9y,no,no,no,cellular,may,tue,223,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+26,services,single,basic.9y,unknown,yes,no,cellular,may,tue,165,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+25,technician,married,university.degree,no,yes,no,cellular,may,tue,127,1,12,1,success,-1.8,92.893,-46.2,1.291,5099.1,no
+25,technician,married,university.degree,no,no,no,cellular,may,tue,158,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,technician,single,basic.9y,no,yes,no,cellular,may,tue,409,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+33,technician,single,university.degree,no,yes,no,cellular,may,tue,165,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+31,blue-collar,single,basic.9y,no,unknown,unknown,cellular,may,tue,88,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,may,tue,536,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+29,services,married,high.school,no,yes,yes,cellular,may,tue,380,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,technician,single,high.school,no,yes,no,cellular,may,tue,1531,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+35,admin.,single,high.school,no,no,no,cellular,may,tue,107,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+27,admin.,single,high.school,unknown,yes,no,cellular,may,tue,132,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,technician,divorced,professional.course,no,yes,no,cellular,may,tue,406,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,technician,divorced,professional.course,no,no,no,cellular,may,tue,240,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+32,admin.,single,high.school,no,no,no,cellular,may,tue,278,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+45,admin.,married,high.school,unknown,no,yes,cellular,may,tue,908,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,may,tue,706,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+57,housemaid,married,basic.4y,unknown,yes,no,cellular,may,tue,215,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,161,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+51,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,370,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+25,technician,single,professional.course,no,yes,no,cellular,may,tue,157,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+27,technician,single,professional.course,no,no,no,cellular,may,tue,209,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+41,blue-collar,married,basic.6y,unknown,no,no,cellular,may,tue,399,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+56,admin.,married,university.degree,no,yes,no,cellular,may,tue,1925,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+55,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,tue,829,7,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+28,management,married,basic.9y,no,yes,no,cellular,may,tue,328,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,109,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+41,blue-collar,married,basic.6y,unknown,no,yes,cellular,may,tue,178,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+49,entrepreneur,married,university.degree,no,no,no,cellular,may,tue,242,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,services,single,high.school,no,no,yes,cellular,may,tue,450,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+29,technician,single,university.degree,no,yes,yes,cellular,may,tue,485,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,technician,single,basic.9y,no,yes,no,cellular,may,tue,76,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,self-employed,married,basic.9y,no,unknown,unknown,cellular,may,tue,328,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+37,technician,single,university.degree,no,no,no,cellular,may,tue,289,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,technician,single,professional.course,no,no,no,cellular,may,tue,163,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+47,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,118,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+48,admin.,divorced,university.degree,no,no,no,cellular,may,tue,53,9,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+22,blue-collar,married,basic.9y,no,unknown,unknown,cellular,may,tue,453,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,admin.,single,high.school,no,yes,no,cellular,may,tue,324,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,blue-collar,single,basic.9y,no,yes,yes,cellular,may,tue,637,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+35,admin.,single,basic.9y,no,yes,no,cellular,may,tue,301,3,9,1,success,-1.8,92.893,-46.2,1.291,5099.1,no
+43,admin.,single,university.degree,no,no,no,cellular,may,tue,139,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+50,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,tue,118,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+31,unemployed,married,professional.course,no,yes,no,cellular,may,tue,32,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+29,admin.,married,high.school,no,no,no,cellular,may,tue,278,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+27,student,single,high.school,no,no,no,cellular,may,tue,112,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+30,technician,single,professional.course,no,no,no,telephone,may,tue,34,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,technician,married,professional.course,no,yes,no,cellular,may,tue,80,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+43,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,609,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+48,blue-collar,married,basic.9y,no,no,yes,cellular,may,tue,276,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+32,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,548,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+45,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,291,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,management,single,university.degree,no,yes,no,cellular,may,tue,1710,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+27,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,217,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,192,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+40,services,single,high.school,no,yes,no,cellular,may,tue,208,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+27,technician,single,professional.course,no,no,no,cellular,may,tue,415,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+34,technician,married,professional.course,no,no,no,cellular,may,tue,278,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,management,single,university.degree,unknown,yes,yes,telephone,may,tue,326,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+44,admin.,divorced,high.school,no,yes,no,cellular,may,tue,173,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+34,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,tue,306,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+53,technician,married,professional.course,no,no,no,cellular,may,tue,350,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+39,admin.,married,university.degree,no,no,no,cellular,may,tue,614,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+45,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,224,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,technician,divorced,professional.course,no,yes,yes,cellular,may,tue,668,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+24,admin.,single,high.school,unknown,no,no,telephone,may,tue,748,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+42,services,married,basic.6y,no,no,no,cellular,may,tue,474,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+40,services,single,high.school,no,yes,no,cellular,may,tue,143,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+57,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,tue,168,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,blue-collar,married,basic.4y,no,yes,yes,cellular,may,tue,317,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+34,admin.,married,high.school,no,yes,no,cellular,may,tue,106,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+27,technician,married,professional.course,no,no,no,cellular,may,tue,234,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+27,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,314,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+41,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,897,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+31,services,married,high.school,no,yes,no,cellular,may,tue,398,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+33,technician,single,professional.course,no,yes,no,telephone,may,tue,422,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+49,technician,divorced,professional.course,no,yes,no,cellular,may,tue,130,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+34,technician,single,university.degree,no,no,no,cellular,may,tue,61,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,services,married,high.school,no,no,no,cellular,may,tue,863,4,1,2,success,-1.8,92.893,-46.2,1.291,5099.1,yes
+35,admin.,single,university.degree,no,yes,no,cellular,may,tue,255,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+35,blue-collar,single,high.school,no,yes,yes,cellular,may,tue,259,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+29,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,29,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+31,services,single,high.school,no,yes,no,cellular,may,tue,750,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+38,blue-collar,married,basic.6y,no,no,yes,cellular,may,tue,306,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,single,basic.4y,no,yes,no,cellular,may,tue,266,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+51,blue-collar,divorced,basic.4y,no,yes,no,cellular,may,tue,314,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+30,student,single,university.degree,no,yes,no,cellular,may,tue,775,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+32,technician,single,university.degree,no,yes,yes,cellular,may,tue,181,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+28,services,single,high.school,no,yes,no,cellular,may,tue,178,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,technician,single,university.degree,unknown,yes,no,cellular,may,tue,254,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+34,housemaid,single,high.school,no,no,no,cellular,may,tue,351,7,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+38,admin.,married,high.school,no,yes,yes,cellular,may,tue,373,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,blue-collar,married,high.school,no,no,no,cellular,may,tue,180,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,student,single,university.degree,unknown,no,no,cellular,may,tue,135,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+59,housemaid,divorced,basic.6y,unknown,yes,no,cellular,may,tue,216,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,blue-collar,married,unknown,no,yes,no,cellular,may,tue,86,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,blue-collar,single,university.degree,no,yes,no,cellular,may,tue,85,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+32,entrepreneur,married,high.school,no,yes,no,cellular,may,tue,325,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,admin.,divorced,university.degree,no,no,no,cellular,may,tue,187,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,463,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+27,services,married,basic.6y,no,no,no,cellular,may,tue,142,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,280,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+31,services,single,high.school,no,yes,no,cellular,may,tue,398,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+57,retired,divorced,basic.9y,no,yes,no,telephone,may,tue,149,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+36,services,divorced,basic.9y,no,no,no,cellular,may,tue,191,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,management,single,university.degree,no,yes,no,cellular,may,tue,193,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+36,services,single,high.school,no,yes,no,cellular,may,tue,302,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,317,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,services,divorced,high.school,no,yes,no,cellular,may,tue,211,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,student,single,university.degree,unknown,yes,no,cellular,may,tue,101,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+29,services,married,high.school,no,yes,no,cellular,may,tue,172,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+37,technician,single,university.degree,no,yes,no,cellular,may,tue,464,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,blue-collar,single,professional.course,no,no,no,cellular,may,tue,343,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+30,self-employed,married,professional.course,no,yes,no,cellular,may,tue,98,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+45,admin.,married,university.degree,no,no,no,cellular,may,tue,198,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,technician,single,high.school,no,yes,no,cellular,may,tue,361,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+27,management,married,university.degree,no,yes,no,telephone,may,tue,345,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,technician,single,high.school,no,no,no,telephone,may,tue,114,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,technician,divorced,high.school,no,yes,no,cellular,may,tue,210,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,services,divorced,basic.6y,no,yes,no,telephone,may,tue,556,2,10,1,success,-1.8,92.893,-46.2,1.291,5099.1,yes
+32,management,single,professional.course,no,yes,no,cellular,may,tue,68,10,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+31,technician,married,professional.course,no,yes,no,cellular,may,tue,239,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+46,admin.,married,basic.9y,unknown,no,no,cellular,may,tue,349,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,112,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+46,technician,married,professional.course,no,yes,no,telephone,may,tue,34,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+49,admin.,divorced,high.school,no,yes,no,cellular,may,tue,181,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+47,blue-collar,divorced,basic.4y,unknown,no,no,cellular,may,tue,178,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,may,tue,206,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+28,services,single,high.school,no,yes,no,cellular,may,tue,194,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,admin.,single,high.school,no,yes,yes,cellular,may,tue,209,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+46,management,married,high.school,unknown,no,no,cellular,may,tue,692,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,210,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+54,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,206,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+48,admin.,divorced,university.degree,no,no,no,telephone,may,tue,355,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+35,admin.,single,high.school,no,no,no,telephone,may,tue,339,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,services,married,high.school,no,yes,no,cellular,may,tue,737,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes
+50,entrepreneur,married,university.degree,no,yes,no,cellular,may,tue,191,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+41,technician,single,professional.course,no,yes,no,cellular,may,tue,175,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+36,services,divorced,basic.9y,no,no,no,cellular,may,tue,286,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,93,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+27,technician,single,professional.course,no,no,no,cellular,may,tue,170,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+44,admin.,divorced,high.school,no,yes,no,cellular,may,tue,173,8,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+36,technician,married,professional.course,no,no,no,cellular,may,tue,541,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+42,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,89,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,admin.,married,high.school,no,unknown,unknown,cellular,may,tue,213,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+34,self-employed,single,university.degree,no,yes,no,cellular,may,tue,194,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+59,admin.,divorced,university.degree,unknown,unknown,unknown,cellular,may,tue,158,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,technician,married,basic.9y,no,no,no,telephone,may,tue,472,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+28,blue-collar,married,high.school,no,unknown,unknown,cellular,may,tue,135,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,single,professional.course,no,no,no,cellular,may,tue,304,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,management,married,basic.9y,unknown,yes,no,cellular,may,tue,275,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+28,unemployed,married,high.school,unknown,yes,no,telephone,may,tue,155,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+29,technician,single,professional.course,no,no,no,telephone,may,tue,125,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,admin.,single,high.school,no,no,no,cellular,may,tue,96,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+37,services,divorced,basic.6y,no,no,no,telephone,may,tue,175,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+26,self-employed,married,basic.4y,no,yes,no,cellular,may,tue,134,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+34,services,married,high.school,unknown,no,yes,cellular,may,tue,22,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,single,basic.4y,no,no,yes,cellular,may,tue,807,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,235,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+53,technician,married,basic.6y,unknown,yes,no,cellular,may,tue,673,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,admin.,married,high.school,no,yes,no,cellular,may,tue,124,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+53,technician,married,professional.course,no,yes,no,cellular,may,tue,57,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,admin.,divorced,university.degree,no,no,no,cellular,may,tue,225,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+32,admin.,single,university.degree,no,no,no,cellular,may,tue,144,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+49,blue-collar,married,high.school,no,yes,no,cellular,may,tue,177,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+42,self-employed,divorced,high.school,no,yes,no,cellular,may,tue,455,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,264,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+31,technician,married,high.school,unknown,no,no,telephone,may,tue,295,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+30,admin.,married,university.degree,no,no,no,cellular,may,tue,285,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+34,admin.,married,high.school,no,no,no,cellular,may,tue,166,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+42,services,single,high.school,no,yes,no,cellular,may,tue,456,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+34,blue-collar,married,basic.4y,no,no,yes,telephone,may,tue,101,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+42,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,256,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+37,services,married,high.school,no,no,no,cellular,may,tue,497,5,999,2,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+53,self-employed,married,basic.9y,no,yes,no,cellular,may,tue,600,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+38,student,divorced,unknown,no,yes,no,cellular,may,tue,268,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+34,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,tue,899,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+27,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,339,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,220,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+25,student,single,university.degree,no,yes,yes,cellular,may,tue,700,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,150,7,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+35,admin.,single,high.school,no,no,no,cellular,may,tue,147,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+35,blue-collar,single,high.school,no,yes,yes,telephone,may,tue,236,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+55,blue-collar,divorced,basic.9y,no,no,no,cellular,may,tue,133,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+34,admin.,married,high.school,no,yes,no,telephone,may,tue,58,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+31,technician,married,high.school,unknown,yes,yes,telephone,may,tue,234,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no
+43,technician,married,basic.4y,no,yes,no,telephone,may,tue,1388,7,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no
+47,admin.,divorced,university.degree,unknown,no,no,cellular,may,wed,130,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,entrepreneur,married,university.degree,no,yes,no,cellular,may,wed,57,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+42,services,single,basic.6y,no,yes,no,cellular,may,wed,70,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+37,admin.,divorced,university.degree,unknown,yes,no,cellular,may,wed,31,7,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+38,technician,single,professional.course,no,yes,no,cellular,may,wed,50,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,blue-collar,married,basic.4y,no,no,yes,cellular,may,wed,496,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes
+26,blue-collar,single,basic.9y,no,yes,yes,cellular,may,wed,94,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+30,technician,single,high.school,no,yes,no,telephone,may,wed,83,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+26,student,single,high.school,no,no,no,telephone,may,wed,29,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,admin.,married,basic.9y,unknown,yes,no,telephone,may,wed,16,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,admin.,single,high.school,no,yes,yes,cellular,may,wed,46,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+43,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,20,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+25,admin.,married,high.school,no,yes,no,cellular,may,wed,152,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+26,student,single,high.school,no,yes,yes,telephone,may,wed,61,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,blue-collar,single,university.degree,no,yes,yes,cellular,may,wed,389,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+55,management,married,basic.4y,no,yes,yes,cellular,may,wed,1108,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+40,blue-collar,single,basic.9y,no,yes,yes,cellular,may,wed,8,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,technician,single,university.degree,no,yes,yes,cellular,may,wed,310,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+38,self-employed,married,basic.9y,no,yes,yes,cellular,may,wed,197,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+41,services,married,high.school,no,yes,yes,cellular,may,wed,21,8,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,management,divorced,basic.9y,no,yes,yes,cellular,may,wed,117,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+53,services,married,high.school,no,yes,no,telephone,may,wed,413,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,services,divorced,basic.6y,unknown,yes,no,cellular,may,wed,24,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+55,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,may,wed,254,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+38,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,65,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+51,blue-collar,divorced,basic.9y,no,no,no,cellular,may,wed,53,5,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+57,admin.,married,basic.4y,unknown,yes,no,cellular,may,wed,164,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+24,housemaid,married,basic.9y,no,yes,no,cellular,may,wed,321,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,wed,5,7,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+35,admin.,single,high.school,no,yes,no,cellular,may,wed,82,5,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+32,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,81,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,services,divorced,basic.6y,unknown,unknown,unknown,cellular,may,wed,136,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+43,self-employed,divorced,basic.9y,no,yes,no,cellular,may,wed,133,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,may,wed,14,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+53,blue-collar,single,unknown,no,yes,no,cellular,may,wed,320,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+42,services,married,high.school,no,yes,yes,cellular,may,wed,77,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,divorced,basic.9y,unknown,no,no,cellular,may,wed,211,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+43,admin.,married,high.school,no,yes,no,cellular,may,wed,129,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+38,self-employed,married,basic.9y,no,yes,no,telephone,may,wed,26,1,999,2,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+43,admin.,married,high.school,no,yes,no,cellular,may,wed,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,38,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+26,student,single,high.school,no,no,no,telephone,may,wed,95,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+37,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,49,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,210,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+28,blue-collar,single,basic.6y,no,no,no,cellular,may,wed,863,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+29,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,15,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+37,admin.,divorced,university.degree,unknown,yes,no,cellular,may,wed,259,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+55,blue-collar,divorced,basic.4y,unknown,no,no,cellular,may,wed,130,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+37,services,married,basic.9y,unknown,yes,no,telephone,may,wed,211,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,wed,87,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,self-employed,single,professional.course,no,yes,no,cellular,may,wed,774,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes
+35,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,15,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+28,blue-collar,single,basic.9y,no,yes,yes,cellular,may,wed,348,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,divorced,basic.9y,no,no,no,cellular,may,wed,129,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,technician,married,professional.course,no,no,no,cellular,may,wed,44,9,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,technician,single,professional.course,no,yes,no,cellular,may,wed,231,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,blue-collar,married,high.school,no,unknown,unknown,cellular,may,wed,74,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+43,blue-collar,married,basic.4y,no,yes,yes,cellular,may,wed,135,6,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,217,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+30,blue-collar,single,high.school,no,no,no,cellular,may,wed,22,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,technician,single,university.degree,no,no,no,telephone,may,wed,32,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+23,student,single,high.school,no,yes,no,cellular,may,wed,435,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,married,high.school,no,yes,no,telephone,may,wed,25,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+23,services,married,high.school,no,no,no,cellular,may,wed,370,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,divorced,basic.9y,no,yes,yes,cellular,may,wed,201,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+25,blue-collar,single,basic.6y,unknown,no,no,cellular,may,wed,793,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,152,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,married,high.school,no,yes,no,cellular,may,wed,66,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,admin.,married,university.degree,no,no,no,cellular,may,wed,213,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+44,admin.,married,high.school,no,yes,no,cellular,may,wed,150,3,999,2,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,364,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+34,admin.,married,university.degree,no,no,no,cellular,may,wed,329,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,282,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+58,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,wed,173,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+48,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,51,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+30,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,68,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+35,self-employed,single,high.school,no,yes,no,cellular,may,wed,109,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+28,technician,married,basic.9y,no,yes,no,cellular,may,wed,23,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+28,admin.,married,high.school,no,yes,no,cellular,may,wed,1073,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+35,self-employed,single,high.school,no,yes,no,cellular,may,wed,207,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+41,services,married,high.school,no,yes,no,cellular,may,wed,193,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+32,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,wed,134,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+28,technician,married,basic.9y,no,yes,no,cellular,may,wed,224,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,married,high.school,no,yes,no,cellular,may,wed,173,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,technician,married,professional.course,no,yes,no,telephone,may,wed,67,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+31,admin.,single,high.school,no,yes,yes,cellular,may,wed,149,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+51,blue-collar,divorced,basic.9y,no,no,yes,cellular,may,wed,29,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+43,technician,single,high.school,no,yes,yes,cellular,may,wed,610,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+29,admin.,single,basic.9y,no,no,yes,cellular,may,wed,118,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+35,management,married,high.school,no,yes,no,cellular,may,wed,95,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+27,self-employed,married,basic.9y,no,yes,no,cellular,may,wed,84,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+49,admin.,married,basic.4y,no,yes,no,cellular,may,wed,43,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+41,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,93,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,172,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+41,blue-collar,married,basic.9y,no,no,yes,cellular,may,wed,161,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+32,blue-collar,single,basic.9y,unknown,no,no,cellular,may,wed,785,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+28,student,single,high.school,no,yes,no,cellular,may,wed,628,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+53,retired,divorced,university.degree,no,yes,no,cellular,may,wed,172,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+26,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,200,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+38,admin.,married,university.degree,no,yes,yes,cellular,may,wed,134,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+32,unemployed,single,university.degree,no,yes,no,cellular,may,wed,51,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,admin.,single,high.school,no,yes,no,cellular,may,wed,850,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+55,retired,divorced,basic.4y,unknown,no,no,cellular,may,wed,526,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes
+43,admin.,married,high.school,no,no,no,cellular,may,wed,140,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+38,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,wed,93,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,services,single,high.school,no,yes,yes,cellular,may,wed,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+37,admin.,married,university.degree,no,yes,yes,cellular,may,wed,318,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+53,services,married,high.school,no,yes,no,telephone,may,wed,9,9,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,services,single,basic.6y,unknown,yes,yes,telephone,may,wed,19,8,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,may,wed,157,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+43,self-employed,single,high.school,unknown,no,no,cellular,may,wed,79,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+30,technician,single,high.school,no,yes,no,cellular,may,wed,9,12,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,technician,single,professional.course,no,yes,no,cellular,may,wed,19,11,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+53,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,659,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+34,blue-collar,single,high.school,no,yes,no,cellular,may,wed,39,1,10,1,success,-1.8,92.893,-46.2,1.281,5099.1,no
+36,services,divorced,high.school,no,yes,no,cellular,may,wed,502,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+51,admin.,divorced,basic.9y,no,yes,no,cellular,may,wed,113,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+44,technician,married,professional.course,unknown,yes,yes,cellular,may,wed,267,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+37,technician,divorced,professional.course,no,yes,yes,telephone,may,wed,30,10,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+38,self-employed,married,basic.9y,no,no,yes,telephone,may,wed,355,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,unemployed,married,basic.9y,no,yes,no,telephone,may,wed,43,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+43,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,wed,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,married,basic.6y,unknown,yes,yes,cellular,may,wed,10,9,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+53,management,married,university.degree,no,yes,no,cellular,may,wed,17,13,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,47,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,admin.,single,high.school,no,yes,no,cellular,may,wed,296,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+43,blue-collar,married,basic.4y,no,no,yes,cellular,may,wed,69,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+42,blue-collar,divorced,basic.6y,no,no,no,cellular,may,wed,323,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+24,technician,married,professional.course,no,no,yes,cellular,may,wed,167,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,unemployed,married,basic.9y,no,no,no,cellular,may,wed,570,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+28,blue-collar,single,high.school,no,yes,no,cellular,may,wed,516,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+40,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,220,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,admin.,single,high.school,no,yes,yes,cellular,may,wed,177,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+44,blue-collar,married,basic.4y,unknown,no,no,cellular,may,wed,388,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,services,married,basic.9y,no,no,no,cellular,may,wed,61,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+30,entrepreneur,married,university.degree,no,no,no,cellular,may,wed,585,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+33,admin.,divorced,university.degree,no,no,no,cellular,may,wed,699,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,blue-collar,married,high.school,no,yes,no,cellular,may,wed,133,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,single,university.degree,no,no,no,cellular,may,wed,6,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,96,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+34,management,married,university.degree,no,no,yes,telephone,may,wed,318,5,6,1,success,-1.8,92.893,-46.2,1.281,5099.1,no
+23,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,413,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+24,student,single,high.school,no,yes,yes,cellular,may,wed,66,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+34,blue-collar,married,high.school,no,no,no,cellular,may,wed,590,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+38,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,272,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+57,services,married,high.school,unknown,no,no,cellular,may,wed,88,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,services,single,high.school,no,no,no,cellular,may,wed,15,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,technician,single,university.degree,no,yes,no,cellular,may,wed,152,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+32,blue-collar,single,basic.4y,no,no,no,cellular,may,wed,902,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+31,management,single,university.degree,no,yes,no,cellular,may,wed,294,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+42,admin.,divorced,high.school,no,yes,no,telephone,may,wed,15,5,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,admin.,single,high.school,no,no,no,cellular,may,wed,290,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+43,management,married,university.degree,no,yes,no,cellular,may,wed,12,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+44,housemaid,married,basic.4y,no,yes,no,cellular,may,wed,31,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,wed,135,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,management,married,university.degree,no,no,no,cellular,may,wed,142,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+24,student,single,high.school,no,no,no,cellular,may,wed,669,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes
+31,technician,single,professional.course,no,yes,yes,cellular,may,wed,123,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,housemaid,single,high.school,no,no,no,cellular,may,wed,391,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+37,services,single,basic.6y,no,yes,no,cellular,may,wed,93,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+35,admin.,divorced,high.school,no,no,no,cellular,may,wed,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,admin.,divorced,high.school,no,yes,no,cellular,may,wed,99,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+41,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,256,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+32,blue-collar,married,high.school,no,yes,no,cellular,may,wed,394,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+33,services,single,basic.6y,unknown,no,no,cellular,may,wed,74,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+41,services,married,high.school,no,yes,no,cellular,may,wed,67,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,admin.,single,high.school,no,no,no,cellular,may,wed,131,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,admin.,single,high.school,no,yes,no,cellular,may,wed,149,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+31,admin.,married,university.degree,no,no,no,cellular,may,wed,27,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,admin.,single,high.school,no,no,no,cellular,may,wed,152,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+49,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,116,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,admin.,single,basic.9y,no,yes,no,telephone,may,wed,41,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+24,admin.,married,basic.9y,no,yes,no,cellular,may,wed,302,1,10,1,success,-1.8,92.893,-46.2,1.281,5099.1,yes
+33,blue-collar,single,university.degree,unknown,no,no,cellular,may,wed,275,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,admin.,married,university.degree,no,no,no,cellular,may,wed,128,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+23,student,single,high.school,no,yes,no,cellular,may,wed,78,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+42,services,single,basic.6y,no,yes,yes,cellular,may,wed,11,8,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,admin.,married,university.degree,no,no,no,cellular,may,wed,101,5,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+53,management,married,university.degree,no,no,no,cellular,may,wed,147,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+25,blue-collar,single,high.school,no,yes,no,cellular,may,wed,262,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+24,services,single,high.school,no,no,no,cellular,may,wed,46,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,technician,single,professional.course,no,no,no,cellular,may,wed,546,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+33,services,married,high.school,no,yes,no,cellular,may,wed,1512,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes
+35,entrepreneur,married,university.degree,no,no,no,cellular,may,wed,104,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,services,single,basic.6y,unknown,no,no,cellular,may,wed,85,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+30,technician,single,university.degree,no,yes,no,telephone,may,wed,119,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+52,admin.,married,basic.9y,no,no,no,cellular,may,wed,423,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+31,self-employed,married,basic.9y,no,no,no,cellular,may,wed,315,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,78,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,blue-collar,single,university.degree,no,no,no,cellular,may,wed,9,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,44,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+28,admin.,married,high.school,no,no,no,cellular,may,wed,75,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+59,admin.,divorced,high.school,no,unknown,unknown,telephone,may,wed,157,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+46,admin.,married,high.school,unknown,yes,no,cellular,may,wed,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+41,technician,married,basic.9y,no,yes,no,cellular,may,wed,66,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,may,wed,7,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+28,blue-collar,single,high.school,no,yes,no,cellular,may,wed,529,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+48,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,349,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+39,blue-collar,divorced,basic.6y,unknown,no,no,cellular,may,wed,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,127,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,technician,divorced,professional.course,no,no,yes,cellular,may,wed,83,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,may,wed,333,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+39,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,may,wed,408,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+58,retired,married,basic.4y,unknown,yes,no,cellular,may,wed,205,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+31,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,158,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+55,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,18,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+41,entrepreneur,married,university.degree,no,yes,no,cellular,may,wed,276,1,12,1,success,-1.8,92.893,-46.2,1.281,5099.1,no
+43,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,264,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+37,technician,divorced,professional.course,no,no,no,cellular,may,wed,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+38,self-employed,married,basic.9y,no,no,yes,cellular,may,wed,234,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+30,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,115,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,services,single,basic.6y,no,yes,no,cellular,may,wed,272,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+37,technician,divorced,professional.course,no,no,no,cellular,may,wed,329,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+30,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,155,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+43,blue-collar,married,basic.4y,no,no,yes,cellular,may,wed,589,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,admin.,divorced,basic.9y,no,no,no,telephone,may,wed,363,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,951,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes
+38,technician,married,university.degree,no,yes,no,cellular,may,wed,172,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+30,admin.,single,high.school,no,yes,no,cellular,may,wed,53,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,married,professional.course,no,no,no,telephone,may,wed,34,8,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,management,single,university.degree,no,no,no,cellular,may,wed,82,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+30,services,single,high.school,no,yes,no,telephone,may,wed,155,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,unemployed,married,basic.9y,no,yes,no,cellular,may,wed,788,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,528,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+41,blue-collar,married,basic.4y,unknown,no,no,cellular,may,wed,296,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+31,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,114,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+51,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,314,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+43,blue-collar,married,basic.4y,unknown,no,no,cellular,may,wed,249,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+28,services,single,high.school,no,yes,yes,cellular,may,wed,562,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+36,services,single,professional.course,no,yes,no,cellular,may,wed,112,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+38,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,204,1,11,1,success,-1.8,92.893,-46.2,1.281,5099.1,no
+31,self-employed,married,basic.9y,no,unknown,unknown,cellular,may,wed,168,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+23,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,60,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+31,services,single,basic.6y,no,yes,no,cellular,may,wed,734,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+31,admin.,single,basic.9y,no,no,no,telephone,may,wed,80,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+35,admin.,single,university.degree,unknown,no,no,cellular,may,wed,60,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,services,single,high.school,no,yes,no,cellular,may,wed,281,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+43,admin.,divorced,basic.9y,no,yes,no,cellular,may,wed,321,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+28,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,149,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+28,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,155,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+47,blue-collar,single,basic.6y,unknown,no,no,cellular,may,wed,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,blue-collar,single,high.school,no,yes,no,cellular,may,wed,49,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+30,services,married,high.school,no,no,no,cellular,may,wed,354,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+28,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,294,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+47,services,married,professional.course,no,yes,no,cellular,may,wed,137,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,admin.,divorced,high.school,no,yes,no,cellular,may,wed,191,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,may,wed,172,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,55,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+27,admin.,single,high.school,no,no,no,cellular,may,wed,167,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+49,entrepreneur,married,unknown,no,no,no,cellular,may,wed,85,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+53,management,married,university.degree,no,yes,no,cellular,may,wed,92,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+48,admin.,divorced,unknown,no,yes,no,cellular,may,wed,16,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,admin.,single,high.school,no,no,no,telephone,may,wed,444,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,admin.,single,university.degree,no,no,no,cellular,may,wed,132,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+28,technician,married,professional.course,no,yes,no,cellular,may,wed,10,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+30,technician,single,unknown,no,yes,yes,cellular,may,wed,324,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+22,student,single,high.school,no,yes,no,cellular,may,wed,315,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+51,blue-collar,divorced,basic.9y,no,no,no,cellular,may,wed,64,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,110,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+26,services,single,high.school,no,yes,no,telephone,may,wed,421,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,services,divorced,basic.6y,unknown,no,no,cellular,may,wed,79,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,174,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,257,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+42,technician,divorced,high.school,no,yes,no,cellular,may,wed,228,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,296,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,may,wed,9,8,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+51,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,337,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,admin.,married,high.school,no,yes,no,cellular,may,wed,476,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+28,technician,single,professional.course,no,yes,no,telephone,may,wed,185,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+51,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,104,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+28,technician,single,professional.course,no,yes,no,cellular,may,wed,244,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,may,wed,152,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+28,blue-collar,married,professional.course,unknown,yes,no,cellular,may,wed,573,7,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+44,admin.,married,high.school,no,no,no,cellular,may,wed,231,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+58,management,married,basic.4y,no,yes,yes,cellular,may,wed,184,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+41,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,124,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+40,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,21,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,single,basic.9y,unknown,no,no,cellular,may,wed,233,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+45,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,96,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,99,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,admin.,single,basic.9y,no,yes,no,cellular,may,wed,117,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+32,services,single,high.school,no,yes,no,cellular,may,wed,53,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+35,admin.,married,university.degree,no,no,yes,cellular,may,wed,261,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,technician,single,professional.course,no,yes,no,cellular,may,wed,201,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,admin.,married,university.degree,no,no,no,cellular,may,wed,155,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,admin.,married,high.school,no,yes,no,cellular,may,wed,43,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+32,services,married,basic.9y,no,yes,no,cellular,may,wed,53,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+32,services,single,high.school,no,unknown,unknown,cellular,may,wed,363,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+31,admin.,married,high.school,no,yes,no,cellular,may,wed,14,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+23,admin.,single,high.school,no,yes,no,cellular,may,wed,108,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+32,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,459,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+50,blue-collar,single,professional.course,no,no,no,cellular,may,wed,425,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+24,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,blue-collar,married,basic.6y,no,no,yes,cellular,may,wed,223,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+58,housemaid,married,basic.4y,no,yes,no,cellular,may,wed,413,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,services,married,high.school,no,no,yes,cellular,may,wed,747,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes
+47,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,177,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+31,services,single,high.school,no,yes,no,cellular,may,wed,66,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+34,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,716,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+34,services,married,university.degree,no,yes,yes,cellular,may,wed,253,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+30,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,14,6,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,married,high.school,no,no,no,cellular,may,wed,316,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,services,single,high.school,no,yes,no,cellular,may,wed,152,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+34,blue-collar,married,basic.6y,no,no,yes,telephone,may,wed,137,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+34,management,single,university.degree,no,no,yes,cellular,may,wed,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+56,blue-collar,divorced,basic.6y,unknown,no,no,cellular,may,wed,154,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+28,admin.,married,high.school,no,yes,yes,cellular,may,wed,165,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+35,blue-collar,married,professional.course,no,yes,no,cellular,may,wed,466,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,1101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+48,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,368,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+28,admin.,married,high.school,no,yes,no,cellular,may,wed,201,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,single,high.school,no,yes,yes,cellular,may,wed,146,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,admin.,married,high.school,no,yes,yes,cellular,may,wed,77,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,single,high.school,no,no,no,cellular,may,wed,157,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,single,university.degree,no,yes,yes,cellular,may,wed,96,6,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+35,admin.,single,university.degree,no,no,no,telephone,may,wed,104,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+52,admin.,married,basic.9y,no,yes,no,cellular,may,wed,38,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+48,services,married,high.school,no,yes,yes,cellular,may,wed,154,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+55,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,wed,148,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+41,services,married,high.school,no,yes,no,cellular,may,wed,342,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+28,technician,single,professional.course,no,yes,yes,telephone,may,wed,43,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+44,technician,single,high.school,unknown,no,no,cellular,may,wed,394,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+29,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+43,self-employed,single,high.school,unknown,no,no,cellular,may,wed,364,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,blue-collar,single,unknown,no,yes,no,telephone,may,wed,125,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+32,blue-collar,single,basic.9y,no,yes,yes,cellular,may,wed,179,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,427,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,technician,single,high.school,no,no,no,cellular,may,wed,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+22,admin.,single,high.school,no,yes,no,cellular,may,wed,197,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,blue-collar,single,basic.4y,no,yes,yes,cellular,may,wed,409,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+55,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,299,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,divorced,basic.9y,no,no,no,cellular,may,wed,323,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+45,services,divorced,basic.9y,no,no,no,cellular,may,wed,215,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+24,student,single,high.school,unknown,yes,no,cellular,may,wed,290,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+37,admin.,single,basic.9y,no,yes,yes,cellular,may,wed,147,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,technician,single,professional.course,no,no,no,cellular,may,wed,143,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+38,admin.,married,university.degree,no,yes,no,cellular,may,wed,541,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+40,admin.,single,high.school,no,no,yes,cellular,may,wed,172,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+38,blue-collar,single,basic.6y,no,yes,yes,cellular,may,wed,309,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+59,retired,divorced,professional.course,no,no,no,cellular,may,wed,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+24,student,single,university.degree,no,yes,no,cellular,may,wed,79,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,admin.,single,high.school,no,no,no,cellular,may,wed,299,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+38,housemaid,divorced,university.degree,no,yes,no,cellular,may,wed,213,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+40,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,196,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,54,1,6,1,success,-1.8,92.893,-46.2,1.281,5099.1,no
+29,admin.,married,high.school,no,no,no,cellular,may,wed,54,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+41,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,wed,247,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+41,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,wed,426,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+34,technician,single,professional.course,no,yes,no,cellular,may,wed,404,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,wed,80,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,single,high.school,no,yes,no,cellular,may,wed,135,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,single,high.school,no,yes,no,cellular,may,wed,162,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+35,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,wed,130,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,single,high.school,no,no,no,cellular,may,wed,341,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,366,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes
+33,technician,single,university.degree,no,no,yes,cellular,may,wed,118,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,management,married,basic.9y,no,yes,yes,cellular,may,wed,168,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,services,single,basic.9y,no,no,no,cellular,may,wed,308,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+28,unemployed,married,university.degree,no,no,no,cellular,may,wed,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,wed,300,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+45,blue-collar,single,basic.4y,no,no,no,cellular,may,wed,223,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,blue-collar,single,basic.6y,unknown,no,no,cellular,may,wed,35,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+37,blue-collar,married,basic.4y,no,no,yes,cellular,may,wed,199,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+56,housemaid,married,basic.4y,unknown,no,no,cellular,may,wed,206,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+45,blue-collar,single,basic.4y,no,yes,no,cellular,may,wed,721,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+32,technician,married,university.degree,no,yes,no,cellular,may,wed,641,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,blue-collar,single,basic.6y,unknown,no,no,cellular,may,wed,163,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,may,wed,234,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,blue-collar,divorced,basic.4y,no,no,no,cellular,may,wed,86,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,180,2,999,2,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,technician,single,high.school,no,no,no,cellular,may,wed,68,4,12,1,success,-1.8,92.893,-46.2,1.281,5099.1,no
+34,blue-collar,single,high.school,no,no,no,cellular,may,wed,103,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,services,single,high.school,no,no,no,cellular,may,wed,102,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,admin.,single,high.school,no,yes,no,cellular,may,wed,239,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,may,wed,325,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,services,single,high.school,no,no,no,cellular,may,wed,234,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+42,technician,married,professional.course,no,no,no,cellular,may,wed,194,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,134,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+34,management,married,university.degree,no,yes,no,cellular,may,wed,77,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+53,admin.,married,basic.9y,no,yes,yes,cellular,may,wed,674,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+36,services,single,high.school,no,yes,no,telephone,may,wed,216,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+48,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,122,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+58,retired,married,university.degree,no,no,no,cellular,may,wed,109,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+35,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,622,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+29,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,1966,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,blue-collar,married,university.degree,no,no,yes,cellular,may,wed,131,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+49,entrepreneur,married,university.degree,no,no,no,cellular,may,wed,140,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,blue-collar,married,basic.6y,no,no,yes,cellular,may,wed,281,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+40,technician,married,basic.6y,no,yes,no,cellular,may,wed,156,5,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+45,blue-collar,single,basic.4y,no,yes,no,cellular,may,wed,161,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,married,university.degree,no,yes,yes,cellular,may,wed,44,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+32,technician,single,high.school,no,yes,no,cellular,may,wed,240,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+42,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,172,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,technician,married,professional.course,no,no,no,cellular,may,wed,127,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+49,management,single,professional.course,no,no,no,cellular,may,wed,248,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,technician,single,professional.course,no,yes,no,cellular,may,wed,115,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+26,admin.,single,high.school,no,yes,no,cellular,may,wed,38,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+42,services,married,basic.9y,no,yes,no,cellular,may,wed,201,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+42,technician,single,professional.course,no,no,no,cellular,may,wed,341,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,admin.,married,basic.6y,no,yes,no,cellular,may,wed,298,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+41,services,married,high.school,no,yes,no,cellular,may,wed,314,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+23,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,52,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+23,services,married,high.school,no,yes,no,cellular,may,wed,77,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+53,blue-collar,divorced,unknown,no,no,no,cellular,may,wed,390,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+49,unemployed,married,basic.4y,unknown,yes,no,cellular,may,wed,804,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+24,blue-collar,divorced,basic.9y,no,no,no,cellular,may,wed,417,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,361,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+51,blue-collar,married,high.school,no,yes,no,cellular,may,wed,809,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes
+31,blue-collar,divorced,high.school,no,no,no,cellular,may,wed,156,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,may,wed,44,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+30,admin.,married,high.school,no,no,no,cellular,may,wed,166,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+41,services,married,high.school,no,yes,no,cellular,may,wed,58,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+40,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,76,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,blue-collar,married,high.school,no,yes,yes,cellular,may,wed,312,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+39,blue-collar,married,high.school,no,yes,no,cellular,may,wed,298,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,retired,single,basic.6y,unknown,yes,no,cellular,may,wed,466,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,blue-collar,divorced,high.school,no,yes,no,cellular,may,wed,829,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes
+37,admin.,divorced,university.degree,unknown,yes,no,cellular,may,wed,291,8,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,may,wed,484,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,entrepreneur,married,university.degree,no,yes,no,cellular,may,wed,204,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+28,blue-collar,single,university.degree,unknown,no,no,cellular,may,wed,169,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+24,admin.,single,high.school,no,yes,no,cellular,may,wed,437,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,unemployed,single,high.school,no,yes,no,cellular,may,wed,937,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+31,blue-collar,single,basic.9y,no,no,yes,cellular,may,wed,37,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+38,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,193,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,admin.,single,high.school,no,no,no,cellular,may,wed,230,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+49,blue-collar,divorced,high.school,no,yes,no,cellular,may,wed,204,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,admin.,married,high.school,no,yes,no,cellular,may,wed,163,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+58,management,married,basic.6y,unknown,no,no,cellular,may,wed,159,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+34,unemployed,single,high.school,no,yes,no,cellular,may,wed,1970,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+32,blue-collar,single,high.school,no,no,yes,cellular,may,wed,358,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+34,admin.,single,high.school,no,yes,no,cellular,may,wed,195,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+34,blue-collar,married,unknown,unknown,yes,no,telephone,may,wed,1302,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+31,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,96,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+44,blue-collar,divorced,basic.4y,no,no,no,cellular,may,wed,154,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+51,self-employed,married,basic.9y,no,no,no,telephone,may,wed,246,2,12,1,success,-1.8,92.893,-46.2,1.281,5099.1,no
+30,student,single,university.degree,unknown,yes,yes,cellular,may,wed,122,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,276,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,single,university.degree,no,no,no,cellular,may,wed,151,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,297,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,wed,119,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+38,management,married,university.degree,no,yes,no,cellular,may,wed,172,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,management,married,university.degree,no,yes,yes,cellular,may,wed,74,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+51,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,187,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,wed,141,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,technician,married,professional.course,no,no,no,cellular,may,wed,124,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+41,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,186,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+38,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,1975,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+29,services,single,basic.6y,no,yes,yes,cellular,may,wed,252,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+32,services,single,high.school,no,no,no,cellular,may,wed,248,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,married,high.school,no,yes,yes,cellular,may,wed,85,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+39,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,199,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+38,self-employed,married,basic.9y,no,no,yes,cellular,may,wed,482,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+30,technician,married,basic.9y,no,no,no,cellular,may,wed,226,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,98,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,may,wed,358,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+37,blue-collar,married,basic.6y,no,no,yes,cellular,may,wed,158,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+49,admin.,married,university.degree,no,yes,yes,cellular,may,wed,194,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,self-employed,single,university.degree,no,no,no,cellular,may,wed,340,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+40,blue-collar,single,basic.9y,no,yes,yes,telephone,may,wed,325,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+47,blue-collar,single,basic.6y,unknown,no,no,cellular,may,wed,408,2,999,2,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+48,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,88,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,management,married,university.degree,no,no,no,cellular,may,wed,323,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,divorced,university.degree,no,yes,no,cellular,may,wed,275,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,may,wed,177,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+43,admin.,married,high.school,unknown,no,no,cellular,may,wed,431,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,blue-collar,single,university.degree,no,yes,no,cellular,may,wed,53,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,396,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+39,management,divorced,university.degree,no,no,no,cellular,may,wed,157,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+49,blue-collar,married,high.school,unknown,yes,yes,cellular,may,wed,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,may,wed,954,2,10,1,success,-1.8,92.893,-46.2,1.281,5099.1,yes
+41,blue-collar,married,unknown,no,yes,yes,cellular,may,wed,612,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,services,married,high.school,no,no,no,cellular,may,wed,251,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+45,admin.,single,high.school,unknown,no,no,cellular,may,wed,537,5,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+32,services,single,high.school,no,no,no,cellular,may,wed,402,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+31,services,single,high.school,no,no,no,cellular,may,wed,1298,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+36,admin.,single,university.degree,no,no,yes,cellular,may,wed,1119,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+52,technician,divorced,high.school,no,no,yes,cellular,may,wed,191,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+27,technician,single,professional.course,no,yes,yes,cellular,may,wed,94,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,499,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,services,single,high.school,no,yes,no,cellular,may,wed,66,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+26,blue-collar,single,professional.course,no,yes,no,cellular,may,wed,197,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,blue-collar,married,high.school,no,no,no,telephone,may,wed,56,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+32,technician,married,high.school,no,no,no,cellular,may,wed,195,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+35,services,single,high.school,no,no,no,telephone,may,wed,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,technician,single,professional.course,no,yes,no,cellular,may,wed,38,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,168,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+34,services,married,university.degree,no,yes,no,cellular,may,wed,154,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+24,housemaid,married,basic.9y,no,no,no,cellular,may,wed,45,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+30,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,wed,107,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+43,admin.,married,high.school,no,yes,no,telephone,may,wed,121,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+31,entrepreneur,single,university.degree,no,yes,no,cellular,may,wed,318,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+43,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,255,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+41,housemaid,married,high.school,no,no,no,cellular,may,wed,174,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,blue-collar,single,basic.9y,no,no,yes,telephone,may,wed,53,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,admin.,single,university.degree,no,no,no,cellular,may,wed,196,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,173,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,admin.,married,university.degree,no,no,yes,telephone,may,wed,65,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,136,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,divorced,basic.9y,no,yes,yes,cellular,may,wed,444,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+27,admin.,married,high.school,no,yes,no,cellular,may,wed,308,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+30,admin.,single,high.school,no,no,no,cellular,may,wed,698,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes
+31,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,wed,228,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+28,technician,single,professional.course,no,yes,no,cellular,may,wed,562,2,6,1,success,-1.8,92.893,-46.2,1.281,5099.1,no
+35,entrepreneur,married,university.degree,no,yes,no,cellular,may,wed,272,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+39,entrepreneur,married,basic.9y,no,yes,no,cellular,may,wed,419,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+46,housemaid,married,basic.4y,unknown,yes,no,cellular,may,wed,369,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+55,services,single,high.school,no,no,yes,cellular,may,wed,107,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,blue-collar,single,university.degree,no,yes,no,cellular,may,wed,173,9,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,technician,single,professional.course,no,no,no,cellular,may,wed,62,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+32,management,married,university.degree,no,yes,no,cellular,may,wed,129,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+57,services,married,high.school,unknown,yes,no,cellular,may,wed,76,7,1,2,success,-1.8,92.893,-46.2,1.281,5099.1,no
+32,technician,married,professional.course,no,no,no,cellular,may,wed,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,blue-collar,married,high.school,no,unknown,unknown,cellular,may,wed,805,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,97,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+30,technician,single,high.school,no,yes,no,cellular,may,wed,202,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+40,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,wed,777,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,378,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+38,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,654,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes
+35,services,single,high.school,no,yes,no,cellular,may,wed,185,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+32,blue-collar,single,basic.4y,no,yes,yes,cellular,may,wed,1805,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+42,technician,single,professional.course,no,yes,no,cellular,may,wed,367,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,admin.,married,university.degree,no,no,no,cellular,may,wed,12,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,139,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+38,blue-collar,single,basic.9y,no,no,yes,cellular,may,wed,222,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+38,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,122,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+28,services,single,high.school,no,no,no,cellular,may,wed,649,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+49,blue-collar,married,high.school,unknown,yes,no,cellular,may,wed,168,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+30,services,married,high.school,no,yes,no,cellular,may,wed,237,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+45,unemployed,divorced,basic.6y,no,unknown,unknown,cellular,may,wed,135,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,technician,single,professional.course,no,yes,no,cellular,may,wed,102,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,blue-collar,married,professional.course,unknown,no,no,cellular,may,wed,65,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+59,retired,divorced,professional.course,no,yes,no,cellular,may,wed,281,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+56,blue-collar,married,basic.4y,no,yes,yes,cellular,may,wed,80,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,services,married,basic.9y,no,no,yes,cellular,may,wed,36,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,blue-collar,married,basic.6y,no,yes,yes,cellular,may,wed,143,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+44,unemployed,divorced,basic.9y,no,no,no,telephone,may,wed,259,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+24,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,221,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,married,high.school,no,yes,no,cellular,may,wed,177,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+32,admin.,single,university.degree,no,yes,yes,cellular,may,wed,84,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+42,admin.,married,high.school,no,no,no,cellular,may,wed,406,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+42,services,married,high.school,no,no,no,cellular,may,wed,185,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+38,self-employed,married,basic.9y,no,yes,no,cellular,may,wed,155,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,wed,190,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,53,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,technician,single,professional.course,no,no,no,telephone,may,wed,99,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+51,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,254,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+42,technician,single,professional.course,no,no,no,cellular,may,wed,531,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+29,admin.,single,basic.9y,no,yes,no,cellular,may,wed,256,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+49,entrepreneur,married,basic.4y,unknown,yes,no,cellular,may,wed,217,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+48,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,25,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+32,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,253,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+26,student,single,high.school,no,yes,no,cellular,may,wed,277,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+34,blue-collar,single,basic.6y,no,yes,no,cellular,may,wed,125,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+32,services,single,high.school,no,no,no,cellular,may,wed,151,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+34,unemployed,single,high.school,no,no,no,telephone,may,wed,127,8,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+36,admin.,married,university.degree,no,no,no,cellular,may,wed,449,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+57,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,97,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+42,blue-collar,divorced,basic.6y,no,yes,no,cellular,may,wed,16,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+46,housemaid,single,basic.9y,unknown,no,no,cellular,may,wed,388,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,self-employed,single,university.degree,no,no,no,cellular,may,wed,134,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,265,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+40,technician,married,professional.course,no,yes,no,cellular,may,wed,32,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,self-employed,married,basic.9y,no,yes,no,cellular,may,wed,285,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+39,services,married,high.school,no,no,no,cellular,may,wed,383,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,blue-collar,single,basic.4y,no,yes,no,telephone,may,wed,179,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,admin.,single,university.degree,no,yes,no,telephone,may,wed,51,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,technician,single,high.school,no,yes,no,cellular,may,wed,446,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,management,single,university.degree,no,no,yes,cellular,may,wed,136,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+32,blue-collar,single,high.school,unknown,yes,no,cellular,may,wed,420,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+53,retired,married,basic.9y,no,no,no,cellular,may,wed,133,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+21,student,single,high.school,no,no,no,cellular,may,wed,513,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+36,technician,single,professional.course,no,yes,no,cellular,may,wed,225,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+32,blue-collar,single,high.school,no,no,yes,cellular,may,wed,204,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,services,single,high.school,no,yes,no,cellular,may,wed,240,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+28,blue-collar,married,basic.4y,no,no,yes,cellular,may,wed,135,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,admin.,single,basic.9y,no,no,no,cellular,may,wed,245,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,admin.,married,high.school,no,yes,no,cellular,may,wed,119,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+31,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,1279,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+44,admin.,divorced,professional.course,no,no,yes,telephone,may,wed,38,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,blue-collar,single,basic.9y,no,no,yes,cellular,may,wed,331,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+49,unemployed,married,basic.4y,unknown,no,no,cellular,may,wed,771,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+49,entrepreneur,married,basic.4y,unknown,yes,no,cellular,may,wed,491,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+38,housemaid,divorced,university.degree,no,yes,no,cellular,may,wed,873,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes
+51,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,440,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+36,services,divorced,high.school,no,no,yes,telephone,may,wed,992,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+58,housemaid,married,basic.4y,no,no,no,telephone,may,wed,689,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+29,admin.,single,high.school,no,yes,no,cellular,may,wed,443,7,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes
+37,admin.,divorced,university.degree,unknown,yes,no,cellular,may,wed,302,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+32,technician,single,university.degree,no,yes,no,cellular,may,wed,75,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,admin.,married,university.degree,no,no,yes,cellular,may,wed,72,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+33,blue-collar,single,basic.9y,no,no,yes,telephone,may,wed,418,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+43,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,324,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,admin.,divorced,high.school,no,no,no,cellular,may,wed,69,11,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+38,self-employed,married,basic.9y,no,no,no,cellular,may,wed,1130,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes
+52,admin.,married,university.degree,no,no,no,cellular,may,wed,429,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes
+34,blue-collar,married,high.school,no,yes,no,cellular,may,wed,96,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,310,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+35,admin.,single,university.degree,no,no,no,cellular,may,wed,149,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+28,student,single,high.school,no,no,no,cellular,may,wed,182,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+33,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,1309,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,364,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+32,management,married,university.degree,no,yes,yes,cellular,may,wed,36,9,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,337,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+46,blue-collar,divorced,basic.9y,no,no,no,cellular,may,wed,426,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+45,services,married,high.school,unknown,yes,no,cellular,may,wed,25,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,admin.,single,high.school,no,yes,yes,cellular,may,wed,196,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,may,wed,126,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+25,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,201,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+42,blue-collar,divorced,basic.9y,no,no,yes,cellular,may,wed,300,5,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+32,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,630,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+31,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,48,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no
+29,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,189,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+30,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,305,8,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no
+27,admin.,married,professional.course,no,no,no,cellular,may,thu,68,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,65,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,thu,115,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,247,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,services,single,high.school,no,yes,no,cellular,may,thu,164,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,technician,single,university.degree,no,yes,yes,cellular,may,thu,178,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+35,technician,single,professional.course,no,no,no,telephone,may,thu,19,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+23,housemaid,single,basic.4y,no,no,yes,cellular,may,thu,9,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+48,services,single,basic.4y,unknown,yes,no,cellular,may,thu,24,7,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,management,single,university.degree,no,yes,no,cellular,may,thu,165,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,admin.,single,high.school,no,no,no,cellular,may,thu,14,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,admin.,single,high.school,no,yes,no,telephone,may,thu,36,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+59,admin.,divorced,basic.9y,no,yes,no,cellular,may,thu,8,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+48,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,33,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+38,blue-collar,single,basic.4y,no,no,no,cellular,may,thu,121,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+24,management,married,university.degree,no,yes,no,telephone,may,thu,921,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+37,services,married,high.school,no,yes,yes,cellular,may,thu,436,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,married,professional.course,no,no,no,cellular,may,thu,119,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,technician,single,basic.9y,no,yes,no,telephone,may,thu,13,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,self-employed,married,high.school,no,yes,yes,cellular,may,thu,181,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,technician,married,basic.9y,no,yes,no,telephone,may,thu,7,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,16,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,technician,single,university.degree,no,yes,no,cellular,may,thu,259,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+38,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,102,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,admin.,single,university.degree,no,yes,no,cellular,may,thu,19,8,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,113,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+38,blue-collar,married,high.school,unknown,yes,no,cellular,may,thu,152,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+47,blue-collar,married,basic.4y,unknown,no,no,cellular,may,thu,14,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,student,single,high.school,no,yes,no,cellular,may,thu,21,8,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,single,university.degree,no,no,no,cellular,may,thu,17,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,divorced,basic.9y,no,no,yes,telephone,may,thu,18,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+24,blue-collar,single,basic.9y,unknown,yes,yes,cellular,may,thu,17,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+38,services,married,high.school,unknown,yes,no,cellular,may,thu,13,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+24,technician,married,professional.course,no,yes,no,cellular,may,thu,99,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,services,single,high.school,no,unknown,unknown,cellular,may,thu,11,15,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+26,admin.,single,high.school,no,yes,no,cellular,may,thu,24,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,technician,married,university.degree,no,yes,no,cellular,may,thu,164,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,services,single,basic.9y,no,yes,no,cellular,may,thu,78,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+30,admin.,single,high.school,no,yes,no,cellular,may,thu,29,8,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+22,student,single,high.school,no,yes,no,telephone,may,thu,9,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,blue-collar,married,professional.course,no,yes,no,cellular,may,thu,465,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,blue-collar,married,basic.6y,unknown,yes,yes,cellular,may,thu,263,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,single,university.degree,no,no,no,cellular,may,thu,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+43,blue-collar,married,basic.4y,no,no,yes,cellular,may,thu,722,2,11,1,success,-1.8,92.893,-46.2,1.266,5099.1,yes
+33,admin.,married,professional.course,no,no,yes,cellular,may,thu,178,8,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+34,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,may,thu,6,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+30,technician,married,basic.6y,no,no,no,cellular,may,thu,25,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,services,married,high.school,no,yes,no,cellular,may,thu,348,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,technician,married,professional.course,no,yes,no,cellular,may,thu,30,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+48,management,divorced,university.degree,unknown,no,no,cellular,may,thu,33,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,222,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,admin.,single,high.school,no,no,no,cellular,may,thu,325,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+43,services,married,high.school,unknown,yes,no,cellular,may,thu,974,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+23,self-employed,single,basic.9y,no,no,no,cellular,may,thu,254,11,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,admin.,married,university.degree,unknown,no,no,cellular,may,thu,344,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+24,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,925,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,467,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+27,entrepreneur,divorced,university.degree,unknown,no,no,telephone,may,thu,9,5,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+30,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,15,11,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,12,8,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+20,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,thu,42,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+39,services,divorced,high.school,no,no,no,cellular,may,thu,186,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+40,technician,married,professional.course,no,yes,no,cellular,may,thu,580,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+26,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,40,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,services,single,high.school,no,no,no,cellular,may,thu,350,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+23,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,720,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+38,blue-collar,married,basic.4y,no,unknown,unknown,cellular,may,thu,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,management,married,university.degree,no,no,no,cellular,may,thu,11,8,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,services,single,high.school,no,yes,yes,cellular,may,thu,10,10,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+44,services,divorced,high.school,no,yes,no,cellular,may,thu,533,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+45,self-employed,married,high.school,no,yes,no,cellular,may,thu,21,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,management,single,university.degree,no,yes,yes,cellular,may,thu,146,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,services,married,high.school,no,yes,yes,cellular,may,thu,189,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+38,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,365,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,91,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,management,married,university.degree,no,no,no,cellular,may,thu,84,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,single,high.school,no,yes,yes,telephone,may,thu,22,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,single,basic.4y,no,no,no,cellular,may,thu,166,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,single,basic.4y,no,yes,no,cellular,may,thu,182,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+23,admin.,single,high.school,no,yes,no,cellular,may,thu,638,1,6,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+39,blue-collar,divorced,basic.9y,unknown,no,no,cellular,may,thu,46,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+39,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,may,thu,127,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,student,single,unknown,no,yes,yes,cellular,may,thu,306,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,558,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+26,management,single,university.degree,no,yes,yes,cellular,may,thu,161,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+26,management,single,university.degree,no,yes,no,cellular,may,thu,119,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+28,entrepreneur,married,high.school,no,yes,no,cellular,may,thu,61,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,admin.,married,high.school,no,no,no,cellular,may,thu,362,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,83,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,151,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+25,services,single,high.school,no,no,no,cellular,may,thu,566,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,technician,single,basic.9y,no,no,no,cellular,may,thu,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+50,self-employed,married,basic.9y,unknown,no,no,cellular,may,thu,291,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+50,self-employed,married,basic.9y,unknown,no,no,cellular,may,thu,287,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,technician,married,basic.9y,no,no,no,cellular,may,thu,64,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,married,high.school,no,no,no,cellular,may,thu,244,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+26,management,single,university.degree,no,yes,no,cellular,may,thu,667,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+26,admin.,single,high.school,unknown,no,no,cellular,may,thu,136,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,management,single,university.degree,no,no,no,cellular,may,thu,715,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+40,admin.,divorced,high.school,no,yes,no,cellular,may,thu,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,16,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+44,admin.,married,basic.9y,unknown,yes,yes,cellular,may,thu,414,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+33,services,single,high.school,no,yes,no,cellular,may,thu,201,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,admin.,single,high.school,no,yes,no,cellular,may,thu,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+48,management,divorced,university.degree,unknown,no,no,cellular,may,thu,86,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+40,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,317,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,admin.,divorced,high.school,no,no,no,cellular,may,thu,145,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+38,services,married,high.school,no,yes,no,cellular,may,thu,532,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,technician,single,professional.course,no,no,no,cellular,may,thu,248,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+54,blue-collar,married,basic.9y,no,no,yes,cellular,may,thu,158,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+42,blue-collar,married,basic.9y,no,no,yes,cellular,may,thu,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+42,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,190,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,self-employed,single,professional.course,unknown,yes,no,cellular,may,thu,161,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+22,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,23,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+42,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,276,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,technician,single,professional.course,no,no,no,telephone,may,thu,7,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,married,high.school,no,yes,yes,cellular,may,thu,201,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,technician,single,basic.9y,no,no,no,cellular,may,thu,20,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+24,blue-collar,single,basic.9y,no,no,yes,cellular,may,thu,51,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+40,blue-collar,divorced,basic.9y,unknown,no,no,cellular,may,thu,467,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,services,single,high.school,no,no,yes,cellular,may,thu,603,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,thu,9,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,283,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+22,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,283,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,technician,married,professional.course,no,yes,no,cellular,may,thu,341,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,married,professional.course,no,yes,no,cellular,may,thu,102,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,married,professional.course,no,yes,no,cellular,may,thu,267,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+55,services,single,basic.9y,no,unknown,unknown,cellular,may,thu,717,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+27,admin.,married,professional.course,no,yes,no,cellular,may,thu,143,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+39,services,married,high.school,no,yes,no,cellular,may,thu,22,8,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+24,technician,married,professional.course,no,yes,yes,cellular,may,thu,428,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,484,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,self-employed,single,professional.course,unknown,no,no,cellular,may,thu,561,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+32,management,single,university.degree,no,yes,no,cellular,may,thu,149,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,married,professional.course,no,yes,no,cellular,may,thu,338,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,182,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,self-employed,single,university.degree,no,yes,yes,cellular,may,thu,73,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,married,professional.course,no,no,no,cellular,may,thu,584,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,blue-collar,married,professional.course,no,yes,no,cellular,may,thu,260,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,self-employed,single,university.degree,no,no,no,cellular,may,thu,185,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,self-employed,single,university.degree,no,no,no,cellular,may,thu,223,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+39,admin.,married,high.school,no,no,no,cellular,may,thu,76,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,technician,married,professional.course,no,yes,no,cellular,may,thu,590,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+48,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,214,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+32,entrepreneur,divorced,high.school,no,yes,no,cellular,may,thu,103,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+39,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,37,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,blue-collar,single,basic.9y,no,yes,yes,cellular,may,thu,273,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,single,high.school,no,no,no,cellular,may,thu,451,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+35,entrepreneur,married,professional.course,no,yes,no,telephone,may,thu,12,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,technician,single,unknown,no,no,no,cellular,may,thu,745,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes
+29,services,single,high.school,no,no,no,cellular,may,thu,854,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes
+27,admin.,married,professional.course,no,yes,no,cellular,may,thu,1166,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+39,admin.,married,high.school,no,no,yes,cellular,may,thu,105,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+47,entrepreneur,divorced,high.school,no,no,no,cellular,may,thu,8,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+23,admin.,married,high.school,no,no,yes,cellular,may,thu,7,5,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+26,self-employed,married,high.school,no,no,no,cellular,may,thu,159,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+25,services,single,high.school,no,no,no,cellular,may,thu,646,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+24,admin.,single,professional.course,no,no,no,cellular,may,thu,210,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,admin.,married,university.degree,no,no,yes,cellular,may,thu,17,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,297,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+39,management,single,high.school,no,no,yes,cellular,may,thu,365,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+30,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,162,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,single,university.degree,no,yes,yes,cellular,may,thu,255,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+41,technician,married,professional.course,no,yes,no,cellular,may,thu,377,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+37,housemaid,single,high.school,no,yes,no,cellular,may,thu,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,may,thu,133,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+37,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,345,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+31,blue-collar,married,basic.6y,unknown,no,no,cellular,may,thu,263,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,management,married,professional.course,no,no,no,cellular,may,thu,125,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+39,technician,single,basic.4y,unknown,yes,no,cellular,may,thu,411,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+49,services,married,high.school,no,no,no,cellular,may,thu,67,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,blue-collar,single,basic.4y,no,yes,no,cellular,may,thu,279,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+38,services,single,high.school,no,yes,yes,cellular,may,thu,456,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes
+25,services,married,high.school,no,no,no,cellular,may,thu,112,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,married,basic.6y,unknown,no,no,cellular,may,thu,680,1,6,1,success,-1.8,92.893,-46.2,1.266,5099.1,yes
+49,services,married,high.school,no,yes,no,cellular,may,thu,152,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,services,married,high.school,no,yes,no,cellular,may,thu,21,12,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+52,blue-collar,unknown,basic.4y,no,no,no,cellular,may,thu,1180,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+32,technician,single,university.degree,no,no,no,cellular,may,thu,14,8,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,services,single,high.school,no,no,no,cellular,may,thu,243,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,single,high.school,no,yes,no,cellular,may,thu,17,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+25,student,single,high.school,no,no,no,cellular,may,thu,12,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,535,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+44,services,married,high.school,no,no,no,telephone,may,thu,188,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+52,technician,married,basic.6y,unknown,no,no,cellular,may,thu,498,1,12,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+32,admin.,single,high.school,no,yes,no,cellular,may,thu,149,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+32,technician,single,university.degree,no,yes,no,telephone,may,thu,62,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+52,admin.,married,university.degree,unknown,no,no,cellular,may,thu,877,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,entrepreneur,single,university.degree,no,yes,yes,cellular,may,thu,204,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,entrepreneur,married,basic.6y,no,yes,no,cellular,may,thu,210,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+30,student,unknown,basic.9y,no,no,no,cellular,may,thu,155,1,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+32,blue-collar,married,university.degree,no,no,yes,cellular,may,thu,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,management,married,professional.course,no,no,no,cellular,may,thu,578,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+54,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,thu,303,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+23,admin.,single,high.school,no,yes,no,cellular,may,thu,258,1,10,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+44,services,married,high.school,no,no,yes,cellular,may,thu,786,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+29,services,married,high.school,unknown,yes,no,cellular,may,thu,161,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,entrepreneur,single,university.degree,no,yes,no,cellular,may,thu,633,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+32,admin.,married,university.degree,no,no,no,cellular,may,thu,57,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+46,services,married,high.school,no,no,no,cellular,may,thu,107,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,divorced,high.school,no,no,no,cellular,may,thu,307,1,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,yes
+23,self-employed,single,basic.9y,no,yes,no,cellular,may,thu,64,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+41,services,married,high.school,no,no,no,cellular,may,thu,116,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+32,entrepreneur,divorced,high.school,no,yes,no,cellular,may,thu,318,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+22,student,single,high.school,no,yes,no,cellular,may,thu,47,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,self-employed,married,high.school,no,no,no,cellular,may,thu,183,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,services,married,high.school,no,yes,no,cellular,may,thu,343,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,single,basic.9y,no,yes,no,telephone,may,thu,230,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,technician,single,university.degree,no,no,no,cellular,may,thu,138,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,thu,11,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,155,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+24,services,single,high.school,no,no,no,cellular,may,thu,47,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+47,services,married,basic.6y,no,yes,no,cellular,may,thu,201,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+27,technician,married,professional.course,no,yes,yes,telephone,may,thu,289,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+52,entrepreneur,single,university.degree,no,yes,no,cellular,may,thu,11,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+38,blue-collar,married,basic.6y,unknown,no,no,cellular,may,thu,72,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+36,blue-collar,married,basic.6y,no,yes,yes,cellular,may,thu,273,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+24,services,single,high.school,no,no,yes,cellular,may,thu,91,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,services,married,high.school,unknown,yes,no,cellular,may,thu,23,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+45,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,43,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,admin.,single,university.degree,no,no,no,telephone,may,thu,121,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,449,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+45,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,8,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+24,services,single,high.school,no,no,no,cellular,may,thu,524,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+25,student,single,university.degree,no,no,no,telephone,may,thu,13,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+53,services,married,basic.6y,no,yes,no,cellular,may,thu,157,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+42,services,divorced,high.school,no,no,no,cellular,may,thu,72,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,112,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,entrepreneur,single,university.degree,no,no,no,cellular,may,thu,50,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+35,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,225,1,12,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,42,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+38,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,35,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,607,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+37,management,married,university.degree,no,no,yes,cellular,may,thu,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,255,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+24,self-employed,single,university.degree,no,no,no,cellular,may,thu,334,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+40,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,104,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,single,basic.9y,unknown,no,no,cellular,may,thu,1075,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes
+36,admin.,single,high.school,no,yes,no,cellular,may,thu,235,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,technician,single,high.school,no,no,no,cellular,may,thu,64,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,married,high.school,no,no,no,cellular,may,thu,137,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+42,services,divorced,high.school,no,yes,yes,cellular,may,thu,874,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes
+23,student,single,university.degree,no,yes,no,cellular,may,thu,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+40,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,433,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,technician,single,high.school,no,no,no,cellular,may,thu,215,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,may,thu,287,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+47,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,391,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+39,blue-collar,single,basic.4y,no,no,no,cellular,may,thu,93,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+44,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,16,9,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,523,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,225,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+21,student,single,high.school,no,no,no,cellular,may,thu,24,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,married,basic.6y,no,yes,yes,cellular,may,thu,298,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+25,management,married,university.degree,no,yes,no,cellular,may,thu,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,services,single,university.degree,no,unknown,unknown,telephone,may,thu,93,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,admin.,married,university.degree,no,no,yes,cellular,may,thu,234,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+24,admin.,single,high.school,no,no,no,cellular,may,thu,797,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,419,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+46,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,admin.,married,basic.6y,no,yes,no,cellular,may,thu,83,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,single,high.school,no,yes,no,cellular,may,thu,30,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,135,1,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,single,high.school,no,yes,no,cellular,may,thu,97,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,management,married,university.degree,no,yes,no,cellular,may,thu,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,admin.,married,basic.6y,no,no,no,cellular,may,thu,586,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,single,high.school,no,no,no,cellular,may,thu,492,1,12,2,failure,-1.8,92.893,-46.2,1.266,5099.1,yes
+23,blue-collar,single,basic.4y,unknown,no,yes,cellular,may,thu,208,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+21,admin.,single,high.school,no,no,yes,cellular,may,thu,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,technician,married,professional.course,no,yes,no,cellular,may,thu,703,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,1106,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+24,management,single,university.degree,no,yes,no,telephone,may,thu,151,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+48,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,506,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,single,basic.4y,no,no,no,cellular,may,thu,282,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+57,admin.,married,basic.9y,no,no,no,cellular,may,thu,563,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+30,technician,single,professional.course,no,yes,no,cellular,may,thu,377,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+41,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,174,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+50,services,divorced,high.school,no,yes,no,cellular,may,thu,199,15,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,services,single,high.school,no,yes,no,cellular,may,thu,437,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,single,high.school,unknown,yes,no,cellular,may,thu,175,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+46,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,386,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,233,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,services,single,high.school,no,yes,no,cellular,may,thu,74,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+23,student,single,high.school,no,no,no,cellular,may,thu,184,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,111,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+53,admin.,married,high.school,no,no,no,cellular,may,thu,168,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,156,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,admin.,divorced,high.school,no,yes,no,cellular,may,thu,66,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+32,services,divorced,high.school,no,no,no,cellular,may,thu,97,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+34,entrepreneur,married,high.school,no,yes,yes,cellular,may,thu,97,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+42,admin.,married,high.school,no,yes,no,cellular,may,thu,160,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,blue-collar,married,basic.9y,no,unknown,unknown,cellular,may,thu,1020,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+25,student,single,high.school,no,yes,no,cellular,may,thu,149,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,services,divorced,high.school,no,yes,no,cellular,may,thu,202,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,management,single,university.degree,no,yes,no,telephone,may,thu,112,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+28,technician,married,university.degree,no,no,no,telephone,may,thu,154,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+23,admin.,single,high.school,no,yes,no,cellular,may,thu,337,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,single,high.school,unknown,no,no,cellular,may,thu,1723,1,12,1,success,-1.8,92.893,-46.2,1.266,5099.1,yes
+45,admin.,married,unknown,no,no,no,cellular,may,thu,177,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+25,blue-collar,single,basic.6y,no,yes,no,cellular,may,thu,95,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+44,technician,single,professional.course,unknown,yes,yes,cellular,may,thu,246,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,294,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,management,single,university.degree,no,no,no,cellular,may,thu,162,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+28,services,single,professional.course,no,yes,no,cellular,may,thu,406,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+35,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,20,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,technician,married,high.school,unknown,yes,no,cellular,may,thu,115,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+43,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,543,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,self-employed,single,university.degree,no,yes,no,cellular,may,thu,73,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+25,technician,married,university.degree,no,no,yes,cellular,may,thu,136,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,services,single,high.school,no,no,no,cellular,may,thu,138,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,services,single,high.school,no,yes,no,cellular,may,thu,118,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+37,services,single,high.school,no,yes,no,cellular,may,thu,30,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,married,professional.course,no,yes,no,cellular,may,thu,444,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,married,professional.course,no,no,no,cellular,may,thu,466,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,married,professional.course,no,unknown,unknown,cellular,may,thu,110,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,may,thu,97,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+52,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,may,thu,7,7,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,may,thu,172,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+42,management,divorced,university.degree,no,yes,no,cellular,may,thu,146,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+35,technician,married,professional.course,no,yes,no,cellular,may,thu,16,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,admin.,single,high.school,no,yes,no,cellular,may,thu,150,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,services,single,university.degree,no,yes,no,cellular,may,thu,163,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,services,single,high.school,no,yes,no,cellular,may,thu,88,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+34,technician,single,professional.course,no,yes,no,cellular,may,thu,277,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+40,services,divorced,high.school,no,no,no,cellular,may,thu,96,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+24,technician,single,professional.course,no,no,no,cellular,may,thu,175,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+23,admin.,single,high.school,no,no,no,cellular,may,thu,22,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,admin.,married,high.school,no,unknown,unknown,cellular,may,thu,430,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,student,single,high.school,no,unknown,unknown,cellular,may,thu,97,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,management,married,university.degree,no,no,no,cellular,may,thu,164,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,88,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+37,blue-collar,married,high.school,unknown,yes,no,cellular,may,thu,71,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+21,services,single,high.school,no,yes,no,cellular,may,thu,136,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,92,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,17,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+46,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,155,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,199,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+51,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,159,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+37,services,divorced,high.school,no,no,no,cellular,may,thu,36,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,technician,single,university.degree,no,yes,no,cellular,may,thu,43,8,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+23,admin.,single,high.school,no,yes,no,cellular,may,thu,70,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,334,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,self-employed,married,high.school,no,yes,no,cellular,may,thu,107,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+39,admin.,married,high.school,no,no,no,cellular,may,thu,806,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+23,technician,single,high.school,no,no,no,cellular,may,thu,104,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,admin.,single,university.degree,no,no,no,telephone,may,thu,217,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,blue-collar,single,high.school,no,yes,no,cellular,may,thu,216,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,may,thu,143,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+28,management,single,basic.9y,no,yes,no,cellular,may,thu,106,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,226,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+28,management,single,basic.9y,no,yes,no,telephone,may,thu,166,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,entrepreneur,single,university.degree,no,yes,no,cellular,may,thu,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+23,services,single,basic.9y,no,yes,no,cellular,may,thu,64,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+36,admin.,married,university.degree,no,no,no,cellular,may,thu,105,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+22,student,single,high.school,no,yes,no,cellular,may,thu,99,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+38,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,130,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,technician,single,professional.course,no,no,no,cellular,may,thu,256,1,11,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+35,blue-collar,married,high.school,no,yes,no,cellular,may,thu,121,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,technician,single,professional.course,no,yes,no,cellular,may,thu,285,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+40,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,140,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,may,thu,167,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,technician,single,professional.course,no,yes,no,cellular,may,thu,691,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+27,technician,single,professional.course,no,no,no,cellular,may,thu,311,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,164,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+23,technician,single,high.school,no,no,yes,cellular,may,thu,1129,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+24,blue-collar,single,basic.4y,no,yes,yes,cellular,may,thu,109,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,married,university.degree,no,yes,yes,cellular,may,thu,444,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+48,admin.,divorced,high.school,no,yes,no,cellular,may,thu,265,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,technician,married,university.degree,no,yes,yes,cellular,may,thu,175,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,191,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes
+39,technician,married,professional.course,no,yes,no,cellular,may,thu,292,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+39,technician,married,professional.course,no,no,no,cellular,may,thu,239,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,59,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,471,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+46,services,married,high.school,no,yes,no,cellular,may,thu,182,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,933,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+32,management,married,high.school,no,unknown,unknown,cellular,may,thu,396,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,technician,married,university.degree,no,yes,no,cellular,may,thu,432,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,blue-collar,single,basic.9y,no,yes,yes,cellular,may,thu,224,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+33,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,616,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+42,technician,married,professional.course,no,yes,yes,cellular,may,thu,50,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,admin.,single,basic.9y,no,yes,no,cellular,may,thu,111,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,admin.,single,high.school,no,yes,no,cellular,may,thu,685,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,134,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+54,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,423,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,single,basic.9y,unknown,no,no,cellular,may,thu,65,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,married,basic.9y,unknown,unknown,unknown,cellular,may,thu,551,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+58,entrepreneur,divorced,professional.course,no,yes,no,cellular,may,thu,165,5,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+51,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,668,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+28,student,single,university.degree,no,yes,no,cellular,may,thu,42,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+24,services,married,high.school,no,no,no,cellular,may,thu,177,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,single,high.school,no,yes,yes,cellular,may,thu,99,7,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,108,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+49,services,married,high.school,no,yes,yes,cellular,may,thu,291,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,admin.,married,high.school,no,yes,no,cellular,may,thu,170,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,services,married,high.school,no,yes,no,cellular,may,thu,117,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+57,services,divorced,basic.4y,no,no,no,cellular,may,thu,161,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+25,blue-collar,single,high.school,no,yes,no,cellular,may,thu,330,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,technician,single,professional.course,no,no,no,cellular,may,thu,480,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+53,services,married,basic.6y,no,yes,no,cellular,may,thu,24,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,admin.,married,high.school,no,no,no,cellular,may,thu,172,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+23,student,single,high.school,no,yes,no,cellular,may,thu,143,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+39,entrepreneur,married,basic.9y,unknown,yes,yes,cellular,may,thu,158,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,88,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,blue-collar,married,basic.6y,no,yes,yes,cellular,may,thu,157,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+40,technician,single,professional.course,unknown,yes,no,cellular,may,thu,111,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+54,self-employed,divorced,professional.course,no,yes,no,cellular,may,thu,553,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+24,student,single,basic.9y,no,yes,no,telephone,may,thu,25,8,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,admin.,single,high.school,no,no,no,cellular,may,thu,433,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+40,services,divorced,high.school,no,no,yes,cellular,may,thu,632,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,115,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+33,management,single,university.degree,no,no,no,cellular,may,thu,228,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+37,housemaid,single,high.school,no,yes,no,cellular,may,thu,142,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,married,basic.6y,no,yes,yes,cellular,may,thu,172,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+40,blue-collar,married,basic.6y,no,yes,yes,cellular,may,thu,246,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,blue-collar,single,basic.6y,no,yes,no,cellular,may,thu,329,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,technician,single,basic.9y,no,yes,no,cellular,may,thu,479,1,11,1,success,-1.8,92.893,-46.2,1.266,5099.1,yes
+30,technician,married,university.degree,no,yes,no,cellular,may,thu,46,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,may,thu,95,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+48,services,divorced,basic.9y,no,unknown,unknown,cellular,may,thu,67,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+25,admin.,single,high.school,no,yes,no,cellular,may,thu,888,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+31,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,185,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,blue-collar,married,professional.course,no,no,no,cellular,may,thu,1071,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+35,admin.,married,university.degree,no,no,no,cellular,may,thu,229,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,divorced,university.degree,no,unknown,unknown,telephone,may,thu,213,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,thu,293,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+46,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,46,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,technician,married,university.degree,no,no,yes,cellular,may,thu,169,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+41,technician,married,professional.course,no,no,yes,cellular,may,thu,226,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+42,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,113,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,admin.,single,high.school,no,yes,no,cellular,may,thu,284,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+39,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,may,thu,76,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,married,high.school,no,no,yes,cellular,may,thu,151,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,management,married,university.degree,no,yes,no,telephone,may,thu,68,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+37,technician,single,professional.course,no,yes,no,cellular,may,thu,56,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+32,technician,single,professional.course,no,no,no,cellular,may,thu,1060,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+24,entrepreneur,single,university.degree,no,no,no,cellular,may,thu,196,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,services,single,high.school,no,yes,no,cellular,may,thu,332,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,may,thu,1543,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+28,blue-collar,married,basic.6y,unknown,no,yes,cellular,may,thu,67,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,blue-collar,married,basic.6y,no,no,yes,cellular,may,thu,24,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+34,unemployed,married,basic.9y,no,yes,no,cellular,may,thu,218,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+42,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,131,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+40,admin.,divorced,basic.9y,no,yes,no,cellular,may,thu,688,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+26,admin.,single,university.degree,no,yes,no,cellular,may,thu,400,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+42,services,married,high.school,no,yes,no,cellular,may,thu,164,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,123,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,services,single,high.school,no,no,no,cellular,may,thu,99,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+30,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,362,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,entrepreneur,married,professional.course,no,no,yes,cellular,may,thu,111,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,thu,502,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,444,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+32,admin.,married,university.degree,no,no,no,cellular,may,thu,366,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,services,single,high.school,no,yes,no,cellular,may,thu,367,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+40,technician,single,professional.course,unknown,yes,no,cellular,may,thu,17,8,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,admin.,single,high.school,no,yes,no,cellular,may,thu,464,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,technician,single,professional.course,no,yes,yes,cellular,may,thu,158,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+22,technician,single,professional.course,no,no,no,telephone,may,thu,29,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+46,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,221,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+49,entrepreneur,married,university.degree,unknown,yes,yes,cellular,may,thu,197,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+52,admin.,married,university.degree,unknown,no,yes,cellular,may,thu,183,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+41,admin.,divorced,high.school,unknown,yes,yes,cellular,may,thu,380,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,entrepreneur,married,university.degree,no,yes,no,cellular,may,thu,113,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,technician,single,professional.course,no,yes,no,cellular,may,thu,228,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,thu,57,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,535,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+52,blue-collar,unknown,basic.4y,no,unknown,unknown,cellular,may,thu,610,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+44,entrepreneur,married,university.degree,no,yes,yes,cellular,may,thu,91,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,265,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,43,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+38,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,299,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+42,technician,married,professional.course,no,yes,no,cellular,may,thu,196,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+51,technician,married,professional.course,no,unknown,unknown,cellular,may,thu,1462,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,married,professional.course,no,yes,yes,cellular,may,thu,162,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,304,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+24,blue-collar,single,unknown,no,yes,no,cellular,may,thu,487,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+42,technician,married,professional.course,no,yes,no,cellular,may,thu,251,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,services,single,university.degree,no,yes,no,cellular,may,thu,261,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,management,single,university.degree,no,yes,no,cellular,may,thu,8,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+45,self-employed,married,university.degree,no,yes,no,cellular,may,thu,171,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+39,admin.,married,high.school,no,yes,no,cellular,may,thu,112,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,self-employed,married,basic.9y,no,yes,no,cellular,may,thu,374,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,single,professional.course,no,yes,no,cellular,may,thu,60,5,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+37,technician,married,high.school,unknown,no,yes,cellular,may,thu,102,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,176,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,admin.,divorced,university.degree,no,yes,no,cellular,may,thu,241,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,admin.,single,high.school,no,yes,no,cellular,may,thu,566,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+31,blue-collar,married,professional.course,no,yes,no,cellular,may,thu,303,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+26,blue-collar,married,professional.course,no,yes,no,cellular,may,thu,649,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+25,student,single,high.school,no,yes,no,cellular,may,thu,959,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes
+31,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,134,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,services,married,high.school,no,no,no,cellular,may,thu,353,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+30,admin.,married,university.degree,no,no,no,telephone,may,thu,72,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,337,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,thu,93,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+27,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,291,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,admin.,single,university.degree,no,no,yes,cellular,may,thu,546,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,252,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+54,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,532,2,6,2,success,-1.8,92.893,-46.2,1.266,5099.1,yes
+31,blue-collar,married,basic.4y,no,no,yes,cellular,may,thu,204,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+52,technician,married,basic.6y,unknown,no,no,cellular,may,thu,152,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,267,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,admin.,divorced,high.school,no,yes,no,cellular,may,thu,406,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,admin.,single,high.school,no,yes,no,cellular,may,thu,1094,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+26,admin.,single,university.degree,no,yes,no,cellular,may,thu,320,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,single,basic.9y,unknown,no,no,cellular,may,thu,884,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes
+29,technician,single,high.school,unknown,yes,no,cellular,may,thu,410,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,services,single,professional.course,no,no,no,telephone,may,thu,210,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+23,technician,single,high.school,no,no,no,cellular,may,thu,198,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,may,thu,241,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+47,blue-collar,divorced,basic.9y,no,no,no,cellular,may,thu,16,8,6,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,admin.,single,basic.9y,unknown,no,no,cellular,may,thu,460,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+37,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,thu,604,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+39,management,married,basic.4y,unknown,yes,no,telephone,may,thu,427,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+45,entrepreneur,divorced,university.degree,no,yes,yes,telephone,may,thu,72,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,married,high.school,no,no,no,cellular,may,thu,350,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,blue-collar,married,basic.6y,no,no,yes,cellular,may,thu,93,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,admin.,single,university.degree,no,yes,yes,cellular,may,thu,176,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+24,admin.,married,high.school,no,yes,no,cellular,may,thu,118,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+39,admin.,single,high.school,no,no,no,cellular,may,thu,387,10,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+48,services,single,basic.4y,unknown,yes,yes,cellular,may,thu,106,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+37,technician,single,university.degree,no,no,no,cellular,may,thu,336,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+32,blue-collar,single,high.school,no,yes,no,cellular,may,thu,205,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+43,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,135,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,blue-collar,single,basic.4y,unknown,yes,no,telephone,may,thu,42,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+42,blue-collar,married,unknown,unknown,no,yes,cellular,may,thu,428,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+23,technician,single,high.school,no,yes,no,cellular,may,thu,240,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+60,retired,married,high.school,no,no,no,cellular,may,thu,512,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,entrepreneur,single,basic.9y,unknown,yes,yes,cellular,may,thu,75,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,thu,88,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,services,single,high.school,no,yes,no,cellular,may,thu,41,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,27,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,technician,married,basic.9y,no,yes,no,cellular,may,thu,181,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+38,technician,single,professional.course,no,yes,no,cellular,may,thu,306,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,admin.,divorced,university.degree,no,no,no,telephone,may,thu,90,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+38,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,15,9,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+38,entrepreneur,married,university.degree,no,no,no,cellular,may,thu,136,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+46,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,154,2,12,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+43,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,305,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+40,management,married,university.degree,unknown,no,no,cellular,may,thu,190,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,47,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,technician,married,university.degree,no,yes,yes,cellular,may,thu,172,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+39,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,thu,170,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,204,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,technician,single,professional.course,no,yes,no,cellular,may,thu,294,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,self-employed,single,university.degree,no,no,no,cellular,may,thu,367,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+25,admin.,single,high.school,no,yes,no,cellular,may,thu,173,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,technician,single,high.school,no,no,no,cellular,may,thu,62,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,thu,113,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,blue-collar,married,high.school,no,no,no,cellular,may,thu,136,5,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+44,technician,married,professional.course,no,yes,yes,cellular,may,thu,292,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,blue-collar,married,basic.4y,no,no,yes,cellular,may,thu,80,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,technician,married,high.school,no,yes,no,cellular,may,thu,90,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,blue-collar,married,high.school,no,no,no,cellular,may,thu,144,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+24,management,married,university.degree,no,no,no,telephone,may,thu,28,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,married,basic.9y,no,no,yes,cellular,may,thu,178,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+48,services,single,basic.4y,unknown,yes,yes,cellular,may,thu,306,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,admin.,married,high.school,no,no,yes,cellular,may,thu,386,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,unemployed,married,basic.9y,unknown,yes,yes,cellular,may,thu,114,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+43,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,493,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,single,high.school,no,yes,yes,telephone,may,thu,33,7,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,services,single,high.school,unknown,yes,no,cellular,may,thu,452,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,single,basic.9y,no,yes,yes,cellular,may,thu,167,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,125,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,services,married,high.school,no,no,no,cellular,may,thu,185,10,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,341,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,services,married,high.school,no,yes,no,cellular,may,thu,223,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+25,entrepreneur,single,university.degree,no,yes,no,cellular,may,thu,415,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+20,blue-collar,single,high.school,no,yes,no,cellular,may,thu,908,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+24,services,married,high.school,no,no,no,cellular,may,thu,166,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+55,admin.,divorced,university.degree,unknown,no,no,cellular,may,thu,168,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+30,student,single,unknown,no,no,no,cellular,may,thu,486,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+23,admin.,single,high.school,no,no,no,cellular,may,thu,67,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,technician,single,basic.9y,no,no,no,telephone,may,thu,167,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+25,blue-collar,single,high.school,unknown,no,yes,cellular,may,thu,338,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+24,services,married,high.school,no,no,no,cellular,may,thu,10,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+21,student,single,high.school,unknown,yes,no,cellular,may,thu,142,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+32,admin.,married,university.degree,no,yes,no,telephone,may,thu,151,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,admin.,single,university.degree,no,yes,yes,cellular,may,thu,384,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,services,married,high.school,no,no,no,cellular,may,thu,192,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,admin.,single,high.school,no,yes,no,cellular,may,thu,212,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,single,basic.6y,unknown,no,no,cellular,may,thu,100,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+40,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,308,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,admin.,single,high.school,no,yes,no,cellular,may,thu,54,11,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,services,single,high.school,no,no,yes,telephone,may,thu,30,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,340,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+35,services,single,high.school,no,no,yes,telephone,may,thu,225,7,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+58,entrepreneur,divorced,professional.course,no,yes,no,telephone,may,thu,346,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+38,blue-collar,married,basic.4y,unknown,no,no,cellular,may,thu,197,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,technician,single,professional.course,no,yes,no,cellular,may,thu,290,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,admin.,married,university.degree,no,yes,yes,cellular,may,thu,8,9,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,single,basic.6y,unknown,yes,no,cellular,may,thu,72,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+22,student,single,high.school,no,yes,yes,telephone,may,thu,382,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+57,retired,married,basic.6y,no,no,no,cellular,may,thu,100,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+59,management,married,basic.4y,unknown,unknown,unknown,cellular,may,thu,165,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+28,student,single,university.degree,no,no,yes,cellular,may,thu,647,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+25,management,married,university.degree,no,no,no,cellular,may,thu,506,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,housemaid,single,unknown,no,yes,yes,cellular,may,fri,140,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+30,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,168,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,management,single,basic.9y,no,yes,no,cellular,may,fri,253,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,admin.,single,high.school,no,yes,no,cellular,may,fri,195,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+32,admin.,single,unknown,no,yes,no,cellular,may,fri,235,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,may,fri,165,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+23,blue-collar,single,unknown,no,no,no,cellular,may,fri,68,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+32,services,divorced,high.school,unknown,yes,no,cellular,may,fri,133,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+55,blue-collar,married,professional.course,no,no,yes,cellular,may,fri,100,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+35,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,676,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+26,blue-collar,single,high.school,no,no,no,cellular,may,fri,49,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,technician,single,professional.course,no,no,no,cellular,may,fri,153,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+21,services,single,high.school,no,no,no,cellular,may,fri,103,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,blue-collar,married,professional.course,no,yes,yes,cellular,may,fri,19,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,technician,divorced,professional.course,no,yes,yes,cellular,may,fri,296,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+24,services,single,high.school,no,no,no,cellular,may,fri,145,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,may,fri,69,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+37,admin.,single,high.school,no,yes,no,telephone,may,fri,26,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+23,admin.,single,unknown,no,yes,no,telephone,may,fri,17,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+24,blue-collar,married,basic.9y,no,unknown,unknown,cellular,may,fri,323,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+28,services,single,high.school,no,yes,yes,cellular,may,fri,9,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,460,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+44,admin.,married,high.school,no,yes,yes,cellular,may,fri,111,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+28,admin.,single,university.degree,no,no,no,cellular,may,fri,165,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+36,admin.,single,high.school,no,yes,yes,cellular,may,fri,10,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,admin.,single,high.school,no,no,no,cellular,may,fri,113,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,technician,single,university.degree,no,no,no,telephone,may,fri,12,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+42,entrepreneur,married,high.school,no,yes,no,cellular,may,fri,9,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+31,technician,single,university.degree,no,yes,no,telephone,may,fri,14,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+24,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,fri,8,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,management,single,professional.course,no,no,no,cellular,may,fri,194,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,blue-collar,divorced,basic.4y,no,no,no,cellular,may,fri,667,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+27,admin.,married,university.degree,no,yes,no,cellular,may,fri,670,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+29,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,14,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+28,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,115,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+28,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,14,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+31,admin.,single,high.school,no,yes,no,telephone,may,fri,289,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+35,technician,married,professional.course,no,yes,no,cellular,may,fri,14,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,self-employed,single,professional.course,no,yes,no,telephone,may,fri,10,7,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+28,blue-collar,single,basic.6y,no,yes,no,cellular,may,fri,354,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+23,admin.,single,high.school,no,yes,no,cellular,may,fri,236,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+26,technician,single,basic.9y,no,no,no,cellular,may,fri,62,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+29,blue-collar,single,unknown,no,yes,no,cellular,may,fri,61,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,fri,103,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+41,management,married,university.degree,no,no,no,cellular,may,fri,172,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+33,blue-collar,married,basic.6y,unknown,yes,yes,cellular,may,fri,306,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+40,admin.,divorced,high.school,no,yes,no,cellular,may,fri,164,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+54,retired,divorced,university.degree,no,yes,no,cellular,may,fri,778,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+45,entrepreneur,married,basic.9y,no,yes,no,telephone,may,fri,39,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,admin.,single,high.school,no,no,no,cellular,may,fri,1181,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,entrepreneur,single,university.degree,no,no,no,cellular,may,fri,124,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,blue-collar,single,unknown,no,yes,yes,cellular,may,fri,162,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+51,technician,married,basic.9y,no,yes,no,cellular,may,fri,45,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,admin.,married,basic.6y,no,yes,no,cellular,may,fri,16,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+32,technician,single,professional.course,no,yes,no,cellular,may,fri,347,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,entrepreneur,single,university.degree,no,yes,yes,cellular,may,fri,233,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+28,entrepreneur,married,basic.9y,unknown,no,no,cellular,may,fri,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+53,services,married,university.degree,no,no,no,cellular,may,fri,136,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,admin.,single,high.school,no,yes,no,cellular,may,fri,655,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+35,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,196,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,entrepreneur,single,university.degree,no,yes,no,cellular,may,fri,452,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+31,admin.,single,university.degree,no,no,no,cellular,may,fri,56,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+31,admin.,single,university.degree,no,yes,no,cellular,may,fri,33,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+28,admin.,married,high.school,no,no,no,cellular,may,fri,35,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+33,services,married,high.school,no,yes,no,cellular,may,fri,227,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+30,admin.,single,university.degree,no,no,no,cellular,may,fri,197,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+28,entrepreneur,married,basic.9y,unknown,yes,no,cellular,may,fri,78,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,admin.,single,university.degree,no,yes,yes,cellular,may,fri,191,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+54,management,married,university.degree,no,yes,yes,cellular,may,fri,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,technician,single,high.school,no,yes,no,cellular,may,fri,642,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+54,management,married,university.degree,no,yes,no,cellular,may,fri,173,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+31,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,fri,73,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+42,services,married,high.school,no,no,no,cellular,may,fri,551,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+29,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,607,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+35,blue-collar,divorced,basic.9y,no,no,no,cellular,may,fri,409,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+30,management,married,university.degree,no,no,no,cellular,may,fri,67,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,11,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+22,technician,single,university.degree,no,no,no,cellular,may,fri,382,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+27,technician,single,unknown,no,no,no,cellular,may,fri,7,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+36,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,239,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+24,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,54,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,blue-collar,divorced,high.school,no,yes,no,cellular,may,fri,144,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+32,services,single,high.school,no,no,no,cellular,may,fri,123,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+42,admin.,married,high.school,no,yes,no,cellular,may,fri,270,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+45,admin.,married,university.degree,no,yes,no,cellular,may,fri,160,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+30,admin.,single,university.degree,no,no,no,cellular,may,fri,208,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+43,entrepreneur,married,professional.course,no,yes,no,cellular,may,fri,311,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+45,admin.,married,university.degree,no,yes,yes,cellular,may,fri,300,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+45,admin.,married,university.degree,no,yes,no,cellular,may,fri,259,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,blue-collar,divorced,high.school,no,no,no,cellular,may,fri,760,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+39,technician,divorced,high.school,no,yes,no,cellular,may,fri,21,8,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+39,technician,divorced,professional.course,no,yes,no,cellular,may,fri,128,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+27,blue-collar,single,basic.6y,no,no,yes,telephone,may,fri,146,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+27,admin.,married,high.school,no,no,no,cellular,may,fri,71,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,169,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+56,management,married,university.degree,unknown,yes,yes,cellular,may,fri,302,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+44,blue-collar,married,high.school,no,yes,no,cellular,may,fri,198,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+41,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,302,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+46,services,married,high.school,unknown,yes,no,cellular,may,fri,6,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+41,entrepreneur,divorced,unknown,no,no,no,telephone,may,fri,64,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,services,married,high.school,no,yes,no,cellular,may,fri,49,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+41,entrepreneur,divorced,unknown,no,no,no,cellular,may,fri,242,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,124,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+28,blue-collar,single,basic.6y,no,yes,yes,cellular,may,fri,20,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,blue-collar,divorced,high.school,no,yes,no,cellular,may,fri,1452,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+41,entrepreneur,divorced,unknown,no,yes,no,cellular,may,fri,317,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+55,services,married,high.school,no,no,no,cellular,may,fri,95,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,retired,single,basic.9y,no,no,no,cellular,may,fri,16,8,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+29,blue-collar,divorced,unknown,unknown,no,no,cellular,may,fri,67,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,241,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+45,services,married,high.school,unknown,yes,no,cellular,may,fri,250,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+24,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,7,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+41,blue-collar,married,basic.6y,no,yes,no,cellular,may,fri,432,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+51,technician,married,professional.course,no,yes,no,cellular,may,fri,153,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+50,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,67,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+43,blue-collar,married,high.school,no,yes,no,cellular,may,fri,48,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+25,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,72,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+52,self-employed,divorced,university.degree,no,yes,no,cellular,may,fri,158,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+33,admin.,married,high.school,no,yes,no,cellular,may,fri,148,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,admin.,married,university.degree,no,no,no,cellular,may,fri,377,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+53,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,fri,367,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+41,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+56,services,married,high.school,unknown,yes,no,cellular,may,fri,169,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+56,services,married,high.school,unknown,no,no,cellular,may,fri,217,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+42,self-employed,married,professional.course,unknown,yes,no,cellular,may,fri,50,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+42,self-employed,married,professional.course,unknown,no,no,cellular,may,fri,160,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,technician,divorced,professional.course,no,no,no,cellular,may,fri,64,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,fri,612,1,999,2,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+56,services,married,high.school,unknown,no,no,cellular,may,fri,310,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,technician,divorced,professional.course,no,yes,no,cellular,may,fri,7,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+25,technician,single,basic.9y,no,yes,no,cellular,may,fri,14,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+56,services,married,high.school,unknown,yes,no,cellular,may,fri,373,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,technician,divorced,university.degree,no,no,no,cellular,may,fri,55,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+59,admin.,divorced,university.degree,no,no,no,cellular,may,fri,58,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,may,fri,180,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+35,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,13,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+43,services,married,basic.6y,no,yes,no,cellular,may,fri,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+25,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,64,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+56,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,520,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,technician,divorced,professional.course,no,yes,no,cellular,may,fri,1190,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+35,services,single,high.school,no,unknown,unknown,cellular,may,fri,119,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+42,self-employed,married,professional.course,unknown,unknown,unknown,cellular,may,fri,665,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+40,entrepreneur,married,high.school,no,no,no,cellular,may,fri,132,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,391,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,technician,single,professional.course,no,yes,no,cellular,may,fri,26,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+46,services,divorced,basic.4y,no,no,no,cellular,may,fri,493,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+55,admin.,married,high.school,unknown,yes,no,cellular,may,fri,41,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+59,admin.,divorced,university.degree,no,yes,no,cellular,may,fri,899,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+36,technician,married,professional.course,no,yes,no,cellular,may,fri,157,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,admin.,single,university.degree,unknown,yes,no,cellular,may,fri,104,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+27,technician,single,professional.course,no,yes,no,cellular,may,fri,282,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,8,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+53,services,married,basic.6y,no,no,no,cellular,may,fri,101,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+53,services,married,basic.6y,no,yes,no,cellular,may,fri,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+46,admin.,married,high.school,no,yes,no,cellular,may,fri,39,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+37,unemployed,married,university.degree,no,unknown,unknown,cellular,may,fri,34,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+33,blue-collar,single,basic.4y,no,yes,no,telephone,may,fri,23,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+27,blue-collar,married,basic.9y,no,no,yes,cellular,may,fri,12,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+44,management,married,university.degree,no,yes,no,cellular,may,fri,217,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+55,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,77,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+29,blue-collar,married,basic.6y,no,unknown,unknown,telephone,may,fri,8,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+26,technician,married,professional.course,no,yes,no,cellular,may,fri,11,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+28,technician,single,professional.course,no,yes,no,telephone,may,fri,8,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,admin.,single,university.degree,no,no,no,cellular,may,fri,24,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+38,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,48,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+35,management,single,university.degree,no,yes,no,cellular,may,fri,233,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+30,services,single,high.school,no,yes,no,cellular,may,fri,82,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+37,admin.,single,high.school,no,yes,no,cellular,may,fri,326,5,999,2,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+52,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,283,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,services,single,high.school,no,yes,no,cellular,may,fri,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+47,blue-collar,married,high.school,no,yes,no,cellular,may,fri,58,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+47,blue-collar,married,high.school,no,yes,no,cellular,may,fri,181,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,admin.,divorced,high.school,no,no,yes,cellular,may,fri,301,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+44,self-employed,married,university.degree,no,yes,no,cellular,may,fri,151,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+45,blue-collar,single,high.school,no,yes,no,cellular,may,fri,146,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+54,services,single,basic.6y,unknown,yes,no,cellular,may,fri,250,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+43,blue-collar,divorced,basic.9y,no,unknown,unknown,cellular,may,fri,148,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,housemaid,married,high.school,unknown,yes,no,cellular,may,fri,106,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+50,services,married,high.school,no,yes,yes,cellular,may,fri,44,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+58,admin.,married,basic.4y,unknown,no,no,cellular,may,fri,901,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+45,blue-collar,single,high.school,no,no,no,cellular,may,fri,358,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+31,blue-collar,married,university.degree,no,yes,no,cellular,may,fri,1286,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+25,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,73,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+55,management,married,basic.6y,unknown,no,yes,cellular,may,fri,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,self-employed,married,basic.9y,no,yes,no,cellular,may,fri,744,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+55,management,married,basic.6y,unknown,yes,no,cellular,may,fri,127,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+51,admin.,married,high.school,no,no,yes,cellular,may,fri,55,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+50,services,married,high.school,no,no,no,cellular,may,fri,454,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,entrepreneur,married,high.school,no,yes,yes,cellular,may,fri,485,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+35,blue-collar,single,basic.4y,no,no,no,cellular,may,fri,12,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+26,self-employed,single,university.degree,no,no,no,cellular,may,fri,99,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,fri,9,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+37,admin.,married,high.school,no,no,no,cellular,may,fri,123,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+23,blue-collar,single,basic.4y,no,yes,yes,cellular,may,fri,102,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+31,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,282,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+54,services,single,basic.6y,unknown,no,no,cellular,may,fri,984,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+51,admin.,married,high.school,no,yes,no,cellular,may,fri,514,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+33,technician,divorced,high.school,no,unknown,unknown,cellular,may,fri,224,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+50,admin.,married,professional.course,unknown,yes,yes,cellular,may,fri,151,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,admin.,divorced,high.school,no,no,no,cellular,may,fri,25,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+35,admin.,single,high.school,no,yes,no,cellular,may,fri,7,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+37,blue-collar,single,basic.6y,no,yes,no,cellular,may,fri,76,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+33,services,divorced,high.school,no,yes,no,cellular,may,fri,82,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,unemployed,married,university.degree,no,yes,yes,cellular,may,fri,298,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+28,self-employed,single,university.degree,no,no,no,cellular,may,fri,386,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,technician,single,university.degree,no,no,no,cellular,may,fri,457,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,may,fri,18,8,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+32,entrepreneur,married,university.degree,no,unknown,unknown,cellular,may,fri,416,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+30,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,193,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+44,management,married,university.degree,no,no,no,cellular,may,fri,262,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+31,services,single,professional.course,no,yes,no,cellular,may,fri,22,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,management,single,university.degree,no,yes,no,cellular,may,fri,637,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+39,admin.,married,university.degree,no,yes,no,cellular,may,fri,45,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+55,housemaid,married,high.school,unknown,yes,no,cellular,may,fri,14,8,999,2,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+28,services,single,basic.9y,unknown,yes,no,telephone,may,fri,59,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+24,services,single,high.school,no,yes,no,cellular,may,fri,34,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,admin.,married,university.degree,no,no,no,cellular,may,fri,272,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,admin.,single,high.school,no,no,yes,cellular,may,fri,48,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,admin.,married,university.degree,no,no,no,cellular,may,fri,301,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+53,admin.,divorced,basic.9y,no,no,yes,cellular,may,fri,164,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+23,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,523,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+44,admin.,married,basic.9y,no,yes,no,cellular,may,fri,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+38,services,divorced,high.school,no,yes,no,cellular,may,fri,52,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+31,blue-collar,single,high.school,no,no,no,cellular,may,fri,325,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,36,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+48,blue-collar,married,basic.9y,no,no,yes,cellular,may,fri,56,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+36,admin.,married,university.degree,no,no,no,cellular,may,fri,174,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+48,admin.,married,high.school,no,no,no,cellular,may,fri,322,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+48,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,333,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+48,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,311,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+59,retired,divorced,basic.4y,no,no,no,cellular,may,fri,290,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+59,retired,divorced,basic.4y,no,yes,no,cellular,may,fri,27,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+58,management,married,university.degree,no,yes,yes,cellular,may,fri,256,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+26,technician,single,university.degree,no,yes,yes,cellular,may,fri,173,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+35,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,134,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,technician,married,unknown,no,yes,yes,cellular,may,fri,171,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+39,technician,married,unknown,no,yes,yes,cellular,may,fri,256,1,12,1,success,-1.8,92.893,-46.2,1.25,5099.1,no
+37,services,married,high.school,no,yes,no,telephone,may,fri,26,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+53,services,married,university.degree,no,no,yes,cellular,may,fri,74,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,285,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+25,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,fri,109,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+41,blue-collar,married,high.school,no,yes,no,cellular,may,fri,239,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+24,technician,single,basic.9y,no,yes,no,cellular,may,fri,109,11,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+33,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,730,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+32,blue-collar,single,basic.6y,unknown,no,no,cellular,may,fri,19,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+57,management,married,basic.4y,unknown,yes,no,cellular,may,fri,10,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+37,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,178,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+31,technician,single,unknown,no,no,yes,cellular,may,fri,7,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,blue-collar,single,high.school,no,no,no,telephone,may,fri,71,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+33,admin.,single,high.school,no,no,no,cellular,may,fri,16,9,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+53,services,married,university.degree,no,no,no,telephone,may,fri,45,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+37,admin.,married,high.school,no,yes,no,cellular,may,fri,22,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+41,entrepreneur,divorced,unknown,no,no,no,cellular,may,fri,536,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+29,admin.,single,high.school,no,yes,no,cellular,may,fri,792,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+33,services,married,high.school,no,yes,no,cellular,may,fri,178,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,technician,married,basic.9y,no,yes,no,cellular,may,fri,41,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+47,services,married,high.school,no,yes,no,cellular,may,fri,142,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+53,admin.,married,high.school,no,yes,no,cellular,may,fri,45,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+41,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,10,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+33,services,married,high.school,no,unknown,unknown,cellular,may,fri,333,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+31,technician,married,professional.course,no,no,no,cellular,may,fri,166,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+41,management,married,university.degree,no,yes,no,cellular,may,fri,100,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+36,management,divorced,university.degree,no,unknown,unknown,cellular,may,fri,423,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+53,admin.,married,high.school,no,yes,no,cellular,may,fri,358,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+24,services,single,high.school,no,no,no,cellular,may,fri,576,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+34,services,divorced,high.school,no,yes,no,cellular,may,fri,84,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,services,divorced,high.school,no,no,no,cellular,may,fri,66,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,services,single,basic.9y,no,yes,no,cellular,may,fri,79,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+33,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,669,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+53,admin.,married,high.school,no,no,no,cellular,may,fri,456,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+26,services,married,high.school,no,no,yes,cellular,may,fri,676,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+54,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,87,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+27,services,single,high.school,no,no,no,cellular,may,fri,472,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+38,services,divorced,high.school,no,no,no,cellular,may,fri,78,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+37,unemployed,married,university.degree,no,yes,no,telephone,may,fri,354,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+36,management,married,university.degree,no,no,no,cellular,may,fri,117,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,265,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,technician,single,university.degree,no,yes,yes,cellular,may,fri,693,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+36,entrepreneur,married,basic.9y,no,yes,no,cellular,may,fri,251,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,may,fri,98,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+30,unemployed,single,high.school,no,no,no,cellular,may,fri,13,11,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+23,technician,single,professional.course,no,unknown,unknown,cellular,may,fri,14,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+36,management,married,university.degree,no,no,no,cellular,may,fri,268,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,admin.,single,high.school,no,no,no,cellular,may,fri,144,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+49,entrepreneur,divorced,basic.9y,no,no,no,cellular,may,fri,166,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+31,admin.,single,university.degree,no,yes,yes,cellular,may,fri,138,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+30,technician,single,professional.course,no,no,no,cellular,may,fri,1015,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+54,blue-collar,married,basic.4y,no,yes,yes,cellular,may,fri,192,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+43,management,married,university.degree,no,yes,no,cellular,may,fri,663,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+44,entrepreneur,single,university.degree,no,yes,no,cellular,may,fri,210,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+38,services,married,basic.6y,unknown,yes,no,cellular,may,fri,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+54,retired,divorced,university.degree,no,yes,no,cellular,may,fri,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+48,services,married,basic.9y,unknown,no,no,cellular,may,fri,18,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+33,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,8,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+54,retired,divorced,university.degree,no,yes,yes,cellular,may,fri,261,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+37,services,married,high.school,no,yes,no,cellular,may,fri,81,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+30,services,single,high.school,no,yes,no,cellular,may,fri,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,technician,single,university.degree,no,yes,yes,cellular,may,fri,437,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+45,retired,married,basic.6y,unknown,no,yes,cellular,may,fri,102,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,admin.,single,high.school,no,yes,no,cellular,may,fri,217,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+37,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,63,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,services,divorced,high.school,no,yes,yes,cellular,may,fri,562,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+30,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,74,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,services,single,unknown,no,yes,no,cellular,may,fri,189,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+27,services,single,high.school,no,no,no,cellular,may,fri,212,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+35,admin.,married,high.school,unknown,yes,no,cellular,may,fri,500,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+39,blue-collar,divorced,high.school,unknown,no,yes,cellular,may,fri,172,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+37,technician,single,professional.course,no,no,yes,cellular,may,fri,20,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+36,technician,divorced,professional.course,no,unknown,unknown,cellular,may,fri,327,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,admin.,married,university.degree,no,no,no,cellular,may,fri,16,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,admin.,married,university.degree,no,yes,no,cellular,may,fri,894,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+42,services,married,basic.9y,no,yes,no,cellular,may,fri,152,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+45,self-employed,divorced,university.degree,no,yes,no,cellular,may,fri,116,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+45,self-employed,divorced,university.degree,no,no,yes,cellular,may,fri,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+35,admin.,married,high.school,unknown,no,no,cellular,may,fri,585,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+42,management,married,university.degree,no,yes,no,cellular,may,fri,95,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+53,technician,divorced,professional.course,no,yes,no,cellular,may,fri,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+23,admin.,single,professional.course,no,no,no,cellular,may,fri,564,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+53,technician,divorced,professional.course,no,yes,no,cellular,may,fri,188,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+22,services,married,high.school,no,yes,no,cellular,may,fri,48,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+27,blue-collar,married,unknown,unknown,yes,no,cellular,may,fri,79,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+40,management,divorced,university.degree,no,no,no,cellular,may,fri,342,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,admin.,single,professional.course,no,no,yes,cellular,may,fri,6,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+25,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,170,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+28,admin.,single,university.degree,no,yes,no,cellular,may,fri,119,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+31,admin.,single,high.school,no,no,no,cellular,may,fri,80,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+36,technician,married,high.school,no,yes,yes,cellular,may,fri,659,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+49,self-employed,married,high.school,no,no,no,cellular,may,fri,532,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+39,technician,divorced,high.school,no,yes,no,telephone,may,fri,15,11,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+35,blue-collar,married,basic.6y,no,yes,no,cellular,may,fri,265,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+27,services,single,high.school,unknown,no,no,cellular,may,fri,54,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,management,married,university.degree,no,yes,no,cellular,may,fri,837,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+36,services,divorced,university.degree,no,no,no,cellular,may,fri,67,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+58,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,77,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+25,blue-collar,single,basic.6y,no,yes,no,cellular,may,fri,358,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,technician,single,professional.course,no,no,no,cellular,may,fri,303,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+47,services,divorced,high.school,no,yes,no,cellular,may,fri,47,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+37,services,married,high.school,no,no,no,cellular,may,fri,228,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+35,blue-collar,married,basic.6y,no,yes,no,cellular,may,fri,832,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+54,management,married,university.degree,no,no,no,cellular,may,fri,169,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+41,services,married,basic.6y,no,yes,no,cellular,may,fri,394,10,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+51,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,31,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+44,management,married,university.degree,no,no,no,cellular,may,fri,1380,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+26,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,36,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+31,unemployed,married,basic.9y,no,yes,no,cellular,may,fri,201,3,10,1,success,-1.8,92.893,-46.2,1.25,5099.1,no
+37,services,married,basic.6y,unknown,yes,no,cellular,may,fri,679,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+57,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,199,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+27,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,58,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+51,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,495,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+43,admin.,married,high.school,no,yes,no,cellular,may,fri,141,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+54,blue-collar,married,basic.4y,no,no,yes,cellular,may,fri,139,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+44,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,82,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+29,unemployed,married,university.degree,no,yes,no,cellular,may,fri,317,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+51,blue-collar,married,basic.9y,unknown,no,no,cellular,may,fri,830,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+48,admin.,married,high.school,unknown,yes,no,cellular,may,fri,611,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+30,blue-collar,single,high.school,no,yes,yes,cellular,may,fri,86,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+58,admin.,married,basic.4y,unknown,no,yes,cellular,may,fri,186,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+21,student,single,high.school,no,no,no,cellular,may,fri,42,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+51,blue-collar,married,basic.9y,unknown,no,no,cellular,may,fri,956,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+31,admin.,single,university.degree,no,no,no,cellular,may,fri,229,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,admin.,married,university.degree,no,yes,no,cellular,may,fri,175,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,757,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+33,services,married,high.school,no,yes,no,cellular,may,fri,521,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+54,entrepreneur,married,high.school,no,yes,no,cellular,may,fri,264,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+60,admin.,divorced,high.school,unknown,yes,no,cellular,may,fri,99,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+60,admin.,divorced,high.school,unknown,yes,no,cellular,may,fri,83,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+20,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,fri,87,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+52,admin.,married,university.degree,no,yes,no,cellular,may,fri,401,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+60,admin.,divorced,high.school,unknown,yes,no,cellular,may,fri,301,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+41,management,married,university.degree,no,yes,no,cellular,may,fri,13,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+27,technician,divorced,unknown,unknown,no,no,cellular,may,fri,184,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+33,services,single,university.degree,no,no,no,cellular,may,fri,200,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+42,services,married,basic.9y,no,no,no,cellular,may,fri,42,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+27,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,167,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+29,admin.,married,basic.6y,no,no,no,cellular,may,fri,58,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+26,technician,single,professional.course,no,yes,no,cellular,may,fri,11,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,admin.,single,high.school,no,no,no,cellular,may,fri,167,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+33,retired,married,high.school,no,yes,no,cellular,may,fri,237,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,management,married,university.degree,no,no,no,cellular,may,fri,173,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+42,admin.,married,basic.9y,unknown,yes,no,cellular,may,fri,98,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+37,admin.,single,high.school,no,no,no,cellular,may,fri,165,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+24,blue-collar,single,high.school,no,yes,no,cellular,may,fri,858,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+25,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,114,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,173,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,406,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+24,services,married,high.school,unknown,yes,no,cellular,may,fri,1012,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+37,admin.,single,high.school,no,no,no,cellular,may,fri,13,11,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+37,admin.,divorced,high.school,no,yes,yes,cellular,may,fri,73,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,160,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,372,2,12,1,success,-1.8,92.893,-46.2,1.25,5099.1,no
+25,blue-collar,single,basic.4y,no,no,yes,cellular,may,fri,206,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,technician,single,university.degree,no,no,yes,cellular,may,fri,137,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+44,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,611,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+29,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,13,9,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+28,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,fri,219,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,services,married,high.school,no,yes,no,cellular,may,fri,320,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+44,blue-collar,married,high.school,no,yes,no,cellular,may,fri,223,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,57,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+59,technician,married,unknown,unknown,no,no,cellular,may,fri,739,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+58,management,married,university.degree,no,yes,no,cellular,may,fri,109,2,12,1,success,-1.8,92.893,-46.2,1.25,5099.1,no
+26,technician,married,unknown,no,no,no,cellular,may,fri,264,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+53,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,221,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+45,entrepreneur,divorced,university.degree,no,unknown,unknown,cellular,may,fri,61,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+46,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,124,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+21,student,single,high.school,unknown,no,no,cellular,may,fri,885,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+28,self-employed,married,basic.9y,no,yes,no,cellular,may,fri,1111,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+24,technician,single,university.degree,no,yes,no,cellular,may,fri,117,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+58,services,married,basic.6y,no,yes,no,cellular,may,fri,44,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,services,single,high.school,no,yes,no,cellular,may,fri,187,11,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+23,blue-collar,married,high.school,no,yes,no,cellular,may,fri,50,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,blue-collar,married,unknown,no,no,no,cellular,may,fri,76,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+31,unemployed,single,high.school,no,no,no,cellular,may,fri,10,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+41,admin.,married,high.school,unknown,no,no,cellular,may,fri,270,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,admin.,single,basic.6y,no,yes,no,cellular,may,fri,135,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+31,services,single,high.school,no,yes,no,telephone,may,fri,31,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+35,management,single,university.degree,no,no,no,cellular,may,fri,296,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,239,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+31,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,22,7,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+30,blue-collar,married,professional.course,no,no,no,cellular,may,fri,1357,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+35,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,212,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+41,blue-collar,married,high.school,no,yes,no,cellular,may,fri,150,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+24,technician,single,professional.course,no,no,no,cellular,may,fri,582,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+41,blue-collar,divorced,basic.4y,no,no,no,cellular,may,fri,709,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+29,blue-collar,divorced,high.school,no,no,no,cellular,may,fri,199,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+30,services,single,high.school,no,no,no,cellular,may,fri,102,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+26,services,married,high.school,no,yes,no,cellular,may,fri,140,9,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,services,married,high.school,no,yes,no,cellular,may,fri,15,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,services,married,high.school,no,no,no,cellular,may,fri,61,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+49,management,married,university.degree,no,no,no,cellular,may,fri,20,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,technician,single,professional.course,no,yes,no,cellular,may,fri,152,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+26,blue-collar,single,basic.9y,no,yes,yes,cellular,may,fri,245,9,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+31,admin.,single,basic.9y,no,no,no,cellular,may,fri,406,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+24,technician,single,professional.course,no,no,yes,cellular,may,fri,23,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,technician,single,university.degree,unknown,yes,no,cellular,may,fri,297,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+55,blue-collar,married,professional.course,no,yes,yes,cellular,may,fri,197,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+28,blue-collar,single,basic.6y,no,yes,yes,cellular,may,fri,63,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+23,services,single,high.school,no,yes,no,cellular,may,fri,103,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+26,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,11,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+49,entrepreneur,divorced,basic.9y,no,yes,no,cellular,may,fri,427,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+46,admin.,married,high.school,no,yes,yes,cellular,may,fri,80,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+41,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,232,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,services,single,high.school,no,yes,yes,cellular,may,fri,255,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,technician,single,professional.course,no,yes,no,cellular,may,fri,8,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+32,admin.,single,high.school,no,no,yes,cellular,may,fri,284,15,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+27,admin.,married,basic.6y,no,no,no,cellular,may,fri,550,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+56,entrepreneur,married,university.degree,no,yes,yes,cellular,may,fri,536,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+54,retired,divorced,university.degree,no,yes,no,cellular,may,fri,193,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,technician,single,high.school,no,yes,yes,cellular,may,fri,124,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+31,self-employed,divorced,basic.9y,no,yes,no,cellular,may,fri,12,10,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+23,blue-collar,single,professional.course,no,yes,yes,cellular,may,fri,134,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,technician,married,professional.course,no,yes,yes,cellular,may,fri,10,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+37,services,divorced,basic.4y,no,no,no,cellular,may,fri,17,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,admin.,married,university.degree,no,no,no,cellular,may,fri,895,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+32,technician,single,professional.course,no,yes,no,cellular,may,fri,212,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,admin.,single,high.school,no,unknown,unknown,cellular,may,fri,43,8,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+39,admin.,married,university.degree,no,yes,no,cellular,may,fri,364,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+44,admin.,married,high.school,no,no,no,cellular,may,fri,14,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,122,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+33,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,134,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+25,services,single,high.school,no,no,no,cellular,may,fri,21,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+28,self-employed,married,basic.9y,no,yes,no,cellular,may,fri,144,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+36,management,married,university.degree,no,yes,yes,telephone,may,fri,16,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+23,admin.,single,high.school,no,no,no,cellular,may,fri,13,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+60,retired,divorced,high.school,unknown,no,no,cellular,may,fri,781,4,999,2,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,blue-collar,married,professional.course,no,yes,yes,cellular,may,fri,128,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,self-employed,single,high.school,no,yes,yes,cellular,may,fri,67,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,may,fri,266,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+27,technician,single,professional.course,no,no,no,cellular,may,fri,411,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+42,management,married,university.degree,no,no,no,cellular,may,fri,391,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+27,admin.,single,basic.6y,no,yes,no,telephone,may,fri,195,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,admin.,single,high.school,no,no,yes,telephone,may,fri,74,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+20,technician,single,professional.course,unknown,no,no,cellular,may,fri,232,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,admin.,married,high.school,no,yes,no,cellular,may,fri,340,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,350,8,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+49,self-employed,married,high.school,no,no,no,cellular,may,fri,309,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,technician,single,high.school,no,no,no,cellular,may,fri,12,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+26,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,136,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+51,blue-collar,single,illiterate,unknown,yes,no,cellular,may,fri,259,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,may,fri,223,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,technician,single,university.degree,no,yes,yes,cellular,may,fri,215,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+31,admin.,single,basic.9y,no,yes,yes,cellular,may,fri,156,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+43,entrepreneur,married,professional.course,no,no,no,cellular,may,fri,233,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+26,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,59,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,admin.,single,university.degree,unknown,yes,no,cellular,may,fri,104,10,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,admin.,single,university.degree,no,no,no,telephone,may,fri,49,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+37,services,divorced,basic.4y,no,no,no,cellular,may,fri,167,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+28,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,113,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+51,admin.,married,high.school,no,yes,yes,cellular,may,fri,1002,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+21,student,single,university.degree,no,yes,no,cellular,may,fri,48,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,technician,married,basic.9y,no,yes,no,cellular,may,fri,54,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+47,technician,divorced,university.degree,no,no,no,cellular,may,fri,306,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+32,admin.,single,university.degree,no,no,no,cellular,may,fri,61,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+24,services,single,high.school,no,yes,yes,cellular,may,fri,20,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+23,technician,single,high.school,no,yes,no,cellular,may,fri,16,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+43,admin.,married,high.school,no,no,no,cellular,may,fri,880,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+35,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,69,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+33,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,218,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+50,blue-collar,married,basic.6y,no,yes,no,cellular,may,fri,18,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+27,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,47,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+41,admin.,single,high.school,no,yes,no,cellular,may,fri,333,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+41,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,102,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+29,admin.,single,high.school,no,no,no,cellular,may,fri,64,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,admin.,single,university.degree,no,no,no,cellular,may,fri,101,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+32,admin.,single,university.degree,no,no,no,cellular,may,fri,800,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+37,technician,single,professional.course,no,yes,no,cellular,may,fri,131,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+38,entrepreneur,married,basic.9y,no,yes,yes,cellular,may,fri,476,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,self-employed,married,professional.course,no,no,yes,telephone,may,fri,65,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+37,management,married,university.degree,no,no,no,cellular,may,fri,262,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+47,blue-collar,married,high.school,no,yes,no,cellular,may,fri,934,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+26,entrepreneur,married,professional.course,no,no,no,telephone,may,fri,75,10,999,2,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+22,services,single,high.school,no,no,no,cellular,may,fri,51,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+33,blue-collar,divorced,basic.9y,no,yes,yes,cellular,may,fri,208,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,technician,single,professional.course,no,no,no,cellular,may,fri,53,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,technician,single,university.degree,no,no,no,cellular,may,fri,162,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,34,11,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,73,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+26,technician,single,professional.course,no,no,no,cellular,may,fri,22,8,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+49,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,172,2,9,2,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+52,self-employed,divorced,university.degree,no,yes,no,telephone,may,fri,258,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+37,admin.,single,high.school,no,no,yes,cellular,may,fri,71,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+32,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,11,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,self-employed,single,high.school,no,yes,yes,cellular,may,fri,93,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,blue-collar,single,basic.6y,no,no,no,cellular,may,fri,92,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+25,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,655,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+29,admin.,single,high.school,no,no,no,cellular,may,fri,138,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+57,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,432,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,management,divorced,unknown,no,yes,no,cellular,may,fri,200,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+29,blue-collar,married,basic.6y,no,yes,no,cellular,may,fri,69,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+33,entrepreneur,married,university.degree,no,yes,no,cellular,may,fri,204,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+43,blue-collar,divorced,basic.9y,unknown,yes,yes,cellular,may,fri,25,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+23,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,28,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+24,services,single,basic.9y,no,yes,yes,cellular,may,fri,68,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+27,admin.,married,professional.course,no,yes,no,cellular,may,fri,109,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,blue-collar,divorced,basic.4y,no,yes,no,cellular,may,fri,1223,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+23,blue-collar,single,professional.course,no,yes,no,cellular,may,fri,136,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+53,admin.,married,high.school,no,no,no,cellular,may,fri,101,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+43,admin.,married,high.school,no,yes,no,cellular,may,fri,126,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,137,7,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+39,blue-collar,married,basic.4y,no,unknown,unknown,telephone,may,fri,155,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+53,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,fri,509,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+37,admin.,divorced,high.school,no,no,no,cellular,may,fri,143,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+27,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,641,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,fri,415,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+54,management,married,university.degree,no,no,no,cellular,may,fri,104,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+31,services,married,high.school,no,yes,no,cellular,may,fri,211,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+27,technician,married,university.degree,no,yes,no,cellular,may,fri,131,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+28,entrepreneur,married,basic.9y,unknown,no,no,cellular,may,fri,22,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+34,admin.,single,high.school,no,no,no,cellular,may,fri,15,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+29,admin.,married,high.school,no,yes,no,cellular,may,fri,1871,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+24,services,single,high.school,no,yes,yes,cellular,may,fri,69,2,999,2,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+28,admin.,single,university.degree,no,yes,yes,cellular,may,fri,63,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+25,blue-collar,single,high.school,no,no,no,cellular,may,fri,1068,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+58,admin.,divorced,high.school,unknown,no,no,cellular,may,fri,315,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+42,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,58,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+43,blue-collar,married,high.school,no,no,no,cellular,may,fri,22,8,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+50,entrepreneur,married,high.school,no,yes,yes,cellular,may,fri,1326,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+34,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,149,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+22,admin.,single,basic.9y,no,yes,yes,cellular,may,fri,34,10,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+33,technician,single,university.degree,no,no,no,cellular,may,fri,204,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+48,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,44,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+47,entrepreneur,married,university.degree,no,no,no,cellular,may,fri,376,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+38,blue-collar,divorced,basic.4y,unknown,no,no,cellular,may,fri,31,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+40,technician,married,university.degree,no,yes,yes,cellular,may,fri,133,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+35,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,fri,439,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+32,technician,single,unknown,no,yes,yes,cellular,may,fri,157,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+32,admin.,single,unknown,no,yes,yes,cellular,may,fri,38,7,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+45,entrepreneur,divorced,university.degree,no,no,no,telephone,may,fri,462,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+32,admin.,single,professional.course,no,yes,yes,telephone,may,fri,73,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+26,services,married,high.school,no,yes,no,cellular,may,fri,104,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+43,blue-collar,single,high.school,no,no,no,cellular,may,fri,504,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+25,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,121,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+39,technician,married,professional.course,no,no,no,cellular,may,fri,49,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+37,services,divorced,professional.course,no,no,no,cellular,may,fri,258,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+41,management,married,unknown,no,yes,no,cellular,may,fri,163,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+24,admin.,single,basic.9y,no,yes,no,telephone,may,fri,12,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+28,services,single,basic.9y,no,no,yes,cellular,may,fri,126,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+28,technician,single,university.degree,no,no,yes,telephone,may,fri,166,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+25,admin.,single,university.degree,no,yes,no,cellular,may,fri,11,7,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+43,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,may,fri,59,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+31,technician,single,university.degree,no,yes,no,cellular,may,fri,1313,7,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+50,admin.,single,high.school,no,no,yes,cellular,may,fri,623,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+26,admin.,single,high.school,no,yes,no,cellular,may,fri,157,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+30,admin.,divorced,university.degree,no,yes,no,cellular,may,fri,1598,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes
+42,self-employed,married,professional.course,unknown,no,no,cellular,may,fri,385,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+33,admin.,single,high.school,no,no,no,cellular,may,fri,57,11,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no
+55,technician,married,professional.course,no,no,yes,cellular,may,fri,543,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no
+35,technician,divorced,professional.course,no,no,no,cellular,may,fri,692,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes
+45,blue-collar,single,high.school,unknown,no,yes,cellular,may,mon,102,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+32,technician,married,professional.course,no,no,no,cellular,may,mon,20,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+25,student,single,high.school,no,yes,no,cellular,may,mon,59,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,unemployed,married,professional.course,no,yes,no,telephone,may,mon,33,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+50,housemaid,married,basic.9y,no,yes,no,cellular,may,mon,126,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+39,technician,single,professional.course,no,yes,no,cellular,may,mon,87,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,technician,single,professional.course,no,yes,no,telephone,may,mon,15,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+42,technician,single,university.degree,no,no,no,cellular,may,mon,45,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,admin.,single,high.school,no,no,no,cellular,may,mon,722,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+45,blue-collar,single,high.school,unknown,no,no,cellular,may,mon,9,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+48,admin.,divorced,university.degree,no,no,no,cellular,may,mon,17,5,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,7,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,admin.,divorced,professional.course,no,no,no,cellular,may,mon,16,10,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,technician,single,professional.course,no,no,no,cellular,may,mon,201,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,admin.,married,university.degree,unknown,no,no,cellular,may,mon,113,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+25,admin.,single,university.degree,no,no,no,cellular,may,mon,8,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+45,blue-collar,single,high.school,unknown,yes,no,cellular,may,mon,8,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+44,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,536,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes
+29,admin.,divorced,professional.course,no,yes,yes,cellular,may,mon,58,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+48,admin.,divorced,university.degree,no,yes,no,cellular,may,mon,28,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+49,blue-collar,divorced,professional.course,no,yes,no,cellular,may,mon,11,10,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+57,technician,divorced,basic.6y,no,unknown,unknown,cellular,may,mon,9,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+36,admin.,married,high.school,unknown,no,no,cellular,may,mon,899,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+49,blue-collar,divorced,professional.course,no,no,no,cellular,may,mon,17,8,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+57,services,married,high.school,no,yes,yes,cellular,may,mon,473,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+36,admin.,married,high.school,unknown,no,no,cellular,may,mon,11,14,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,admin.,single,university.degree,no,no,no,cellular,may,mon,114,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+22,technician,single,unknown,no,yes,no,cellular,may,mon,106,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+43,admin.,single,high.school,no,yes,no,cellular,may,mon,159,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+31,technician,single,high.school,unknown,yes,yes,cellular,may,mon,17,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+42,management,divorced,university.degree,no,no,no,cellular,may,mon,359,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,technician,single,professional.course,no,yes,no,cellular,may,mon,17,7,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+39,self-employed,married,high.school,no,no,no,cellular,may,mon,11,8,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+52,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,70,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,admin.,single,university.degree,no,yes,yes,telephone,may,mon,193,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+31,admin.,married,university.degree,no,no,no,cellular,may,mon,116,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,157,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+36,admin.,married,high.school,unknown,yes,no,cellular,may,mon,284,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+57,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,mon,73,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+40,admin.,single,high.school,no,no,no,cellular,may,mon,18,5,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+57,admin.,single,high.school,no,yes,no,telephone,may,mon,26,5,12,1,success,-1.8,92.893,-46.2,1.244,5099.1,no
+36,admin.,single,unknown,no,yes,no,cellular,may,mon,222,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+57,services,married,high.school,no,yes,no,cellular,may,mon,126,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+21,student,single,high.school,no,no,no,cellular,may,mon,97,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+44,services,married,high.school,no,yes,no,cellular,may,mon,144,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+45,blue-collar,single,high.school,unknown,yes,no,cellular,may,mon,98,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+35,housemaid,married,university.degree,no,yes,no,cellular,may,mon,59,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+27,services,single,university.degree,no,yes,no,cellular,may,mon,19,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+54,retired,divorced,professional.course,no,yes,no,cellular,may,mon,44,8,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+27,services,single,university.degree,no,yes,yes,cellular,may,mon,22,6,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+25,technician,single,professional.course,no,yes,no,cellular,may,mon,44,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+50,housemaid,married,basic.9y,no,yes,no,cellular,may,mon,16,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+46,admin.,divorced,basic.6y,no,no,no,cellular,may,mon,7,7,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+25,student,single,high.school,no,yes,no,telephone,may,mon,21,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,technician,single,professional.course,no,yes,yes,cellular,may,mon,15,9,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,admin.,single,university.degree,no,yes,yes,cellular,may,mon,30,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,admin.,divorced,high.school,no,no,no,cellular,may,mon,13,8,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,may,mon,8,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+52,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,201,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,management,married,university.degree,no,yes,no,cellular,may,mon,259,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,student,single,university.degree,no,yes,no,cellular,may,mon,90,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+52,admin.,divorced,basic.9y,no,yes,no,telephone,may,mon,51,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+36,admin.,married,high.school,unknown,yes,yes,cellular,may,mon,264,1,10,1,success,-1.8,92.893,-46.2,1.244,5099.1,no
+53,technician,divorced,unknown,no,yes,no,cellular,may,mon,35,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+27,admin.,divorced,high.school,no,yes,no,cellular,may,mon,10,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+57,services,married,high.school,no,no,no,cellular,may,mon,380,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+42,technician,single,university.degree,no,yes,no,cellular,may,mon,33,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+44,technician,married,university.degree,no,no,no,cellular,may,mon,30,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+24,student,single,high.school,no,no,no,cellular,may,mon,557,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+54,blue-collar,married,basic.4y,unknown,no,no,cellular,may,mon,108,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+31,admin.,married,university.degree,no,yes,yes,cellular,may,mon,173,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+29,services,married,high.school,no,yes,no,telephone,may,mon,87,6,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+36,admin.,married,high.school,unknown,yes,yes,cellular,may,mon,47,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,admin.,married,basic.9y,no,yes,yes,cellular,may,mon,97,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+32,blue-collar,married,professional.course,no,yes,no,cellular,may,mon,333,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+28,admin.,single,university.degree,no,no,no,cellular,may,mon,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+45,blue-collar,single,high.school,unknown,yes,no,cellular,may,mon,29,6,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+31,admin.,married,university.degree,no,no,no,cellular,may,mon,213,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+28,admin.,single,university.degree,no,no,no,cellular,may,mon,192,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+47,management,married,high.school,no,no,no,cellular,may,mon,57,1,9,2,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+34,admin.,single,university.degree,no,yes,no,cellular,may,mon,16,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+28,admin.,single,university.degree,no,yes,no,cellular,may,mon,442,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes
+47,management,married,high.school,no,no,no,cellular,may,mon,245,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+23,blue-collar,single,high.school,no,yes,no,cellular,may,mon,115,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+46,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,410,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+23,blue-collar,single,high.school,no,yes,no,cellular,may,mon,158,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+34,admin.,single,university.degree,no,no,no,cellular,may,mon,283,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+44,admin.,married,basic.6y,no,no,no,cellular,may,mon,217,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+39,admin.,single,professional.course,no,yes,no,cellular,may,mon,97,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+48,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,420,7,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+44,admin.,married,basic.6y,no,unknown,unknown,cellular,may,mon,608,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes
+28,blue-collar,single,basic.9y,no,unknown,unknown,cellular,may,mon,166,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,technician,single,professional.course,no,no,no,telephone,may,mon,325,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,technician,married,high.school,no,no,no,cellular,may,mon,161,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,admin.,single,university.degree,no,yes,no,cellular,may,mon,166,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,management,married,high.school,no,no,no,cellular,may,mon,97,1,999,2,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+30,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,74,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+45,services,divorced,high.school,no,no,no,cellular,may,mon,15,9,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+41,management,married,high.school,no,no,no,cellular,may,mon,216,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,170,1,999,2,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+36,services,single,high.school,no,no,no,cellular,may,mon,288,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+52,admin.,married,high.school,no,yes,no,cellular,may,mon,17,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+24,admin.,single,university.degree,unknown,no,no,cellular,may,mon,220,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+44,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,mon,28,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,admin.,married,high.school,no,yes,no,cellular,may,mon,169,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+52,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,185,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+35,admin.,divorced,high.school,no,yes,no,cellular,may,mon,88,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+44,services,divorced,high.school,no,no,no,cellular,may,mon,903,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+52,blue-collar,married,basic.9y,unknown,no,no,cellular,may,mon,248,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,technician,single,university.degree,no,yes,no,cellular,may,mon,12,13,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+25,student,single,high.school,no,yes,no,telephone,may,mon,52,9,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+24,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,unemployed,married,basic.4y,no,no,no,cellular,may,mon,205,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,blue-collar,married,professional.course,no,yes,no,cellular,may,mon,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,admin.,divorced,high.school,no,yes,no,cellular,may,mon,63,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,blue-collar,married,professional.course,no,no,no,cellular,may,mon,114,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+24,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,297,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,blue-collar,married,professional.course,no,yes,no,cellular,may,mon,185,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+34,admin.,married,high.school,unknown,no,no,cellular,may,mon,186,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,blue-collar,single,high.school,no,no,no,cellular,may,mon,222,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+48,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,284,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,technician,single,university.degree,no,no,no,cellular,may,mon,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+32,self-employed,single,university.degree,no,no,no,cellular,may,mon,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,management,divorced,high.school,no,no,no,cellular,may,mon,261,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+28,blue-collar,single,professional.course,no,yes,no,cellular,may,mon,113,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+46,blue-collar,married,high.school,no,no,no,cellular,may,mon,11,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+35,blue-collar,married,professional.course,no,yes,no,cellular,may,mon,42,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,technician,married,professional.course,no,yes,no,cellular,may,mon,110,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,admin.,single,professional.course,no,yes,no,cellular,may,mon,1340,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+59,management,married,basic.4y,no,no,no,cellular,may,mon,455,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+29,admin.,single,high.school,no,yes,no,cellular,may,mon,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+52,admin.,divorced,high.school,no,yes,yes,cellular,may,mon,110,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+38,technician,single,professional.course,no,no,no,cellular,may,mon,170,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+29,technician,single,professional.course,no,yes,no,cellular,may,mon,245,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,admin.,married,high.school,no,no,no,cellular,may,mon,268,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,technician,single,high.school,no,yes,no,cellular,may,mon,108,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+29,technician,single,professional.course,no,yes,no,cellular,may,mon,487,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+33,technician,married,university.degree,no,yes,no,cellular,may,mon,182,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+31,admin.,single,high.school,unknown,yes,no,cellular,may,mon,309,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+25,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,admin.,single,high.school,no,no,no,cellular,may,mon,18,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+21,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,250,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+21,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,154,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,blue-collar,single,high.school,no,no,no,cellular,may,mon,2301,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+35,technician,divorced,university.degree,no,no,no,cellular,may,mon,169,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,management,divorced,university.degree,no,yes,no,cellular,may,mon,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+47,entrepreneur,married,professional.course,no,yes,no,cellular,may,mon,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+32,management,married,university.degree,no,no,yes,cellular,may,mon,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,management,divorced,university.degree,no,no,no,cellular,may,mon,493,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+41,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,295,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+29,admin.,single,university.degree,unknown,no,no,cellular,may,mon,226,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+25,student,single,high.school,no,no,no,telephone,may,mon,11,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+27,services,single,university.degree,no,yes,yes,cellular,may,mon,33,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+44,unemployed,married,basic.9y,no,yes,no,telephone,may,mon,152,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+58,blue-collar,married,high.school,unknown,no,no,cellular,may,mon,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+31,technician,divorced,high.school,no,no,no,cellular,may,mon,41,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+42,services,divorced,high.school,no,yes,no,cellular,may,mon,252,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+31,technician,divorced,high.school,no,no,no,cellular,may,mon,40,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,156,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+32,services,married,high.school,unknown,yes,no,cellular,may,mon,126,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+43,services,divorced,high.school,no,yes,no,cellular,may,mon,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+32,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,mon,114,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,admin.,single,university.degree,unknown,yes,no,cellular,may,mon,134,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+46,admin.,divorced,basic.6y,no,yes,no,cellular,may,mon,18,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+39,entrepreneur,married,university.degree,unknown,yes,no,cellular,may,mon,98,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+58,self-employed,married,university.degree,no,yes,no,cellular,may,mon,379,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+31,blue-collar,married,high.school,no,no,no,cellular,may,mon,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+57,technician,divorced,basic.6y,no,yes,no,cellular,may,mon,86,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,admin.,single,university.degree,unknown,yes,no,cellular,may,mon,632,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,admin.,single,university.degree,no,yes,no,cellular,may,mon,98,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,admin.,single,professional.course,no,no,no,cellular,may,mon,843,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes
+50,admin.,divorced,basic.4y,no,yes,no,cellular,may,mon,8,11,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,services,married,university.degree,no,unknown,unknown,cellular,may,mon,132,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+47,services,married,high.school,no,no,no,cellular,may,mon,261,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+32,self-employed,married,university.degree,no,no,yes,cellular,may,mon,133,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+47,services,married,high.school,no,yes,yes,cellular,may,mon,398,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+33,technician,divorced,professional.course,no,no,no,cellular,may,mon,287,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+44,unemployed,divorced,basic.6y,no,no,no,cellular,may,mon,208,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+28,unemployed,single,university.degree,no,yes,no,cellular,may,mon,434,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+42,blue-collar,divorced,basic.4y,no,yes,no,cellular,may,mon,119,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+39,self-employed,divorced,university.degree,no,no,no,cellular,may,mon,140,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+43,technician,married,professional.course,no,no,yes,cellular,may,mon,191,2,12,1,success,-1.8,92.893,-46.2,1.244,5099.1,no
+23,blue-collar,single,high.school,no,no,no,cellular,may,mon,380,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+32,blue-collar,married,professional.course,no,yes,no,cellular,may,mon,115,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+58,admin.,married,university.degree,no,no,no,cellular,may,mon,325,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,may,mon,167,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+45,admin.,divorced,university.degree,no,no,yes,cellular,may,mon,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+35,admin.,single,university.degree,no,no,no,cellular,may,mon,21,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+49,retired,married,high.school,no,no,no,cellular,may,mon,47,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+42,technician,single,university.degree,no,no,yes,cellular,may,mon,9,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,may,mon,565,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+45,admin.,divorced,university.degree,no,no,no,cellular,may,mon,507,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+27,admin.,single,university.degree,no,no,no,telephone,may,mon,82,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+55,admin.,divorced,unknown,unknown,yes,no,cellular,may,mon,105,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,technician,single,professional.course,no,yes,no,cellular,may,mon,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+46,technician,divorced,professional.course,no,no,no,cellular,may,mon,78,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,management,married,university.degree,no,no,no,cellular,may,mon,546,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+44,management,divorced,university.degree,no,no,no,cellular,may,mon,79,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+46,technician,divorced,professional.course,no,yes,no,cellular,may,mon,431,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+29,technician,single,university.degree,no,no,no,cellular,may,mon,74,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+29,services,single,high.school,no,yes,no,cellular,may,mon,229,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+33,services,married,high.school,no,no,yes,cellular,may,mon,600,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+32,admin.,divorced,university.degree,no,yes,yes,cellular,may,mon,156,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,admin.,single,university.degree,no,yes,no,cellular,may,mon,114,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,admin.,single,high.school,no,no,no,cellular,may,mon,435,7,2,1,success,-1.8,92.893,-46.2,1.244,5099.1,no
+34,admin.,married,professional.course,no,yes,yes,cellular,may,mon,326,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+44,admin.,married,basic.6y,no,yes,no,cellular,may,mon,170,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+46,management,married,university.degree,no,no,no,cellular,may,mon,143,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,services,single,high.school,no,no,no,cellular,may,mon,111,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+44,management,single,high.school,no,no,no,cellular,may,mon,184,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+44,management,single,high.school,no,no,no,cellular,may,mon,233,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+32,admin.,married,university.degree,no,yes,yes,cellular,may,mon,110,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,116,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,178,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+44,management,single,high.school,no,yes,no,cellular,may,mon,504,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+30,technician,single,professional.course,no,yes,yes,cellular,may,mon,144,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,technician,single,university.degree,no,yes,no,cellular,may,mon,177,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+28,blue-collar,married,high.school,no,no,yes,telephone,may,mon,21,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,services,single,high.school,no,no,no,cellular,may,mon,700,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+35,admin.,divorced,high.school,no,yes,no,cellular,may,mon,163,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+28,services,single,high.school,no,yes,no,cellular,may,mon,91,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+42,technician,married,university.degree,no,yes,no,cellular,may,mon,78,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+21,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,239,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+32,admin.,married,high.school,no,yes,no,cellular,may,mon,169,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+32,admin.,married,high.school,no,no,no,cellular,may,mon,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,admin.,married,university.degree,unknown,yes,no,cellular,may,mon,121,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+21,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,37,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,unemployed,married,basic.4y,no,no,no,cellular,may,mon,1008,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes
+48,services,married,high.school,no,yes,no,cellular,may,mon,113,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+40,admin.,single,high.school,no,yes,no,cellular,may,mon,24,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+40,admin.,single,high.school,no,yes,no,cellular,may,mon,213,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+41,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,mon,380,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,admin.,single,high.school,no,yes,no,cellular,may,mon,153,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,admin.,single,high.school,no,yes,yes,cellular,may,mon,192,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+28,technician,single,professional.course,no,yes,no,cellular,may,mon,66,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,admin.,single,high.school,no,yes,no,cellular,may,mon,57,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+39,technician,married,professional.course,no,yes,yes,cellular,may,mon,525,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+26,student,single,high.school,no,no,no,cellular,may,mon,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,unemployed,married,professional.course,no,no,no,cellular,may,mon,276,4,10,1,success,-1.8,92.893,-46.2,1.244,5099.1,no
+56,retired,married,high.school,no,no,no,cellular,may,mon,317,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,105,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+38,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,178,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+39,technician,single,university.degree,no,yes,no,cellular,may,mon,612,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+34,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,316,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,admin.,single,university.degree,no,yes,no,cellular,may,mon,103,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+34,admin.,married,university.degree,no,no,yes,cellular,may,mon,73,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,admin.,divorced,university.degree,unknown,yes,no,cellular,may,mon,230,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,admin.,divorced,university.degree,unknown,yes,no,cellular,may,mon,442,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+43,technician,married,professional.course,no,yes,no,cellular,may,mon,618,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes
+24,student,single,high.school,no,yes,no,cellular,may,mon,504,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+58,management,married,university.degree,no,no,no,cellular,may,mon,182,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+55,services,married,high.school,no,no,no,cellular,may,mon,336,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+58,management,married,university.degree,no,no,no,cellular,may,mon,248,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+58,management,married,university.degree,no,yes,no,cellular,may,mon,504,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+53,management,divorced,professional.course,no,yes,no,cellular,may,mon,82,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,admin.,single,university.degree,no,yes,no,cellular,may,mon,182,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,technician,married,university.degree,no,yes,no,cellular,may,mon,78,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+32,management,single,university.degree,unknown,yes,no,cellular,may,mon,61,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+41,technician,single,high.school,no,yes,no,cellular,may,mon,222,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+31,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,1010,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+41,management,married,high.school,no,yes,no,cellular,may,mon,180,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+50,housemaid,married,basic.9y,no,no,no,cellular,may,mon,207,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+57,retired,divorced,university.degree,no,no,no,cellular,may,mon,46,6,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+25,student,single,high.school,no,yes,no,cellular,may,mon,432,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+56,technician,single,professional.course,no,yes,no,cellular,may,mon,517,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+37,self-employed,single,basic.4y,no,yes,no,cellular,may,mon,180,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+43,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,465,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,98,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+46,admin.,single,university.degree,no,yes,no,cellular,may,mon,801,5,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes
+33,blue-collar,single,high.school,no,no,no,cellular,may,mon,599,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+25,student,single,high.school,no,yes,no,cellular,may,mon,15,8,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+26,services,single,basic.9y,no,no,no,cellular,may,mon,18,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+46,admin.,married,high.school,no,yes,yes,cellular,may,mon,196,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+34,self-employed,single,university.degree,no,yes,yes,cellular,may,mon,309,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+35,housemaid,married,university.degree,no,unknown,unknown,cellular,may,mon,61,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,admin.,single,university.degree,no,yes,no,cellular,may,mon,194,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,services,married,professional.course,no,no,no,cellular,may,mon,336,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+40,admin.,single,high.school,no,yes,yes,cellular,may,mon,104,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+46,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,98,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+47,services,single,high.school,no,yes,no,cellular,may,mon,236,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+50,admin.,married,high.school,no,yes,yes,cellular,may,mon,146,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+27,services,single,high.school,no,yes,yes,cellular,may,mon,665,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+32,blue-collar,divorced,basic.4y,no,no,no,cellular,may,mon,827,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+40,entrepreneur,married,university.degree,no,no,no,cellular,may,mon,181,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+45,admin.,divorced,university.degree,no,yes,no,cellular,may,mon,197,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+39,admin.,single,university.degree,no,yes,yes,cellular,may,mon,9,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+42,services,single,high.school,no,yes,no,cellular,may,mon,36,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,may,mon,87,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+25,admin.,single,high.school,no,no,no,cellular,may,mon,16,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+46,admin.,single,university.degree,no,no,no,cellular,may,mon,8,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+46,admin.,single,university.degree,no,yes,yes,cellular,may,mon,11,5,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+27,admin.,divorced,high.school,no,yes,no,cellular,may,mon,166,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,technician,single,high.school,no,unknown,unknown,cellular,may,mon,630,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+35,blue-collar,single,high.school,no,yes,no,cellular,may,mon,33,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,227,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+43,blue-collar,single,professional.course,no,no,no,cellular,may,mon,375,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,technician,married,professional.course,no,yes,no,cellular,may,mon,241,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,190,8,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+35,technician,single,professional.course,no,yes,no,cellular,may,mon,213,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+25,student,single,high.school,no,yes,yes,cellular,may,mon,412,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+39,self-employed,married,high.school,no,yes,no,cellular,may,mon,31,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+48,services,married,high.school,no,yes,no,cellular,may,mon,173,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,mon,74,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+48,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,92,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+45,services,married,high.school,no,no,no,cellular,may,mon,166,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+53,management,married,university.degree,no,no,no,cellular,may,mon,368,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+36,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,1027,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+43,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,221,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+26,student,single,high.school,no,yes,no,cellular,may,mon,113,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+31,technician,married,professional.course,no,yes,no,cellular,may,mon,577,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+36,student,single,unknown,unknown,yes,no,cellular,may,mon,567,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+58,management,married,university.degree,no,yes,no,cellular,may,mon,12,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,technician,single,professional.course,no,yes,no,cellular,may,mon,428,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+29,admin.,married,high.school,no,yes,no,cellular,may,mon,767,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+34,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,142,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+29,technician,single,university.degree,no,no,no,cellular,may,mon,68,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+24,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,61,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+52,blue-collar,married,basic.9y,unknown,no,no,cellular,may,mon,695,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,239,2,11,1,success,-1.8,92.893,-46.2,1.244,5099.1,no
+36,admin.,married,high.school,unknown,yes,no,cellular,may,mon,1434,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+37,self-employed,single,basic.4y,no,no,yes,cellular,may,mon,297,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,technician,single,professional.course,no,yes,no,cellular,may,mon,202,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+44,unemployed,married,basic.9y,no,no,no,cellular,may,mon,194,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+36,services,single,high.school,no,yes,no,cellular,may,mon,566,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+48,services,married,unknown,no,no,no,cellular,may,mon,486,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,admin.,single,high.school,no,no,no,cellular,may,mon,207,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+42,technician,single,university.degree,no,yes,no,cellular,may,mon,179,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,entrepreneur,single,university.degree,no,no,no,cellular,may,mon,637,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes
+38,technician,single,basic.9y,no,no,no,cellular,may,mon,572,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+28,services,divorced,high.school,no,yes,no,cellular,may,mon,217,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+33,technician,single,professional.course,no,yes,yes,cellular,may,mon,13,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+29,admin.,married,high.school,no,yes,no,cellular,may,mon,112,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+49,technician,married,high.school,unknown,no,no,cellular,may,mon,222,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+41,admin.,single,high.school,no,no,no,cellular,may,mon,466,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+47,services,married,high.school,no,no,no,cellular,may,mon,109,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,admin.,single,high.school,no,no,no,cellular,may,mon,22,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+22,technician,single,basic.9y,no,no,no,telephone,may,mon,267,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+52,admin.,divorced,high.school,no,yes,no,telephone,may,mon,54,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+32,services,married,high.school,unknown,yes,no,cellular,may,mon,536,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+33,admin.,married,university.degree,no,yes,yes,telephone,may,mon,895,12,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+49,retired,married,high.school,no,yes,no,cellular,may,mon,83,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+57,services,married,high.school,no,yes,no,cellular,may,mon,11,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,admin.,married,high.school,no,unknown,unknown,cellular,may,mon,22,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+31,services,married,high.school,no,yes,no,cellular,may,mon,32,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,admin.,single,high.school,unknown,yes,no,telephone,may,mon,54,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,technician,married,professional.course,no,yes,no,cellular,may,mon,6,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,may,mon,410,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+47,admin.,single,university.degree,no,no,no,cellular,may,mon,53,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+36,admin.,married,high.school,no,yes,no,cellular,may,mon,4,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+25,technician,single,professional.course,no,unknown,unknown,cellular,may,mon,30,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,admin.,divorced,high.school,no,yes,no,telephone,may,mon,23,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+29,admin.,married,high.school,no,yes,no,telephone,may,mon,27,10,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+51,technician,married,high.school,no,yes,no,cellular,may,mon,170,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,technician,married,professional.course,no,no,no,cellular,may,mon,453,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+23,admin.,single,high.school,no,no,no,cellular,may,mon,16,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,may,mon,324,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,technician,single,university.degree,no,yes,no,cellular,may,mon,663,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,admin.,single,high.school,no,no,yes,telephone,may,mon,36,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,admin.,married,high.school,no,no,no,cellular,may,mon,14,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+24,technician,married,professional.course,no,yes,no,cellular,may,mon,342,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+26,student,single,high.school,no,no,no,cellular,may,mon,291,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+43,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,128,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,22,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+25,blue-collar,single,basic.9y,no,unknown,unknown,cellular,may,mon,10,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,may,mon,82,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+29,admin.,single,university.degree,no,no,no,cellular,may,mon,146,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,entrepreneur,single,university.degree,no,yes,no,cellular,may,mon,9,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+24,management,single,university.degree,no,no,no,cellular,may,mon,64,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+25,student,single,high.school,no,yes,no,cellular,may,mon,18,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+38,technician,single,basic.9y,no,yes,no,cellular,may,mon,29,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+23,services,married,basic.9y,unknown,yes,no,cellular,may,mon,20,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,admin.,single,university.degree,no,no,no,cellular,may,mon,26,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+27,unemployed,married,high.school,no,yes,no,cellular,may,mon,11,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+29,technician,single,university.degree,no,no,no,cellular,may,mon,50,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,admin.,single,university.degree,no,yes,yes,cellular,may,mon,22,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,technician,single,professional.course,no,no,no,cellular,may,mon,687,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+47,entrepreneur,married,professional.course,no,unknown,unknown,cellular,may,mon,44,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,technician,married,professional.course,no,yes,no,cellular,may,mon,638,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+56,technician,single,professional.course,no,yes,no,cellular,may,mon,80,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+36,admin.,single,university.degree,no,no,no,telephone,may,mon,12,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+56,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,197,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+31,blue-collar,single,high.school,no,yes,no,cellular,may,mon,126,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+35,admin.,single,university.degree,no,yes,no,cellular,may,mon,424,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+28,admin.,single,university.degree,no,yes,no,cellular,may,mon,28,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,admin.,divorced,university.degree,unknown,yes,yes,cellular,may,mon,121,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+33,admin.,single,university.degree,no,no,no,cellular,may,mon,305,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,management,married,high.school,no,no,no,cellular,may,mon,236,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+32,admin.,married,university.degree,no,yes,no,cellular,may,mon,232,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+52,admin.,divorced,high.school,no,yes,yes,cellular,may,mon,80,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+55,admin.,divorced,unknown,unknown,no,no,cellular,may,mon,178,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+46,admin.,single,university.degree,no,no,yes,cellular,may,mon,11,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+47,services,divorced,high.school,no,yes,no,cellular,may,mon,953,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+44,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,267,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no
+41,unemployed,married,professional.course,no,yes,no,cellular,may,mon,34,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+46,technician,divorced,professional.course,no,yes,no,cellular,may,mon,214,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+58,management,divorced,university.degree,no,yes,no,telephone,may,mon,56,9,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+30,services,married,university.degree,no,yes,no,cellular,may,mon,109,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+37,management,divorced,university.degree,no,yes,no,cellular,may,mon,1173,3,9,1,success,-1.8,92.893,-46.2,1.244,5099.1,yes
+31,technician,married,university.degree,no,yes,no,telephone,may,mon,45,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+26,entrepreneur,single,high.school,no,yes,no,cellular,may,mon,226,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+32,admin.,married,high.school,no,yes,no,cellular,may,mon,171,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+57,admin.,single,high.school,no,unknown,unknown,telephone,may,mon,102,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+43,admin.,divorced,high.school,no,yes,no,telephone,may,mon,150,8,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+58,admin.,married,university.degree,no,yes,no,cellular,may,mon,1359,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes
+43,blue-collar,married,unknown,unknown,no,no,cellular,may,mon,715,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+41,technician,single,high.school,no,yes,no,cellular,may,mon,263,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+25,unemployed,married,university.degree,no,no,no,cellular,may,mon,32,8,10,1,success,-1.8,92.893,-46.2,1.244,5099.1,no
+55,admin.,married,university.degree,no,yes,no,cellular,may,mon,8,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+53,blue-collar,married,professional.course,no,no,yes,cellular,may,mon,28,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+46,services,single,professional.course,unknown,no,yes,cellular,may,mon,390,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+32,services,married,high.school,unknown,no,no,cellular,may,mon,642,3,10,1,success,-1.8,92.893,-46.2,1.244,5099.1,yes
+32,blue-collar,married,basic.9y,unknown,no,no,cellular,may,mon,1880,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no
+52,admin.,divorced,basic.9y,no,no,yes,cellular,may,mon,639,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes
+40,technician,single,professional.course,no,yes,no,cellular,may,fri,317,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,yes
+44,technician,married,professional.course,no,yes,no,cellular,may,fri,135,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+43,entrepreneur,married,professional.course,no,yes,yes,cellular,may,fri,114,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no
+38,services,married,high.school,no,yes,no,cellular,may,fri,324,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,yes
+81,retired,divorced,unknown,unknown,yes,yes,cellular,may,fri,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes
+45,admin.,single,university.degree,no,no,no,cellular,may,fri,582,1,3,1,success,-1.8,92.893,-46.2,1.259,5099.1,yes
+35,technician,divorced,professional.course,no,yes,no,cellular,may,fri,394,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+35,technician,divorced,professional.course,no,no,no,cellular,may,fri,169,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no
+26,technician,single,university.degree,no,no,no,cellular,may,fri,199,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,yes
+35,technician,divorced,professional.course,no,no,no,cellular,may,fri,354,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes
+35,admin.,married,high.school,no,yes,no,cellular,may,fri,121,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+48,entrepreneur,married,university.degree,no,yes,no,cellular,may,fri,796,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,yes
+34,admin.,married,university.degree,no,no,no,cellular,may,fri,190,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+45,admin.,married,unknown,no,no,no,cellular,may,fri,78,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no
+45,admin.,married,unknown,no,yes,no,cellular,may,fri,271,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes
+39,technician,single,university.degree,no,yes,no,cellular,may,fri,150,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+39,technician,single,university.degree,no,yes,no,cellular,may,fri,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+40,management,married,high.school,no,yes,yes,cellular,may,fri,230,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+40,management,married,high.school,no,yes,no,cellular,may,fri,94,7,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+71,housemaid,married,unknown,no,yes,no,cellular,may,fri,122,2,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no
+36,admin.,married,professional.course,no,yes,yes,cellular,may,fri,89,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+23,student,single,basic.9y,no,no,yes,cellular,may,fri,563,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+27,admin.,single,university.degree,no,no,no,cellular,may,fri,86,1,3,1,success,-1.8,92.893,-46.2,1.259,5099.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,may,fri,120,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,may,fri,680,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no
+58,retired,married,basic.9y,no,no,yes,cellular,may,fri,235,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+19,student,single,basic.9y,no,yes,no,cellular,may,fri,491,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes
+83,retired,married,basic.9y,no,yes,yes,cellular,may,fri,74,1,3,3,failure,-1.8,92.893,-46.2,1.259,5099.1,no
+30,admin.,married,university.degree,no,yes,no,cellular,may,fri,158,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,may,fri,431,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes
+49,admin.,married,university.degree,no,yes,no,cellular,may,fri,168,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+49,admin.,married,university.degree,no,no,no,telephone,may,fri,152,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+66,housemaid,married,high.school,no,yes,no,cellular,may,fri,210,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,may,fri,81,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+37,technician,married,university.degree,no,yes,yes,cellular,may,fri,239,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+57,admin.,married,basic.6y,no,yes,no,cellular,may,fri,100,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+57,admin.,married,basic.6y,no,no,no,cellular,may,fri,259,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no
+32,technician,single,university.degree,no,no,no,cellular,may,fri,44,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+40,technician,single,professional.course,no,yes,no,cellular,may,fri,320,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+40,technician,single,professional.course,no,no,yes,cellular,may,fri,807,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+55,admin.,married,university.degree,no,no,no,cellular,may,fri,190,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+46,unknown,single,unknown,no,yes,yes,cellular,may,fri,136,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+18,student,single,high.school,no,no,no,cellular,may,fri,271,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,yes
+18,student,single,high.school,no,yes,no,cellular,may,fri,251,1,1,2,success,-1.8,92.893,-46.2,1.259,5099.1,no
+48,entrepreneur,married,university.degree,no,yes,no,cellular,may,fri,316,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes
+57,admin.,married,university.degree,no,yes,no,cellular,may,fri,554,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes
+62,technician,married,professional.course,no,yes,no,cellular,may,fri,181,2,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no
+29,admin.,unknown,university.degree,no,no,no,cellular,may,fri,264,2,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no
+43,technician,married,high.school,no,yes,no,cellular,may,fri,81,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+75,retired,divorced,basic.4y,no,yes,yes,cellular,may,fri,83,3,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+46,technician,married,university.degree,no,no,no,cellular,may,fri,566,7,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+43,technician,married,high.school,no,no,no,cellular,may,fri,223,1,3,1,success,-1.8,92.893,-46.2,1.259,5099.1,yes
+38,admin.,married,university.degree,no,yes,yes,cellular,may,fri,80,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+26,student,single,professional.course,no,no,yes,cellular,may,fri,182,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes
+28,technician,single,professional.course,no,no,no,cellular,may,fri,198,1,3,1,success,-1.8,92.893,-46.2,1.259,5099.1,yes
+31,services,single,high.school,no,no,no,cellular,may,fri,293,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes
+28,admin.,single,university.degree,no,yes,no,cellular,may,fri,50,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+27,admin.,married,high.school,no,yes,no,cellular,may,fri,137,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+52,unemployed,single,basic.4y,no,yes,no,cellular,may,fri,169,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+40,management,married,high.school,no,no,no,cellular,may,fri,253,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no
+35,technician,married,university.degree,no,yes,yes,telephone,may,fri,231,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes
+49,admin.,married,university.degree,no,yes,no,cellular,may,fri,105,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+45,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,157,3,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+30,admin.,married,university.degree,no,yes,yes,cellular,may,fri,449,4,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes
+59,technician,married,professional.course,no,yes,no,cellular,may,fri,43,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+59,self-employed,single,university.degree,no,yes,no,telephone,may,fri,249,3,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+37,admin.,married,university.degree,no,yes,no,cellular,may,fri,685,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes
+37,housemaid,single,university.degree,no,no,no,cellular,may,fri,288,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes
+26,admin.,single,university.degree,no,yes,no,telephone,may,fri,23,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+34,admin.,single,university.degree,no,yes,yes,cellular,may,fri,46,3,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no
+48,services,married,high.school,no,no,no,cellular,may,mon,97,3,999,2,failure,-1.8,92.893,-46.2,1.264,5099.1,no
+46,admin.,single,high.school,no,yes,yes,cellular,may,mon,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+50,admin.,divorced,university.degree,no,yes,yes,cellular,may,mon,644,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+27,admin.,married,university.degree,no,no,yes,telephone,may,mon,86,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,mon,304,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,mon,186,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no
+34,admin.,married,university.degree,no,yes,yes,cellular,may,mon,582,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+26,admin.,single,university.degree,no,yes,no,cellular,may,mon,365,5,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+44,technician,married,basic.9y,no,yes,yes,cellular,may,mon,354,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+32,admin.,married,university.degree,no,no,no,cellular,may,mon,112,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+36,technician,married,university.degree,no,yes,yes,cellular,may,mon,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+24,admin.,single,university.degree,no,no,no,cellular,may,mon,174,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no
+36,self-employed,married,university.degree,no,no,no,cellular,may,mon,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+44,services,married,high.school,no,yes,yes,cellular,may,mon,283,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,yes
+53,technician,married,professional.course,no,no,no,cellular,may,mon,421,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes
+36,admin.,married,high.school,no,no,no,cellular,may,mon,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes
+33,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,70,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+58,housemaid,married,basic.4y,no,no,no,cellular,may,mon,91,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+33,unemployed,married,high.school,no,yes,yes,cellular,may,mon,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+44,blue-collar,single,professional.course,no,yes,no,cellular,may,mon,64,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+44,blue-collar,single,professional.course,no,no,no,cellular,may,mon,104,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+54,management,married,university.degree,no,no,no,cellular,may,mon,397,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,yes
+36,admin.,single,university.degree,no,no,no,cellular,may,mon,327,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+56,retired,married,high.school,no,yes,no,cellular,may,mon,106,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+29,admin.,married,university.degree,no,no,no,cellular,may,mon,90,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+55,unemployed,married,basic.9y,no,no,yes,cellular,may,mon,296,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes
+27,admin.,single,university.degree,no,yes,yes,cellular,may,mon,179,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+52,entrepreneur,married,basic.6y,no,yes,no,cellular,may,mon,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+62,retired,single,university.degree,no,yes,yes,cellular,may,mon,112,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+42,entrepreneur,married,university.degree,no,yes,no,cellular,may,mon,265,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+37,blue-collar,single,professional.course,no,no,no,cellular,may,mon,54,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+46,admin.,single,university.degree,no,no,no,cellular,may,mon,344,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+56,admin.,divorced,university.degree,no,yes,no,cellular,may,mon,867,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes
+46,admin.,single,university.degree,no,no,no,cellular,may,mon,70,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+46,admin.,single,university.degree,no,no,no,cellular,may,mon,269,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,yes
+46,admin.,single,university.degree,no,no,yes,cellular,may,mon,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+46,admin.,single,university.degree,no,yes,no,cellular,may,mon,92,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+56,retired,married,high.school,no,no,yes,cellular,may,mon,613,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,mon,915,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes
+54,admin.,single,university.degree,no,yes,no,cellular,may,mon,485,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+54,admin.,single,university.degree,no,no,no,cellular,may,mon,337,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes
+34,admin.,married,university.degree,no,yes,no,cellular,may,mon,185,1,2,1,success,-1.8,92.893,-46.2,1.264,5099.1,no
+43,blue-collar,married,basic.9y,no,no,yes,cellular,may,mon,487,1,3,1,success,-1.8,92.893,-46.2,1.264,5099.1,yes
+26,student,single,basic.9y,no,yes,no,cellular,may,mon,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+32,admin.,single,university.degree,unknown,yes,no,cellular,may,mon,157,4,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no
+25,admin.,married,university.degree,no,unknown,unknown,cellular,may,mon,612,7,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes
+27,admin.,single,university.degree,no,no,no,cellular,may,mon,160,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+26,unknown,single,basic.9y,no,yes,yes,cellular,may,mon,64,1,3,1,success,-1.8,92.893,-46.2,1.264,5099.1,no
+32,admin.,divorced,high.school,no,no,no,cellular,may,mon,111,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+37,technician,married,university.degree,no,yes,no,cellular,may,mon,288,1,3,1,success,-1.8,92.893,-46.2,1.264,5099.1,yes
+36,admin.,married,university.degree,no,no,yes,cellular,may,mon,305,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+36,admin.,married,university.degree,no,yes,yes,cellular,may,mon,77,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+58,housemaid,married,basic.4y,no,yes,no,cellular,may,mon,144,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+36,self-employed,married,university.degree,no,no,yes,cellular,may,mon,159,2,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no
+33,unemployed,married,high.school,no,yes,no,cellular,may,mon,74,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no
+26,student,single,university.degree,no,no,yes,cellular,may,mon,115,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+36,admin.,married,university.degree,no,yes,no,cellular,may,mon,1064,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes
+50,admin.,divorced,university.degree,no,no,yes,cellular,may,mon,213,4,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes
+36,self-employed,married,university.degree,no,yes,no,cellular,may,mon,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+36,self-employed,married,university.degree,no,no,no,cellular,may,mon,54,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+46,unemployed,married,basic.9y,no,yes,no,cellular,may,mon,205,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no
+34,admin.,married,university.degree,no,yes,no,telephone,may,mon,180,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+61,retired,married,basic.9y,no,no,no,cellular,may,mon,324,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,mon,159,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no
+60,admin.,married,high.school,no,no,yes,telephone,may,mon,87,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+35,admin.,married,high.school,no,yes,no,cellular,may,mon,226,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes
+29,admin.,married,university.degree,no,yes,no,cellular,may,mon,93,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+34,technician,single,professional.course,no,no,yes,cellular,may,mon,217,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no
+35,admin.,married,university.degree,no,yes,no,cellular,may,mon,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+43,technician,divorced,professional.course,no,yes,no,cellular,may,mon,143,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+42,technician,married,professional.course,no,no,no,cellular,may,mon,377,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes
+30,admin.,single,high.school,no,yes,no,cellular,may,mon,158,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes
+27,management,single,university.degree,no,yes,no,cellular,may,mon,115,2,3,1,success,-1.8,92.893,-46.2,1.264,5099.1,no
+31,services,single,university.degree,no,no,no,cellular,may,mon,262,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes
+78,retired,married,high.school,no,yes,no,cellular,may,mon,754,2,3,2,failure,-1.8,92.893,-46.2,1.264,5099.1,no
+55,self-employed,married,university.degree,no,yes,no,cellular,may,mon,123,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+42,technician,married,professional.course,no,no,no,cellular,may,mon,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+32,admin.,married,university.degree,no,no,no,cellular,may,mon,166,3,12,2,failure,-1.8,92.893,-46.2,1.264,5099.1,no
+41,admin.,married,high.school,no,yes,yes,cellular,may,mon,217,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+46,admin.,married,university.degree,no,yes,no,telephone,may,mon,243,4,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+54,blue-collar,married,basic.4y,no,unknown,unknown,cellular,may,mon,352,3,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,yes
+47,admin.,divorced,high.school,no,yes,no,cellular,may,mon,142,4,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no
+28,self-employed,single,university.degree,no,no,yes,cellular,may,mon,315,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes
+29,technician,single,university.degree,no,no,no,cellular,may,mon,170,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+28,technician,single,high.school,no,yes,no,telephone,may,mon,100,3,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no
+36,self-employed,married,university.degree,no,yes,no,cellular,may,mon,414,2,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,yes
+34,technician,single,professional.course,no,yes,no,cellular,may,mon,601,2,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,yes
+38,management,married,university.degree,no,yes,no,cellular,may,tue,111,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,may,tue,164,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+44,blue-collar,married,professional.course,no,yes,yes,cellular,may,tue,133,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,self-employed,married,university.degree,no,no,no,cellular,may,tue,105,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+52,services,married,high.school,no,yes,no,cellular,may,tue,108,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,admin.,single,university.degree,no,no,yes,cellular,may,tue,527,2,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+26,admin.,single,university.degree,no,no,no,cellular,may,tue,135,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,self-employed,married,university.degree,no,no,no,cellular,may,tue,107,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,blue-collar,single,professional.course,no,no,no,cellular,may,tue,314,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,admin.,married,university.degree,no,no,no,cellular,may,tue,65,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+59,self-employed,married,university.degree,no,yes,no,cellular,may,tue,61,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,management,married,high.school,no,yes,no,cellular,may,tue,78,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+49,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,135,1,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+60,retired,married,university.degree,no,yes,no,cellular,may,tue,133,1,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,yes
+32,admin.,married,university.degree,no,yes,no,cellular,may,tue,293,2,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+65,retired,married,unknown,no,no,no,cellular,may,tue,318,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+30,housemaid,married,high.school,no,yes,no,cellular,may,tue,84,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,may,tue,309,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,admin.,married,university.degree,no,no,no,cellular,may,tue,111,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+38,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,may,tue,1078,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+35,admin.,married,high.school,no,yes,no,cellular,may,tue,159,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+58,management,married,university.degree,no,yes,no,cellular,may,tue,640,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+39,admin.,married,high.school,no,no,no,cellular,may,tue,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,482,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+39,admin.,married,high.school,no,yes,no,cellular,may,tue,217,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+39,admin.,married,high.school,no,yes,no,cellular,may,tue,71,5,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+27,student,single,high.school,no,yes,yes,cellular,may,tue,91,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+36,admin.,single,university.degree,no,yes,no,cellular,may,tue,260,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+40,student,single,high.school,no,yes,no,cellular,may,tue,333,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+55,retired,married,high.school,no,yes,no,cellular,may,tue,228,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+55,retired,married,high.school,no,no,no,cellular,may,tue,256,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+51,retired,married,high.school,no,yes,no,cellular,may,tue,302,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+61,unknown,single,basic.4y,no,yes,yes,cellular,may,tue,131,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+61,unknown,single,basic.4y,no,yes,no,cellular,may,tue,154,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+25,admin.,single,university.degree,no,yes,yes,cellular,may,tue,500,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,admin.,married,high.school,no,no,no,cellular,may,tue,172,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+61,unknown,single,basic.4y,no,yes,no,cellular,may,tue,574,1,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+55,housemaid,married,professional.course,no,yes,no,telephone,may,tue,137,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,may,tue,244,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,single,university.degree,no,no,no,cellular,may,tue,134,1,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+29,self-employed,married,university.degree,no,no,no,cellular,may,tue,376,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,technician,single,university.degree,no,no,no,cellular,may,tue,911,1,2,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+24,technician,single,professional.course,no,no,no,telephone,may,tue,240,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,admin.,married,high.school,no,no,no,telephone,may,tue,122,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+45,admin.,divorced,university.degree,no,no,no,cellular,may,tue,167,1,9,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+45,admin.,divorced,university.degree,no,yes,no,cellular,may,tue,351,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,married,university.degree,no,yes,no,cellular,may,tue,165,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes
+28,technician,single,university.degree,no,yes,no,cellular,may,tue,326,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+28,unemployed,single,high.school,no,no,yes,cellular,may,tue,58,1,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+55,entrepreneur,married,professional.course,no,yes,no,cellular,may,tue,56,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,technician,single,university.degree,no,yes,no,cellular,may,tue,145,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+31,admin.,married,high.school,no,yes,no,cellular,may,tue,208,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes
+29,self-employed,married,university.degree,no,no,no,cellular,may,tue,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+35,management,single,university.degree,no,no,no,cellular,may,tue,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,admin.,single,university.degree,no,no,no,cellular,may,tue,171,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+53,technician,married,professional.course,unknown,yes,no,cellular,may,tue,103,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+28,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,3509,2,3,2,success,-1.8,92.893,-46.2,1.266,5099.1,no
+54,admin.,divorced,professional.course,no,yes,no,cellular,may,tue,81,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+59,retired,married,basic.4y,no,no,no,cellular,may,tue,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+22,student,single,high.school,no,no,no,cellular,may,tue,304,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,admin.,married,professional.course,no,no,no,cellular,may,tue,55,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,divorced,university.degree,no,no,no,cellular,may,tue,140,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,services,married,high.school,no,yes,no,cellular,may,tue,83,1,1,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+37,entrepreneur,single,basic.9y,no,yes,no,cellular,may,tue,222,1,2,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+36,services,married,high.school,no,yes,no,cellular,may,tue,145,1,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+36,admin.,married,high.school,no,no,no,telephone,may,tue,1346,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+28,admin.,single,university.degree,no,no,no,cellular,may,tue,118,1,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+42,admin.,married,university.degree,no,no,no,cellular,may,tue,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+42,admin.,married,university.degree,no,yes,no,cellular,may,tue,251,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+31,technician,single,university.degree,no,yes,yes,cellular,may,tue,69,1,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+22,student,single,high.school,no,no,no,cellular,may,tue,245,2,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,single,high.school,no,yes,no,cellular,may,tue,135,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+29,admin.,single,university.degree,no,yes,no,cellular,may,tue,88,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,admin.,single,university.degree,no,yes,no,cellular,may,tue,125,1,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+25,admin.,single,university.degree,no,yes,no,cellular,may,tue,228,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+22,student,single,high.school,no,yes,yes,cellular,may,tue,131,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+28,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,390,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+42,services,married,high.school,no,yes,no,cellular,may,tue,132,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+28,admin.,single,university.degree,no,yes,no,cellular,may,tue,187,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,services,married,university.degree,no,yes,no,cellular,may,tue,139,1,1,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+27,services,married,university.degree,no,yes,no,cellular,may,tue,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+36,services,married,high.school,no,yes,no,cellular,may,tue,161,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,services,married,university.degree,no,yes,no,cellular,may,tue,445,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+36,admin.,married,basic.9y,no,yes,no,cellular,may,tue,100,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+27,services,married,university.degree,no,no,no,cellular,may,tue,223,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+49,management,single,university.degree,no,yes,yes,cellular,may,tue,141,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,149,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+32,technician,married,professional.course,no,yes,no,cellular,may,tue,579,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+39,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,136,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,323,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,technician,single,university.degree,no,no,no,cellular,may,tue,197,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,services,married,high.school,no,no,no,cellular,may,tue,222,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+34,housemaid,married,university.degree,no,yes,no,cellular,may,tue,58,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+48,blue-collar,married,high.school,no,no,no,cellular,may,tue,407,2,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+48,blue-collar,married,high.school,no,no,no,cellular,may,tue,252,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+25,admin.,single,university.degree,no,no,no,cellular,may,tue,80,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,management,single,university.degree,no,yes,no,cellular,may,tue,112,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+33,technician,married,university.degree,no,no,no,cellular,may,tue,87,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+25,admin.,single,university.degree,no,yes,no,cellular,may,tue,427,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+31,admin.,married,university.degree,no,no,no,cellular,may,tue,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+21,student,single,high.school,no,yes,no,cellular,may,tue,226,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+28,services,married,basic.9y,no,no,no,cellular,may,tue,396,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+22,technician,single,unknown,no,no,no,cellular,may,tue,192,1,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,yes
+42,services,married,high.school,no,yes,yes,cellular,may,tue,103,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+25,technician,single,professional.course,no,yes,no,cellular,may,tue,260,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,blue-collar,single,university.degree,no,yes,no,cellular,may,tue,139,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+52,services,married,high.school,no,yes,no,telephone,may,tue,108,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+51,admin.,divorced,university.degree,no,no,no,cellular,may,tue,91,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+51,admin.,divorced,university.degree,no,yes,no,cellular,may,tue,41,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+37,technician,single,professional.course,no,no,no,cellular,may,tue,89,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+25,admin.,single,university.degree,no,yes,yes,cellular,may,tue,82,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+49,admin.,single,university.degree,no,no,no,cellular,may,tue,132,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+49,admin.,single,university.degree,no,yes,no,cellular,may,tue,147,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+49,admin.,single,university.degree,no,no,no,cellular,may,tue,362,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+29,admin.,married,university.degree,no,yes,no,cellular,may,tue,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+38,technician,married,university.degree,no,yes,no,cellular,may,tue,118,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+39,admin.,married,high.school,no,no,no,cellular,may,tue,264,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+59,self-employed,married,university.degree,no,no,no,cellular,may,tue,94,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+23,student,single,basic.6y,no,yes,no,cellular,may,tue,258,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+59,self-employed,married,university.degree,no,no,no,cellular,may,tue,137,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+26,student,single,unknown,no,yes,no,cellular,may,tue,189,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no
+30,admin.,single,high.school,no,yes,no,cellular,may,tue,245,3,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,253,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+27,services,married,university.degree,no,no,no,cellular,may,tue,752,2,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no
+29,technician,single,high.school,no,no,yes,cellular,may,tue,185,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes
+32,admin.,single,university.degree,no,unknown,unknown,cellular,may,tue,129,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+47,retired,divorced,university.degree,no,no,no,cellular,may,tue,175,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no
+27,admin.,single,university.degree,no,yes,no,cellular,may,wed,480,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+32,admin.,single,university.degree,no,no,no,cellular,may,wed,532,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+30,technician,single,professional.course,no,no,no,cellular,may,wed,229,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes
+25,admin.,single,university.degree,no,yes,yes,cellular,may,wed,163,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+34,services,married,high.school,no,no,no,cellular,may,wed,71,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+54,admin.,divorced,university.degree,no,unknown,unknown,cellular,may,wed,161,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+42,technician,married,professional.course,no,no,no,cellular,may,wed,82,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+30,admin.,married,university.degree,no,no,no,cellular,may,wed,121,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+31,admin.,single,high.school,no,no,no,cellular,may,wed,439,1,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,yes
+54,unemployed,married,basic.9y,no,no,no,cellular,may,wed,193,1,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,yes
+34,admin.,married,university.degree,no,yes,yes,cellular,may,wed,242,1,7,1,success,-1.8,92.893,-46.2,1.27,5099.1,yes
+30,technician,married,professional.course,no,no,no,cellular,may,wed,188,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+47,management,married,high.school,no,no,no,cellular,may,wed,282,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+39,admin.,single,high.school,no,yes,no,cellular,may,wed,130,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+25,student,single,professional.course,no,yes,no,cellular,may,wed,483,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+31,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,116,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes
+54,unemployed,married,basic.9y,no,no,no,telephone,may,wed,108,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+31,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,81,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+31,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,128,1,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no
+30,management,married,university.degree,no,no,no,cellular,may,wed,283,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+50,admin.,divorced,university.degree,no,yes,yes,cellular,may,wed,155,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes
+35,admin.,single,university.degree,no,yes,no,cellular,may,wed,138,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+26,services,single,high.school,no,no,no,cellular,may,wed,119,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+34,admin.,married,university.degree,no,yes,no,telephone,may,wed,93,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+52,admin.,married,university.degree,no,yes,yes,cellular,may,wed,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+37,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,133,2,1,1,success,-1.8,92.893,-46.2,1.27,5099.1,no
+56,technician,married,basic.4y,no,no,no,cellular,may,wed,776,3,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,yes
+24,admin.,single,university.degree,no,yes,no,cellular,may,wed,140,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+31,admin.,married,university.degree,no,yes,no,cellular,may,wed,136,2,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,no
+68,retired,married,university.degree,no,yes,yes,cellular,may,wed,145,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+37,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,224,7,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,wed,95,1,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no
+29,management,married,university.degree,no,yes,no,cellular,may,wed,281,4,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,yes
+38,housemaid,married,university.degree,no,yes,no,cellular,may,wed,90,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+38,management,single,university.degree,no,no,no,cellular,may,wed,123,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+20,student,single,high.school,no,yes,no,cellular,may,wed,297,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+32,admin.,single,university.degree,no,yes,no,telephone,may,wed,76,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+26,self-employed,single,university.degree,no,no,no,cellular,may,wed,119,1,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,yes
+33,admin.,single,university.degree,no,yes,no,cellular,may,wed,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes
+25,admin.,single,university.degree,no,no,no,cellular,may,wed,114,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+61,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,113,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+61,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,62,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+34,admin.,married,university.degree,no,no,no,cellular,may,wed,1576,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+32,blue-collar,single,high.school,no,no,no,cellular,may,wed,329,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes
+41,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,107,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+41,technician,married,professional.course,no,yes,yes,cellular,may,wed,204,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+26,self-employed,married,university.degree,no,no,no,cellular,may,wed,367,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes
+66,unknown,divorced,unknown,unknown,yes,no,cellular,may,wed,82,2,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no
+40,technician,single,university.degree,no,no,no,telephone,may,wed,146,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+26,student,single,high.school,no,no,no,cellular,may,wed,424,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+32,admin.,single,university.degree,no,yes,no,cellular,may,wed,412,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes
+32,admin.,single,university.degree,no,no,no,cellular,may,wed,103,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+38,management,married,university.degree,no,no,no,telephone,may,wed,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes
+26,self-employed,single,university.degree,no,no,no,cellular,may,wed,161,1,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,no
+52,admin.,married,university.degree,no,no,no,cellular,may,wed,242,2,7,1,success,-1.8,92.893,-46.2,1.27,5099.1,no
+56,retired,married,university.degree,no,no,no,cellular,may,wed,108,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes
+45,technician,married,professional.course,no,yes,no,cellular,may,wed,207,5,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+37,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,73,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+30,student,single,high.school,no,yes,no,cellular,may,wed,156,4,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,no
+40,admin.,single,university.degree,no,yes,no,cellular,may,wed,112,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+26,self-employed,single,university.degree,no,no,no,cellular,may,wed,78,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+43,admin.,single,university.degree,no,yes,no,cellular,may,wed,110,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+32,admin.,single,university.degree,no,no,no,cellular,may,wed,183,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+26,student,single,high.school,no,yes,no,cellular,may,wed,223,3,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,yes
+61,blue-collar,married,basic.4y,no,no,yes,cellular,may,wed,74,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+35,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,123,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+35,unemployed,married,university.degree,no,no,no,cellular,may,wed,76,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+24,technician,single,professional.course,no,unknown,unknown,cellular,may,wed,311,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes
+32,services,married,high.school,no,yes,no,telephone,may,wed,628,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes
+88,retired,divorced,basic.4y,no,yes,no,cellular,may,wed,128,4,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+53,self-employed,married,university.degree,no,no,yes,cellular,may,wed,141,3,6,1,success,-1.8,92.893,-46.2,1.27,5099.1,no
+34,admin.,married,university.degree,no,no,no,cellular,may,wed,89,4,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no
+47,admin.,married,high.school,no,no,no,cellular,may,wed,99,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+35,admin.,single,high.school,no,no,no,cellular,may,wed,236,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,wed,99,2,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,no
+38,management,married,university.degree,no,yes,no,cellular,may,wed,187,2,2,1,success,-1.8,92.893,-46.2,1.27,5099.1,yes
+32,technician,married,university.degree,no,yes,no,telephone,may,wed,186,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+36,technician,married,professional.course,no,yes,no,telephone,may,wed,86,4,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+48,technician,married,basic.6y,no,yes,no,cellular,may,thu,158,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+30,management,married,university.degree,no,no,no,cellular,may,thu,162,7,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+24,management,single,university.degree,no,yes,no,cellular,may,thu,513,9,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes
+66,unknown,married,basic.4y,no,yes,yes,cellular,may,thu,110,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+40,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,681,6,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+35,admin.,married,university.degree,no,no,no,cellular,may,thu,322,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+35,admin.,married,high.school,no,yes,no,cellular,may,thu,210,2,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,no
+27,technician,single,university.degree,no,yes,no,cellular,may,thu,568,8,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+37,entrepreneur,divorced,university.degree,no,yes,no,cellular,may,thu,294,2,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no
+24,student,single,unknown,no,yes,no,cellular,may,thu,558,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+23,student,single,high.school,no,yes,no,cellular,may,thu,77,1,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no
+22,student,single,basic.9y,no,no,no,cellular,may,thu,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+26,student,single,high.school,no,no,no,cellular,may,thu,93,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+24,management,single,university.degree,no,no,no,cellular,may,thu,121,6,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+42,housemaid,married,high.school,no,yes,no,cellular,may,thu,95,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+32,admin.,married,university.degree,no,yes,yes,cellular,may,thu,135,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+52,admin.,divorced,university.degree,no,yes,yes,cellular,may,thu,414,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+35,admin.,married,high.school,no,yes,no,cellular,may,thu,60,2,999,2,failure,-1.8,92.893,-46.2,1.27,5099.1,no
+53,technician,divorced,high.school,no,yes,no,cellular,may,thu,151,4,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+28,technician,single,university.degree,no,no,no,cellular,may,thu,68,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+23,student,single,high.school,no,no,no,cellular,may,thu,361,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+41,unemployed,married,university.degree,no,no,no,cellular,may,thu,142,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+26,technician,single,university.degree,no,yes,no,cellular,may,thu,174,4,2,1,success,-1.8,92.893,-46.2,1.27,5099.1,yes
+24,management,single,university.degree,no,yes,no,cellular,may,thu,45,4,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no
+37,entrepreneur,divorced,university.degree,no,no,yes,cellular,may,thu,95,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+45,admin.,divorced,professional.course,no,yes,yes,telephone,may,thu,44,1,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no
+40,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,61,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+28,services,single,high.school,no,no,no,telephone,may,thu,32,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+45,services,married,high.school,no,yes,yes,cellular,may,thu,141,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+35,admin.,married,high.school,no,yes,yes,cellular,may,thu,81,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+37,entrepreneur,divorced,university.degree,no,yes,yes,telephone,may,thu,71,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+27,technician,single,university.degree,no,no,no,cellular,may,thu,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no
+60,admin.,married,university.degree,no,yes,no,cellular,jun,mon,324,3,3,1,success,-2.9,92.963,-40.8,1.266,5076.2,yes
+29,admin.,single,high.school,no,yes,no,cellular,jun,mon,295,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+32,technician,married,professional.course,no,yes,no,cellular,jun,mon,108,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+45,unemployed,married,basic.9y,no,yes,no,cellular,jun,mon,201,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+35,blue-collar,single,professional.course,no,no,no,cellular,jun,mon,71,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+35,blue-collar,single,professional.course,no,yes,no,cellular,jun,mon,264,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+46,admin.,divorced,university.degree,no,yes,no,cellular,jun,mon,110,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+24,student,single,high.school,unknown,no,no,cellular,jun,mon,190,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no
+53,admin.,divorced,high.school,no,yes,no,cellular,jun,mon,70,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no
+32,admin.,married,university.degree,no,yes,no,cellular,jun,mon,103,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,yes
+27,admin.,single,university.degree,no,yes,yes,cellular,jun,mon,331,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+37,entrepreneur,married,basic.6y,no,yes,no,cellular,jun,mon,377,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+36,unemployed,single,university.degree,no,yes,no,cellular,jun,mon,205,1,4,1,success,-2.9,92.963,-40.8,1.266,5076.2,yes
+36,technician,single,university.degree,no,yes,no,cellular,jun,mon,287,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+33,admin.,married,university.degree,no,yes,no,cellular,jun,mon,346,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+52,admin.,single,university.degree,no,no,yes,cellular,jun,mon,212,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+29,admin.,married,high.school,no,yes,no,cellular,jun,mon,263,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+36,technician,married,university.degree,no,yes,no,cellular,jun,mon,192,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+45,unemployed,married,basic.9y,no,yes,no,cellular,jun,mon,129,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no
+29,admin.,single,university.degree,no,yes,no,cellular,jun,mon,154,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+41,admin.,married,university.degree,no,no,no,cellular,jun,mon,175,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+22,student,single,basic.6y,no,yes,no,cellular,jun,mon,814,1,3,1,success,-2.9,92.963,-40.8,1.266,5076.2,no
+58,admin.,married,university.degree,no,yes,no,cellular,jun,mon,65,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+25,technician,married,university.degree,no,no,no,cellular,jun,mon,67,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no
+57,retired,married,professional.course,no,yes,no,cellular,jun,mon,166,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+52,admin.,single,university.degree,no,yes,no,cellular,jun,mon,327,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+28,admin.,single,university.degree,no,no,no,cellular,jun,mon,69,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,yes
+28,admin.,single,university.degree,no,yes,no,cellular,jun,mon,353,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+47,management,married,university.degree,no,no,no,cellular,jun,mon,210,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+31,services,married,basic.9y,no,yes,no,telephone,jun,mon,277,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+32,technician,married,professional.course,no,unknown,unknown,cellular,jun,mon,210,2,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,yes
+41,technician,married,university.degree,no,yes,yes,cellular,jun,mon,244,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+31,services,married,basic.9y,no,no,no,cellular,jun,mon,84,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+31,services,married,basic.9y,no,yes,no,cellular,jun,mon,208,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+31,services,married,basic.9y,no,yes,no,cellular,jun,mon,326,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+36,technician,married,university.degree,no,no,no,cellular,jun,mon,59,1,3,1,success,-2.9,92.963,-40.8,1.266,5076.2,no
+30,blue-collar,married,basic.9y,no,no,no,cellular,jun,mon,285,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+57,admin.,married,university.degree,no,yes,no,cellular,jun,mon,161,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+39,admin.,married,university.degree,no,no,no,cellular,jun,mon,165,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+27,admin.,married,university.degree,no,unknown,unknown,cellular,jun,mon,459,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no
+59,retired,married,professional.course,no,yes,yes,cellular,jun,mon,1460,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+32,technician,single,university.degree,no,no,no,cellular,jun,mon,1048,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+57,blue-collar,divorced,basic.4y,no,no,no,cellular,jun,mon,233,1,12,1,success,-2.9,92.963,-40.8,1.266,5076.2,no
+33,admin.,married,university.degree,no,no,no,cellular,jun,mon,335,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+37,admin.,married,university.degree,no,yes,yes,cellular,jun,mon,412,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+45,blue-collar,married,basic.9y,no,no,no,cellular,jun,mon,177,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+24,student,single,university.degree,no,no,no,cellular,jun,mon,223,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+65,retired,married,basic.9y,no,no,no,cellular,jun,mon,579,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+33,services,single,high.school,no,no,no,cellular,jun,mon,144,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no
+65,housemaid,married,basic.4y,no,no,no,cellular,jun,mon,145,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+30,technician,single,basic.9y,no,no,no,cellular,jun,mon,93,1,12,1,success,-2.9,92.963,-40.8,1.266,5076.2,no
+49,management,married,university.degree,no,yes,no,telephone,jun,mon,153,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+49,management,married,university.degree,no,no,no,cellular,jun,mon,164,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+49,management,married,university.degree,no,yes,no,cellular,jun,mon,128,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no
+49,management,married,university.degree,no,yes,no,cellular,jun,mon,339,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+44,housemaid,married,university.degree,no,no,no,cellular,jun,mon,223,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no
+34,admin.,single,university.degree,no,no,no,cellular,jun,mon,62,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+34,admin.,single,university.degree,no,no,no,cellular,jun,mon,151,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no
+24,blue-collar,single,basic.9y,no,unknown,unknown,cellular,jun,mon,128,1,3,1,success,-2.9,92.963,-40.8,1.266,5076.2,no
+31,blue-collar,married,basic.9y,unknown,yes,no,cellular,jun,mon,388,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+55,admin.,married,high.school,no,no,no,cellular,jun,mon,180,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+77,management,single,basic.9y,no,no,no,cellular,jun,mon,84,2,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no
+38,blue-collar,divorced,university.degree,no,yes,yes,cellular,jun,mon,87,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+30,admin.,married,university.degree,no,no,no,telephone,jun,mon,194,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+36,management,married,university.degree,no,unknown,unknown,telephone,jun,mon,192,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+27,admin.,married,university.degree,no,yes,no,cellular,jun,mon,761,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+43,admin.,married,high.school,unknown,yes,no,cellular,jun,mon,153,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+21,student,single,high.school,no,yes,no,cellular,jun,mon,202,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+36,admin.,married,university.degree,no,no,no,cellular,jun,mon,174,1,3,1,success,-2.9,92.963,-40.8,1.266,5076.2,yes
+33,unemployed,single,university.degree,no,no,no,telephone,jun,mon,89,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no
+31,technician,married,unknown,no,yes,no,cellular,jun,mon,84,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no
+56,retired,divorced,university.degree,no,yes,no,cellular,jun,mon,164,1,3,1,success,-2.9,92.963,-40.8,1.266,5076.2,no
+27,technician,married,professional.course,no,yes,no,cellular,jun,mon,492,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+29,admin.,single,university.degree,no,no,no,cellular,jun,mon,114,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+36,unemployed,married,university.degree,unknown,yes,no,cellular,jun,mon,450,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no
+49,management,married,university.degree,no,no,no,cellular,jun,mon,215,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+45,unemployed,married,basic.9y,no,no,no,cellular,jun,mon,232,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+36,self-employed,married,university.degree,no,no,yes,cellular,jun,mon,284,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,yes
+32,admin.,single,university.degree,no,yes,no,cellular,jun,mon,253,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+47,management,married,university.degree,no,yes,no,cellular,jun,mon,352,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+58,retired,divorced,professional.course,no,yes,no,cellular,jun,mon,470,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+28,student,single,high.school,no,yes,no,cellular,jun,mon,1144,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+49,management,married,university.degree,no,yes,no,telephone,jun,mon,336,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+37,services,single,high.school,no,yes,no,cellular,jun,mon,195,3,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+28,self-employed,single,university.degree,no,no,no,cellular,jun,mon,373,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+34,blue-collar,married,high.school,no,yes,no,cellular,jun,mon,78,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+65,housemaid,married,basic.4y,no,no,no,cellular,jun,mon,89,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+72,admin.,married,university.degree,no,yes,no,cellular,jun,mon,134,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+31,admin.,single,university.degree,no,yes,no,cellular,jun,mon,181,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+31,services,single,university.degree,no,yes,no,telephone,jun,mon,55,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+28,self-employed,single,university.degree,no,yes,yes,cellular,jun,mon,187,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+55,retired,divorced,university.degree,no,yes,no,cellular,jun,mon,113,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+32,blue-collar,unknown,basic.9y,no,yes,no,cellular,jun,mon,314,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes
+39,admin.,married,university.degree,no,yes,no,cellular,jun,mon,206,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no
+43,admin.,married,high.school,unknown,yes,no,cellular,jun,mon,288,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no
+25,admin.,single,university.degree,no,yes,no,cellular,jun,tue,93,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+53,services,married,unknown,no,yes,no,cellular,jun,tue,327,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+26,technician,single,professional.course,no,yes,no,cellular,jun,tue,163,2,3,1,success,-2.9,92.963,-40.8,1.262,5076.2,yes
+28,management,married,basic.6y,no,no,yes,cellular,jun,tue,111,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+52,unknown,married,professional.course,unknown,yes,no,cellular,jun,tue,149,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+37,technician,single,university.degree,no,yes,no,cellular,jun,tue,96,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+67,admin.,married,basic.4y,unknown,no,no,cellular,jun,tue,466,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+21,management,single,university.degree,no,unknown,unknown,cellular,jun,tue,106,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+26,technician,divorced,university.degree,no,yes,no,cellular,jun,tue,101,1,3,1,success,-2.9,92.963,-40.8,1.262,5076.2,no
+33,admin.,single,university.degree,no,yes,no,cellular,jun,tue,257,3,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+26,admin.,single,high.school,no,no,no,cellular,jun,tue,479,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+26,technician,divorced,university.degree,no,no,no,cellular,jun,tue,437,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+33,admin.,single,university.degree,no,yes,no,cellular,jun,tue,198,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+58,retired,divorced,high.school,no,no,yes,cellular,jun,tue,143,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+43,blue-collar,married,basic.9y,no,yes,no,cellular,jun,tue,395,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+40,admin.,single,high.school,no,yes,no,cellular,jun,tue,145,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+40,admin.,single,high.school,no,yes,no,cellular,jun,tue,154,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+27,student,single,basic.9y,no,yes,yes,cellular,jun,tue,107,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+58,retired,divorced,high.school,no,yes,no,cellular,jun,tue,663,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+32,admin.,single,high.school,no,yes,no,cellular,jun,tue,350,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+35,services,married,high.school,no,yes,yes,cellular,jun,tue,126,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+39,admin.,married,professional.course,no,yes,yes,cellular,jun,tue,145,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+31,admin.,single,university.degree,no,yes,no,cellular,jun,tue,282,2,13,1,success,-2.9,92.963,-40.8,1.262,5076.2,yes
+47,management,married,basic.9y,no,yes,no,cellular,jun,tue,118,2,3,1,success,-2.9,92.963,-40.8,1.262,5076.2,no
+48,technician,married,high.school,no,yes,no,cellular,jun,tue,115,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+59,retired,divorced,university.degree,no,no,no,cellular,jun,tue,368,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+46,unemployed,married,basic.9y,no,yes,no,cellular,jun,tue,62,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+46,unemployed,married,basic.9y,no,unknown,unknown,cellular,jun,tue,96,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+46,unemployed,married,basic.9y,no,no,no,cellular,jun,tue,294,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+67,admin.,married,basic.4y,unknown,yes,no,cellular,jun,tue,177,2,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+33,admin.,married,university.degree,no,yes,no,cellular,jun,tue,64,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+33,admin.,married,university.degree,no,yes,no,cellular,jun,tue,690,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+32,services,single,professional.course,no,yes,no,cellular,jun,tue,297,1,999,2,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+32,admin.,married,university.degree,no,yes,yes,cellular,jun,tue,384,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+32,admin.,married,university.degree,no,no,no,cellular,jun,tue,596,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+37,technician,single,university.degree,no,no,no,cellular,jun,tue,654,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,yes
+49,admin.,divorced,university.degree,no,yes,no,cellular,jun,tue,144,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+49,admin.,divorced,university.degree,no,yes,no,cellular,jun,tue,88,1,4,1,success,-2.9,92.963,-40.8,1.262,5076.2,no
+52,unknown,married,professional.course,unknown,yes,no,telephone,jun,tue,50,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+31,admin.,single,university.degree,no,no,no,cellular,jun,tue,99,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+43,admin.,divorced,university.degree,no,yes,no,cellular,jun,tue,418,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+41,entrepreneur,married,high.school,no,yes,no,cellular,jun,tue,169,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+27,student,married,university.degree,no,no,no,cellular,jun,tue,59,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+34,technician,married,university.degree,no,yes,no,cellular,jun,tue,195,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+31,blue-collar,single,basic.9y,no,yes,yes,cellular,jun,tue,103,1,3,2,success,-2.9,92.963,-40.8,1.262,5076.2,yes
+32,technician,single,high.school,no,no,no,cellular,jun,tue,430,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,yes
+33,admin.,single,high.school,no,yes,no,cellular,jun,tue,167,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+52,services,divorced,basic.4y,no,yes,no,cellular,jun,tue,74,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+24,student,single,high.school,no,no,no,cellular,jun,tue,253,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+24,student,single,high.school,no,no,no,cellular,jun,tue,225,1,3,1,success,-2.9,92.963,-40.8,1.262,5076.2,no
+25,admin.,single,university.degree,no,no,no,cellular,jun,tue,417,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+52,unknown,married,professional.course,unknown,yes,yes,cellular,jun,tue,135,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+41,technician,married,professional.course,no,no,no,cellular,jun,tue,160,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+32,services,married,high.school,no,unknown,unknown,cellular,jun,tue,172,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+27,self-employed,single,professional.course,no,no,no,cellular,jun,tue,162,2,999,2,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+34,services,married,high.school,no,yes,no,cellular,jun,tue,136,1,999,2,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+41,technician,single,university.degree,no,no,no,telephone,jun,tue,270,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+34,services,single,high.school,no,no,yes,cellular,jun,tue,92,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+27,self-employed,single,university.degree,no,no,no,cellular,jun,tue,271,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+46,unemployed,married,basic.9y,no,no,no,cellular,jun,tue,200,2,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,yes
+47,management,married,basic.9y,no,no,no,cellular,jun,tue,309,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+37,unemployed,unknown,university.degree,no,no,no,cellular,jun,tue,100,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+26,admin.,single,university.degree,no,unknown,unknown,cellular,jun,tue,271,2,3,1,success,-2.9,92.963,-40.8,1.262,5076.2,yes
+29,unemployed,single,high.school,no,no,no,cellular,jun,tue,189,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+79,retired,married,high.school,no,unknown,unknown,cellular,jun,tue,61,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+79,retired,married,high.school,no,yes,yes,cellular,jun,tue,163,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+33,admin.,single,high.school,no,yes,no,cellular,jun,tue,74,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+32,admin.,married,university.degree,no,yes,yes,cellular,jun,tue,82,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+23,student,single,high.school,no,no,no,telephone,jun,tue,108,4,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+43,admin.,married,university.degree,no,yes,no,cellular,jun,tue,91,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+43,admin.,married,university.degree,no,no,yes,cellular,jun,tue,310,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+32,admin.,married,university.degree,no,yes,no,cellular,jun,tue,712,1,3,2,failure,-2.9,92.963,-40.8,1.262,5076.2,yes
+32,admin.,married,university.degree,no,no,no,cellular,jun,tue,74,1,4,1,success,-2.9,92.963,-40.8,1.262,5076.2,yes
+29,admin.,single,university.degree,no,yes,no,telephone,jun,tue,128,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+52,services,divorced,basic.4y,no,yes,no,cellular,jun,tue,80,3,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+29,admin.,single,university.degree,no,yes,no,telephone,jun,tue,392,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+27,services,single,professional.course,no,yes,no,cellular,jun,tue,392,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+32,admin.,single,university.degree,no,yes,no,cellular,jun,tue,369,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+31,management,married,university.degree,no,no,no,cellular,jun,tue,217,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+30,unemployed,married,professional.course,no,yes,no,cellular,jun,tue,194,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+30,unemployed,married,professional.course,no,yes,yes,cellular,jun,tue,495,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+38,admin.,divorced,high.school,no,yes,no,cellular,jun,tue,116,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+41,technician,married,professional.course,no,unknown,unknown,cellular,jun,tue,318,1,4,3,success,-2.9,92.963,-40.8,1.262,5076.2,yes
+33,management,single,university.degree,no,unknown,unknown,cellular,jun,tue,73,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+28,admin.,single,high.school,no,yes,no,cellular,jun,tue,135,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+28,admin.,single,high.school,no,yes,no,cellular,jun,tue,359,1,999,2,failure,-2.9,92.963,-40.8,1.262,5076.2,yes
+34,technician,married,university.degree,no,no,no,cellular,jun,tue,116,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+24,technician,single,professional.course,no,yes,no,cellular,jun,tue,211,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+59,admin.,married,unknown,no,no,no,cellular,jun,tue,245,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+26,admin.,married,high.school,no,yes,yes,cellular,jun,tue,142,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+35,admin.,married,high.school,no,yes,yes,cellular,jun,tue,444,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+33,admin.,single,university.degree,no,yes,no,cellular,jun,tue,251,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+56,management,married,university.degree,no,yes,yes,cellular,jun,tue,673,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+24,unknown,single,university.degree,no,no,no,cellular,jun,tue,119,1,3,2,success,-2.9,92.963,-40.8,1.262,5076.2,yes
+24,unknown,single,university.degree,no,yes,yes,cellular,jun,tue,134,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+24,unknown,single,university.degree,no,yes,no,cellular,jun,tue,74,1,3,2,success,-2.9,92.963,-40.8,1.262,5076.2,no
+24,unknown,single,university.degree,no,yes,no,cellular,jun,tue,728,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+24,unknown,single,university.degree,no,no,no,cellular,jun,tue,263,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,yes
+27,admin.,single,university.degree,no,no,yes,cellular,jun,tue,154,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+24,unknown,single,university.degree,no,yes,yes,cellular,jun,tue,696,1,999,2,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+23,blue-collar,single,basic.9y,no,no,no,cellular,jun,tue,159,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+41,technician,single,university.degree,no,yes,no,cellular,jun,tue,118,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+46,unemployed,married,basic.9y,no,yes,yes,cellular,jun,tue,1210,4,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,yes
+31,admin.,single,university.degree,no,no,yes,cellular,jun,tue,210,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+23,student,single,high.school,no,no,no,cellular,jun,tue,310,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+30,admin.,single,university.degree,no,no,no,cellular,jun,tue,482,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+30,admin.,single,university.degree,no,yes,no,cellular,jun,tue,224,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+47,technician,divorced,high.school,no,yes,no,cellular,jun,tue,221,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+30,self-employed,single,university.degree,no,no,no,cellular,jun,tue,147,3,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+44,admin.,single,university.degree,no,no,no,cellular,jun,tue,924,2,4,1,success,-2.9,92.963,-40.8,1.262,5076.2,yes
+44,admin.,divorced,university.degree,no,yes,yes,cellular,jun,tue,130,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+33,admin.,single,high.school,no,no,no,cellular,jun,tue,53,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+29,management,divorced,basic.9y,no,yes,no,cellular,jun,tue,72,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+28,technician,single,professional.course,no,yes,no,cellular,jun,tue,318,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+34,services,single,high.school,no,no,no,telephone,jun,tue,306,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+33,housemaid,unknown,university.degree,no,no,no,cellular,jun,tue,77,3,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+27,self-employed,single,university.degree,no,yes,no,cellular,jun,tue,112,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+37,admin.,married,university.degree,no,yes,no,cellular,jun,tue,80,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+37,admin.,married,high.school,no,yes,yes,cellular,jun,tue,123,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+31,management,married,university.degree,no,no,no,cellular,jun,tue,212,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+40,admin.,married,university.degree,no,yes,no,cellular,jun,tue,192,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+47,management,married,basic.9y,no,yes,no,cellular,jun,tue,181,3,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,yes
+34,admin.,single,university.degree,no,yes,no,cellular,jun,tue,96,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+47,management,married,basic.9y,no,no,no,cellular,jun,tue,132,4,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+30,technician,single,professional.course,no,yes,no,cellular,jun,tue,76,3,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+38,entrepreneur,married,professional.course,no,yes,yes,cellular,jun,tue,262,2,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+30,admin.,married,university.degree,no,no,no,cellular,jun,tue,250,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+43,admin.,married,university.degree,no,yes,yes,cellular,jun,tue,146,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+33,technician,married,professional.course,no,no,no,cellular,jun,tue,189,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+53,services,married,unknown,no,yes,no,cellular,jun,tue,501,3,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+46,entrepreneur,married,high.school,no,no,no,cellular,jun,tue,69,2,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+40,admin.,married,university.degree,no,no,no,cellular,jun,tue,269,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+46,unemployed,married,basic.9y,no,yes,no,cellular,jun,tue,236,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+32,admin.,married,university.degree,no,yes,yes,cellular,jun,tue,102,4,999,2,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+36,admin.,married,university.degree,unknown,yes,yes,cellular,jun,tue,308,1,3,1,success,-2.9,92.963,-40.8,1.262,5076.2,no
+24,technician,single,professional.course,no,no,no,cellular,jun,tue,122,2,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+58,retired,divorced,high.school,no,yes,no,cellular,jun,tue,145,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+55,retired,married,basic.4y,no,no,no,cellular,jun,tue,130,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+25,blue-collar,single,professional.course,no,yes,no,cellular,jun,tue,179,2,3,1,success,-2.9,92.963,-40.8,1.262,5076.2,yes
+24,technician,single,high.school,no,yes,no,cellular,jun,tue,142,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+44,management,married,university.degree,no,yes,no,cellular,jun,tue,71,3,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no
+55,retired,married,basic.4y,no,no,no,cellular,jun,tue,553,2,3,4,failure,-2.9,92.963,-40.8,1.262,5076.2,no
+31,management,married,university.degree,no,yes,no,cellular,jun,tue,305,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+31,technician,single,professional.course,no,no,no,cellular,jun,tue,163,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,yes
+33,admin.,single,university.degree,no,no,no,cellular,jun,tue,541,3,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes
+28,technician,single,professional.course,no,yes,no,cellular,jun,wed,209,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+43,admin.,married,university.degree,no,yes,no,cellular,jun,wed,262,2,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes
+38,technician,single,university.degree,no,yes,no,telephone,jun,wed,225,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+28,admin.,married,high.school,no,no,no,telephone,jun,wed,206,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+40,blue-collar,divorced,professional.course,no,no,no,cellular,jun,wed,115,2,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes
+24,blue-collar,single,basic.9y,no,yes,no,cellular,jun,wed,406,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+30,admin.,single,university.degree,no,yes,no,cellular,jun,wed,244,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+31,services,married,high.school,no,no,no,cellular,jun,wed,592,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+47,admin.,single,university.degree,no,no,no,cellular,jun,wed,78,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+26,retired,single,high.school,no,unknown,unknown,cellular,jun,wed,508,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+59,retired,married,professional.course,no,yes,no,telephone,jun,wed,437,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+24,blue-collar,single,basic.9y,no,unknown,unknown,cellular,jun,wed,192,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+59,retired,married,professional.course,no,no,no,cellular,jun,wed,136,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+59,retired,married,professional.course,no,yes,no,cellular,jun,wed,68,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+53,blue-collar,divorced,basic.6y,no,yes,no,cellular,jun,wed,123,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+33,admin.,single,university.degree,no,yes,no,cellular,jun,wed,313,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+31,admin.,single,high.school,no,no,no,cellular,jun,wed,137,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+53,technician,divorced,university.degree,no,no,no,cellular,jun,wed,705,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes
+26,student,single,professional.course,no,yes,no,cellular,jun,wed,96,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+28,admin.,single,high.school,no,no,no,cellular,jun,wed,198,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+37,services,married,high.school,no,yes,no,cellular,jun,wed,200,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+40,blue-collar,divorced,professional.course,no,no,no,cellular,jun,wed,210,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+40,management,divorced,university.degree,no,yes,no,cellular,jun,wed,117,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+58,blue-collar,married,basic.4y,no,yes,no,cellular,jun,wed,110,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+38,technician,married,university.degree,no,yes,no,cellular,jun,wed,171,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+36,admin.,married,university.degree,no,no,no,cellular,jun,wed,334,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+37,self-employed,married,professional.course,no,no,no,cellular,jun,wed,321,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+28,student,single,high.school,no,yes,no,cellular,jun,wed,296,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+58,management,married,basic.4y,no,yes,no,cellular,jun,wed,86,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+20,student,single,unknown,no,yes,no,cellular,jun,wed,213,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+29,admin.,single,university.degree,no,yes,yes,telephone,jun,wed,252,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+28,technician,single,professional.course,no,no,no,cellular,jun,wed,411,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+29,admin.,married,high.school,no,yes,no,cellular,jun,wed,37,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+28,admin.,single,university.degree,no,yes,no,cellular,jun,wed,593,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+29,technician,single,university.degree,no,yes,no,cellular,jun,wed,101,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+34,technician,married,professional.course,no,yes,no,cellular,jun,wed,302,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+29,technician,single,university.degree,no,yes,no,cellular,jun,wed,138,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+29,technician,single,university.degree,no,yes,no,cellular,jun,wed,165,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+30,blue-collar,single,high.school,no,yes,no,cellular,jun,wed,88,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+29,services,single,high.school,no,no,no,telephone,jun,wed,116,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+59,blue-collar,married,basic.4y,unknown,no,no,cellular,jun,wed,340,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes
+48,admin.,married,university.degree,no,yes,no,cellular,jun,wed,95,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+31,services,married,high.school,no,yes,no,cellular,jun,wed,591,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+33,blue-collar,married,professional.course,no,yes,no,cellular,jun,wed,88,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+33,blue-collar,married,professional.course,no,yes,no,cellular,jun,wed,90,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+28,services,single,basic.6y,no,no,no,cellular,jun,wed,385,2,4,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes
+39,admin.,married,university.degree,no,no,no,cellular,jun,wed,2219,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+33,blue-collar,married,professional.course,no,unknown,unknown,cellular,jun,wed,240,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+29,admin.,single,university.degree,no,no,no,cellular,jun,wed,174,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+57,entrepreneur,married,basic.4y,no,yes,no,cellular,jun,wed,467,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+30,admin.,single,university.degree,no,yes,no,cellular,jun,wed,107,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+29,admin.,divorced,university.degree,no,yes,no,cellular,jun,wed,238,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+39,management,married,university.degree,no,yes,no,cellular,jun,wed,95,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+29,admin.,single,university.degree,no,yes,no,cellular,jun,wed,170,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+32,admin.,married,high.school,no,yes,no,cellular,jun,wed,342,1,10,1,success,-2.9,92.963,-40.8,1.26,5076.2,no
+29,admin.,married,university.degree,no,unknown,unknown,cellular,jun,wed,113,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+56,retired,married,university.degree,no,yes,no,cellular,jun,wed,252,1,999,2,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+33,admin.,single,high.school,no,no,no,cellular,jun,wed,170,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+20,student,single,high.school,no,yes,yes,cellular,jun,wed,74,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+38,admin.,divorced,high.school,no,no,no,cellular,jun,wed,65,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+61,admin.,married,university.degree,no,yes,no,cellular,jun,wed,151,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+38,technician,married,university.degree,no,yes,no,cellular,jun,wed,273,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+38,technician,married,university.degree,no,no,no,cellular,jun,wed,539,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+40,services,married,high.school,unknown,no,no,cellular,jun,wed,157,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+38,admin.,divorced,high.school,no,yes,no,cellular,jun,wed,1361,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+33,admin.,single,university.degree,no,no,no,cellular,jun,wed,254,1,999,2,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+21,admin.,single,high.school,no,yes,no,cellular,jun,wed,180,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+48,admin.,married,university.degree,no,yes,no,cellular,jun,wed,447,2,4,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes
+26,student,single,university.degree,unknown,yes,no,cellular,jun,wed,247,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+29,services,single,high.school,no,no,no,cellular,jun,wed,136,6,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,no
+32,technician,married,university.degree,no,yes,no,cellular,jun,wed,123,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+37,admin.,married,university.degree,no,no,no,cellular,jun,wed,167,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+24,student,single,high.school,no,yes,no,cellular,jun,wed,74,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+26,technician,single,professional.course,no,yes,no,cellular,jun,wed,80,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+26,technician,single,professional.course,no,yes,no,cellular,jun,wed,102,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+30,admin.,single,university.degree,no,yes,no,cellular,jun,wed,214,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+36,management,single,university.degree,no,yes,no,cellular,jun,wed,300,2,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes
+29,admin.,married,high.school,no,no,no,cellular,jun,wed,200,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+42,self-employed,married,university.degree,no,yes,no,cellular,jun,wed,436,1,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes
+34,management,married,university.degree,no,yes,yes,telephone,jun,wed,192,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+33,management,married,university.degree,no,yes,no,cellular,jun,wed,97,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+50,admin.,single,basic.9y,no,yes,no,cellular,jun,wed,343,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+47,admin.,single,university.degree,no,yes,no,cellular,jun,wed,156,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+50,admin.,single,basic.9y,no,unknown,unknown,cellular,jun,wed,699,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes
+23,student,single,high.school,no,no,no,cellular,jun,wed,200,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+24,services,single,high.school,no,no,no,cellular,jun,wed,150,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+54,management,married,university.degree,no,yes,no,cellular,jun,wed,42,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+29,services,single,high.school,no,yes,yes,cellular,jun,wed,431,2,999,2,failure,-2.9,92.963,-40.8,1.26,5076.2,yes
+56,management,married,university.degree,no,yes,no,cellular,jun,wed,175,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+25,technician,single,university.degree,no,yes,yes,cellular,jun,wed,124,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+30,admin.,single,university.degree,no,no,no,cellular,jun,wed,656,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+54,admin.,married,university.degree,no,no,no,cellular,jun,wed,77,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+40,entrepreneur,married,basic.6y,no,no,no,cellular,jun,wed,837,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+29,services,single,high.school,no,no,no,cellular,jun,wed,725,2,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes
+27,blue-collar,single,basic.6y,no,yes,no,cellular,jun,wed,334,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+57,housemaid,divorced,high.school,no,no,yes,telephone,jun,wed,230,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+69,entrepreneur,married,high.school,no,no,no,cellular,jun,wed,144,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+30,admin.,single,university.degree,no,yes,no,cellular,jun,wed,617,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+69,entrepreneur,married,high.school,no,no,no,cellular,jun,wed,140,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+69,entrepreneur,married,high.school,no,yes,no,cellular,jun,wed,178,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+31,admin.,married,high.school,no,no,no,cellular,jun,wed,161,1,2,1,success,-2.9,92.963,-40.8,1.26,5076.2,no
+29,technician,married,university.degree,no,no,no,cellular,jun,wed,150,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+61,admin.,married,university.degree,unknown,yes,no,cellular,jun,wed,1076,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+26,admin.,single,university.degree,no,yes,no,cellular,jun,wed,213,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+35,admin.,single,university.degree,no,yes,no,cellular,jun,wed,266,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+52,admin.,married,university.degree,no,yes,yes,cellular,jun,wed,247,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+26,student,single,university.degree,unknown,no,no,cellular,jun,wed,78,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+54,admin.,single,high.school,no,no,no,cellular,jun,wed,114,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+33,technician,single,university.degree,no,yes,yes,cellular,jun,wed,203,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+42,admin.,single,university.degree,no,unknown,unknown,telephone,jun,wed,34,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+25,technician,married,professional.course,no,no,no,cellular,jun,wed,595,3,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+33,management,divorced,university.degree,no,yes,no,cellular,jun,wed,63,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+21,student,single,high.school,no,no,no,cellular,jun,wed,295,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+33,management,divorced,university.degree,no,yes,no,cellular,jun,wed,187,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+56,management,married,university.degree,no,yes,no,telephone,jun,wed,218,5,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+35,admin.,married,university.degree,no,no,no,cellular,jun,thu,510,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+25,unemployed,married,high.school,no,no,no,cellular,jun,thu,125,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+55,unknown,married,university.degree,no,yes,no,cellular,jun,thu,153,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+62,unknown,married,professional.course,no,no,no,cellular,jun,thu,277,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+53,blue-collar,married,basic.6y,no,yes,no,cellular,jun,thu,328,2,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes
+51,unemployed,married,basic.6y,no,yes,no,cellular,jun,thu,262,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+51,unemployed,married,basic.6y,no,no,no,cellular,jun,thu,280,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes
+45,admin.,single,university.degree,no,yes,no,cellular,jun,thu,207,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+53,housemaid,married,high.school,no,yes,no,cellular,jun,thu,94,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+30,admin.,single,university.degree,no,yes,no,cellular,jun,thu,106,1,3,2,success,-2.9,92.963,-40.8,1.26,5076.2,no
+29,technician,single,university.degree,no,no,no,cellular,jun,thu,176,1,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,no
+51,unemployed,married,basic.6y,no,yes,no,cellular,jun,thu,79,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+29,admin.,single,university.degree,no,yes,yes,cellular,jun,thu,449,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+30,admin.,married,basic.9y,no,yes,no,cellular,jun,thu,111,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+26,admin.,single,university.degree,no,no,yes,cellular,jun,thu,224,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+54,admin.,married,university.degree,no,yes,no,cellular,jun,thu,151,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+21,student,single,high.school,no,no,no,cellular,jun,thu,400,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+30,admin.,married,professional.course,no,yes,no,cellular,jun,thu,80,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+25,services,single,high.school,no,yes,no,cellular,jun,thu,217,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+42,admin.,married,university.degree,no,no,no,cellular,jun,thu,160,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+30,admin.,single,university.degree,no,no,no,cellular,jun,thu,144,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+24,admin.,single,high.school,no,no,no,cellular,jun,thu,352,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes
+21,services,single,professional.course,no,yes,yes,cellular,jun,thu,787,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+30,admin.,single,university.degree,no,no,no,cellular,jun,thu,323,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+50,technician,single,professional.course,no,yes,yes,cellular,jun,thu,78,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+50,technician,single,professional.course,no,yes,yes,cellular,jun,thu,160,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes
+22,student,single,high.school,no,yes,yes,cellular,jun,thu,221,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+25,services,single,high.school,no,yes,no,cellular,jun,thu,239,2,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes
+36,management,married,university.degree,no,yes,no,cellular,jun,thu,156,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes
+36,management,married,university.degree,no,no,no,cellular,jun,thu,194,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+32,admin.,married,university.degree,no,yes,no,cellular,jun,thu,105,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+36,technician,married,basic.9y,no,yes,no,cellular,jun,thu,390,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+30,admin.,married,university.degree,no,yes,no,cellular,jun,thu,96,2,4,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes
+25,student,single,university.degree,no,no,yes,cellular,jun,thu,136,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+31,admin.,married,university.degree,no,no,no,cellular,jun,thu,81,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes
+35,self-employed,married,university.degree,no,yes,no,cellular,jun,thu,269,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+32,admin.,married,university.degree,no,no,yes,cellular,jun,thu,327,3,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes
+28,admin.,single,high.school,no,yes,yes,cellular,jun,thu,296,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+53,housemaid,married,high.school,no,no,yes,cellular,jun,thu,147,1,999,2,failure,-2.9,92.963,-40.8,1.26,5076.2,yes
+35,admin.,married,university.degree,no,no,no,cellular,jun,thu,121,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+32,admin.,single,university.degree,no,yes,no,cellular,jun,thu,89,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+26,blue-collar,single,professional.course,no,yes,no,cellular,jun,thu,77,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+53,unknown,married,professional.course,no,no,no,cellular,jun,thu,217,2,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,no
+30,technician,single,professional.course,no,no,no,cellular,jun,thu,137,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+26,student,single,university.degree,no,yes,no,cellular,jun,thu,112,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+34,technician,married,professional.course,no,no,no,cellular,jun,thu,218,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+28,self-employed,single,professional.course,no,yes,no,cellular,jun,thu,207,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+28,management,single,university.degree,no,yes,no,cellular,jun,thu,1161,1,4,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes
+38,technician,single,professional.course,no,yes,no,cellular,jun,thu,113,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+38,technician,single,professional.course,no,no,no,cellular,jun,thu,138,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+29,technician,single,university.degree,no,no,no,cellular,jun,thu,442,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+52,admin.,married,university.degree,no,yes,no,cellular,jun,thu,352,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+30,admin.,single,professional.course,no,unknown,unknown,cellular,jun,thu,246,1,7,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes
+42,services,divorced,high.school,no,yes,no,telephone,jun,thu,143,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+29,admin.,single,university.degree,no,no,no,telephone,jun,thu,247,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+25,services,divorced,high.school,no,yes,yes,cellular,jun,thu,437,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+32,admin.,married,university.degree,no,yes,no,cellular,jun,thu,216,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+53,blue-collar,married,basic.9y,no,no,yes,cellular,jun,thu,578,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+24,student,single,high.school,no,unknown,unknown,cellular,jun,thu,282,3,999,2,failure,-2.9,92.963,-40.8,1.26,5076.2,yes
+42,admin.,married,university.degree,no,yes,no,cellular,jun,thu,156,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+28,management,single,university.degree,no,yes,no,cellular,jun,thu,66,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+28,admin.,married,university.degree,no,yes,no,cellular,jun,thu,73,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+53,blue-collar,married,basic.6y,no,no,no,cellular,jun,thu,592,3,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes
+32,management,married,high.school,no,yes,yes,cellular,jun,thu,119,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+35,admin.,married,university.degree,no,no,yes,telephone,jun,thu,125,5,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+33,admin.,single,university.degree,no,yes,no,cellular,jun,thu,114,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+22,student,single,high.school,no,no,yes,telephone,jun,thu,166,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+34,management,married,university.degree,no,yes,no,telephone,jun,thu,111,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+50,blue-collar,married,basic.9y,no,yes,no,cellular,jun,thu,117,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+33,admin.,single,university.degree,no,unknown,unknown,cellular,jun,thu,101,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+31,admin.,single,high.school,no,unknown,unknown,cellular,jun,thu,105,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+34,admin.,single,high.school,no,no,yes,cellular,jun,thu,207,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+31,management,single,university.degree,no,no,no,cellular,jun,thu,1094,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+52,blue-collar,single,basic.9y,no,no,no,cellular,jun,fri,174,2,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes
+44,admin.,married,university.degree,no,yes,no,cellular,jun,fri,133,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+29,technician,married,high.school,no,no,no,cellular,jun,fri,397,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+27,blue-collar,married,high.school,no,yes,no,cellular,jun,fri,264,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+46,housemaid,single,university.degree,no,yes,yes,cellular,jun,fri,324,1,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes
+45,admin.,married,unknown,no,no,no,cellular,jun,fri,155,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+49,admin.,divorced,high.school,no,yes,no,cellular,jun,fri,169,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+30,admin.,single,university.degree,no,no,no,cellular,jun,fri,275,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+30,admin.,single,university.degree,no,no,yes,cellular,jun,fri,199,1,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes
+32,admin.,single,university.degree,no,no,no,cellular,jun,fri,255,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+28,admin.,single,university.degree,no,yes,no,cellular,jun,fri,232,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+32,admin.,single,university.degree,no,no,no,cellular,jun,fri,462,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+27,admin.,single,university.degree,no,yes,no,cellular,jun,fri,136,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+56,admin.,married,basic.9y,no,yes,no,cellular,jun,fri,146,1,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,no
+24,admin.,single,university.degree,no,no,no,cellular,jun,fri,255,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+45,entrepreneur,married,university.degree,no,yes,no,cellular,jun,fri,247,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+24,student,single,high.school,no,yes,no,telephone,jun,fri,109,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+50,entrepreneur,married,basic.9y,no,no,no,telephone,jun,fri,227,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+27,admin.,single,university.degree,no,no,no,cellular,jun,fri,398,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+51,technician,married,basic.9y,no,no,no,telephone,jun,fri,302,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+28,technician,single,professional.course,no,yes,yes,cellular,jun,fri,149,1,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes
+25,student,married,university.degree,no,no,no,cellular,jun,fri,191,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+49,unemployed,married,professional.course,no,no,no,cellular,jun,fri,317,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+59,admin.,married,university.degree,unknown,yes,no,cellular,jun,fri,1543,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+31,self-employed,married,university.degree,no,yes,no,cellular,jun,fri,207,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+21,student,single,university.degree,no,no,no,cellular,jun,fri,493,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+51,technician,single,university.degree,no,yes,no,cellular,jun,fri,509,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+27,admin.,single,university.degree,no,yes,no,cellular,jun,fri,77,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+55,housemaid,married,unknown,no,no,no,cellular,jun,fri,133,1,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,no
+32,technician,single,professional.course,no,yes,no,cellular,jun,fri,329,1,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,no
+51,technician,single,university.degree,no,no,no,cellular,jun,fri,657,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+29,technician,married,high.school,no,yes,no,cellular,jun,fri,365,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+28,admin.,single,university.degree,no,yes,no,cellular,jun,fri,188,1,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,no
+46,technician,married,professional.course,no,no,no,telephone,jun,fri,215,1,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,no
+37,admin.,married,university.degree,no,yes,no,telephone,jun,fri,145,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+51,admin.,single,university.degree,no,no,no,cellular,jun,fri,159,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+37,student,single,unknown,no,no,no,cellular,jun,fri,99,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+31,technician,married,university.degree,no,yes,no,cellular,jun,fri,276,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+29,admin.,single,high.school,no,yes,no,cellular,jun,fri,213,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+37,student,single,unknown,no,no,yes,cellular,jun,fri,604,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+21,blue-collar,single,basic.4y,no,no,no,telephone,jun,fri,153,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+48,admin.,married,university.degree,no,yes,no,telephone,jun,fri,522,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+26,admin.,single,high.school,no,no,no,cellular,jun,fri,76,2,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,no
+31,unemployed,divorced,unknown,no,yes,no,cellular,jun,fri,227,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+33,admin.,single,university.degree,no,no,no,cellular,jun,fri,471,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+30,admin.,single,university.degree,no,no,no,cellular,jun,fri,92,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+27,admin.,single,university.degree,no,yes,no,telephone,jun,fri,329,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+30,admin.,married,unknown,no,yes,no,cellular,jun,fri,207,2,4,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes
+51,admin.,single,university.degree,no,yes,yes,cellular,jun,fri,263,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+25,self-employed,married,university.degree,no,yes,no,cellular,jun,fri,57,2,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,no
+28,student,single,high.school,no,yes,no,cellular,jun,fri,577,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+25,technician,single,university.degree,no,yes,no,cellular,jun,fri,271,2,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,no
+54,admin.,married,high.school,no,no,no,cellular,jun,fri,455,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+25,technician,single,basic.9y,no,yes,no,cellular,jun,fri,103,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+52,admin.,married,university.degree,no,yes,no,cellular,jun,fri,333,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+35,technician,married,professional.course,no,yes,no,telephone,jun,fri,366,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+20,student,single,high.school,no,yes,no,cellular,jun,fri,201,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+30,technician,single,university.degree,no,yes,no,cellular,jun,fri,166,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+29,services,married,university.degree,no,no,yes,cellular,jun,fri,89,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+32,admin.,single,university.degree,no,yes,no,cellular,jun,fri,58,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+34,admin.,single,high.school,no,no,no,cellular,jun,fri,548,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+29,student,single,professional.course,no,no,no,cellular,jun,fri,95,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+27,admin.,single,university.degree,no,no,no,cellular,jun,fri,96,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+45,admin.,married,unknown,no,no,no,cellular,jun,fri,438,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+30,self-employed,married,university.degree,no,yes,no,cellular,jun,fri,138,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+31,management,married,university.degree,no,no,no,telephone,jun,fri,614,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+52,management,married,university.degree,no,no,no,telephone,jun,fri,303,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+21,services,single,high.school,no,no,no,cellular,jun,fri,110,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+53,admin.,single,university.degree,no,yes,no,cellular,jun,fri,304,2,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes
+36,technician,single,professional.course,no,no,no,cellular,jun,fri,146,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+36,technician,single,professional.course,no,yes,no,cellular,jun,fri,126,2,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes
+30,management,single,university.degree,no,no,yes,cellular,jun,fri,244,7,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+29,technician,married,high.school,no,no,no,cellular,jun,fri,157,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+51,technician,single,university.degree,no,no,no,cellular,jun,fri,151,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+25,technician,single,basic.9y,no,no,no,telephone,jun,fri,800,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+26,admin.,single,high.school,no,yes,yes,cellular,jun,fri,200,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+33,admin.,single,university.degree,no,no,no,telephone,jun,fri,113,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+25,admin.,divorced,university.degree,no,no,no,cellular,jun,mon,143,2,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no
+52,technician,married,professional.course,no,no,no,cellular,jun,mon,130,5,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no
+45,services,single,unknown,no,no,no,cellular,jun,mon,58,2,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no
+29,admin.,single,university.degree,no,yes,no,cellular,jun,mon,97,4,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no
+36,blue-collar,married,basic.9y,no,no,no,cellular,jun,mon,86,1,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no
+36,management,married,unknown,no,no,no,cellular,jun,mon,98,2,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no
+32,management,single,university.degree,no,no,no,cellular,jun,mon,257,2,3,1,success,-2.9,92.963,-40.8,1.281,5076.2,yes
+32,management,single,university.degree,no,no,no,cellular,jun,mon,152,2,3,1,success,-2.9,92.963,-40.8,1.281,5076.2,no
+28,services,single,basic.9y,no,yes,yes,cellular,jun,mon,252,5,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no
+27,blue-collar,single,high.school,no,yes,no,cellular,jun,mon,148,2,4,1,success,-2.9,92.963,-40.8,1.281,5076.2,yes
+53,retired,single,basic.4y,no,yes,no,cellular,jun,mon,107,3,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,yes
+32,student,single,university.degree,no,yes,no,cellular,jun,mon,197,2,999,1,failure,-2.9,92.963,-40.8,1.281,5076.2,no
+31,admin.,single,university.degree,no,no,no,cellular,jun,mon,127,3,999,1,failure,-2.9,92.963,-40.8,1.281,5076.2,no
+27,admin.,single,university.degree,no,no,no,cellular,jun,mon,138,3,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,yes
+43,blue-collar,married,basic.6y,no,yes,no,cellular,jun,mon,458,6,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,yes
+25,student,single,unknown,no,no,no,cellular,jun,mon,301,3,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,yes
+33,blue-collar,married,high.school,no,yes,no,cellular,jun,mon,110,2,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no
+22,blue-collar,single,basic.9y,no,yes,no,cellular,jun,mon,84,2,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no
+47,admin.,single,university.degree,no,yes,no,cellular,jun,mon,243,4,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,yes
+36,management,married,university.degree,no,no,no,cellular,jun,mon,200,4,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,yes
+43,blue-collar,married,basic.6y,no,yes,no,cellular,jun,mon,131,4,999,1,failure,-2.9,92.963,-40.8,1.281,5076.2,yes
+31,services,married,unknown,no,yes,no,cellular,jun,tue,98,3,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,no
+25,admin.,single,university.degree,no,yes,yes,cellular,jun,tue,431,3,4,1,success,-2.9,92.963,-40.8,1.286,5076.2,no
+30,self-employed,single,university.degree,no,yes,yes,cellular,jun,tue,106,4,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,no
+44,self-employed,married,university.degree,no,no,no,cellular,jun,tue,234,2,3,1,success,-2.9,92.963,-40.8,1.286,5076.2,yes
+29,admin.,single,high.school,no,yes,yes,cellular,jun,tue,100,2,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,no
+57,management,married,university.degree,no,yes,no,cellular,jun,tue,337,3,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,no
+22,admin.,single,university.degree,no,unknown,unknown,cellular,jun,tue,835,2,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,no
+35,services,single,university.degree,no,unknown,unknown,cellular,jun,tue,67,2,999,1,failure,-2.9,92.963,-40.8,1.286,5076.2,no
+49,services,married,high.school,no,no,no,cellular,jun,tue,239,4,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,yes
+29,admin.,single,university.degree,no,no,no,cellular,jun,tue,160,2,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,yes
+38,technician,married,professional.course,no,yes,no,cellular,jun,tue,993,4,3,1,success,-2.9,92.963,-40.8,1.286,5076.2,yes
+48,services,married,high.school,no,yes,yes,cellular,jun,tue,217,3,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,no
+25,unemployed,married,university.degree,no,no,no,cellular,jun,tue,529,2,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,yes
+32,entrepreneur,married,basic.4y,no,yes,no,cellular,jun,tue,183,2,999,1,failure,-2.9,92.963,-40.8,1.286,5076.2,yes
+27,student,single,unknown,no,yes,no,cellular,jun,tue,103,4,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,no
+25,admin.,single,unknown,no,no,no,telephone,jun,tue,221,7,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,yes
+25,self-employed,single,university.degree,no,no,no,cellular,jun,fri,105,4,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,no
+22,technician,single,university.degree,no,yes,no,cellular,jun,fri,127,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+33,student,single,unknown,no,no,no,telephone,jun,fri,137,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+54,blue-collar,married,basic.9y,no,no,no,cellular,jun,fri,258,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+54,blue-collar,married,basic.9y,no,yes,no,cellular,jun,fri,239,2,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes
+26,management,single,university.degree,no,yes,no,cellular,jun,fri,230,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+55,retired,married,high.school,no,yes,yes,cellular,jun,fri,186,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+25,self-employed,single,university.degree,no,yes,no,cellular,jun,fri,382,5,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+26,self-employed,single,university.degree,no,yes,no,cellular,jun,fri,175,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+22,self-employed,single,university.degree,no,yes,yes,cellular,jun,fri,126,6,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes
+22,technician,single,university.degree,no,yes,no,cellular,jun,fri,163,4,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,yes
+50,admin.,married,university.degree,no,yes,no,cellular,jun,fri,95,7,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,yes
+44,blue-collar,married,professional.course,no,yes,no,cellular,jun,fri,336,3,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,no
+55,retired,married,high.school,no,yes,no,cellular,jun,fri,136,3,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,no
+52,entrepreneur,married,high.school,no,yes,no,cellular,jun,fri,177,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+60,retired,married,basic.6y,no,unknown,unknown,cellular,jun,fri,110,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+33,management,married,university.degree,no,yes,no,cellular,jun,fri,139,5,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+31,admin.,single,high.school,no,no,no,cellular,jun,fri,39,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no
+25,admin.,single,university.degree,no,no,no,telephone,jun,mon,94,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+59,retired,married,basic.4y,no,yes,no,telephone,jun,mon,263,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+64,retired,married,unknown,no,yes,no,cellular,jun,mon,294,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+32,management,married,university.degree,no,yes,no,cellular,jun,mon,54,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+33,unemployed,married,university.degree,no,yes,no,cellular,jun,mon,579,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+28,admin.,single,high.school,no,no,no,cellular,jun,mon,491,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+32,technician,divorced,university.degree,no,yes,no,cellular,jun,mon,532,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+40,unemployed,married,basic.9y,no,no,no,cellular,jun,mon,143,3,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+33,blue-collar,divorced,unknown,no,no,no,cellular,jun,mon,84,5,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+52,technician,married,professional.course,no,yes,no,cellular,jun,mon,268,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+20,technician,single,unknown,no,no,no,cellular,jun,mon,441,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+30,admin.,married,high.school,no,no,no,cellular,jun,mon,439,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+44,services,married,unknown,no,no,yes,cellular,jun,mon,151,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+57,retired,married,basic.4y,no,no,yes,cellular,jun,mon,292,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+35,entrepreneur,divorced,university.degree,no,yes,no,cellular,jun,mon,92,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+41,admin.,single,university.degree,no,yes,no,cellular,jun,mon,95,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+28,admin.,single,university.degree,no,no,no,cellular,jun,mon,114,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+22,services,single,high.school,no,yes,no,cellular,jun,mon,147,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+22,services,single,high.school,no,yes,yes,cellular,jun,mon,181,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+22,student,single,unknown,no,yes,no,cellular,jun,mon,139,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+35,entrepreneur,divorced,university.degree,no,yes,no,telephone,jun,mon,351,6,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+46,admin.,divorced,high.school,no,yes,no,cellular,jun,mon,372,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+34,admin.,married,high.school,no,no,no,cellular,jun,mon,135,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+30,admin.,married,university.degree,no,yes,no,cellular,jun,mon,288,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+23,admin.,single,high.school,no,no,no,cellular,jun,mon,92,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+36,self-employed,single,university.degree,no,no,no,cellular,jun,mon,177,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+27,services,single,university.degree,no,yes,no,cellular,jun,mon,41,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+29,admin.,single,high.school,no,yes,no,cellular,jun,mon,415,1,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes
+29,admin.,single,high.school,no,no,yes,cellular,jun,mon,74,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+31,blue-collar,married,university.degree,no,yes,no,cellular,jun,mon,382,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+34,housemaid,single,basic.4y,no,no,no,cellular,jun,mon,157,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+29,technician,single,basic.9y,no,no,no,cellular,jun,mon,24,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+74,retired,married,basic.4y,no,yes,no,cellular,jun,mon,257,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+32,self-employed,single,university.degree,no,yes,no,cellular,jun,mon,104,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+32,self-employed,single,university.degree,no,yes,no,cellular,jun,mon,64,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+57,management,married,unknown,no,no,no,cellular,jun,mon,112,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+30,services,single,high.school,no,yes,no,cellular,jun,mon,181,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+34,blue-collar,married,basic.4y,no,yes,no,cellular,jun,mon,88,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+57,unemployed,married,basic.4y,no,yes,no,cellular,jun,mon,284,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+57,unemployed,married,basic.4y,no,no,no,cellular,jun,mon,651,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+24,student,single,unknown,no,yes,no,cellular,jun,mon,220,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+24,blue-collar,single,unknown,no,no,yes,cellular,jun,mon,188,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+41,unemployed,single,basic.4y,no,no,no,cellular,jun,mon,170,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+29,admin.,married,high.school,no,no,no,cellular,jun,mon,155,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes
+24,admin.,single,university.degree,no,yes,yes,cellular,jun,mon,74,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+25,admin.,single,high.school,no,no,no,cellular,jun,mon,95,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+28,admin.,single,university.degree,no,yes,no,cellular,jun,mon,333,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+52,self-employed,married,university.degree,no,yes,no,cellular,jun,mon,322,1,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes
+22,services,single,high.school,no,yes,no,telephone,jun,mon,94,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+23,admin.,single,university.degree,no,no,no,cellular,jun,mon,60,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+26,technician,single,professional.course,no,no,no,cellular,jun,mon,175,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+43,admin.,married,university.degree,no,no,no,cellular,jun,mon,108,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no
+32,technician,married,university.degree,no,no,no,cellular,jun,mon,60,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+30,technician,married,university.degree,no,no,no,cellular,jun,mon,108,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+29,admin.,single,high.school,no,yes,yes,cellular,jun,mon,89,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+34,blue-collar,married,basic.4y,no,yes,no,cellular,jun,mon,75,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+25,technician,single,professional.course,no,yes,no,cellular,jun,mon,29,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+42,management,single,university.degree,no,unknown,unknown,cellular,jun,mon,83,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+26,admin.,married,high.school,no,no,no,cellular,jun,mon,79,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+21,admin.,single,high.school,no,no,no,cellular,jun,mon,173,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+22,student,single,unknown,no,no,no,cellular,jun,mon,77,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+38,admin.,single,university.degree,no,yes,no,cellular,jun,mon,318,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+25,admin.,single,professional.course,no,yes,no,cellular,jun,mon,205,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no
+37,technician,married,professional.course,no,no,no,cellular,jun,mon,129,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes
+49,unemployed,married,professional.course,no,yes,no,cellular,jun,tue,298,3,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+35,management,married,university.degree,no,no,no,cellular,jun,tue,136,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,yes
+53,housemaid,married,basic.4y,no,no,yes,cellular,jun,tue,263,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,yes
+29,services,single,professional.course,no,yes,no,telephone,jun,tue,161,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+53,housemaid,married,basic.4y,no,yes,no,cellular,jun,tue,245,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,yes
+57,admin.,married,university.degree,no,no,no,cellular,jun,tue,214,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+56,admin.,married,university.degree,no,yes,no,cellular,jun,tue,202,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+48,housemaid,married,high.school,no,no,no,cellular,jun,tue,399,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+40,unemployed,single,basic.4y,no,no,no,cellular,jun,tue,355,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,yes
+43,admin.,married,university.degree,no,yes,no,cellular,jun,tue,281,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,jun,tue,250,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+35,management,married,university.degree,no,yes,no,cellular,jun,tue,66,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+50,self-employed,married,professional.course,no,yes,no,cellular,jun,tue,102,1,999,1,failure,-2.9,92.963,-40.8,1.252,5076.2,no
+25,admin.,married,university.degree,no,yes,no,telephone,jun,tue,64,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+40,unemployed,single,basic.4y,no,no,no,cellular,jun,tue,459,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+46,admin.,single,university.degree,no,no,no,cellular,jun,tue,119,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+49,unemployed,married,professional.course,no,no,no,cellular,jun,tue,229,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+43,admin.,married,university.degree,no,yes,no,telephone,jun,tue,30,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+58,retired,married,basic.4y,no,yes,no,cellular,jun,tue,79,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+55,management,married,university.degree,no,yes,no,cellular,jun,tue,114,3,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,yes
+44,unemployed,single,basic.4y,no,no,no,cellular,jun,tue,276,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+31,technician,married,professional.course,no,yes,no,cellular,jun,tue,404,3,11,2,failure,-2.9,92.963,-40.8,1.252,5076.2,no
+57,retired,married,basic.4y,no,yes,yes,cellular,jun,tue,162,3,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,yes
+36,technician,single,professional.course,no,yes,no,cellular,jun,tue,569,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+44,unemployed,single,basic.4y,no,yes,no,telephone,jun,tue,55,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no
+25,technician,married,professional.course,no,yes,no,cellular,jun,tue,551,4,999,1,failure,-2.9,92.963,-40.8,1.252,5076.2,yes
+24,admin.,single,university.degree,no,yes,no,cellular,jun,wed,65,3,999,1,failure,-2.9,92.963,-40.8,1.244,5076.2,no
+32,admin.,single,university.degree,no,yes,yes,cellular,jun,wed,49,2,999,1,failure,-2.9,92.963,-40.8,1.244,5076.2,no
+26,self-employed,single,university.degree,no,yes,no,cellular,jun,wed,181,2,999,0,nonexistent,-2.9,92.963,-40.8,1.244,5076.2,no
+40,self-employed,single,university.degree,no,no,yes,cellular,jun,wed,54,4,999,0,nonexistent,-2.9,92.963,-40.8,1.244,5076.2,no
+29,unemployed,single,basic.4y,no,no,yes,cellular,jun,wed,243,3,3,2,success,-2.9,92.963,-40.8,1.244,5076.2,yes
+28,student,single,unknown,no,no,no,cellular,jun,wed,208,4,999,0,nonexistent,-2.9,92.963,-40.8,1.244,5076.2,no
+24,admin.,single,university.degree,no,yes,no,cellular,jun,wed,151,7,999,1,failure,-2.9,92.963,-40.8,1.244,5076.2,no
+32,services,married,professional.course,no,no,no,cellular,jun,wed,94,6,999,0,nonexistent,-2.9,92.963,-40.8,1.244,5076.2,no
+34,admin.,married,university.degree,no,no,no,telephone,jun,wed,84,4,999,0,nonexistent,-2.9,92.963,-40.8,1.244,5076.2,no
+25,student,single,university.degree,no,yes,yes,cellular,jun,thu,393,2,999,0,nonexistent,-2.9,92.963,-40.8,1.235,5076.2,yes
+56,self-employed,married,university.degree,no,yes,no,telephone,jun,thu,390,15,999,0,nonexistent,-2.9,92.963,-40.8,1.235,5076.2,no
+29,admin.,single,university.degree,no,no,yes,cellular,jun,thu,813,4,999,0,nonexistent,-2.9,92.963,-40.8,1.235,5076.2,yes
+56,self-employed,married,university.degree,no,yes,no,cellular,jun,thu,88,3,999,0,nonexistent,-2.9,92.963,-40.8,1.235,5076.2,no
+56,self-employed,married,university.degree,no,no,no,cellular,jun,thu,754,3,999,0,nonexistent,-2.9,92.963,-40.8,1.235,5076.2,no
+53,admin.,married,university.degree,no,no,yes,telephone,jun,thu,1603,10,999,0,nonexistent,-2.9,92.963,-40.8,1.235,5076.2,yes
+27,entrepreneur,single,university.degree,no,no,no,cellular,jun,thu,133,2,999,1,failure,-2.9,92.963,-40.8,1.235,5076.2,no
+49,admin.,married,university.degree,no,no,no,cellular,jun,thu,259,2,999,0,nonexistent,-2.9,92.963,-40.8,1.235,5076.2,yes
+25,student,single,university.degree,no,no,yes,telephone,jun,thu,280,6,999,1,failure,-2.9,92.963,-40.8,1.235,5076.2,yes
+32,technician,married,high.school,no,no,yes,cellular,jun,fri,112,4,999,1,failure,-2.9,92.963,-40.8,1.224,5076.2,no
+47,technician,married,professional.course,no,yes,no,cellular,jun,fri,63,5,999,1,failure,-2.9,92.963,-40.8,1.224,5076.2,no
+32,technician,married,high.school,no,yes,no,telephone,jun,fri,293,5,999,1,failure,-2.9,92.963,-40.8,1.224,5076.2,yes
+39,student,single,unknown,no,yes,no,cellular,jun,fri,474,3,999,0,nonexistent,-2.9,92.963,-40.8,1.224,5076.2,yes
+31,technician,single,university.degree,no,yes,yes,cellular,jun,fri,241,5,999,0,nonexistent,-2.9,92.963,-40.8,1.224,5076.2,no
+38,services,married,basic.9y,no,no,no,cellular,jun,fri,140,2,999,0,nonexistent,-2.9,92.963,-40.8,1.224,5076.2,no
+38,services,married,basic.9y,no,no,yes,telephone,jun,fri,177,2,999,0,nonexistent,-2.9,92.963,-40.8,1.224,5076.2,no
+40,management,married,university.degree,no,yes,no,cellular,jun,mon,295,3,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,yes
+25,admin.,married,university.degree,no,yes,no,cellular,jun,mon,457,3,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no
+55,admin.,married,high.school,no,yes,no,cellular,jun,mon,177,5,999,1,failure,-2.9,92.963,-40.8,1.215,5076.2,no
+58,retired,married,professional.course,no,yes,yes,telephone,jun,mon,100,2,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no
+48,admin.,married,university.degree,no,yes,no,cellular,jun,mon,136,1,999,1,failure,-2.9,92.963,-40.8,1.215,5076.2,no
+60,retired,divorced,basic.4y,no,no,no,cellular,jun,mon,111,5,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no
+55,blue-collar,married,basic.9y,no,no,no,cellular,jun,mon,271,2,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no
+47,housemaid,single,professional.course,no,yes,no,cellular,jun,mon,67,1,3,1,success,-2.9,92.963,-40.8,1.215,5076.2,no
+40,blue-collar,married,professional.course,no,no,no,telephone,jun,mon,883,1,999,1,failure,-2.9,92.963,-40.8,1.215,5076.2,yes
+53,admin.,married,university.degree,no,no,yes,cellular,jun,mon,115,1,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no
+50,admin.,married,university.degree,no,no,no,cellular,jun,mon,269,1,3,1,success,-2.9,92.963,-40.8,1.215,5076.2,yes
+42,admin.,single,university.degree,no,yes,no,cellular,jun,mon,570,3,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no
+41,technician,divorced,university.degree,no,no,no,cellular,jun,mon,238,1,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no
+32,technician,single,professional.course,no,no,no,cellular,jun,mon,524,1,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no
+32,technician,single,professional.course,no,yes,yes,cellular,jun,mon,187,1,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no
+49,technician,single,professional.course,no,yes,no,cellular,jun,mon,68,1,3,1,success,-2.9,92.963,-40.8,1.215,5076.2,no
+45,admin.,married,basic.9y,no,yes,no,telephone,jun,mon,60,2,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no
+39,admin.,married,university.degree,no,no,no,cellular,jun,mon,208,1,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no
+39,admin.,married,university.degree,no,no,no,cellular,jun,mon,459,1,999,1,failure,-2.9,92.963,-40.8,1.215,5076.2,yes
+51,admin.,married,university.degree,no,no,no,telephone,jun,mon,295,3,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no
+24,student,single,unknown,no,yes,yes,cellular,jun,tue,124,1,999,1,failure,-2.9,92.963,-40.8,1.206,5076.2,no
+36,admin.,single,high.school,no,yes,no,cellular,jun,tue,248,1,999,1,failure,-2.9,92.963,-40.8,1.206,5076.2,no
+45,technician,married,professional.course,no,yes,yes,cellular,jun,tue,191,1,999,0,nonexistent,-2.9,92.963,-40.8,1.206,5076.2,no
+30,student,single,unknown,no,no,no,cellular,jun,tue,205,3,999,0,nonexistent,-2.9,92.963,-40.8,1.206,5076.2,no
+36,services,married,university.degree,no,no,yes,cellular,jun,tue,255,2,3,1,success,-2.9,92.963,-40.8,1.206,5076.2,yes
+47,blue-collar,married,professional.course,no,no,yes,cellular,jun,tue,971,2,999,0,nonexistent,-2.9,92.963,-40.8,1.206,5076.2,no
+45,self-employed,single,basic.9y,no,yes,no,cellular,jun,tue,201,1,999,0,nonexistent,-2.9,92.963,-40.8,1.206,5076.2,no
+24,technician,single,professional.course,no,no,no,cellular,jun,tue,227,1,4,1,success,-2.9,92.963,-40.8,1.206,5076.2,yes
+47,admin.,married,university.degree,no,yes,yes,cellular,jun,tue,140,1,999,0,nonexistent,-2.9,92.963,-40.8,1.206,5076.2,no
+38,technician,single,university.degree,no,yes,no,cellular,jun,tue,128,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,no
+45,technician,divorced,university.degree,no,no,no,cellular,jun,tue,224,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,no
+42,services,married,university.degree,no,unknown,unknown,cellular,jun,tue,122,1,999,1,failure,-2.9,92.963,-40.8,1.099,5076.2,no
+37,entrepreneur,married,university.degree,no,yes,no,cellular,jun,tue,108,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,no
+38,admin.,single,university.degree,no,no,no,cellular,jun,tue,103,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,no
+38,admin.,single,university.degree,no,yes,no,telephone,jun,tue,42,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,no
+36,entrepreneur,single,basic.4y,no,no,no,cellular,jun,tue,185,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,yes
+36,entrepreneur,single,basic.4y,no,no,no,cellular,jun,tue,166,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,no
+31,blue-collar,single,high.school,no,yes,no,cellular,jun,tue,160,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,no
+64,management,married,university.degree,no,no,no,cellular,jun,tue,205,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,yes
+33,housemaid,married,university.degree,no,no,no,cellular,jun,tue,224,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,yes
+50,admin.,married,high.school,no,no,no,cellular,jul,wed,140,3,999,0,nonexistent,-2.9,92.469,-33.6,1.085,5076.2,yes
+51,retired,married,basic.4y,no,no,no,cellular,jul,wed,1057,1,13,1,success,-2.9,92.469,-33.6,1.085,5076.2,no
+56,management,married,professional.course,no,no,no,cellular,jul,wed,291,2,999,0,nonexistent,-2.9,92.469,-33.6,1.085,5076.2,no
+59,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,92,1,999,0,nonexistent,-2.9,92.469,-33.6,1.085,5076.2,no
+55,management,married,university.degree,no,no,yes,cellular,jul,wed,260,2,3,1,success,-2.9,92.469,-33.6,1.085,5076.2,yes
+51,admin.,single,high.school,no,yes,no,telephone,jul,wed,372,1,999,0,nonexistent,-2.9,92.469,-33.6,1.085,5076.2,yes
+61,admin.,married,university.degree,no,yes,yes,telephone,jul,wed,261,4,999,0,nonexistent,-2.9,92.469,-33.6,1.085,5076.2,yes
+24,self-employed,single,unknown,no,no,yes,cellular,jul,thu,342,2,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes
+51,housemaid,married,basic.4y,no,yes,yes,cellular,jul,thu,97,1,999,1,failure,-2.9,92.469,-33.6,1.072,5076.2,no
+34,admin.,married,university.degree,no,yes,no,telephone,jul,thu,248,3,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no
+45,admin.,married,university.degree,no,no,no,cellular,jul,thu,74,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no
+45,admin.,married,university.degree,no,no,no,cellular,jul,thu,252,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes
+45,admin.,married,university.degree,no,no,no,cellular,jul,thu,252,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes
+50,admin.,married,university.degree,no,no,no,cellular,jul,thu,356,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes
+60,admin.,married,university.degree,no,yes,no,telephone,jul,thu,363,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes
+59,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,thu,218,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes
+59,blue-collar,divorced,basic.4y,no,no,no,cellular,jul,thu,367,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes
+58,retired,married,professional.course,no,no,yes,cellular,jul,thu,82,1,3,1,success,-2.9,92.469,-33.6,1.072,5076.2,no
+63,retired,divorced,university.degree,no,yes,yes,cellular,jul,thu,146,1,999,1,failure,-2.9,92.469,-33.6,1.072,5076.2,no
+51,technician,married,professional.course,no,no,no,cellular,jul,thu,566,1,13,1,success,-2.9,92.469,-33.6,1.072,5076.2,yes
+46,admin.,single,university.degree,no,yes,no,cellular,jul,thu,309,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes
+46,entrepreneur,married,university.degree,no,yes,no,cellular,jul,thu,396,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes
+43,technician,single,university.degree,no,no,no,cellular,jul,thu,109,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no
+51,technician,married,university.degree,no,yes,no,cellular,jul,thu,226,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no
+54,management,married,unknown,no,yes,no,cellular,jul,thu,154,1,999,1,failure,-2.9,92.469,-33.6,1.072,5076.2,no
+56,entrepreneur,married,unknown,no,yes,no,cellular,jul,thu,129,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no
+63,retired,divorced,university.degree,no,no,yes,cellular,jul,thu,317,1,999,1,failure,-2.9,92.469,-33.6,1.072,5076.2,no
+60,housemaid,married,basic.4y,no,yes,no,cellular,jul,thu,229,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no
+38,technician,single,university.degree,no,yes,no,cellular,jul,thu,98,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no
+47,housemaid,married,basic.6y,unknown,no,yes,cellular,jul,thu,148,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no
+58,technician,married,university.degree,unknown,yes,no,cellular,jul,thu,160,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no
+32,self-employed,single,university.degree,no,no,no,cellular,jul,thu,590,1,999,2,failure,-2.9,92.469,-33.6,1.072,5076.2,no
+32,self-employed,single,university.degree,no,yes,no,cellular,jul,thu,940,1,14,1,success,-2.9,92.469,-33.6,1.072,5076.2,yes
+36,unemployed,married,basic.9y,no,no,no,cellular,jul,thu,153,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no
+29,technician,married,professional.course,no,no,no,cellular,jul,thu,86,2,999,1,failure,-2.9,92.469,-33.6,1.072,5076.2,no
+56,entrepreneur,married,unknown,no,yes,no,cellular,jul,thu,478,2,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes
+32,self-employed,single,university.degree,no,no,no,cellular,jul,thu,276,2,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes
+50,admin.,married,university.degree,no,yes,no,cellular,jul,thu,567,5,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes
+60,housemaid,married,basic.4y,no,yes,no,cellular,jul,thu,503,2,5,2,success,-2.9,92.469,-33.6,1.072,5076.2,yes
+51,technician,married,professional.course,no,yes,no,cellular,jul,thu,135,2,999,1,failure,-2.9,92.469,-33.6,1.072,5076.2,yes
+46,admin.,divorced,high.school,no,yes,no,telephone,jul,thu,176,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes
+57,retired,divorced,basic.9y,no,yes,no,cellular,jul,fri,247,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes
+56,admin.,divorced,unknown,no,yes,no,telephone,jul,fri,353,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes
+21,unemployed,single,high.school,no,yes,no,cellular,jul,fri,203,1,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes
+29,admin.,single,high.school,no,no,no,cellular,jul,fri,446,1,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes
+36,admin.,married,high.school,no,yes,no,cellular,jul,fri,122,1,999,1,failure,-2.9,92.469,-33.6,1.059,5076.2,no
+47,blue-collar,married,professional.course,no,yes,no,cellular,jul,fri,175,1,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes
+29,technician,single,university.degree,no,no,no,cellular,jul,fri,1007,6,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes
+57,unknown,married,basic.6y,no,no,no,cellular,jul,fri,64,1,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no
+48,admin.,divorced,university.degree,no,yes,no,cellular,jul,fri,409,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes
+35,admin.,single,high.school,no,yes,no,cellular,jul,fri,147,2,14,2,failure,-2.9,92.469,-33.6,1.059,5076.2,no
+56,retired,married,high.school,no,yes,no,cellular,jul,fri,603,1,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no
+30,admin.,married,university.degree,no,no,no,cellular,jul,fri,438,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes
+57,retired,divorced,basic.9y,no,no,no,cellular,jul,fri,897,3,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no
+53,technician,married,high.school,no,yes,no,cellular,jul,fri,531,3,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no
+33,admin.,single,university.degree,no,no,no,cellular,jul,fri,704,1,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes
+29,technician,single,university.degree,no,yes,no,cellular,jul,fri,473,1,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no
+47,technician,married,professional.course,no,no,no,telephone,jul,fri,320,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no
+28,admin.,single,university.degree,no,yes,no,cellular,jul,fri,67,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no
+75,retired,married,basic.4y,no,yes,yes,cellular,jul,fri,67,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no
+58,admin.,married,high.school,no,yes,no,cellular,jul,fri,318,4,999,1,failure,-2.9,92.469,-33.6,1.059,5076.2,no
+34,admin.,married,high.school,no,no,no,cellular,jul,fri,59,7,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no
+35,technician,married,university.degree,no,yes,no,cellular,jul,fri,236,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no
+56,retired,married,high.school,no,yes,yes,cellular,jul,fri,308,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes
+46,admin.,single,university.degree,no,yes,no,cellular,jul,mon,413,5,999,0,nonexistent,-2.9,92.469,-33.6,1.048,5076.2,no
+43,entrepreneur,single,unknown,no,no,no,cellular,jul,mon,96,3,999,1,failure,-2.9,92.469,-33.6,1.048,5076.2,no
+31,admin.,single,university.degree,no,yes,no,cellular,jul,mon,202,4,999,0,nonexistent,-2.9,92.469,-33.6,1.048,5076.2,yes
+25,student,single,unknown,no,no,no,telephone,jul,mon,116,3,999,0,nonexistent,-2.9,92.469,-33.6,1.048,5076.2,no
+30,admin.,single,university.degree,no,no,yes,cellular,jul,mon,207,2,999,0,nonexistent,-2.9,92.469,-33.6,1.048,5076.2,no
+23,student,single,high.school,no,no,no,cellular,jul,mon,270,3,999,0,nonexistent,-2.9,92.469,-33.6,1.048,5076.2,yes
+37,admin.,married,university.degree,no,yes,no,cellular,jul,mon,227,2,999,0,nonexistent,-2.9,92.469,-33.6,1.048,5076.2,yes
+28,services,single,university.degree,no,yes,no,cellular,jul,mon,316,4,999,0,nonexistent,-2.9,92.469,-33.6,1.048,5076.2,yes
+53,admin.,married,high.school,no,no,no,cellular,jul,tue,964,1,999,1,failure,-2.9,92.469,-33.6,1.044,5076.2,yes
+33,management,married,university.degree,no,yes,no,cellular,jul,tue,429,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,yes
+41,admin.,married,university.degree,no,yes,no,cellular,jul,tue,826,1,999,1,failure,-2.9,92.469,-33.6,1.044,5076.2,no
+38,admin.,married,university.degree,no,yes,no,cellular,jul,tue,422,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+42,admin.,divorced,university.degree,no,no,no,cellular,jul,tue,94,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+37,admin.,married,high.school,no,no,no,cellular,jul,tue,106,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+25,student,single,unknown,unknown,yes,no,cellular,jul,tue,371,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,yes
+50,admin.,married,high.school,no,yes,no,cellular,jul,tue,98,2,999,1,failure,-2.9,92.469,-33.6,1.044,5076.2,no
+46,admin.,divorced,high.school,no,unknown,unknown,cellular,jul,tue,297,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,yes
+30,self-employed,single,university.degree,no,yes,no,cellular,jul,tue,185,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+26,services,single,high.school,no,yes,no,cellular,jul,tue,407,1,13,1,success,-2.9,92.469,-33.6,1.044,5076.2,yes
+31,services,single,university.degree,no,no,no,telephone,jul,tue,82,2,999,1,failure,-2.9,92.469,-33.6,1.044,5076.2,no
+25,student,single,high.school,no,yes,no,cellular,jul,tue,112,1,999,1,failure,-2.9,92.469,-33.6,1.044,5076.2,no
+29,unemployed,single,university.degree,no,yes,no,cellular,jul,tue,611,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+26,unemployed,single,high.school,no,yes,no,cellular,jul,tue,445,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+23,student,single,high.school,no,yes,no,cellular,jul,tue,682,2,13,1,success,-2.9,92.469,-33.6,1.044,5076.2,yes
+26,services,single,high.school,no,no,no,cellular,jul,tue,180,2,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,yes
+46,admin.,divorced,high.school,no,no,no,cellular,jul,tue,282,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+45,technician,married,high.school,no,no,no,cellular,jul,tue,58,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+26,services,single,high.school,no,yes,no,cellular,jul,tue,98,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+23,student,single,high.school,no,no,no,cellular,jul,tue,370,1,999,1,failure,-2.9,92.469,-33.6,1.044,5076.2,yes
+42,blue-collar,married,high.school,no,yes,no,cellular,jul,tue,148,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+31,technician,married,university.degree,no,no,no,cellular,jul,tue,404,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+38,technician,single,university.degree,no,yes,no,cellular,jul,tue,321,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+26,student,single,high.school,no,yes,no,cellular,jul,tue,432,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+27,admin.,single,unknown,no,yes,no,telephone,jul,tue,876,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,yes
+25,student,single,unknown,no,no,no,cellular,jul,tue,170,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+33,admin.,married,high.school,no,no,no,telephone,jul,tue,257,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,yes
+27,admin.,single,university.degree,no,no,no,cellular,jul,tue,207,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+40,admin.,married,university.degree,no,yes,no,cellular,jul,tue,243,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,yes
+44,technician,single,professional.course,no,yes,no,cellular,jul,tue,112,2,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no
+31,admin.,single,high.school,no,yes,no,cellular,jul,wed,167,1,999,1,failure,-2.9,92.469,-33.6,1.029,5076.2,yes
+42,technician,married,university.degree,no,no,no,cellular,jul,wed,361,1,999,1,failure,-2.9,92.469,-33.6,1.029,5076.2,yes
+47,management,married,university.degree,no,yes,no,cellular,jul,wed,123,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+42,admin.,single,university.degree,no,no,no,cellular,jul,wed,268,2,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,yes
+29,technician,married,university.degree,no,yes,no,cellular,jul,wed,896,2,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,yes
+68,retired,married,basic.4y,no,yes,no,cellular,jul,wed,665,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+50,technician,married,professional.course,no,no,no,cellular,jul,wed,87,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+45,admin.,married,university.degree,no,no,no,cellular,jul,wed,194,1,13,1,success,-2.9,92.469,-33.6,1.029,5076.2,no
+24,student,single,high.school,no,no,no,cellular,jul,wed,115,1,999,1,failure,-2.9,92.469,-33.6,1.029,5076.2,no
+41,admin.,married,university.degree,no,yes,no,cellular,jul,wed,181,1,999,1,failure,-2.9,92.469,-33.6,1.029,5076.2,no
+44,technician,married,professional.course,no,yes,no,cellular,jul,wed,188,2,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+20,student,single,high.school,no,no,no,cellular,jul,wed,625,1,999,1,failure,-2.9,92.469,-33.6,1.029,5076.2,no
+45,admin.,married,university.degree,no,yes,no,cellular,jul,wed,106,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+20,student,single,high.school,no,no,no,cellular,jul,wed,74,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+20,student,single,high.school,no,yes,no,cellular,jul,wed,349,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,yes
+28,unemployed,single,university.degree,no,unknown,unknown,telephone,jul,wed,167,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+36,technician,single,high.school,no,yes,no,cellular,jul,wed,243,1,999,1,failure,-2.9,92.469,-33.6,1.029,5076.2,no
+69,services,married,unknown,no,no,no,telephone,jul,wed,396,2,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+30,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,90,3,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+44,blue-collar,single,unknown,no,yes,no,telephone,jul,wed,576,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,yes
+43,admin.,divorced,university.degree,no,no,no,cellular,jul,wed,281,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+42,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,72,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+42,admin.,single,university.degree,no,yes,yes,cellular,jul,wed,122,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+32,admin.,single,professional.course,no,yes,no,cellular,jul,wed,72,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+27,student,single,high.school,no,no,yes,cellular,jul,wed,537,2,999,1,failure,-2.9,92.469,-33.6,1.029,5076.2,no
+42,technician,married,university.degree,no,no,yes,cellular,jul,wed,430,2,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+32,admin.,single,university.degree,no,yes,no,cellular,jul,wed,210,5,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,yes
+59,admin.,married,high.school,no,yes,no,cellular,jul,wed,286,2,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+40,technician,married,high.school,no,yes,no,cellular,jul,wed,475,3,3,1,success,-2.9,92.469,-33.6,1.029,5076.2,no
+26,admin.,single,university.degree,no,yes,no,cellular,jul,wed,153,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,yes
+36,technician,married,professional.course,no,yes,no,cellular,jul,wed,182,3,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+32,admin.,single,university.degree,no,yes,no,cellular,jul,wed,97,3,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,yes
+38,admin.,married,high.school,no,yes,yes,telephone,jul,wed,64,3,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no
+29,student,single,high.school,no,yes,no,cellular,jul,thu,253,2,999,0,nonexistent,-2.9,92.469,-33.6,1.018,5076.2,yes
+33,technician,single,university.degree,no,yes,no,cellular,jul,thu,359,2,999,0,nonexistent,-2.9,92.469,-33.6,1.018,5076.2,no
+32,admin.,single,university.degree,no,yes,no,cellular,jul,thu,315,4,999,0,nonexistent,-2.9,92.469,-33.6,1.018,5076.2,no
+23,blue-collar,single,high.school,no,no,no,cellular,jul,fri,104,2,999,0,nonexistent,-2.9,92.469,-33.6,1.007,5076.2,yes
+32,admin.,single,university.degree,no,yes,no,telephone,jul,fri,123,4,999,0,nonexistent,-2.9,92.469,-33.6,1.007,5076.2,no
+23,technician,single,professional.course,no,yes,no,telephone,jul,fri,336,4,999,0,nonexistent,-2.9,92.469,-33.6,1.007,5076.2,yes
+29,technician,single,unknown,no,yes,yes,cellular,jul,mon,326,3,999,0,nonexistent,-2.9,92.469,-33.6,0.996,5076.2,no
+51,management,divorced,university.degree,no,yes,no,telephone,jul,wed,219,2,999,0,nonexistent,-2.9,92.469,-33.6,0.979,5076.2,no
+26,admin.,single,university.degree,no,yes,no,cellular,jul,wed,226,2,999,0,nonexistent,-2.9,92.469,-33.6,0.979,5076.2,no
+51,management,divorced,university.degree,no,no,no,cellular,jul,wed,166,7,999,1,failure,-2.9,92.469,-33.6,0.979,5076.2,no
+45,admin.,married,university.degree,no,yes,no,telephone,jul,thu,58,3,999,0,nonexistent,-2.9,92.469,-33.6,0.969,5076.2,no
+27,management,single,university.degree,no,yes,no,cellular,jul,mon,125,2,999,0,nonexistent,-2.9,92.469,-33.6,0.944,5076.2,yes
+37,services,married,high.school,no,yes,no,cellular,jul,mon,91,2,999,0,nonexistent,-2.9,92.469,-33.6,0.944,5076.2,no
+27,technician,single,university.degree,no,yes,no,cellular,jul,mon,258,3,999,0,nonexistent,-2.9,92.469,-33.6,0.944,5076.2,no
+36,admin.,married,high.school,no,yes,no,telephone,jul,tue,305,7,999,0,nonexistent,-2.9,92.469,-33.6,0.937,5076.2,no
+53,management,married,unknown,no,yes,yes,telephone,jul,tue,465,6,999,0,nonexistent,-2.9,92.469,-33.6,0.937,5076.2,no
+35,entrepreneur,married,high.school,no,no,no,cellular,jul,wed,1084,4,999,0,nonexistent,-2.9,92.469,-33.6,0.933,5076.2,yes
+33,admin.,divorced,university.degree,no,no,yes,cellular,jul,thu,106,3,999,0,nonexistent,-2.9,92.469,-33.6,0.927,5076.2,no
+27,student,single,high.school,no,no,no,cellular,jul,thu,64,3,999,0,nonexistent,-2.9,92.469,-33.6,0.927,5076.2,no
+51,admin.,married,university.degree,no,yes,no,cellular,jul,fri,139,5,999,0,nonexistent,-2.9,92.469,-33.6,0.921,5076.2,yes
+51,admin.,married,university.degree,no,unknown,unknown,telephone,jul,fri,116,3,999,0,nonexistent,-2.9,92.469,-33.6,0.921,5076.2,no
+50,self-employed,married,unknown,no,unknown,unknown,cellular,jul,mon,506,2,999,0,nonexistent,-2.9,92.469,-33.6,0.914,5076.2,no
+38,admin.,single,university.degree,no,yes,no,telephone,jul,mon,195,2,999,0,nonexistent,-2.9,92.469,-33.6,0.914,5076.2,no
+38,admin.,single,university.degree,no,yes,no,cellular,jul,mon,82,2,999,0,nonexistent,-2.9,92.469,-33.6,0.914,5076.2,no
+26,technician,single,university.degree,no,yes,yes,cellular,jul,tue,105,2,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no
+30,student,single,university.degree,no,no,no,cellular,jul,tue,332,2,13,2,failure,-2.9,92.469,-33.6,0.908,5076.2,yes
+44,admin.,divorced,high.school,no,no,yes,cellular,jul,tue,132,4,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no
+23,student,single,basic.9y,no,no,no,cellular,jul,tue,73,6,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no
+54,admin.,married,university.degree,no,no,yes,cellular,jul,tue,822,6,13,1,success,-2.9,92.469,-33.6,0.908,5076.2,yes
+34,admin.,married,university.degree,no,no,yes,cellular,jul,tue,51,4,999,1,failure,-2.9,92.469,-33.6,0.908,5076.2,no
+26,admin.,single,university.degree,no,no,yes,cellular,jul,tue,148,4,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no
+54,admin.,married,university.degree,no,yes,no,cellular,jul,tue,72,2,999,1,failure,-2.9,92.469,-33.6,0.908,5076.2,no
+26,technician,single,university.degree,no,no,yes,cellular,jul,tue,67,5,999,1,failure,-2.9,92.469,-33.6,0.908,5076.2,no
+27,admin.,married,university.degree,no,no,yes,cellular,jul,tue,99,6,999,1,failure,-2.9,92.469,-33.6,0.908,5076.2,yes
+38,management,married,university.degree,no,no,no,cellular,jul,tue,486,5,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,yes
+30,student,single,university.degree,no,no,no,cellular,jul,tue,109,3,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no
+31,admin.,single,high.school,no,no,yes,telephone,jul,tue,258,6,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no
+44,admin.,divorced,high.school,no,no,no,cellular,jul,tue,573,5,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,yes
+47,admin.,married,university.degree,no,no,no,telephone,jul,tue,186,9,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no
+36,admin.,married,high.school,no,no,no,cellular,jul,tue,383,6,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no
+58,management,married,university.degree,no,no,no,cellular,jul,wed,292,6,999,1,failure,-2.9,92.469,-33.6,0.903,5076.2,no
+54,unemployed,married,university.degree,no,yes,yes,cellular,jul,thu,141,2,999,0,nonexistent,-2.9,92.469,-33.6,0.899,5076.2,no
+41,admin.,married,high.school,no,no,no,cellular,aug,tue,151,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+32,services,married,high.school,no,no,no,cellular,aug,tue,205,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+61,self-employed,divorced,high.school,no,no,no,cellular,aug,tue,92,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+48,management,married,university.degree,no,yes,no,cellular,aug,tue,313,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+42,admin.,married,university.degree,no,yes,no,cellular,aug,tue,576,1,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,yes
+61,retired,married,professional.course,no,no,no,cellular,aug,tue,219,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes
+36,admin.,single,high.school,no,yes,no,cellular,aug,tue,320,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,tue,138,1,15,1,success,-2.9,92.201,-31.4,0.884,5076.2,no
+18,student,single,basic.9y,no,yes,no,cellular,aug,tue,642,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes
+47,admin.,divorced,university.degree,no,yes,yes,cellular,aug,tue,185,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes
+52,management,married,university.degree,no,no,no,cellular,aug,tue,600,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes
+29,student,single,high.school,no,unknown,unknown,cellular,aug,tue,505,1,4,3,success,-2.9,92.201,-31.4,0.884,5076.2,yes
+64,unemployed,married,university.degree,no,yes,no,cellular,aug,tue,248,1,999,2,failure,-2.9,92.201,-31.4,0.884,5076.2,no
+26,technician,single,university.degree,no,yes,no,cellular,aug,tue,204,2,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no
+51,management,married,university.degree,no,yes,no,cellular,aug,tue,138,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+21,student,single,high.school,no,yes,yes,cellular,aug,tue,220,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+51,management,married,university.degree,no,yes,no,cellular,aug,tue,249,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes
+21,student,single,high.school,no,no,no,cellular,aug,tue,259,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no
+42,technician,single,unknown,no,yes,no,cellular,aug,tue,158,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no
+72,retired,divorced,university.degree,no,no,no,cellular,aug,tue,270,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+72,retired,divorced,university.degree,no,no,no,cellular,aug,tue,370,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+34,technician,single,professional.course,no,yes,no,cellular,aug,tue,251,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+24,student,single,high.school,no,yes,no,cellular,aug,tue,79,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+17,student,single,unknown,no,yes,no,cellular,aug,wed,432,3,4,2,success,-2.9,92.201,-31.4,0.884,5076.2,no
+34,technician,single,professional.course,no,no,no,cellular,aug,wed,305,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes
+59,admin.,married,high.school,no,yes,no,cellular,aug,wed,1019,2,2,1,success,-2.9,92.201,-31.4,0.884,5076.2,yes
+34,technician,single,professional.course,no,no,no,cellular,aug,wed,211,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes
+40,admin.,married,university.degree,no,no,no,cellular,aug,wed,397,2,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no
+37,technician,married,professional.course,no,yes,no,cellular,aug,wed,414,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes
+57,technician,married,high.school,no,yes,yes,cellular,aug,wed,290,2,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,yes
+59,admin.,married,high.school,no,yes,no,cellular,aug,wed,277,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes
+52,management,married,university.degree,no,no,no,cellular,aug,wed,206,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no
+46,unknown,married,unknown,no,no,yes,cellular,aug,wed,299,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+43,services,divorced,basic.6y,no,yes,no,cellular,aug,wed,40,3,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+27,management,single,university.degree,no,yes,no,cellular,aug,wed,106,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+20,student,single,high.school,no,no,yes,cellular,aug,wed,254,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes
+59,retired,married,unknown,no,unknown,unknown,cellular,aug,wed,177,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+32,services,single,high.school,no,yes,yes,cellular,aug,wed,253,1,4,2,success,-2.9,92.201,-31.4,0.884,5076.2,yes
+37,admin.,married,high.school,no,no,no,cellular,aug,wed,179,2,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,yes
+39,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,394,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes
+59,retired,divorced,university.degree,no,yes,yes,cellular,aug,wed,526,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+45,unemployed,divorced,basic.4y,no,yes,no,cellular,aug,wed,156,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+45,unemployed,divorced,basic.4y,no,no,yes,telephone,aug,wed,416,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+46,admin.,married,high.school,no,no,no,telephone,aug,wed,231,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes
+59,retired,married,unknown,no,no,no,cellular,aug,wed,385,2,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,yes
+43,services,divorced,basic.6y,no,yes,no,telephone,aug,wed,813,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+37,technician,married,professional.course,no,no,no,cellular,aug,wed,157,3,4,2,success,-2.9,92.201,-31.4,0.884,5076.2,yes
+56,entrepreneur,married,high.school,no,yes,no,cellular,aug,wed,131,5,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no
+42,unemployed,married,unknown,no,no,no,cellular,aug,thu,175,4,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes
+46,blue-collar,married,professional.course,no,no,no,cellular,aug,thu,99,5,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,thu,331,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+37,admin.,married,university.degree,no,no,no,cellular,aug,thu,89,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+52,retired,divorced,university.degree,no,yes,yes,cellular,aug,thu,155,2,4,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes
+70,retired,married,basic.4y,unknown,yes,no,cellular,aug,thu,320,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+32,technician,married,university.degree,no,no,yes,cellular,aug,thu,975,4,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes
+63,retired,married,basic.4y,no,no,no,telephone,aug,thu,49,3,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+42,unemployed,married,unknown,no,yes,no,telephone,aug,thu,280,7,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+52,technician,married,professional.course,no,no,no,cellular,aug,thu,126,6,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+57,management,married,university.degree,no,yes,no,cellular,aug,thu,107,4,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+60,self-employed,divorced,university.degree,no,no,no,cellular,aug,thu,90,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+59,housemaid,married,basic.4y,no,yes,no,cellular,aug,thu,121,6,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+32,technician,married,university.degree,no,yes,no,cellular,aug,thu,148,2,4,1,success,-2.9,92.201,-31.4,0.883,5076.2,no
+37,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,thu,161,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+63,retired,married,basic.4y,no,no,no,cellular,aug,thu,87,4,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+37,admin.,married,university.degree,no,no,no,cellular,aug,thu,305,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+28,student,single,unknown,no,yes,no,cellular,aug,thu,111,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+52,retired,divorced,university.degree,no,no,no,cellular,aug,thu,427,1,15,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes
+45,technician,single,university.degree,no,no,no,cellular,aug,thu,146,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+58,retired,married,high.school,no,no,no,cellular,aug,thu,144,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+79,retired,married,unknown,no,no,no,cellular,aug,thu,86,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+53,technician,married,professional.course,no,yes,no,cellular,aug,thu,190,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+53,technician,married,professional.course,no,yes,no,cellular,aug,thu,100,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+24,student,single,high.school,no,no,no,cellular,aug,thu,355,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes
+74,retired,married,high.school,no,no,no,cellular,aug,thu,472,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+54,admin.,divorced,high.school,no,yes,no,cellular,aug,thu,131,2,4,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes
+74,retired,married,high.school,no,no,no,cellular,aug,thu,174,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+74,retired,married,high.school,no,yes,no,cellular,aug,thu,1452,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,yes
+58,unemployed,divorced,professional.course,no,no,yes,cellular,aug,thu,142,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+74,retired,married,high.school,no,no,no,cellular,aug,thu,135,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+42,unemployed,married,unknown,no,yes,yes,cellular,aug,thu,250,4,4,2,success,-2.9,92.201,-31.4,0.883,5076.2,yes
+35,admin.,single,university.degree,no,yes,no,cellular,aug,thu,789,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+31,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,310,2,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,yes
+35,admin.,single,university.degree,no,yes,no,telephone,aug,thu,338,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes
+35,admin.,single,university.degree,no,yes,no,cellular,aug,thu,116,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+60,entrepreneur,married,unknown,no,no,no,cellular,aug,thu,130,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+35,admin.,single,university.degree,no,no,no,cellular,aug,thu,250,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+35,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,471,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+25,technician,single,university.degree,no,yes,no,telephone,aug,thu,256,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes
+44,admin.,married,university.degree,no,yes,no,cellular,aug,thu,254,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes
+76,retired,married,basic.4y,no,yes,no,cellular,aug,thu,550,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes
+76,retired,married,basic.4y,no,yes,no,cellular,aug,fri,345,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+32,technician,single,professional.course,no,no,no,cellular,aug,fri,169,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+46,housemaid,married,high.school,no,yes,no,cellular,aug,fri,358,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,107,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+38,admin.,single,university.degree,no,yes,no,cellular,aug,fri,116,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+51,technician,married,professional.course,no,yes,no,telephone,aug,fri,115,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+82,retired,married,university.degree,no,no,no,cellular,aug,fri,79,2,999,2,failure,-2.9,92.201,-31.4,0.881,5076.2,no
+33,blue-collar,married,basic.9y,no,no,no,cellular,aug,fri,79,1,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,yes
+38,admin.,single,university.degree,no,yes,no,cellular,aug,fri,140,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+32,technician,single,professional.course,no,yes,no,telephone,aug,fri,107,2,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,no
+32,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,131,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+29,admin.,single,university.degree,no,no,no,cellular,aug,fri,289,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+75,retired,married,basic.4y,no,no,yes,cellular,aug,fri,714,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+25,admin.,single,university.degree,no,yes,no,cellular,aug,fri,255,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+34,admin.,married,university.degree,no,no,no,cellular,aug,fri,78,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,fri,258,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+32,technician,single,professional.course,no,no,no,cellular,aug,fri,87,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+46,housemaid,married,high.school,no,yes,no,cellular,aug,fri,258,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+51,housemaid,married,unknown,no,no,no,cellular,aug,fri,273,1,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,yes
+32,unemployed,single,university.degree,no,yes,no,cellular,aug,fri,88,1,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,no
+70,retired,married,basic.4y,no,yes,no,cellular,aug,fri,530,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+24,student,single,high.school,no,no,no,cellular,aug,fri,292,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+24,student,single,high.school,no,yes,no,cellular,aug,fri,456,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+41,services,single,university.degree,no,yes,no,cellular,aug,fri,142,1,4,2,success,-2.9,92.201,-31.4,0.881,5076.2,yes
+41,services,single,university.degree,no,yes,no,cellular,aug,fri,325,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+33,admin.,single,high.school,no,yes,no,cellular,aug,fri,1088,3,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+48,unemployed,single,basic.9y,no,no,no,cellular,aug,fri,173,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+54,technician,married,university.degree,no,yes,no,cellular,aug,fri,325,1,4,1,success,-2.9,92.201,-31.4,0.881,5076.2,no
+73,retired,married,basic.4y,no,no,no,cellular,aug,fri,453,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+48,entrepreneur,married,university.degree,no,no,yes,cellular,aug,fri,295,2,4,2,success,-2.9,92.201,-31.4,0.881,5076.2,yes
+73,retired,married,basic.9y,no,no,no,cellular,aug,fri,239,1,15,1,success,-2.9,92.201,-31.4,0.881,5076.2,no
+58,admin.,married,university.degree,no,no,no,telephone,aug,fri,121,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+73,retired,married,basic.4y,no,yes,no,cellular,aug,fri,305,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+23,student,single,high.school,no,yes,no,cellular,aug,fri,136,1,999,3,failure,-2.9,92.201,-31.4,0.881,5076.2,no
+36,management,married,university.degree,no,yes,no,cellular,aug,fri,100,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,fri,83,1,999,2,failure,-2.9,92.201,-31.4,0.881,5076.2,no
+28,admin.,single,university.degree,no,no,no,cellular,aug,fri,70,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+33,blue-collar,married,basic.9y,no,no,no,cellular,aug,fri,99,1,999,2,failure,-2.9,92.201,-31.4,0.881,5076.2,no
+28,admin.,single,university.degree,no,no,no,cellular,aug,fri,262,1,4,2,success,-2.9,92.201,-31.4,0.881,5076.2,yes
+28,admin.,single,university.degree,no,yes,no,cellular,aug,fri,119,1,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,no
+51,housemaid,married,unknown,no,yes,no,cellular,aug,fri,121,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+28,admin.,married,university.degree,no,yes,no,cellular,aug,fri,140,1,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,no
+36,services,married,basic.9y,no,yes,no,cellular,aug,fri,215,1,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,yes
+51,housemaid,married,unknown,no,yes,yes,cellular,aug,fri,268,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+36,services,married,basic.9y,no,yes,no,cellular,aug,fri,221,1,4,1,success,-2.9,92.201,-31.4,0.881,5076.2,yes
+59,unemployed,married,professional.course,no,yes,no,cellular,aug,fri,378,2,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,no
+29,admin.,single,high.school,no,yes,no,cellular,aug,fri,140,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+29,admin.,single,high.school,no,no,no,cellular,aug,fri,384,1,4,3,success,-2.9,92.201,-31.4,0.881,5076.2,no
+30,self-employed,married,university.degree,no,yes,yes,cellular,aug,fri,390,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+29,admin.,single,high.school,no,no,no,cellular,aug,fri,88,1,999,2,failure,-2.9,92.201,-31.4,0.881,5076.2,no
+73,retired,married,basic.4y,no,yes,yes,cellular,aug,fri,135,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+27,blue-collar,unknown,high.school,no,no,no,cellular,aug,fri,192,1,4,1,success,-2.9,92.201,-31.4,0.881,5076.2,yes
+29,admin.,single,high.school,no,no,no,cellular,aug,fri,130,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+76,retired,married,university.degree,no,no,no,cellular,aug,fri,233,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+29,admin.,single,high.school,no,yes,no,cellular,aug,fri,121,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no
+31,admin.,married,university.degree,no,yes,no,cellular,aug,fri,353,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+33,admin.,single,high.school,no,yes,no,cellular,aug,fri,182,2,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,yes
+48,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,103,1,4,1,success,-2.9,92.201,-31.4,0.881,5076.2,no
+43,admin.,single,high.school,no,yes,no,cellular,aug,fri,231,3,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes
+54,unemployed,married,university.degree,no,no,no,telephone,aug,mon,122,3,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+44,entrepreneur,married,basic.4y,no,unknown,unknown,cellular,aug,mon,111,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+46,blue-collar,married,professional.course,no,no,no,telephone,aug,mon,255,3,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+35,services,single,university.degree,no,unknown,unknown,cellular,aug,mon,419,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+36,management,married,university.degree,no,no,no,cellular,aug,mon,1225,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+40,blue-collar,divorced,basic.9y,no,no,no,cellular,aug,mon,54,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no
+36,management,married,university.degree,no,no,no,telephone,aug,mon,328,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes
+52,admin.,married,university.degree,no,no,no,cellular,aug,mon,268,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+38,technician,married,professional.course,no,no,no,cellular,aug,mon,923,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,yes
+41,admin.,married,high.school,no,no,no,cellular,aug,mon,88,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+27,student,single,high.school,no,no,no,cellular,aug,mon,131,1,3,2,success,-2.9,92.201,-31.4,0.884,5076.2,no
+38,admin.,single,high.school,no,yes,yes,cellular,aug,mon,167,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes
+64,retired,married,university.degree,no,no,no,telephone,aug,mon,133,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+36,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,559,1,5,1,success,-2.9,92.201,-31.4,0.884,5076.2,yes
+36,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,146,2,999,2,failure,-2.9,92.201,-31.4,0.884,5076.2,yes
+37,technician,married,university.degree,no,yes,no,cellular,aug,mon,187,1,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,yes
+65,retired,married,basic.6y,no,no,no,cellular,aug,mon,161,2,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,yes
+66,admin.,married,university.degree,no,no,no,cellular,aug,mon,489,2,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,no
+19,student,single,basic.9y,no,no,no,cellular,aug,mon,120,1,3,1,success,-2.9,92.201,-31.4,0.884,5076.2,no
+40,blue-collar,married,high.school,no,yes,no,cellular,aug,mon,158,1,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,no
+40,admin.,married,university.degree,no,no,no,cellular,aug,mon,246,1,3,1,success,-2.9,92.201,-31.4,0.884,5076.2,no
+33,admin.,married,high.school,no,yes,no,cellular,aug,mon,252,1,6,1,success,-2.9,92.201,-31.4,0.884,5076.2,yes
+43,self-employed,divorced,university.degree,no,no,no,telephone,aug,mon,156,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+43,self-employed,divorced,university.degree,no,no,no,cellular,aug,mon,1529,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no
+63,housemaid,married,basic.4y,no,yes,no,telephone,aug,mon,235,1,6,2,failure,-2.9,92.201,-31.4,0.884,5076.2,yes
+35,admin.,married,high.school,no,no,no,cellular,aug,mon,155,1,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,no
+31,admin.,married,high.school,no,no,yes,cellular,aug,mon,155,2,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,yes
+33,technician,single,basic.9y,no,yes,yes,cellular,aug,mon,289,1,999,2,failure,-2.9,92.201,-31.4,0.884,5076.2,yes
+36,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,153,2,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no
+32,entrepreneur,married,unknown,no,no,no,cellular,aug,mon,352,2,999,2,failure,-2.9,92.201,-31.4,0.884,5076.2,no
+69,retired,married,professional.course,no,yes,no,telephone,aug,mon,411,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+35,admin.,single,high.school,no,yes,yes,cellular,aug,mon,107,4,2,3,success,-2.9,92.201,-31.4,0.884,5076.2,no
+21,admin.,single,university.degree,no,yes,no,cellular,aug,mon,89,2,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,no
+19,student,single,basic.9y,no,yes,no,telephone,aug,mon,85,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+46,blue-collar,married,professional.course,no,no,no,telephone,aug,mon,151,3,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no
+19,student,single,basic.9y,no,no,no,cellular,aug,mon,96,1,3,1,success,-2.9,92.201,-31.4,0.884,5076.2,no
+32,student,married,professional.course,no,yes,no,cellular,aug,mon,540,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+44,unknown,married,university.degree,no,yes,no,cellular,aug,mon,263,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+39,technician,married,professional.course,no,yes,no,cellular,aug,mon,247,1,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,no
+40,management,married,university.degree,no,no,no,cellular,aug,mon,162,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no
+40,management,married,university.degree,no,no,yes,cellular,aug,mon,121,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no
+52,admin.,married,university.degree,no,yes,no,cellular,aug,mon,179,3,4,2,success,-2.9,92.201,-31.4,0.884,5076.2,yes
+67,retired,married,professional.course,no,yes,yes,cellular,aug,mon,71,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no
+57,entrepreneur,married,professional.course,no,yes,no,telephone,aug,mon,157,1,3,1,success,-2.9,92.201,-31.4,0.884,5076.2,no
+37,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,213,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes
+37,blue-collar,married,basic.9y,no,no,no,cellular,aug,tue,373,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+34,technician,single,professional.course,no,yes,no,cellular,aug,tue,1416,2,12,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes
+35,technician,married,university.degree,no,yes,no,cellular,aug,tue,425,2,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+58,technician,married,professional.course,no,no,no,cellular,aug,tue,48,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+43,services,married,high.school,no,yes,no,telephone,aug,tue,329,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+70,housemaid,divorced,basic.4y,no,no,no,telephone,aug,tue,90,3,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+34,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,265,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+69,retired,married,high.school,no,yes,no,cellular,aug,tue,151,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+59,technician,single,basic.6y,no,no,no,telephone,aug,tue,181,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+49,management,divorced,university.degree,no,yes,yes,cellular,aug,tue,138,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,tue,265,1,4,3,success,-2.9,92.201,-31.4,0.883,5076.2,yes
+31,admin.,single,university.degree,no,no,no,cellular,aug,tue,157,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+50,management,married,university.degree,no,no,no,cellular,aug,tue,89,3,4,1,success,-2.9,92.201,-31.4,0.883,5076.2,no
+31,admin.,single,university.degree,no,no,no,telephone,aug,tue,387,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+45,services,married,high.school,no,no,no,cellular,aug,tue,249,3,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+60,retired,married,high.school,no,no,no,cellular,aug,tue,123,1,4,1,success,-2.9,92.201,-31.4,0.883,5076.2,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,tue,156,1,999,2,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+30,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,155,1,4,1,success,-2.9,92.201,-31.4,0.883,5076.2,no
+31,admin.,single,university.degree,no,yes,yes,telephone,aug,tue,115,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+58,technician,married,professional.course,no,no,no,cellular,aug,tue,704,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes
+33,admin.,single,high.school,no,yes,no,cellular,aug,tue,136,3,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes
+26,student,single,professional.course,no,yes,no,cellular,aug,tue,176,2,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,yes
+35,self-employed,married,university.degree,no,yes,no,telephone,aug,tue,88,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+59,retired,married,high.school,no,yes,no,cellular,aug,tue,85,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+29,technician,single,professional.course,no,yes,yes,cellular,aug,tue,110,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+50,blue-collar,married,unknown,no,yes,no,cellular,aug,tue,1398,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+61,entrepreneur,married,university.degree,unknown,yes,no,cellular,aug,tue,651,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes
+52,management,married,high.school,no,yes,yes,cellular,aug,tue,167,1,10,4,failure,-2.9,92.201,-31.4,0.883,5076.2,yes
+52,management,married,high.school,no,no,no,cellular,aug,tue,408,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes
+42,admin.,single,university.degree,no,no,no,cellular,aug,tue,982,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+85,retired,married,professional.course,no,no,no,cellular,aug,tue,140,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes
+27,admin.,single,university.degree,no,yes,no,cellular,aug,tue,168,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+27,admin.,single,university.degree,no,yes,no,cellular,aug,tue,287,1,6,1,success,-2.9,92.201,-31.4,0.883,5076.2,no
+49,technician,married,professional.course,no,yes,no,cellular,aug,tue,75,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+30,admin.,married,university.degree,no,no,no,cellular,aug,tue,139,3,6,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes
+69,entrepreneur,married,university.degree,no,yes,no,cellular,aug,tue,93,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+28,admin.,single,university.degree,no,no,no,cellular,aug,tue,225,1,999,2,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+33,student,single,unknown,no,yes,yes,cellular,aug,tue,203,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+41,admin.,single,university.degree,no,yes,no,cellular,aug,tue,280,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+54,admin.,single,university.degree,unknown,yes,no,cellular,aug,tue,159,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+60,admin.,married,professional.course,no,no,no,cellular,aug,tue,66,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+57,admin.,married,university.degree,no,yes,no,cellular,aug,tue,149,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,yes
+35,admin.,married,university.degree,no,no,yes,cellular,aug,tue,349,1,999,3,failure,-2.9,92.201,-31.4,0.883,5076.2,yes
+35,admin.,single,university.degree,no,no,yes,cellular,aug,tue,371,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+80,retired,married,illiterate,unknown,yes,yes,cellular,aug,tue,125,1,6,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes
+26,admin.,single,university.degree,no,no,no,cellular,aug,tue,221,1,15,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes
+67,retired,married,university.degree,no,no,no,cellular,aug,tue,201,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+56,retired,married,high.school,no,yes,yes,cellular,aug,tue,97,1,3,2,success,-2.9,92.201,-31.4,0.883,5076.2,no
+59,admin.,divorced,professional.course,no,yes,no,telephone,aug,tue,91,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+44,management,married,university.degree,no,no,no,cellular,aug,tue,175,2,999,2,failure,-2.9,92.201,-31.4,0.883,5076.2,yes
+47,admin.,married,university.degree,no,yes,no,cellular,aug,tue,526,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+58,technician,married,professional.course,no,yes,no,cellular,aug,tue,89,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes
+59,admin.,divorced,professional.course,no,no,no,cellular,aug,tue,206,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,yes
+59,admin.,divorced,professional.course,no,no,no,cellular,aug,tue,477,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+69,blue-collar,married,unknown,no,yes,no,cellular,aug,tue,400,3,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+59,admin.,divorced,professional.course,no,no,no,telephone,aug,tue,198,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+59,admin.,divorced,professional.course,no,unknown,unknown,cellular,aug,tue,203,1,4,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes
+34,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,267,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes
+30,admin.,married,university.degree,no,yes,no,cellular,aug,tue,120,3,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+50,blue-collar,married,unknown,no,yes,yes,cellular,aug,tue,589,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes
+70,retired,married,high.school,no,yes,no,cellular,aug,tue,162,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+59,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,163,3,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+58,admin.,married,university.degree,no,no,no,cellular,aug,tue,373,4,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+49,admin.,married,university.degree,no,yes,no,cellular,aug,tue,464,2,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,yes
+35,technician,single,university.degree,no,yes,no,cellular,aug,tue,113,3,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+57,management,married,university.degree,no,yes,no,cellular,aug,tue,71,1,5,2,failure,-2.9,92.201,-31.4,0.883,5076.2,no
+21,unemployed,single,high.school,no,yes,no,telephone,aug,tue,172,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+57,management,married,university.degree,no,no,no,cellular,aug,tue,162,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no
+42,management,divorced,unknown,no,yes,no,cellular,aug,wed,266,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+66,retired,married,unknown,no,no,no,cellular,aug,wed,68,3,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+62,management,married,university.degree,no,yes,yes,cellular,aug,wed,345,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+27,admin.,single,university.degree,no,yes,no,cellular,aug,wed,1117,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+60,management,married,university.degree,no,no,no,cellular,aug,wed,159,4,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+31,services,single,university.degree,no,yes,no,telephone,aug,wed,701,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+27,admin.,single,university.degree,no,yes,no,cellular,aug,wed,429,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes
+36,admin.,divorced,university.degree,no,no,yes,cellular,aug,wed,623,2,6,2,success,-2.9,92.201,-31.4,0.879,5076.2,yes
+66,retired,unknown,basic.9y,no,yes,no,cellular,aug,wed,340,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+42,management,divorced,unknown,no,yes,no,cellular,aug,wed,137,2,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,yes
+31,blue-collar,single,university.degree,no,no,no,cellular,aug,wed,174,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+48,admin.,married,high.school,no,no,no,cellular,aug,wed,74,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+25,admin.,single,high.school,no,yes,yes,cellular,aug,wed,121,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+26,student,single,basic.9y,no,no,no,telephone,aug,wed,127,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+26,student,single,basic.9y,no,yes,no,cellular,aug,wed,182,1,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,yes
+49,admin.,married,high.school,no,yes,no,cellular,aug,wed,668,2,15,1,success,-2.9,92.201,-31.4,0.879,5076.2,yes
+26,student,single,basic.9y,no,no,no,telephone,aug,wed,449,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes
+49,admin.,married,high.school,no,yes,no,cellular,aug,wed,90,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+26,student,single,basic.9y,no,yes,no,cellular,aug,wed,582,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes
+25,self-employed,single,university.degree,no,no,no,cellular,aug,wed,169,2,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,no
+34,blue-collar,married,high.school,no,yes,no,cellular,aug,wed,115,2,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,no
+45,blue-collar,single,basic.9y,no,yes,no,cellular,aug,wed,249,1,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,no
+27,admin.,single,university.degree,no,no,no,cellular,aug,wed,1336,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes
+45,blue-collar,single,basic.9y,no,no,no,cellular,aug,wed,150,1,3,2,success,-2.9,92.201,-31.4,0.879,5076.2,no
+74,retired,married,university.degree,no,yes,no,cellular,aug,wed,239,2,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,yes
+36,admin.,married,university.degree,no,yes,no,cellular,aug,wed,90,1,999,2,failure,-2.9,92.201,-31.4,0.879,5076.2,no
+42,management,divorced,unknown,no,no,no,cellular,aug,wed,251,2,15,2,failure,-2.9,92.201,-31.4,0.879,5076.2,no
+32,technician,married,professional.course,no,yes,no,cellular,aug,wed,641,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes
+60,retired,married,university.degree,no,no,no,cellular,aug,wed,576,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes
+40,management,married,university.degree,no,unknown,unknown,cellular,aug,wed,699,2,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,no
+56,admin.,married,basic.9y,no,yes,no,cellular,aug,wed,73,1,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,yes
+66,retired,married,unknown,no,no,no,cellular,aug,wed,147,2,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,yes
+27,admin.,single,university.degree,no,yes,no,cellular,aug,wed,398,4,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,yes
+37,blue-collar,single,professional.course,no,yes,no,cellular,aug,wed,100,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+59,technician,married,university.degree,no,no,no,cellular,aug,wed,119,4,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+32,technician,single,professional.course,no,no,no,cellular,aug,wed,313,2,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,yes
+29,services,married,high.school,no,yes,no,cellular,aug,wed,90,2,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,no
+48,entrepreneur,divorced,high.school,no,no,no,cellular,aug,wed,307,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes
+38,admin.,married,university.degree,no,no,no,cellular,aug,wed,236,1,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,no
+20,student,single,basic.4y,no,yes,no,cellular,aug,wed,131,1,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,yes
+20,student,single,basic.4y,no,yes,no,cellular,aug,wed,267,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes
+27,unemployed,single,high.school,no,no,no,cellular,aug,wed,93,1,4,3,success,-2.9,92.201,-31.4,0.879,5076.2,no
+33,services,married,high.school,no,yes,no,cellular,aug,wed,417,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes
+36,admin.,single,university.degree,no,yes,no,cellular,aug,wed,87,1,999,2,failure,-2.9,92.201,-31.4,0.879,5076.2,no
+54,housemaid,married,university.degree,no,no,no,cellular,aug,wed,77,3,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+36,admin.,single,university.degree,no,no,no,cellular,aug,wed,82,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+66,retired,unknown,basic.9y,no,yes,no,cellular,aug,wed,810,3,999,2,failure,-2.9,92.201,-31.4,0.879,5076.2,yes
+36,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,161,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+66,technician,married,professional.course,no,yes,no,telephone,aug,wed,150,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+35,blue-collar,single,basic.9y,no,no,no,cellular,aug,wed,305,3,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,no
+28,admin.,single,university.degree,no,no,no,cellular,aug,wed,202,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+28,admin.,single,university.degree,no,no,no,cellular,aug,wed,332,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes
+28,admin.,single,university.degree,no,no,no,cellular,aug,wed,153,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+44,admin.,married,university.degree,no,yes,no,cellular,aug,wed,113,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+56,admin.,married,basic.9y,no,no,no,cellular,aug,wed,338,2,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,yes
+32,admin.,married,high.school,no,no,no,cellular,aug,wed,96,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+29,blue-collar,single,high.school,no,yes,no,cellular,aug,wed,71,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+41,services,married,high.school,no,unknown,unknown,cellular,aug,wed,301,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+33,admin.,single,university.degree,no,unknown,unknown,cellular,aug,wed,123,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,wed,192,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+45,admin.,married,university.degree,no,no,no,cellular,aug,wed,363,1,4,2,success,-2.9,92.201,-31.4,0.879,5076.2,no
+44,admin.,married,university.degree,no,no,no,cellular,aug,wed,96,2,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,no
+28,student,single,high.school,no,yes,no,cellular,aug,wed,188,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+66,retired,married,basic.6y,unknown,yes,no,cellular,aug,wed,124,1,1,1,success,-2.9,92.201,-31.4,0.879,5076.2,no
+66,retired,married,basic.6y,unknown,no,no,cellular,aug,wed,174,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+32,technician,married,professional.course,no,yes,no,cellular,aug,wed,44,1,3,1,success,-2.9,92.201,-31.4,0.879,5076.2,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,222,2,999,2,failure,-2.9,92.201,-31.4,0.879,5076.2,no
+42,technician,married,professional.course,no,yes,no,cellular,aug,wed,246,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+42,technician,married,professional.course,no,no,no,cellular,aug,wed,96,1,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,no
+44,admin.,married,university.degree,no,no,no,cellular,aug,wed,120,1,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,no
+37,management,single,university.degree,no,yes,no,cellular,aug,wed,243,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+42,technician,married,professional.course,no,yes,yes,cellular,aug,wed,543,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+28,self-employed,single,university.degree,no,unknown,unknown,cellular,aug,wed,227,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+28,technician,single,professional.course,no,no,yes,cellular,aug,wed,162,1,3,1,success,-2.9,92.201,-31.4,0.879,5076.2,no
+38,admin.,married,high.school,no,no,no,cellular,aug,wed,289,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes
+74,retired,married,professional.course,no,no,no,cellular,aug,wed,298,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+76,retired,married,basic.4y,no,no,no,cellular,aug,wed,331,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no
+29,admin.,married,university.degree,no,no,no,cellular,aug,thu,111,5,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+28,admin.,single,university.degree,no,no,no,cellular,aug,thu,489,5,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes
+27,admin.,single,high.school,no,no,yes,cellular,aug,thu,255,2,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no
+37,technician,single,university.degree,no,yes,yes,cellular,aug,thu,73,2,4,1,success,-2.9,92.201,-31.4,0.873,5076.2,no
+33,technician,married,university.degree,no,yes,no,cellular,aug,thu,101,4,999,2,failure,-2.9,92.201,-31.4,0.873,5076.2,no
+23,student,single,high.school,no,yes,no,cellular,aug,thu,784,3,15,3,failure,-2.9,92.201,-31.4,0.873,5076.2,yes
+36,unemployed,married,university.degree,no,no,no,cellular,aug,thu,222,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes
+22,student,single,high.school,no,yes,no,cellular,aug,thu,425,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes
+30,admin.,married,university.degree,no,yes,no,telephone,aug,thu,181,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+29,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,254,3,3,1,success,-2.9,92.201,-31.4,0.873,5076.2,yes
+41,admin.,married,high.school,no,yes,no,cellular,aug,thu,1175,3,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+31,blue-collar,married,professional.course,no,no,no,cellular,aug,thu,414,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes
+39,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,102,1,4,1,success,-2.9,92.201,-31.4,0.873,5076.2,no
+39,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,200,1,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no
+30,services,single,high.school,no,yes,no,cellular,aug,thu,148,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes
+36,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,220,2,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no
+88,retired,divorced,basic.4y,no,yes,no,cellular,aug,thu,402,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+39,admin.,married,high.school,no,no,no,cellular,aug,thu,315,2,4,1,success,-2.9,92.201,-31.4,0.873,5076.2,yes
+39,management,married,university.degree,no,no,no,cellular,aug,thu,105,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+39,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,368,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+45,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,150,3,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no
+34,housemaid,married,university.degree,no,no,no,cellular,aug,thu,485,3,4,1,success,-2.9,92.201,-31.4,0.873,5076.2,no
+32,blue-collar,single,basic.9y,no,yes,no,cellular,aug,thu,282,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes
+74,retired,married,basic.4y,no,no,no,cellular,aug,thu,307,1,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no
+46,admin.,married,university.degree,no,yes,no,cellular,aug,thu,399,1,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,yes
+46,admin.,married,university.degree,no,yes,no,cellular,aug,thu,164,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+62,retired,married,university.degree,unknown,yes,yes,cellular,aug,thu,791,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+34,housemaid,married,university.degree,no,no,yes,cellular,aug,thu,1152,2,6,1,success,-2.9,92.201,-31.4,0.873,5076.2,no
+36,admin.,married,university.degree,no,no,no,cellular,aug,thu,138,2,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no
+36,unemployed,married,university.degree,no,yes,no,cellular,aug,thu,138,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+38,management,married,university.degree,no,yes,no,cellular,aug,thu,328,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+33,admin.,single,university.degree,no,yes,no,cellular,aug,thu,72,3,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+24,student,single,high.school,no,no,no,cellular,aug,thu,136,1,999,2,failure,-2.9,92.201,-31.4,0.873,5076.2,no
+39,unemployed,married,high.school,no,no,no,cellular,aug,thu,192,3,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes
+34,self-employed,married,university.degree,no,no,no,cellular,aug,thu,78,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+20,student,single,high.school,no,no,no,cellular,aug,thu,347,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+46,technician,married,basic.6y,no,yes,no,cellular,aug,thu,464,4,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes
+81,retired,married,basic.6y,no,no,no,cellular,aug,thu,189,2,4,1,success,-2.9,92.201,-31.4,0.873,5076.2,no
+43,technician,married,university.degree,no,no,no,cellular,aug,thu,160,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+22,student,single,basic.6y,no,yes,no,cellular,aug,thu,293,2,4,2,success,-2.9,92.201,-31.4,0.873,5076.2,yes
+34,management,married,university.degree,no,no,no,cellular,aug,thu,233,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+32,services,married,high.school,no,yes,no,cellular,aug,thu,105,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+36,services,married,high.school,no,yes,yes,cellular,aug,thu,227,2,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,yes
+32,services,married,high.school,no,no,no,cellular,aug,thu,100,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+34,self-employed,single,university.degree,no,no,no,telephone,aug,thu,57,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+24,technician,single,professional.course,no,no,no,cellular,aug,thu,129,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+28,unemployed,single,university.degree,no,no,yes,cellular,aug,thu,74,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+27,technician,single,university.degree,no,no,no,cellular,aug,thu,103,1,4,1,success,-2.9,92.201,-31.4,0.873,5076.2,no
+46,admin.,married,university.degree,no,yes,no,telephone,aug,thu,213,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+76,retired,married,basic.6y,no,no,yes,cellular,aug,thu,284,1,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no
+64,unknown,married,unknown,no,yes,yes,cellular,aug,thu,219,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+40,admin.,married,high.school,no,no,no,cellular,aug,thu,477,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes
+35,admin.,single,high.school,no,no,yes,cellular,aug,thu,73,1,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no
+74,retired,married,professional.course,no,yes,no,cellular,aug,thu,204,3,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,yes
+41,blue-collar,married,basic.9y,no,no,no,cellular,aug,thu,726,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+41,blue-collar,married,basic.9y,no,no,no,cellular,aug,thu,75,1,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no
+76,retired,married,university.degree,no,yes,no,cellular,aug,thu,344,1,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no
+48,self-employed,married,university.degree,no,no,no,cellular,aug,thu,135,1,4,3,success,-2.9,92.201,-31.4,0.873,5076.2,no
+25,admin.,single,university.degree,no,no,yes,cellular,aug,thu,112,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+25,admin.,single,university.degree,no,no,yes,cellular,aug,thu,99,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+21,student,single,high.school,no,no,no,cellular,aug,thu,185,2,4,2,success,-2.9,92.201,-31.4,0.873,5076.2,no
+39,admin.,married,basic.9y,unknown,no,no,cellular,aug,thu,371,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+44,unemployed,married,high.school,no,yes,no,cellular,aug,thu,143,1,3,1,success,-2.9,92.201,-31.4,0.873,5076.2,no
+44,unemployed,married,high.school,no,yes,no,telephone,aug,thu,99,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+44,unemployed,married,high.school,no,yes,no,cellular,aug,thu,146,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+44,unemployed,married,high.school,no,yes,no,cellular,aug,thu,284,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+33,services,married,high.school,no,no,no,cellular,aug,thu,738,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes
+29,management,married,university.degree,no,yes,no,cellular,aug,thu,75,1,4,2,success,-2.9,92.201,-31.4,0.873,5076.2,no
+39,blue-collar,married,basic.6y,no,no,no,cellular,aug,thu,320,2,3,1,success,-2.9,92.201,-31.4,0.873,5076.2,yes
+73,retired,married,professional.course,no,yes,no,cellular,aug,thu,135,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+36,technician,married,professional.course,no,yes,no,cellular,aug,thu,92,2,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no
+22,student,single,high.school,no,no,no,cellular,aug,thu,53,2,3,1,success,-2.9,92.201,-31.4,0.873,5076.2,no
+33,services,married,high.school,no,unknown,unknown,cellular,aug,thu,240,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+57,admin.,single,high.school,no,yes,no,cellular,aug,thu,479,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes
+62,retired,married,university.degree,unknown,no,no,cellular,aug,thu,154,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+21,student,single,high.school,no,no,no,cellular,aug,thu,236,3,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+72,retired,divorced,basic.4y,no,yes,yes,cellular,aug,thu,238,2,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no
+31,technician,married,university.degree,no,no,no,cellular,aug,thu,158,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,thu,275,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+43,unemployed,married,high.school,no,no,no,cellular,aug,thu,319,4,3,2,success,-2.9,92.201,-31.4,0.873,5076.2,no
+36,management,married,basic.6y,no,yes,yes,cellular,aug,thu,354,3,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes
+36,admin.,married,university.degree,no,no,no,cellular,aug,thu,126,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no
+28,unemployed,married,professional.course,no,yes,no,telephone,aug,fri,275,6,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes
+17,student,single,basic.9y,no,yes,no,cellular,aug,fri,182,2,999,2,failure,-2.9,92.201,-31.4,0.869,5076.2,no
+26,student,single,professional.course,no,yes,no,cellular,aug,fri,150,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes
+43,management,married,basic.9y,no,yes,yes,cellular,aug,fri,233,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+61,retired,married,basic.9y,no,yes,no,telephone,aug,fri,176,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+39,technician,married,university.degree,no,yes,no,cellular,aug,fri,156,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes
+62,retired,married,unknown,no,no,no,cellular,aug,fri,172,4,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes
+70,retired,married,professional.course,no,no,no,cellular,aug,fri,185,3,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no
+45,unemployed,married,basic.9y,no,no,no,cellular,aug,fri,126,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+43,management,married,basic.9y,no,yes,no,cellular,aug,fri,180,1,6,2,failure,-2.9,92.201,-31.4,0.869,5076.2,no
+29,blue-collar,married,basic.4y,no,yes,no,cellular,aug,fri,98,1,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no
+48,management,divorced,university.degree,no,no,no,cellular,aug,fri,117,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+35,technician,married,professional.course,no,yes,no,cellular,aug,fri,225,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes
+61,management,married,university.degree,no,yes,no,cellular,aug,fri,209,2,4,2,success,-2.9,92.201,-31.4,0.869,5076.2,yes
+24,student,single,high.school,unknown,yes,no,cellular,aug,fri,319,1,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no
+33,blue-collar,single,basic.9y,no,no,no,cellular,aug,fri,257,1,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no
+32,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,fri,230,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+42,management,married,university.degree,no,yes,no,cellular,aug,fri,436,1,13,1,success,-2.9,92.201,-31.4,0.869,5076.2,yes
+36,unemployed,single,university.degree,no,no,no,cellular,aug,fri,415,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+36,unemployed,single,university.degree,no,no,no,cellular,aug,fri,260,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+17,student,single,basic.9y,no,yes,no,cellular,aug,fri,92,3,4,2,success,-2.9,92.201,-31.4,0.869,5076.2,no
+54,admin.,married,university.degree,no,yes,no,cellular,aug,fri,326,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes
+25,student,single,high.school,no,no,no,cellular,aug,fri,253,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+25,student,single,high.school,no,yes,no,cellular,aug,fri,78,1,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no
+48,admin.,single,university.degree,no,yes,no,cellular,aug,fri,260,2,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no
+20,student,single,high.school,no,no,no,cellular,aug,fri,190,2,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no
+63,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,fri,107,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+58,blue-collar,divorced,basic.4y,no,no,no,cellular,aug,fri,186,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes
+55,retired,married,basic.4y,no,yes,no,cellular,aug,fri,137,1,3,1,success,-2.9,92.201,-31.4,0.869,5076.2,yes
+35,admin.,single,high.school,no,yes,no,cellular,aug,fri,105,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+71,retired,married,basic.4y,no,yes,no,cellular,aug,fri,125,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes
+25,services,single,high.school,no,no,no,cellular,aug,fri,553,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+70,retired,married,professional.course,no,yes,no,cellular,aug,fri,94,4,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes
+28,unemployed,married,professional.course,no,no,no,cellular,aug,fri,276,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes
+46,technician,married,professional.course,no,yes,no,cellular,aug,fri,182,6,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,yes
+42,technician,married,professional.course,no,yes,no,cellular,aug,fri,100,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes
+26,student,single,high.school,no,no,no,cellular,aug,fri,482,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+35,admin.,married,university.degree,no,no,no,cellular,aug,fri,201,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes
+32,admin.,married,university.degree,no,yes,no,cellular,aug,fri,88,5,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+38,self-employed,divorced,high.school,no,no,no,cellular,aug,fri,391,3,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,yes
+28,unemployed,married,professional.course,no,yes,no,cellular,aug,fri,190,3,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,yes
+17,student,single,basic.9y,no,unknown,unknown,cellular,aug,fri,498,2,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,yes
+31,admin.,married,university.degree,no,no,no,cellular,aug,fri,880,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes
+63,retired,divorced,basic.4y,no,yes,no,cellular,aug,fri,153,2,3,1,success,-2.9,92.201,-31.4,0.869,5076.2,no
+29,blue-collar,single,basic.6y,no,no,no,cellular,aug,fri,260,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes
+37,entrepreneur,married,basic.6y,no,yes,no,cellular,aug,fri,148,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+25,technician,single,university.degree,no,yes,no,cellular,aug,fri,142,2,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no
+61,retired,married,basic.9y,no,no,no,cellular,aug,fri,99,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+70,retired,married,professional.course,no,no,no,cellular,aug,fri,70,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+28,unemployed,married,professional.course,no,no,no,telephone,aug,fri,140,11,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+31,entrepreneur,single,university.degree,no,yes,no,cellular,aug,fri,211,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes
+35,technician,married,university.degree,no,no,no,cellular,aug,fri,224,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no
+20,student,single,high.school,no,no,no,telephone,aug,fri,159,2,4,2,success,-2.9,92.201,-31.4,0.869,5076.2,no
+35,management,married,high.school,no,yes,yes,cellular,aug,fri,313,4,999,2,failure,-2.9,92.201,-31.4,0.869,5076.2,no
+22,student,single,basic.9y,no,no,no,telephone,aug,mon,297,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+68,retired,married,basic.4y,no,no,no,cellular,aug,mon,110,1,999,2,failure,-2.9,92.201,-31.4,0.861,5076.2,no
+62,management,divorced,high.school,no,no,no,cellular,aug,mon,405,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes
+65,retired,married,high.school,no,no,no,cellular,aug,mon,80,1,999,1,failure,-2.9,92.201,-31.4,0.861,5076.2,no
+26,admin.,single,university.degree,no,yes,no,cellular,aug,mon,138,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+76,retired,married,professional.course,no,no,no,cellular,aug,mon,308,1,15,1,success,-2.9,92.201,-31.4,0.861,5076.2,yes
+66,retired,married,unknown,no,no,no,cellular,aug,mon,43,1,999,2,failure,-2.9,92.201,-31.4,0.861,5076.2,no
+23,technician,single,university.degree,no,yes,no,cellular,aug,mon,116,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+43,management,married,university.degree,no,no,no,cellular,aug,mon,75,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+72,retired,divorced,basic.4y,no,no,no,cellular,aug,mon,152,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+73,retired,married,basic.4y,no,no,no,cellular,aug,mon,348,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes
+67,retired,married,professional.course,no,yes,yes,cellular,aug,mon,186,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes
+80,retired,married,high.school,no,no,no,telephone,aug,mon,199,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes
+60,admin.,married,university.degree,no,no,no,cellular,aug,mon,133,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+33,technician,married,university.degree,no,yes,no,cellular,aug,mon,551,2,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+23,student,single,high.school,no,no,no,cellular,aug,mon,123,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+23,student,single,high.school,no,no,no,cellular,aug,mon,80,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+25,admin.,single,university.degree,no,no,no,cellular,aug,mon,286,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes
+25,admin.,single,university.degree,no,yes,no,cellular,aug,mon,163,1,6,1,success,-2.9,92.201,-31.4,0.861,5076.2,yes
+33,unemployed,single,university.degree,no,no,no,cellular,aug,mon,156,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+65,retired,married,high.school,no,yes,yes,cellular,aug,mon,97,2,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+34,technician,married,university.degree,no,no,no,cellular,aug,mon,220,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes
+34,technician,married,university.degree,no,no,no,cellular,aug,mon,473,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+31,admin.,single,university.degree,no,no,no,telephone,aug,mon,122,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+34,technician,single,professional.course,no,no,no,cellular,aug,mon,237,1,999,1,failure,-2.9,92.201,-31.4,0.861,5076.2,no
+31,technician,married,university.degree,no,no,no,cellular,aug,mon,109,1,999,1,failure,-2.9,92.201,-31.4,0.861,5076.2,no
+26,admin.,single,university.degree,no,unknown,unknown,cellular,aug,mon,115,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+43,management,married,university.degree,no,no,no,telephone,aug,mon,123,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+50,blue-collar,married,basic.4y,no,no,no,cellular,aug,mon,123,2,15,1,success,-2.9,92.201,-31.4,0.861,5076.2,no
+30,services,single,high.school,no,no,no,cellular,aug,mon,366,2,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+28,admin.,single,university.degree,no,yes,no,cellular,aug,mon,343,2,999,1,failure,-2.9,92.201,-31.4,0.861,5076.2,yes
+34,technician,married,professional.course,no,no,no,cellular,aug,mon,123,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+48,technician,married,high.school,no,yes,no,cellular,aug,mon,711,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes
+44,admin.,single,university.degree,no,no,no,cellular,aug,mon,207,1,6,1,success,-2.9,92.201,-31.4,0.861,5076.2,yes
+18,student,single,basic.6y,no,yes,no,cellular,aug,mon,628,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+23,technician,married,professional.course,no,yes,no,cellular,aug,mon,341,1,3,2,success,-2.9,92.201,-31.4,0.861,5076.2,yes
+27,self-employed,single,university.degree,no,unknown,unknown,cellular,aug,mon,130,2,999,1,failure,-2.9,92.201,-31.4,0.861,5076.2,no
+27,self-employed,single,university.degree,no,no,no,cellular,aug,mon,241,2,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+28,admin.,single,university.degree,no,no,no,cellular,aug,mon,192,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+28,admin.,single,university.degree,no,yes,no,cellular,aug,mon,340,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes
+28,admin.,single,university.degree,no,unknown,unknown,cellular,aug,mon,148,1,999,2,failure,-2.9,92.201,-31.4,0.861,5076.2,no
+41,admin.,single,high.school,no,yes,no,cellular,aug,mon,606,1,6,1,success,-2.9,92.201,-31.4,0.861,5076.2,yes
+29,management,single,university.degree,no,no,no,cellular,aug,mon,300,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+74,retired,married,basic.9y,no,yes,no,cellular,aug,mon,156,1,999,1,failure,-2.9,92.201,-31.4,0.861,5076.2,yes
+46,entrepreneur,married,high.school,no,yes,no,cellular,aug,mon,109,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no
+22,student,single,professional.course,no,yes,no,cellular,aug,mon,162,2,999,1,failure,-2.9,92.201,-31.4,0.861,5076.2,yes
+29,unemployed,single,university.degree,no,yes,no,cellular,aug,tue,33,2,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no
+67,retired,married,basic.6y,no,no,no,cellular,aug,tue,460,2,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,yes
+36,admin.,single,university.degree,no,no,no,cellular,aug,tue,278,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,yes
+65,housemaid,divorced,basic.4y,no,yes,no,cellular,aug,tue,212,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no
+31,admin.,single,high.school,no,yes,no,cellular,aug,tue,243,2,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no
+61,retired,married,university.degree,no,no,no,telephone,aug,tue,249,2,3,1,success,-2.9,92.201,-31.4,0.859,5076.2,yes
+63,retired,married,university.degree,no,no,no,cellular,aug,tue,177,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no
+34,admin.,single,university.degree,no,yes,no,telephone,aug,tue,205,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,yes
+34,admin.,single,university.degree,no,no,yes,cellular,aug,tue,543,1,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,no
+33,admin.,married,high.school,no,no,no,cellular,aug,tue,147,1,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,no
+33,admin.,married,high.school,no,no,yes,cellular,aug,tue,113,1,6,2,success,-2.9,92.201,-31.4,0.859,5076.2,no
+26,admin.,single,university.degree,no,yes,no,telephone,aug,tue,215,1,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,yes
+47,admin.,single,university.degree,no,yes,no,cellular,aug,tue,161,1,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,yes
+49,technician,married,university.degree,no,no,no,cellular,aug,tue,90,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no
+32,technician,single,university.degree,no,yes,yes,cellular,aug,tue,96,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no
+56,management,married,university.degree,no,no,no,telephone,aug,tue,108,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no
+59,management,married,university.degree,no,yes,no,cellular,aug,tue,210,2,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,no
+61,retired,married,university.degree,no,yes,no,cellular,aug,tue,101,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,tue,360,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no
+37,admin.,married,university.degree,no,no,yes,cellular,aug,tue,66,1,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,no
+37,admin.,married,university.degree,no,yes,no,cellular,aug,tue,148,1,999,2,failure,-2.9,92.201,-31.4,0.859,5076.2,yes
+35,technician,married,university.degree,no,unknown,unknown,cellular,aug,tue,117,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no
+32,services,married,high.school,no,no,no,cellular,aug,tue,363,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no
+71,retired,married,basic.4y,unknown,unknown,unknown,cellular,aug,tue,216,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,yes
+50,admin.,married,university.degree,no,no,no,cellular,aug,tue,587,2,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,yes
+34,technician,married,professional.course,no,no,no,cellular,aug,tue,193,1,13,1,success,-2.9,92.201,-31.4,0.859,5076.2,yes
+56,management,married,university.degree,no,yes,no,cellular,aug,tue,370,2,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,yes
+33,blue-collar,divorced,basic.4y,no,yes,no,cellular,aug,tue,395,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,yes
+20,student,single,high.school,no,yes,no,cellular,aug,tue,532,1,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,yes
+64,retired,married,high.school,unknown,no,no,cellular,aug,tue,301,1,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,yes
+29,admin.,single,university.degree,no,yes,no,cellular,aug,tue,307,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no
+65,retired,married,basic.4y,no,yes,no,cellular,aug,tue,197,2,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,no
+63,retired,married,university.degree,no,no,no,telephone,aug,tue,280,3,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no
+35,technician,married,professional.course,no,no,no,cellular,aug,tue,441,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,yes
+35,admin.,single,university.degree,no,no,no,telephone,aug,tue,396,3,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no
+26,admin.,single,high.school,no,no,no,cellular,aug,wed,431,4,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no
+38,technician,married,university.degree,no,yes,no,cellular,aug,wed,220,5,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no
+74,retired,divorced,basic.4y,no,yes,no,cellular,aug,wed,536,1,13,1,success,-2.9,92.201,-31.4,0.854,5076.2,yes
+33,admin.,married,high.school,no,yes,no,cellular,aug,wed,206,4,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no
+33,admin.,married,high.school,no,yes,no,telephone,aug,wed,578,2,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no
+62,unemployed,married,high.school,no,yes,no,cellular,aug,wed,250,1,999,1,failure,-2.9,92.201,-31.4,0.854,5076.2,no
+80,retired,married,basic.4y,no,no,no,cellular,aug,wed,207,4,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no
+26,technician,single,university.degree,no,yes,yes,cellular,aug,wed,65,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no
+38,technician,married,university.degree,no,yes,no,cellular,aug,wed,238,4,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,yes
+35,admin.,married,university.degree,no,yes,no,cellular,aug,wed,768,2,999,2,failure,-2.9,92.201,-31.4,0.854,5076.2,yes
+37,admin.,married,university.degree,no,no,no,cellular,aug,wed,225,2,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,yes
+56,housemaid,divorced,basic.4y,no,no,no,cellular,aug,wed,89,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no
+20,student,single,basic.9y,no,no,no,cellular,aug,wed,98,2,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no
+32,technician,single,university.degree,no,yes,no,cellular,aug,wed,240,2,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,yes
+33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,173,1,1,1,success,-2.9,92.201,-31.4,0.854,5076.2,yes
+55,unknown,married,university.degree,no,yes,no,cellular,aug,wed,164,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,yes
+26,admin.,single,high.school,no,yes,no,telephone,aug,wed,170,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no
+74,retired,married,university.degree,no,yes,yes,cellular,aug,wed,232,3,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,yes
+33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,67,1,3,1,success,-2.9,92.201,-31.4,0.854,5076.2,no
+73,retired,married,basic.4y,unknown,no,no,cellular,aug,wed,76,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no
+64,retired,married,basic.4y,no,yes,no,cellular,aug,wed,145,1,3,2,success,-2.9,92.201,-31.4,0.854,5076.2,yes
+32,admin.,married,university.degree,no,yes,no,telephone,aug,wed,328,1,999,1,failure,-2.9,92.201,-31.4,0.854,5076.2,no
+34,admin.,single,university.degree,no,no,no,cellular,aug,wed,195,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,yes
+34,unemployed,single,university.degree,no,no,no,cellular,aug,wed,484,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no
+33,admin.,married,high.school,no,no,no,cellular,aug,wed,321,2,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no
+54,technician,married,basic.9y,no,no,no,cellular,aug,wed,196,2,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no
+35,admin.,married,university.degree,no,no,yes,cellular,aug,wed,65,5,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no
+32,admin.,married,university.degree,no,yes,no,cellular,aug,wed,80,2,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no
+66,retired,married,basic.4y,no,yes,yes,telephone,aug,wed,82,3,999,3,failure,-2.9,92.201,-31.4,0.854,5076.2,no
+33,admin.,single,university.degree,no,no,no,cellular,aug,wed,338,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,yes
+40,admin.,divorced,high.school,no,yes,no,cellular,aug,thu,262,2,999,1,failure,-2.9,92.201,-31.4,0.851,5076.2,no
+37,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,329,3,9,1,success,-2.9,92.201,-31.4,0.851,5076.2,yes
+25,admin.,single,university.degree,no,yes,no,telephone,aug,thu,84,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no
+66,retired,married,basic.6y,no,yes,no,cellular,aug,thu,267,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,yes
+36,technician,single,professional.course,no,yes,no,cellular,aug,thu,474,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,yes
+34,admin.,single,university.degree,no,yes,no,cellular,aug,thu,377,6,3,1,success,-2.9,92.201,-31.4,0.851,5076.2,yes
+27,admin.,single,university.degree,no,yes,no,cellular,aug,thu,97,2,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no
+35,blue-collar,divorced,high.school,no,no,no,cellular,aug,thu,151,1,3,1,success,-2.9,92.201,-31.4,0.851,5076.2,yes
+37,student,single,unknown,no,no,no,cellular,aug,thu,928,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no
+62,admin.,married,university.degree,no,no,no,cellular,aug,thu,68,1,999,1,failure,-2.9,92.201,-31.4,0.851,5076.2,no
+32,management,single,university.degree,no,no,no,cellular,aug,thu,149,1,3,2,success,-2.9,92.201,-31.4,0.851,5076.2,yes
+38,services,single,high.school,no,yes,no,cellular,aug,thu,83,5,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no
+74,retired,married,basic.9y,no,no,no,cellular,aug,thu,188,2,999,1,failure,-2.9,92.201,-31.4,0.851,5076.2,no
+71,retired,single,university.degree,no,yes,no,cellular,aug,thu,217,1,6,2,failure,-2.9,92.201,-31.4,0.851,5076.2,yes
+29,admin.,married,university.degree,no,yes,no,cellular,aug,thu,69,1,999,1,failure,-2.9,92.201,-31.4,0.851,5076.2,no
+29,admin.,married,university.degree,no,no,no,cellular,aug,thu,131,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no
+24,admin.,single,university.degree,no,no,no,cellular,aug,thu,147,1,999,1,failure,-2.9,92.201,-31.4,0.851,5076.2,no
+24,admin.,single,university.degree,no,yes,no,cellular,aug,thu,158,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,yes
+45,self-employed,married,university.degree,no,no,yes,cellular,aug,thu,157,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no
+26,admin.,single,university.degree,no,no,no,cellular,aug,thu,99,1,999,1,failure,-2.9,92.201,-31.4,0.851,5076.2,no
+25,student,single,university.degree,no,no,no,cellular,aug,thu,184,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,yes
+38,admin.,divorced,professional.course,no,no,no,cellular,aug,thu,201,2,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no
+28,technician,single,professional.course,no,yes,no,cellular,aug,thu,64,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no
+28,technician,single,professional.course,no,yes,no,cellular,aug,thu,63,2,3,1,success,-2.9,92.201,-31.4,0.851,5076.2,yes
+28,technician,single,professional.course,no,yes,no,cellular,aug,thu,78,3,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,yes
+25,student,single,university.degree,no,no,no,cellular,aug,thu,75,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no
+34,technician,single,unknown,no,yes,no,cellular,aug,thu,320,2,3,1,success,-2.9,92.201,-31.4,0.851,5076.2,yes
+51,management,married,high.school,no,yes,yes,cellular,aug,fri,228,4,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,yes
+53,admin.,married,university.degree,no,no,no,cellular,aug,fri,139,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,no
+64,retired,married,unknown,no,yes,yes,cellular,aug,fri,89,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no
+64,retired,married,university.degree,no,no,no,cellular,aug,fri,102,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no
+64,retired,married,university.degree,no,yes,yes,cellular,aug,fri,146,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no
+76,retired,married,basic.4y,no,yes,no,cellular,aug,fri,406,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,no
+76,retired,married,basic.4y,no,no,no,cellular,aug,fri,61,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no
+61,retired,married,basic.4y,no,yes,yes,cellular,aug,fri,374,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,yes
+61,retired,married,basic.4y,no,yes,no,cellular,aug,fri,168,1,15,1,success,-2.9,92.201,-31.4,0.849,5076.2,yes
+61,retired,married,basic.4y,no,yes,yes,cellular,aug,fri,69,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no
+58,retired,married,university.degree,no,yes,no,cellular,aug,fri,92,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,no
+36,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,96,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no
+62,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,64,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,no
+87,retired,divorced,basic.4y,no,no,no,cellular,aug,fri,273,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,yes
+39,student,single,unknown,no,yes,no,telephone,aug,fri,104,2,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,no
+54,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,204,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,yes
+54,technician,divorced,university.degree,no,no,no,cellular,aug,fri,90,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no
+24,student,single,high.school,no,yes,no,cellular,aug,fri,200,1,6,4,failure,-2.9,92.201,-31.4,0.849,5076.2,no
+24,student,single,high.school,no,yes,no,cellular,aug,fri,53,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,no
+24,student,single,high.school,no,yes,yes,cellular,aug,fri,44,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no
+24,student,single,high.school,no,yes,yes,cellular,aug,fri,298,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,no
+24,student,single,high.school,no,no,no,cellular,aug,fri,276,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,yes
+34,unemployed,single,professional.course,no,no,no,cellular,aug,fri,531,2,2,1,success,-2.9,92.201,-31.4,0.849,5076.2,yes
+54,admin.,married,university.degree,no,yes,no,cellular,aug,fri,91,2,3,1,success,-2.9,92.201,-31.4,0.849,5076.2,yes
+55,management,married,university.degree,no,no,no,cellular,aug,fri,72,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no
+62,admin.,married,university.degree,no,yes,no,cellular,aug,fri,116,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,yes
+79,housemaid,married,basic.4y,no,no,no,cellular,aug,fri,126,1,3,2,success,-2.9,92.201,-31.4,0.849,5076.2,yes
+30,blue-collar,married,high.school,no,yes,no,cellular,aug,fri,252,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,yes
+36,admin.,single,high.school,no,yes,no,cellular,aug,fri,159,1,3,2,success,-2.9,92.201,-31.4,0.849,5076.2,yes
+64,retired,married,unknown,no,yes,no,cellular,aug,fri,171,3,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no
+39,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,343,2,14,1,success,-2.9,92.201,-31.4,0.849,5076.2,yes
+35,admin.,married,university.degree,no,yes,no,cellular,aug,fri,419,5,3,2,success,-2.9,92.201,-31.4,0.849,5076.2,no
+64,retired,married,unknown,no,no,no,cellular,aug,fri,252,4,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,yes
+24,student,single,unknown,no,yes,yes,cellular,aug,fri,744,1,3,2,success,-2.9,92.201,-31.4,0.849,5076.2,yes
+24,student,single,unknown,no,yes,no,cellular,aug,fri,438,1,6,1,success,-2.9,92.201,-31.4,0.849,5076.2,yes
+70,retired,married,university.degree,no,yes,no,cellular,aug,mon,73,3,999,1,failure,-2.9,92.201,-31.4,0.843,5076.2,no
+34,admin.,married,university.degree,no,no,no,cellular,aug,mon,62,2,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no
+54,self-employed,married,university.degree,no,yes,no,cellular,aug,mon,323,2,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,mon,227,2,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no
+74,retired,married,basic.4y,unknown,yes,no,cellular,aug,mon,467,2,6,1,success,-2.9,92.201,-31.4,0.843,5076.2,yes
+47,housemaid,married,university.degree,no,yes,no,cellular,aug,mon,232,2,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,yes
+38,unemployed,single,high.school,no,yes,no,cellular,aug,mon,712,2,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,yes
+66,retired,married,university.degree,no,no,yes,cellular,aug,mon,315,1,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no
+69,housemaid,married,basic.4y,no,no,no,telephone,aug,mon,420,4,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no
+58,retired,married,university.degree,no,yes,no,telephone,aug,mon,100,1,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no
+88,retired,married,university.degree,no,yes,no,cellular,aug,mon,401,1,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no
+40,admin.,married,university.degree,no,yes,no,cellular,aug,mon,55,1,999,2,failure,-2.9,92.201,-31.4,0.843,5076.2,no
+57,retired,married,university.degree,no,yes,no,cellular,aug,mon,349,1,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no
+47,self-employed,married,university.degree,no,yes,no,cellular,aug,mon,143,2,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no
+64,retired,married,basic.9y,no,yes,no,cellular,aug,mon,79,2,3,1,success,-2.9,92.201,-31.4,0.843,5076.2,no
+57,retired,married,university.degree,no,no,no,cellular,aug,mon,497,2,999,1,failure,-2.9,92.201,-31.4,0.843,5076.2,no
+49,technician,divorced,high.school,no,no,no,cellular,aug,tue,109,2,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no
+25,admin.,single,university.degree,no,no,no,telephone,aug,tue,103,3,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no
+66,retired,married,basic.4y,unknown,yes,no,cellular,aug,tue,142,2,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,yes
+81,retired,married,high.school,no,no,no,cellular,aug,tue,50,3,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no
+44,technician,divorced,high.school,no,no,no,cellular,aug,tue,188,3,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no
+43,services,married,high.school,no,no,yes,cellular,aug,tue,79,2,3,2,success,-2.9,92.201,-31.4,0.838,5076.2,no
+38,student,single,unknown,no,yes,yes,cellular,aug,tue,158,2,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no
+63,housemaid,married,basic.4y,no,no,no,cellular,aug,tue,511,1,999,1,failure,-2.9,92.201,-31.4,0.838,5076.2,yes
+51,admin.,divorced,high.school,no,yes,no,cellular,aug,tue,192,1,6,1,success,-2.9,92.201,-31.4,0.838,5076.2,yes
+58,retired,married,high.school,no,no,no,cellular,aug,tue,585,4,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no
+51,admin.,divorced,high.school,no,yes,no,cellular,aug,tue,133,1,999,1,failure,-2.9,92.201,-31.4,0.838,5076.2,no
+51,admin.,divorced,high.school,no,no,no,cellular,aug,tue,83,1,6,2,failure,-2.9,92.201,-31.4,0.838,5076.2,no
+54,technician,married,professional.course,no,yes,no,cellular,aug,tue,41,2,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no
+63,technician,married,unknown,no,yes,no,cellular,aug,tue,173,1,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no
+63,technician,married,unknown,no,yes,no,cellular,aug,tue,279,1,999,1,failure,-2.9,92.201,-31.4,0.838,5076.2,no
+63,technician,married,unknown,no,no,no,cellular,aug,tue,47,1,999,1,failure,-2.9,92.201,-31.4,0.838,5076.2,no
+64,unknown,married,unknown,no,no,no,cellular,aug,tue,275,1,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no
+58,retired,married,high.school,no,no,no,cellular,aug,tue,130,2,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,yes
+54,retired,married,professional.course,unknown,no,no,cellular,aug,tue,76,1,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no
+63,housemaid,married,basic.4y,no,no,no,cellular,aug,tue,479,1,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,yes
+54,retired,married,professional.course,unknown,no,no,cellular,aug,tue,95,2,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,yes
+60,housemaid,divorced,professional.course,no,yes,no,cellular,aug,tue,186,3,999,1,failure,-2.9,92.201,-31.4,0.838,5076.2,no
+62,retired,married,professional.course,no,yes,no,cellular,aug,tue,531,3,6,1,success,-2.9,92.201,-31.4,0.838,5076.2,yes
+58,retired,married,high.school,no,no,no,cellular,aug,tue,360,5,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no
+58,retired,married,high.school,no,yes,no,cellular,aug,tue,242,6,3,1,success,-2.9,92.201,-31.4,0.838,5076.2,yes
+53,admin.,divorced,high.school,no,yes,no,cellular,aug,tue,159,2,3,1,success,-2.9,92.201,-31.4,0.838,5076.2,no
+56,services,single,high.school,no,no,yes,cellular,aug,tue,555,3,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,yes
+43,admin.,married,high.school,no,yes,no,cellular,aug,tue,291,2,3,2,success,-2.9,92.201,-31.4,0.838,5076.2,yes
+43,admin.,married,university.degree,no,no,yes,cellular,aug,tue,161,3,13,1,success,-2.9,92.201,-31.4,0.838,5076.2,no
+67,retired,divorced,university.degree,no,yes,no,cellular,aug,wed,89,5,999,1,failure,-2.9,92.201,-31.4,0.834,5076.2,no
+27,admin.,single,high.school,no,no,no,telephone,aug,wed,415,3,999,0,nonexistent,-2.9,92.201,-31.4,0.834,5076.2,yes
+49,entrepreneur,single,university.degree,no,yes,no,cellular,aug,wed,78,6,5,1,success,-2.9,92.201,-31.4,0.834,5076.2,no
+42,retired,divorced,illiterate,no,no,no,telephone,aug,wed,128,3,999,0,nonexistent,-2.9,92.201,-31.4,0.834,5076.2,yes
+59,technician,married,professional.course,no,yes,no,telephone,aug,wed,240,3,999,1,failure,-2.9,92.201,-31.4,0.834,5076.2,no
+57,retired,married,university.degree,no,yes,no,cellular,aug,wed,187,1,999,1,failure,-2.9,92.201,-31.4,0.834,5076.2,no
+59,technician,married,professional.course,no,yes,no,cellular,aug,wed,210,4,999,0,nonexistent,-2.9,92.201,-31.4,0.834,5076.2,yes
+28,admin.,married,university.degree,no,yes,no,cellular,aug,wed,75,1,999,1,failure,-2.9,92.201,-31.4,0.834,5076.2,no
+80,retired,married,basic.4y,no,yes,no,cellular,aug,wed,323,1,999,0,nonexistent,-2.9,92.201,-31.4,0.834,5076.2,yes
+80,retired,married,basic.4y,no,yes,no,cellular,aug,wed,76,1,3,2,success,-2.9,92.201,-31.4,0.834,5076.2,no
+78,retired,married,basic.4y,no,no,yes,cellular,aug,wed,103,1,999,0,nonexistent,-2.9,92.201,-31.4,0.834,5076.2,no
+56,housemaid,married,basic.4y,no,yes,no,cellular,aug,wed,359,3,999,0,nonexistent,-2.9,92.201,-31.4,0.834,5076.2,no
+42,retired,divorced,illiterate,no,no,no,cellular,aug,wed,146,4,999,0,nonexistent,-2.9,92.201,-31.4,0.834,5076.2,no
+28,student,single,unknown,no,no,no,cellular,aug,thu,700,4,999,1,failure,-2.9,92.201,-31.4,0.829,5076.2,yes
+24,self-employed,single,university.degree,no,no,no,cellular,aug,thu,64,3,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,no
+71,retired,married,university.degree,no,no,no,cellular,aug,thu,148,1,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,no
+71,retired,married,university.degree,no,yes,no,cellular,aug,thu,1112,1,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,no
+59,admin.,single,university.degree,no,no,no,cellular,aug,thu,259,3,15,1,success,-2.9,92.201,-31.4,0.829,5076.2,yes
+46,housemaid,married,basic.4y,no,unknown,unknown,cellular,aug,thu,154,2,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,no
+51,admin.,married,university.degree,no,yes,no,cellular,aug,thu,212,1,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,yes
+46,admin.,married,university.degree,no,yes,no,cellular,aug,thu,445,3,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,yes
+50,admin.,married,university.degree,no,no,yes,cellular,aug,thu,460,1,15,2,failure,-2.9,92.201,-31.4,0.829,5076.2,yes
+46,self-employed,married,university.degree,no,yes,no,cellular,aug,thu,148,2,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,no
+58,retired,divorced,high.school,no,no,no,cellular,aug,thu,398,2,999,1,failure,-2.9,92.201,-31.4,0.829,5076.2,yes
+31,admin.,single,university.degree,no,no,no,cellular,aug,thu,81,1,3,1,success,-2.9,92.201,-31.4,0.829,5076.2,yes
+42,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,294,1,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,fri,118,2,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no
+36,housemaid,single,university.degree,no,unknown,unknown,cellular,aug,fri,119,2,3,1,success,-2.9,92.201,-31.4,0.825,5076.2,no
+59,retired,married,unknown,no,no,no,cellular,aug,fri,109,2,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no
+48,management,married,university.degree,unknown,yes,no,cellular,aug,fri,207,3,999,1,failure,-2.9,92.201,-31.4,0.825,5076.2,no
+45,services,married,high.school,no,yes,no,cellular,aug,fri,67,3,999,1,failure,-2.9,92.201,-31.4,0.825,5076.2,no
+28,student,single,unknown,no,yes,no,telephone,aug,fri,268,3,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no
+27,student,single,university.degree,no,yes,no,cellular,aug,fri,630,2,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no
+25,student,single,unknown,unknown,yes,no,cellular,aug,fri,50,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no
+25,student,single,unknown,unknown,no,no,cellular,aug,fri,248,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no
+25,student,single,unknown,unknown,yes,no,cellular,aug,fri,121,1,15,2,failure,-2.9,92.201,-31.4,0.825,5076.2,no
+25,student,single,unknown,unknown,yes,no,cellular,aug,fri,90,1,999,2,failure,-2.9,92.201,-31.4,0.825,5076.2,no
+25,student,single,unknown,unknown,yes,no,cellular,aug,fri,81,1,999,1,failure,-2.9,92.201,-31.4,0.825,5076.2,no
+24,student,single,high.school,no,no,no,cellular,aug,fri,65,1,999,2,failure,-2.9,92.201,-31.4,0.825,5076.2,no
+24,student,single,high.school,no,yes,no,telephone,aug,fri,359,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no
+33,admin.,married,high.school,no,no,no,cellular,aug,fri,207,3,15,1,success,-2.9,92.201,-31.4,0.825,5076.2,yes
+43,technician,single,professional.course,no,no,no,cellular,aug,fri,255,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no
+26,student,single,high.school,no,no,no,cellular,aug,fri,133,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no
+55,entrepreneur,divorced,basic.9y,no,yes,no,cellular,aug,fri,622,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,yes
+26,student,single,university.degree,no,no,yes,cellular,aug,fri,173,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,yes
+62,retired,married,professional.course,no,yes,yes,cellular,aug,fri,517,2,999,1,failure,-2.9,92.201,-31.4,0.825,5076.2,yes
+44,admin.,married,high.school,no,no,no,cellular,aug,fri,283,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no
+34,technician,married,university.degree,no,yes,no,cellular,aug,fri,94,3,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no
+28,student,single,professional.course,no,no,no,cellular,aug,fri,36,2,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no
+44,management,married,unknown,no,yes,no,cellular,aug,fri,247,2,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no
+26,student,single,high.school,no,yes,no,cellular,aug,fri,155,2,6,2,failure,-2.9,92.201,-31.4,0.825,5076.2,yes
+72,unknown,married,unknown,no,yes,yes,cellular,aug,fri,207,8,999,1,failure,-2.9,92.201,-31.4,0.825,5076.2,yes
+45,technician,married,high.school,no,yes,no,cellular,aug,fri,368,2,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no
+30,student,married,university.degree,no,no,no,cellular,aug,mon,98,2,3,2,success,-2.9,92.201,-31.4,0.821,5076.2,yes
+51,technician,married,professional.course,no,yes,no,cellular,aug,mon,72,2,999,1,failure,-2.9,92.201,-31.4,0.821,5076.2,no
+40,technician,married,high.school,no,yes,no,cellular,aug,mon,69,2,999,2,failure,-2.9,92.201,-31.4,0.821,5076.2,no
+26,self-employed,single,university.degree,no,yes,no,cellular,aug,mon,102,2,999,1,failure,-2.9,92.201,-31.4,0.821,5076.2,no
+40,technician,married,high.school,no,no,no,cellular,aug,mon,115,3,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no
+73,retired,married,university.degree,no,no,no,telephone,aug,mon,245,4,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no
+36,admin.,married,high.school,no,no,no,cellular,aug,mon,54,5,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no
+73,retired,married,basic.4y,no,unknown,unknown,cellular,aug,mon,160,3,999,1,failure,-2.9,92.201,-31.4,0.821,5076.2,yes
+38,technician,married,professional.course,no,unknown,unknown,telephone,aug,mon,473,2,9,1,success,-2.9,92.201,-31.4,0.821,5076.2,yes
+36,technician,single,professional.course,no,yes,no,cellular,aug,mon,62,1,999,1,failure,-2.9,92.201,-31.4,0.821,5076.2,no
+73,retired,divorced,high.school,no,yes,no,cellular,aug,mon,114,1,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no
+40,technician,married,high.school,no,yes,no,cellular,aug,mon,83,1,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no
+30,student,married,university.degree,no,yes,no,cellular,aug,mon,186,3,3,1,success,-2.9,92.201,-31.4,0.821,5076.2,yes
+29,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,121,12,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no
+53,admin.,married,university.degree,no,yes,no,cellular,aug,mon,81,1,999,2,failure,-2.9,92.201,-31.4,0.821,5076.2,no
+53,admin.,married,university.degree,no,yes,no,cellular,aug,mon,267,1,999,1,failure,-2.9,92.201,-31.4,0.821,5076.2,yes
+38,admin.,married,high.school,no,yes,no,cellular,aug,mon,106,1,999,1,failure,-2.9,92.201,-31.4,0.821,5076.2,no
+38,admin.,married,high.school,no,yes,no,cellular,aug,mon,470,1,6,2,failure,-2.9,92.201,-31.4,0.821,5076.2,yes
+33,self-employed,married,university.degree,no,yes,no,cellular,aug,mon,98,3,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no
+31,management,married,university.degree,no,yes,yes,cellular,aug,mon,271,2,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,yes
+59,self-employed,married,university.degree,no,yes,no,telephone,aug,mon,139,1,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no
+63,retired,married,university.degree,no,yes,no,cellular,aug,mon,79,1,6,2,failure,-2.9,92.201,-31.4,0.821,5076.2,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,mon,89,1,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no
+31,management,married,university.degree,no,yes,no,cellular,aug,mon,197,2,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no
+53,admin.,married,university.degree,unknown,yes,no,cellular,sep,tue,81,5,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no
+32,admin.,single,university.degree,no,yes,yes,cellular,sep,tue,69,2,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no
+52,admin.,married,unknown,no,no,no,telephone,sep,tue,97,5,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no
+39,entrepreneur,married,basic.6y,no,yes,no,cellular,sep,tue,265,2,16,1,success,-3.4,92.379,-29.8,0.819,5017.5,yes
+32,admin.,single,university.degree,no,yes,no,cellular,sep,tue,157,2,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no
+36,admin.,married,university.degree,no,yes,yes,cellular,sep,tue,28,2,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no
+52,admin.,married,unknown,no,no,no,telephone,sep,tue,513,13,14,2,failure,-3.4,92.379,-29.8,0.819,5017.5,no
+35,entrepreneur,married,high.school,no,no,no,cellular,sep,tue,91,2,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no
+48,technician,married,basic.9y,no,no,no,cellular,sep,tue,99,3,999,1,failure,-3.4,92.379,-29.8,0.819,5017.5,no
+27,management,single,university.degree,no,yes,no,cellular,sep,tue,137,2,4,2,success,-3.4,92.379,-29.8,0.819,5017.5,no
+38,admin.,single,university.degree,no,yes,yes,cellular,sep,tue,115,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no
+38,admin.,single,university.degree,no,yes,no,telephone,sep,tue,490,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no
+28,management,single,university.degree,no,yes,no,cellular,sep,tue,76,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no
+28,management,single,university.degree,no,yes,no,cellular,sep,tue,368,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no
+51,blue-collar,married,professional.course,no,yes,no,cellular,sep,tue,86,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no
+52,technician,married,professional.course,no,yes,yes,cellular,sep,tue,77,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no
+33,admin.,married,high.school,no,yes,no,cellular,sep,tue,212,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,yes
+54,admin.,married,unknown,no,yes,no,cellular,sep,tue,82,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,yes
+79,retired,married,basic.9y,no,no,no,cellular,sep,tue,181,1,999,1,failure,-3.4,92.379,-29.8,0.819,5017.5,yes
+39,entrepreneur,married,basic.6y,no,yes,no,cellular,sep,tue,531,2,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,yes
+39,entrepreneur,married,basic.6y,no,no,no,cellular,sep,tue,106,4,16,2,failure,-3.4,92.379,-29.8,0.819,5017.5,no
+45,admin.,married,university.degree,no,unknown,unknown,cellular,sep,tue,55,6,999,1,failure,-3.4,92.379,-29.8,0.819,5017.5,no
+19,student,single,basic.9y,no,yes,no,cellular,sep,wed,207,2,999,1,failure,-3.4,92.379,-29.8,0.813,5017.5,no
+37,admin.,married,university.degree,no,yes,no,cellular,sep,wed,140,2,999,0,nonexistent,-3.4,92.379,-29.8,0.813,5017.5,yes
+34,technician,married,professional.course,no,yes,no,cellular,sep,wed,233,2,999,0,nonexistent,-3.4,92.379,-29.8,0.813,5017.5,yes
+60,admin.,married,professional.course,no,yes,yes,telephone,sep,wed,61,3,999,0,nonexistent,-3.4,92.379,-29.8,0.813,5017.5,no
+40,unemployed,married,university.degree,no,yes,yes,cellular,sep,wed,172,4,999,0,nonexistent,-3.4,92.379,-29.8,0.813,5017.5,no
+34,technician,married,professional.course,no,yes,yes,cellular,sep,wed,121,3,999,0,nonexistent,-3.4,92.379,-29.8,0.813,5017.5,yes
+60,unemployed,married,basic.6y,no,yes,no,cellular,sep,thu,95,1,3,1,success,-3.4,92.379,-29.8,0.809,5017.5,no
+18,student,single,unknown,no,no,no,cellular,sep,thu,385,1,3,1,success,-3.4,92.379,-29.8,0.809,5017.5,yes
+18,student,single,unknown,no,yes,no,cellular,sep,thu,114,1,999,0,nonexistent,-3.4,92.379,-29.8,0.809,5017.5,no
+25,admin.,single,university.degree,no,yes,no,cellular,sep,thu,420,1,1,1,success,-3.4,92.379,-29.8,0.809,5017.5,no
+26,admin.,single,university.degree,no,yes,no,telephone,sep,thu,471,1,7,1,success,-3.4,92.379,-29.8,0.809,5017.5,yes
+72,retired,married,unknown,no,no,no,cellular,sep,thu,60,1,999,0,nonexistent,-3.4,92.379,-29.8,0.809,5017.5,no
+60,management,married,university.degree,no,yes,yes,telephone,sep,thu,225,1,999,0,nonexistent,-3.4,92.379,-29.8,0.809,5017.5,no
+32,admin.,married,university.degree,no,no,no,cellular,sep,thu,444,1,999,1,failure,-3.4,92.379,-29.8,0.809,5017.5,yes
+46,technician,married,professional.course,no,yes,yes,cellular,sep,thu,144,2,999,1,failure,-3.4,92.379,-29.8,0.809,5017.5,no
+60,retired,married,professional.course,no,yes,no,cellular,sep,thu,104,1,999,1,failure,-3.4,92.379,-29.8,0.809,5017.5,no
+60,retired,married,professional.course,no,yes,no,cellular,sep,thu,365,1,3,1,success,-3.4,92.379,-29.8,0.809,5017.5,yes
+44,admin.,married,university.degree,no,yes,no,cellular,sep,thu,331,1,999,0,nonexistent,-3.4,92.379,-29.8,0.809,5017.5,yes
+44,admin.,married,university.degree,no,yes,no,cellular,sep,thu,259,1,14,1,success,-3.4,92.379,-29.8,0.809,5017.5,no
+63,unknown,married,unknown,no,yes,no,cellular,sep,thu,268,1,999,1,failure,-3.4,92.379,-29.8,0.809,5017.5,no
+40,unknown,single,unknown,no,no,no,cellular,sep,thu,224,1,999,1,failure,-3.4,92.379,-29.8,0.809,5017.5,yes
+43,technician,married,high.school,no,yes,no,cellular,sep,thu,531,1,999,0,nonexistent,-3.4,92.379,-29.8,0.809,5017.5,no
+43,technician,married,high.school,no,yes,yes,cellular,sep,thu,167,1,3,2,success,-3.4,92.379,-29.8,0.809,5017.5,no
+26,student,single,unknown,no,no,no,cellular,sep,thu,81,1,999,1,failure,-3.4,92.379,-29.8,0.809,5017.5,no
+26,student,single,unknown,no,yes,yes,cellular,sep,thu,733,1,3,1,success,-3.4,92.379,-29.8,0.809,5017.5,yes
+18,student,single,unknown,no,unknown,unknown,cellular,sep,thu,72,2,999,0,nonexistent,-3.4,92.379,-29.8,0.809,5017.5,no
+71,retired,married,basic.4y,no,yes,no,telephone,sep,thu,2055,1,999,0,nonexistent,-3.4,92.379,-29.8,0.809,5017.5,no
+35,services,divorced,high.school,no,yes,no,cellular,sep,fri,56,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+35,admin.,married,university.degree,no,yes,yes,cellular,sep,fri,73,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+61,retired,married,basic.9y,no,yes,yes,cellular,sep,fri,104,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+59,management,married,university.degree,no,yes,no,cellular,sep,fri,328,2,3,1,success,-3.4,92.379,-29.8,0.803,5017.5,yes
+38,technician,married,professional.course,no,yes,no,cellular,sep,fri,166,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+51,technician,married,professional.course,no,no,yes,cellular,sep,fri,520,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,yes
+53,technician,married,professional.course,no,yes,yes,cellular,sep,fri,730,1,999,1,failure,-3.4,92.379,-29.8,0.803,5017.5,yes
+26,management,single,university.degree,no,no,no,cellular,sep,fri,351,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+41,management,married,basic.6y,no,no,no,cellular,sep,fri,181,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+53,technician,married,professional.course,no,yes,no,telephone,sep,fri,384,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+83,retired,married,unknown,no,yes,no,cellular,sep,fri,369,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+45,admin.,single,high.school,no,no,no,cellular,sep,fri,204,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+40,admin.,divorced,high.school,no,yes,no,telephone,sep,fri,101,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+32,admin.,married,university.degree,no,yes,no,cellular,sep,fri,205,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+50,admin.,married,high.school,no,yes,yes,cellular,sep,fri,128,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+76,management,married,unknown,no,no,no,cellular,sep,fri,113,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+76,management,married,unknown,no,no,no,cellular,sep,fri,879,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,yes
+39,blue-collar,married,basic.9y,no,yes,no,cellular,sep,fri,293,1,3,1,success,-3.4,92.379,-29.8,0.803,5017.5,yes
+72,retired,married,basic.4y,no,no,no,cellular,sep,fri,230,1,3,2,success,-3.4,92.379,-29.8,0.803,5017.5,yes
+18,student,single,unknown,no,yes,no,cellular,sep,fri,563,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,yes
+31,admin.,single,university.degree,no,no,no,cellular,sep,fri,123,3,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+28,student,single,high.school,no,no,no,cellular,sep,fri,555,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,yes
+71,retired,married,professional.course,no,no,no,cellular,sep,fri,313,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+63,management,married,unknown,no,yes,no,cellular,sep,fri,156,2,999,2,failure,-3.4,92.379,-29.8,0.803,5017.5,no
+50,admin.,married,high.school,no,yes,no,cellular,sep,fri,434,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,yes
+39,technician,married,basic.9y,no,no,no,cellular,sep,fri,171,2,999,1,failure,-3.4,92.379,-29.8,0.803,5017.5,no
+46,admin.,married,high.school,no,yes,yes,cellular,sep,fri,154,3,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+55,admin.,single,university.degree,no,yes,no,cellular,sep,fri,93,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+47,admin.,married,university.degree,no,no,no,cellular,sep,fri,639,3,999,1,failure,-3.4,92.379,-29.8,0.803,5017.5,no
+31,admin.,single,university.degree,no,yes,no,cellular,sep,fri,112,7,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+54,admin.,married,university.degree,no,no,yes,cellular,sep,fri,172,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no
+28,admin.,married,university.degree,no,yes,yes,cellular,sep,mon,589,3,999,1,failure,-3.4,92.379,-29.8,0.797,5017.5,no
+45,housemaid,single,basic.4y,no,no,no,telephone,sep,mon,569,4,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,yes
+59,admin.,married,unknown,no,yes,yes,cellular,sep,mon,281,3,3,1,success,-3.4,92.379,-29.8,0.797,5017.5,yes
+61,retired,married,university.degree,no,no,no,cellular,sep,mon,350,1,3,2,success,-3.4,92.379,-29.8,0.797,5017.5,yes
+59,admin.,married,unknown,no,no,yes,cellular,sep,mon,295,4,999,1,failure,-3.4,92.379,-29.8,0.797,5017.5,yes
+45,housemaid,single,basic.4y,no,yes,no,cellular,sep,mon,219,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,yes
+41,admin.,married,university.degree,no,yes,no,cellular,sep,mon,182,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no
+30,management,married,university.degree,no,yes,no,telephone,sep,mon,221,1,999,1,failure,-3.4,92.379,-29.8,0.797,5017.5,no
+48,technician,married,professional.course,no,yes,no,cellular,sep,mon,669,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no
+41,admin.,married,university.degree,no,no,no,cellular,sep,mon,133,3,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no
+54,technician,married,professional.course,no,no,no,cellular,sep,mon,99,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no
+54,technician,married,professional.course,no,yes,no,telephone,sep,mon,289,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no
+25,blue-collar,single,basic.9y,no,no,no,cellular,sep,mon,92,1,999,2,failure,-3.4,92.379,-29.8,0.797,5017.5,no
+28,technician,married,high.school,no,yes,no,cellular,sep,mon,89,1,4,1,success,-3.4,92.379,-29.8,0.797,5017.5,no
+41,admin.,married,university.degree,no,yes,no,cellular,sep,mon,97,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no
+52,technician,married,professional.course,no,yes,yes,cellular,sep,mon,211,1,999,1,failure,-3.4,92.379,-29.8,0.797,5017.5,yes
+45,admin.,married,university.degree,no,no,no,cellular,sep,mon,394,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no
+45,admin.,married,university.degree,no,no,no,cellular,sep,mon,587,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,yes
+61,retired,married,university.degree,no,no,no,telephone,sep,mon,147,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no
+25,self-employed,single,university.degree,no,yes,no,cellular,sep,mon,510,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no
+45,admin.,married,university.degree,no,no,no,cellular,sep,mon,351,1,3,2,success,-3.4,92.379,-29.8,0.797,5017.5,yes
+28,services,single,university.degree,no,yes,no,cellular,sep,mon,274,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no
+41,admin.,married,university.degree,no,no,no,cellular,sep,mon,800,2,999,1,failure,-3.4,92.379,-29.8,0.797,5017.5,yes
+46,blue-collar,married,professional.course,no,no,no,cellular,sep,mon,98,2,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no
+39,admin.,married,university.degree,no,no,no,cellular,sep,mon,57,2,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no
+30,admin.,single,university.degree,no,no,no,cellular,sep,mon,199,6,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,yes
+68,retired,married,basic.4y,no,no,no,telephone,sep,tue,201,1,999,1,failure,-3.4,92.379,-29.8,0.788,5017.5,no
+30,self-employed,single,university.degree,no,yes,no,cellular,sep,tue,145,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,yes
+43,technician,married,professional.course,no,no,no,cellular,sep,tue,293,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,yes
+49,admin.,married,high.school,no,no,no,cellular,sep,tue,495,1,3,1,success,-3.4,92.379,-29.8,0.788,5017.5,yes
+71,retired,married,basic.4y,no,yes,no,cellular,sep,tue,206,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,yes
+66,management,divorced,university.degree,no,no,no,cellular,sep,tue,679,1,1,1,success,-3.4,92.379,-29.8,0.788,5017.5,yes
+76,retired,divorced,basic.4y,no,no,no,cellular,sep,tue,221,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,no
+39,self-employed,divorced,high.school,no,no,no,cellular,sep,tue,261,1,3,1,success,-3.4,92.379,-29.8,0.788,5017.5,yes
+30,self-employed,single,university.degree,no,no,no,cellular,sep,tue,169,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,yes
+29,self-employed,single,university.degree,no,yes,no,cellular,sep,tue,445,2,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,yes
+63,retired,married,unknown,no,yes,yes,cellular,sep,tue,167,1,999,1,failure,-3.4,92.379,-29.8,0.788,5017.5,no
+43,technician,married,high.school,no,yes,no,cellular,sep,tue,260,1,3,1,success,-3.4,92.379,-29.8,0.788,5017.5,yes
+75,retired,married,unknown,no,no,no,cellular,sep,tue,191,1,999,1,failure,-3.4,92.379,-29.8,0.788,5017.5,yes
+24,student,single,basic.9y,no,unknown,unknown,cellular,sep,tue,137,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,yes
+71,retired,married,basic.4y,no,no,no,cellular,sep,tue,76,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,no
+39,self-employed,divorced,high.school,no,no,no,cellular,sep,tue,108,2,3,1,success,-3.4,92.379,-29.8,0.788,5017.5,yes
+18,student,single,unknown,no,no,no,telephone,sep,tue,401,2,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,no
+30,self-employed,single,university.degree,no,yes,no,cellular,sep,tue,191,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,no
+35,services,married,high.school,no,no,no,cellular,sep,tue,421,2,3,1,success,-3.4,92.379,-29.8,0.788,5017.5,no
+34,technician,married,professional.course,no,yes,yes,telephone,sep,tue,376,2,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,yes
+53,technician,married,unknown,no,no,no,cellular,sep,wed,121,2,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no
+30,admin.,married,university.degree,no,yes,yes,cellular,sep,wed,475,5,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,yes
+69,retired,married,basic.9y,no,yes,no,cellular,sep,wed,71,1,5,1,success,-3.4,92.379,-29.8,0.781,5017.5,no
+58,retired,married,basic.4y,no,no,no,cellular,sep,wed,394,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,yes
+58,retired,married,basic.4y,no,no,no,telephone,sep,wed,180,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no
+36,services,married,high.school,no,yes,yes,cellular,sep,wed,569,3,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,yes
+78,unknown,married,unknown,no,yes,no,cellular,sep,wed,95,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no
+78,unknown,married,unknown,no,yes,no,cellular,sep,wed,234,1,999,1,failure,-3.4,92.379,-29.8,0.781,5017.5,yes
+46,admin.,married,high.school,no,yes,no,cellular,sep,wed,408,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,yes
+91,retired,married,university.degree,no,yes,yes,cellular,sep,wed,837,1,999,2,failure,-3.4,92.379,-29.8,0.781,5017.5,no
+62,retired,married,university.degree,no,yes,no,cellular,sep,wed,105,3,999,1,failure,-3.4,92.379,-29.8,0.781,5017.5,no
+27,admin.,single,university.degree,no,yes,yes,cellular,sep,wed,345,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,yes
+27,admin.,single,university.degree,no,no,no,cellular,sep,wed,397,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,yes
+36,unemployed,married,unknown,unknown,no,no,cellular,sep,wed,344,1,999,1,failure,-3.4,92.379,-29.8,0.781,5017.5,yes
+32,self-employed,single,university.degree,no,yes,no,cellular,sep,wed,372,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no
+62,retired,married,university.degree,no,no,no,telephone,sep,wed,595,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no
+29,admin.,single,university.degree,no,yes,no,cellular,sep,wed,307,2,999,1,failure,-3.4,92.379,-29.8,0.781,5017.5,no
+58,housemaid,divorced,basic.4y,no,yes,yes,cellular,sep,wed,511,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no
+32,student,married,high.school,no,no,no,telephone,sep,wed,277,5,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no
+91,retired,married,university.degree,no,no,yes,cellular,sep,wed,223,2,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no
+76,retired,married,basic.4y,no,yes,no,cellular,sep,wed,259,2,3,1,success,-3.4,92.379,-29.8,0.781,5017.5,yes
+56,admin.,married,university.degree,no,yes,no,cellular,sep,thu,169,2,3,2,success,-3.4,92.379,-29.8,0.778,5017.5,yes
+56,entrepreneur,married,university.degree,no,yes,no,cellular,sep,thu,105,2,999,0,nonexistent,-3.4,92.379,-29.8,0.778,5017.5,no
+42,management,married,basic.6y,no,yes,no,cellular,sep,thu,84,3,999,0,nonexistent,-3.4,92.379,-29.8,0.778,5017.5,yes
+25,admin.,single,high.school,no,no,no,cellular,sep,thu,185,1,3,1,success,-3.4,92.379,-29.8,0.778,5017.5,yes
+59,management,married,unknown,no,yes,no,cellular,sep,thu,107,1,999,0,nonexistent,-3.4,92.379,-29.8,0.778,5017.5,no
+56,admin.,married,high.school,no,no,no,cellular,sep,thu,276,1,999,0,nonexistent,-3.4,92.379,-29.8,0.778,5017.5,no
+42,management,married,basic.6y,no,yes,no,telephone,sep,thu,230,3,999,0,nonexistent,-3.4,92.379,-29.8,0.778,5017.5,yes
+31,technician,married,professional.course,no,yes,no,cellular,sep,fri,90,4,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no
+69,retired,married,high.school,no,no,no,cellular,sep,fri,346,3,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,yes
+69,retired,married,university.degree,no,yes,no,cellular,sep,fri,324,8,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no
+57,management,married,basic.4y,no,yes,no,cellular,sep,fri,122,2,999,1,failure,-3.4,92.379,-29.8,0.773,5017.5,no
+73,retired,married,basic.4y,no,yes,no,cellular,sep,fri,96,2,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no
+34,admin.,single,university.degree,no,no,no,cellular,sep,fri,260,3,3,2,success,-3.4,92.379,-29.8,0.773,5017.5,yes
+49,admin.,divorced,university.degree,no,yes,no,cellular,sep,fri,283,3,3,1,success,-3.4,92.379,-29.8,0.773,5017.5,yes
+53,housemaid,married,basic.4y,no,yes,no,cellular,sep,fri,129,2,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no
+36,admin.,single,university.degree,no,yes,no,cellular,sep,fri,339,1,999,1,failure,-3.4,92.379,-29.8,0.773,5017.5,no
+36,admin.,married,university.degree,no,yes,no,cellular,sep,fri,355,1,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no
+43,admin.,single,high.school,no,yes,no,cellular,sep,fri,212,1,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,yes
+76,retired,married,university.degree,no,yes,no,cellular,sep,fri,336,1,999,1,failure,-3.4,92.379,-29.8,0.773,5017.5,no
+28,admin.,single,university.degree,no,yes,no,cellular,sep,fri,91,1,1,3,success,-3.4,92.379,-29.8,0.773,5017.5,yes
+73,retired,married,basic.4y,no,yes,no,cellular,sep,fri,158,2,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no
+40,unemployed,married,professional.course,no,no,yes,telephone,sep,fri,91,1,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,yes
+38,admin.,single,high.school,no,yes,no,cellular,sep,fri,113,1,999,1,failure,-3.4,92.379,-29.8,0.773,5017.5,no
+31,admin.,single,high.school,no,yes,no,cellular,sep,fri,210,1,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,yes
+36,admin.,single,university.degree,no,yes,no,cellular,sep,fri,100,2,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,yes
+69,retired,married,high.school,no,no,no,cellular,sep,fri,240,1,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no
+71,retired,married,unknown,no,yes,no,cellular,sep,fri,658,4,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,yes
+34,admin.,married,university.degree,no,no,no,telephone,sep,fri,290,2,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,yes
+40,unemployed,married,professional.course,no,yes,no,cellular,sep,fri,155,3,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no
+47,management,married,university.degree,no,yes,no,cellular,sep,mon,323,1,3,2,success,-3.4,92.379,-29.8,0.771,5017.5,yes
+30,self-employed,married,university.degree,no,yes,no,telephone,sep,mon,103,2,999,0,nonexistent,-3.4,92.379,-29.8,0.771,5017.5,no
+83,retired,married,unknown,no,yes,no,cellular,sep,mon,75,2,999,0,nonexistent,-3.4,92.379,-29.8,0.771,5017.5,no
+39,admin.,married,high.school,no,no,no,cellular,sep,mon,85,2,999,0,nonexistent,-3.4,92.379,-29.8,0.771,5017.5,no
+41,technician,married,professional.course,no,yes,no,cellular,sep,mon,394,2,999,0,nonexistent,-3.4,92.379,-29.8,0.771,5017.5,no
+46,unemployed,married,university.degree,no,yes,yes,cellular,sep,mon,161,1,999,0,nonexistent,-3.4,92.379,-29.8,0.771,5017.5,no
+62,entrepreneur,married,university.degree,no,no,no,cellular,sep,tue,170,1,999,1,failure,-3.4,92.379,-29.8,0.77,5017.5,yes
+62,entrepreneur,married,university.degree,no,yes,no,telephone,sep,tue,722,1,999,0,nonexistent,-3.4,92.379,-29.8,0.77,5017.5,yes
+70,retired,married,basic.4y,no,no,no,cellular,sep,tue,150,1,3,2,success,-3.4,92.379,-29.8,0.77,5017.5,yes
+59,retired,married,basic.4y,no,yes,no,cellular,sep,tue,458,1,999,0,nonexistent,-3.4,92.379,-29.8,0.77,5017.5,yes
+49,blue-collar,married,basic.4y,no,yes,no,cellular,sep,tue,133,2,999,0,nonexistent,-3.4,92.379,-29.8,0.77,5017.5,no
+70,admin.,married,basic.4y,no,no,no,cellular,sep,tue,1962,1,999,2,failure,-3.4,92.379,-29.8,0.77,5017.5,yes
+29,admin.,single,high.school,no,yes,no,cellular,sep,tue,107,2,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,yes
+27,admin.,married,university.degree,no,yes,no,cellular,sep,tue,173,2,6,2,failure,-3.4,92.379,-29.8,0.77,5017.5,yes
+24,technician,married,university.degree,no,yes,yes,cellular,sep,tue,89,2,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,yes
+21,student,single,basic.9y,no,unknown,unknown,cellular,sep,tue,875,1,999,0,nonexistent,-3.4,92.379,-29.8,0.77,5017.5,yes
+51,services,married,high.school,no,yes,no,cellular,sep,tue,208,1,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,no
+27,admin.,single,university.degree,no,yes,no,cellular,sep,tue,126,2,999,0,nonexistent,-3.4,92.379,-29.8,0.77,5017.5,yes
+70,admin.,married,basic.4y,no,yes,yes,cellular,sep,tue,91,1,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,yes
+24,admin.,single,university.degree,no,no,no,cellular,sep,tue,106,1,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,yes
+53,technician,married,professional.course,no,no,no,cellular,sep,tue,103,1,999,1,failure,-3.4,92.379,-29.8,0.77,5017.5,no
+53,technician,married,professional.course,no,no,no,cellular,sep,tue,925,1,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,yes
+66,admin.,married,university.degree,no,no,no,cellular,sep,tue,39,1,999,0,nonexistent,-3.4,92.379,-29.8,0.77,5017.5,no
+69,unknown,married,university.degree,no,yes,yes,cellular,sep,tue,109,2,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,no
+47,admin.,divorced,high.school,no,yes,no,cellular,sep,tue,188,1,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,no
+70,admin.,married,basic.4y,no,no,no,cellular,sep,tue,111,1,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,no
+38,admin.,single,university.degree,unknown,yes,no,cellular,sep,wed,153,1,3,1,success,-3.4,92.379,-29.8,0.768,5017.5,yes
+31,self-employed,married,university.degree,no,no,no,cellular,sep,wed,106,1,999,0,nonexistent,-3.4,92.379,-29.8,0.768,5017.5,no
+31,self-employed,married,university.degree,no,no,no,cellular,sep,wed,152,1,3,1,success,-3.4,92.379,-29.8,0.768,5017.5,yes
+49,unemployed,married,high.school,no,no,no,cellular,sep,wed,169,1,999,1,failure,-3.4,92.379,-29.8,0.768,5017.5,no
+49,unemployed,married,high.school,no,yes,no,cellular,sep,wed,177,1,999,0,nonexistent,-3.4,92.379,-29.8,0.768,5017.5,no
+32,technician,married,university.degree,no,no,no,telephone,sep,wed,994,3,999,0,nonexistent,-3.4,92.379,-29.8,0.768,5017.5,no
+49,unemployed,married,high.school,no,no,no,cellular,sep,wed,292,1,999,0,nonexistent,-3.4,92.379,-29.8,0.768,5017.5,yes
+49,unemployed,married,high.school,no,no,no,cellular,sep,wed,387,1,999,0,nonexistent,-3.4,92.379,-29.8,0.768,5017.5,yes
+60,retired,divorced,high.school,no,no,no,cellular,sep,wed,99,2,999,2,failure,-3.4,92.379,-29.8,0.768,5017.5,no
+51,unemployed,married,high.school,no,yes,no,cellular,sep,wed,657,2,999,0,nonexistent,-3.4,92.379,-29.8,0.768,5017.5,no
+32,technician,married,university.degree,no,no,no,cellular,sep,wed,246,3,999,0,nonexistent,-3.4,92.379,-29.8,0.768,5017.5,no
+50,blue-collar,married,basic.6y,no,yes,no,cellular,sep,wed,92,3,999,1,failure,-3.4,92.379,-29.8,0.768,5017.5,no
+63,retired,married,professional.course,no,no,no,telephone,sep,wed,134,3,999,1,failure,-3.4,92.379,-29.8,0.768,5017.5,no
+43,self-employed,married,high.school,no,yes,no,cellular,sep,thu,613,1,999,0,nonexistent,-3.4,92.379,-29.8,0.766,5017.5,no
+36,admin.,married,high.school,no,yes,no,cellular,sep,thu,192,1,999,0,nonexistent,-3.4,92.379,-29.8,0.766,5017.5,no
+36,admin.,married,high.school,no,no,no,cellular,sep,thu,543,1,999,0,nonexistent,-3.4,92.379,-29.8,0.766,5017.5,yes
+46,self-employed,divorced,high.school,no,no,no,cellular,sep,fri,267,2,999,1,failure,-3.4,92.379,-29.8,0.762,5017.5,yes
+56,unemployed,married,professional.course,no,no,no,cellular,sep,fri,323,3,6,1,success,-3.4,92.379,-29.8,0.762,5017.5,yes
+52,admin.,married,university.degree,no,no,no,cellular,sep,fri,1104,2,999,0,nonexistent,-3.4,92.379,-29.8,0.762,5017.5,yes
+56,unemployed,married,professional.course,no,no,no,cellular,sep,fri,1551,1,999,2,failure,-3.4,92.379,-29.8,0.762,5017.5,no
+37,technician,married,university.degree,no,yes,no,telephone,sep,tue,773,1,3,2,success,-3.4,92.379,-29.8,0.755,5017.5,yes
+39,services,married,high.school,no,no,no,cellular,sep,tue,65,1,999,0,nonexistent,-3.4,92.379,-29.8,0.755,5017.5,yes
+60,self-employed,divorced,university.degree,no,no,no,cellular,sep,tue,83,1,3,1,success,-3.4,92.379,-29.8,0.755,5017.5,yes
+47,admin.,divorced,high.school,no,yes,no,cellular,sep,tue,159,1,999,1,failure,-3.4,92.379,-29.8,0.755,5017.5,no
+44,technician,married,professional.course,no,yes,no,cellular,sep,tue,173,1,4,1,success,-3.4,92.379,-29.8,0.755,5017.5,yes
+22,services,single,professional.course,no,yes,yes,cellular,sep,tue,239,1,3,2,success,-3.4,92.379,-29.8,0.755,5017.5,yes
+22,services,single,professional.course,no,yes,yes,cellular,sep,tue,369,1,999,0,nonexistent,-3.4,92.379,-29.8,0.755,5017.5,yes
+50,technician,married,university.degree,no,yes,yes,cellular,sep,wed,1353,2,999,0,nonexistent,-3.4,92.379,-29.8,0.749,5017.5,no
+63,housemaid,married,basic.4y,no,yes,no,cellular,sep,wed,299,1,3,1,success,-3.4,92.379,-29.8,0.749,5017.5,yes
+35,technician,married,university.degree,no,yes,yes,cellular,sep,thu,62,3,999,0,nonexistent,-3.4,92.379,-29.8,0.743,5017.5,no
+60,retired,divorced,professional.course,no,yes,no,cellular,sep,thu,63,1,999,2,failure,-3.4,92.379,-29.8,0.743,5017.5,no
+60,retired,divorced,professional.course,no,yes,yes,cellular,sep,thu,794,1,999,0,nonexistent,-3.4,92.379,-29.8,0.743,5017.5,no
+33,technician,single,basic.9y,no,no,no,cellular,sep,fri,105,2,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no
+54,blue-collar,married,basic.4y,no,no,no,cellular,sep,fri,49,2,999,1,failure,-3.4,92.379,-29.8,0.741,5017.5,no
+53,admin.,divorced,university.degree,no,yes,yes,cellular,sep,fri,168,2,999,1,failure,-3.4,92.379,-29.8,0.741,5017.5,no
+61,management,married,university.degree,no,yes,no,cellular,sep,fri,491,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no
+70,retired,married,high.school,no,yes,no,cellular,sep,fri,144,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no
+61,management,married,university.degree,no,no,no,cellular,sep,fri,105,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no
+70,retired,divorced,university.degree,no,yes,no,cellular,sep,fri,692,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,yes
+68,retired,single,university.degree,no,yes,no,cellular,sep,fri,81,1,3,1,success,-3.4,92.379,-29.8,0.741,5017.5,no
+70,retired,divorced,university.degree,no,no,no,cellular,sep,fri,399,2,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no
+68,retired,single,university.degree,no,yes,no,cellular,sep,fri,139,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no
+33,technician,single,basic.9y,no,yes,no,cellular,sep,fri,114,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no
+45,admin.,married,university.degree,no,yes,no,cellular,sep,fri,64,1,999,2,failure,-3.4,92.379,-29.8,0.741,5017.5,no
+53,blue-collar,married,basic.4y,no,yes,no,cellular,sep,fri,85,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no
+62,self-employed,married,university.degree,unknown,no,no,cellular,sep,fri,74,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no
+62,self-employed,married,university.degree,unknown,yes,no,cellular,sep,fri,79,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no
+81,retired,married,basic.4y,no,yes,no,cellular,sep,fri,210,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,yes
+68,retired,single,university.degree,no,no,no,cellular,sep,mon,500,2,999,1,failure,-3.4,92.379,-29.8,0.739,5017.5,no
+30,admin.,married,university.degree,no,no,no,cellular,sep,mon,294,2,6,1,success,-3.4,92.379,-29.8,0.739,5017.5,yes
+68,retired,single,university.degree,no,yes,no,telephone,sep,mon,80,3,999,0,nonexistent,-3.4,92.379,-29.8,0.739,5017.5,no
+43,services,married,basic.6y,no,no,no,cellular,sep,tue,115,1,999,0,nonexistent,-3.4,92.379,-29.8,0.75,5017.5,no
+43,services,married,basic.6y,no,no,no,cellular,sep,tue,159,1,999,1,failure,-3.4,92.379,-29.8,0.75,5017.5,yes
+43,services,married,basic.6y,no,yes,no,cellular,sep,tue,79,1,999,0,nonexistent,-3.4,92.379,-29.8,0.75,5017.5,no
+30,unemployed,single,high.school,no,yes,no,cellular,sep,tue,75,1,999,1,failure,-3.4,92.379,-29.8,0.75,5017.5,no
+70,housemaid,divorced,basic.4y,no,no,no,cellular,sep,tue,213,1,999,1,failure,-3.4,92.379,-29.8,0.75,5017.5,no
+70,housemaid,divorced,basic.4y,no,yes,no,cellular,sep,tue,161,1,999,0,nonexistent,-3.4,92.379,-29.8,0.75,5017.5,no
+56,management,divorced,university.degree,no,no,no,cellular,sep,tue,277,1,999,1,failure,-3.4,92.379,-29.8,0.75,5017.5,yes
+37,housemaid,divorced,high.school,no,no,no,cellular,sep,wed,134,1,999,0,nonexistent,-3.4,92.379,-29.8,0.753,5017.5,no
+61,retired,married,high.school,no,yes,no,cellular,sep,wed,117,1,3,1,success,-3.4,92.379,-29.8,0.753,5017.5,yes
+35,technician,married,professional.course,no,yes,no,cellular,sep,wed,195,1,999,0,nonexistent,-3.4,92.379,-29.8,0.753,5017.5,no
+55,unemployed,married,university.degree,no,yes,yes,cellular,sep,wed,585,1,999,0,nonexistent,-3.4,92.379,-29.8,0.753,5017.5,no
+35,admin.,married,university.degree,no,yes,no,telephone,sep,wed,234,1,999,0,nonexistent,-3.4,92.379,-29.8,0.753,5017.5,yes
+37,unknown,single,university.degree,no,yes,yes,cellular,sep,wed,78,1,999,1,failure,-3.4,92.379,-29.8,0.753,5017.5,no
+37,unknown,single,university.degree,no,no,no,cellular,sep,wed,314,1,1,1,success,-3.4,92.379,-29.8,0.753,5017.5,no
+50,management,married,university.degree,no,yes,no,cellular,oct,thu,305,2,4,1,success,-3.4,92.431,-26.9,0.754,5017.5,yes
+37,admin.,single,university.degree,no,yes,no,cellular,oct,thu,447,3,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,yes
+59,technician,single,basic.6y,no,no,no,cellular,oct,thu,86,1,999,2,failure,-3.4,92.431,-26.9,0.754,5017.5,no
+31,admin.,married,university.degree,no,yes,no,cellular,oct,thu,760,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no
+35,admin.,married,high.school,no,yes,no,cellular,oct,thu,194,1,4,1,success,-3.4,92.431,-26.9,0.754,5017.5,yes
+35,admin.,married,high.school,no,no,no,cellular,oct,thu,302,1,4,2,success,-3.4,92.431,-26.9,0.754,5017.5,no
+36,admin.,married,university.degree,no,yes,no,cellular,oct,thu,66,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no
+69,retired,married,university.degree,no,yes,no,cellular,oct,thu,199,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no
+65,admin.,married,university.degree,no,yes,no,cellular,oct,thu,120,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no
+49,technician,divorced,unknown,no,no,no,cellular,oct,thu,56,1,999,2,failure,-3.4,92.431,-26.9,0.754,5017.5,no
+49,technician,divorced,unknown,no,no,no,cellular,oct,thu,237,1,999,2,failure,-3.4,92.431,-26.9,0.754,5017.5,no
+49,technician,divorced,unknown,no,yes,no,cellular,oct,thu,168,1,4,1,success,-3.4,92.431,-26.9,0.754,5017.5,no
+78,retired,married,basic.9y,no,yes,no,telephone,oct,thu,321,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no
+32,admin.,married,university.degree,no,yes,no,cellular,oct,thu,177,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no
+50,management,married,university.degree,no,yes,no,telephone,oct,thu,258,1,999,1,failure,-3.4,92.431,-26.9,0.754,5017.5,no
+71,retired,married,basic.4y,no,no,no,cellular,oct,thu,250,2,999,2,failure,-3.4,92.431,-26.9,0.754,5017.5,no
+29,admin.,single,university.degree,no,yes,no,cellular,oct,thu,99,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no
+51,technician,married,professional.course,no,yes,no,cellular,oct,thu,67,6,6,3,failure,-3.4,92.431,-26.9,0.754,5017.5,no
+49,technician,divorced,unknown,no,yes,yes,cellular,oct,thu,81,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no
+23,unemployed,single,basic.9y,no,yes,no,cellular,oct,thu,238,1,4,1,success,-3.4,92.431,-26.9,0.754,5017.5,yes
+38,admin.,married,high.school,no,yes,no,cellular,oct,thu,82,1,999,1,failure,-3.4,92.431,-26.9,0.754,5017.5,no
+71,retired,married,basic.4y,no,yes,no,cellular,oct,thu,137,1,999,1,failure,-3.4,92.431,-26.9,0.754,5017.5,yes
+26,technician,single,university.degree,no,yes,no,cellular,oct,thu,152,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no
+54,management,divorced,university.degree,unknown,yes,no,cellular,oct,thu,214,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no
+75,retired,divorced,basic.4y,unknown,yes,no,cellular,oct,thu,502,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,yes
+83,retired,married,professional.course,no,yes,no,cellular,oct,fri,849,2,4,1,success,-3.4,92.431,-26.9,0.752,5017.5,yes
+28,unemployed,single,basic.4y,no,yes,yes,cellular,oct,fri,462,1,999,0,nonexistent,-3.4,92.431,-26.9,0.752,5017.5,no
+63,retired,married,basic.6y,no,yes,no,cellular,oct,fri,91,2,999,0,nonexistent,-3.4,92.431,-26.9,0.752,5017.5,no
+28,unemployed,single,basic.4y,no,yes,no,cellular,oct,fri,160,2,4,1,success,-3.4,92.431,-26.9,0.752,5017.5,no
+71,retired,married,basic.9y,no,no,no,cellular,oct,fri,131,2,999,0,nonexistent,-3.4,92.431,-26.9,0.752,5017.5,no
+82,retired,married,university.degree,no,yes,no,cellular,oct,tue,215,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,yes
+45,blue-collar,married,professional.course,no,no,no,cellular,oct,tue,117,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no
+68,retired,married,high.school,no,yes,no,cellular,oct,tue,88,1,999,2,failure,-3.4,92.431,-26.9,0.744,5017.5,no
+37,housemaid,single,university.degree,no,yes,no,cellular,oct,tue,89,1,999,1,failure,-3.4,92.431,-26.9,0.744,5017.5,no
+43,management,single,university.degree,no,yes,no,cellular,oct,tue,205,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no
+43,management,single,university.degree,no,no,no,cellular,oct,tue,408,1,999,1,failure,-3.4,92.431,-26.9,0.744,5017.5,no
+69,retired,divorced,professional.course,no,no,no,cellular,oct,tue,144,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,yes
+82,retired,married,university.degree,no,yes,yes,cellular,oct,tue,63,1,999,1,failure,-3.4,92.431,-26.9,0.744,5017.5,no
+82,retired,married,university.degree,no,yes,no,cellular,oct,tue,526,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no
+80,retired,divorced,basic.4y,no,no,no,cellular,oct,tue,96,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no
+65,retired,married,high.school,no,yes,no,cellular,oct,tue,384,2,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,yes
+80,retired,divorced,basic.4y,no,no,no,cellular,oct,tue,125,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no
+41,technician,married,professional.course,no,yes,no,cellular,oct,tue,304,2,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no
+27,admin.,married,high.school,no,no,no,cellular,oct,tue,572,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no
+56,unknown,married,basic.4y,no,yes,no,cellular,oct,tue,172,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no
+56,unknown,married,basic.4y,no,no,no,cellular,oct,tue,480,1,2,2,success,-3.4,92.431,-26.9,0.744,5017.5,yes
+37,housemaid,single,university.degree,no,no,no,cellular,oct,tue,296,3,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,yes
+36,admin.,married,university.degree,no,yes,no,cellular,oct,wed,133,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,no
+63,retired,married,high.school,no,yes,no,cellular,oct,wed,323,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+30,unemployed,single,high.school,no,yes,yes,cellular,oct,wed,953,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+50,unknown,married,unknown,no,no,no,cellular,oct,wed,209,1,8,3,failure,-3.4,92.431,-26.9,0.74,5017.5,yes
+35,admin.,married,university.degree,no,no,no,cellular,oct,wed,371,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,yes
+86,retired,divorced,basic.4y,no,unknown,unknown,cellular,oct,wed,130,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+48,management,married,university.degree,no,yes,yes,cellular,oct,wed,157,2,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+34,self-employed,married,university.degree,no,no,no,cellular,oct,wed,201,1,5,3,failure,-3.4,92.431,-26.9,0.74,5017.5,yes
+58,technician,married,basic.4y,no,no,yes,cellular,oct,wed,867,2,4,2,success,-3.4,92.431,-26.9,0.74,5017.5,no
+38,admin.,married,university.degree,no,yes,no,cellular,oct,wed,90,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+60,admin.,married,unknown,no,yes,no,cellular,oct,wed,290,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,yes
+48,management,married,university.degree,no,no,no,cellular,oct,wed,81,1,6,1,success,-3.4,92.431,-26.9,0.74,5017.5,yes
+48,management,married,university.degree,no,yes,no,cellular,oct,wed,294,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,yes
+48,management,married,university.degree,no,no,no,cellular,oct,wed,301,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,no
+35,technician,married,university.degree,no,yes,no,telephone,oct,wed,73,2,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+38,admin.,married,university.degree,no,no,no,cellular,oct,wed,180,2,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,no
+58,technician,married,basic.4y,no,yes,no,telephone,oct,wed,88,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+53,admin.,married,unknown,no,yes,no,cellular,oct,wed,73,2,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+58,technician,married,basic.4y,no,yes,no,cellular,oct,wed,525,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+32,admin.,married,university.degree,no,yes,yes,cellular,oct,wed,223,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+63,retired,married,high.school,no,no,no,cellular,oct,wed,335,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,yes
+63,retired,married,high.school,no,no,no,cellular,oct,wed,1386,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+41,technician,married,professional.course,no,no,no,cellular,oct,thu,173,2,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no
+48,admin.,married,high.school,no,no,no,cellular,oct,thu,113,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no
+69,technician,married,professional.course,no,yes,no,cellular,oct,thu,189,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no
+42,management,divorced,unknown,no,yes,no,cellular,oct,thu,148,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no
+42,management,divorced,unknown,no,yes,no,telephone,oct,thu,259,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no
+42,management,divorced,unknown,no,no,no,cellular,oct,thu,78,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no
+77,retired,divorced,unknown,no,no,no,cellular,oct,thu,97,2,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no
+54,management,divorced,university.degree,no,yes,no,cellular,oct,thu,234,2,6,1,success,-3.4,92.431,-26.9,0.741,5017.5,yes
+36,technician,married,professional.course,unknown,no,no,cellular,oct,thu,667,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,yes
+37,management,single,basic.9y,no,no,no,cellular,oct,thu,137,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,yes
+69,technician,married,professional.course,no,yes,no,cellular,oct,thu,676,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no
+42,management,single,university.degree,no,no,no,cellular,oct,fri,1106,2,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,yes
+29,unemployed,divorced,high.school,no,no,no,cellular,oct,mon,181,2,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,no
+59,technician,married,university.degree,no,no,no,cellular,oct,mon,268,1,999,1,failure,-3.4,92.431,-26.9,0.743,5017.5,no
+42,management,single,university.degree,no,yes,no,cellular,oct,mon,105,1,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,yes
+42,management,single,university.degree,no,no,no,cellular,oct,mon,134,1,6,1,success,-3.4,92.431,-26.9,0.743,5017.5,no
+59,technician,married,university.degree,no,yes,no,cellular,oct,mon,511,3,999,1,failure,-3.4,92.431,-26.9,0.743,5017.5,yes
+42,management,single,university.degree,no,yes,no,cellular,oct,mon,138,1,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,yes
+75,retired,married,basic.9y,no,no,no,cellular,oct,mon,120,1,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,no
+36,admin.,married,university.degree,no,yes,yes,cellular,oct,mon,78,1,999,1,failure,-3.4,92.431,-26.9,0.743,5017.5,yes
+29,unemployed,divorced,high.school,no,no,no,cellular,oct,mon,92,1,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,no
+42,management,single,university.degree,no,no,no,cellular,oct,mon,146,1,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,yes
+33,blue-collar,married,basic.4y,no,yes,no,telephone,oct,mon,99,3,3,1,success,-3.4,92.431,-26.9,0.743,5017.5,no
+77,retired,married,university.degree,no,no,yes,cellular,oct,mon,348,1,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,yes
+70,retired,married,university.degree,no,yes,no,cellular,oct,mon,837,2,999,1,failure,-3.4,92.431,-26.9,0.743,5017.5,no
+38,technician,divorced,professional.course,no,no,yes,cellular,oct,tue,135,1,999,2,failure,-3.4,92.431,-26.9,0.742,5017.5,no
+32,admin.,married,professional.course,no,yes,no,cellular,oct,tue,435,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes
+44,technician,married,basic.9y,no,yes,no,cellular,oct,tue,306,1,2,1,success,-3.4,92.431,-26.9,0.742,5017.5,no
+48,admin.,married,basic.6y,no,no,no,cellular,oct,tue,61,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+80,retired,married,basic.4y,no,yes,yes,cellular,oct,tue,78,1,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,no
+71,retired,single,university.degree,no,unknown,unknown,cellular,oct,tue,98,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+71,retired,single,university.degree,no,yes,no,cellular,oct,tue,167,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+71,retired,single,university.degree,no,no,no,telephone,oct,tue,120,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+26,student,single,basic.9y,no,unknown,unknown,cellular,oct,tue,92,1,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,no
+30,management,married,university.degree,no,no,no,cellular,oct,tue,411,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes
+35,student,single,university.degree,no,yes,no,cellular,oct,tue,79,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes
+30,management,married,university.degree,no,yes,no,cellular,oct,tue,1226,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes
+80,retired,married,basic.4y,no,no,no,cellular,oct,tue,242,1,999,2,failure,-3.4,92.431,-26.9,0.742,5017.5,yes
+45,blue-collar,single,basic.9y,no,no,no,cellular,oct,tue,845,1,999,2,failure,-3.4,92.431,-26.9,0.742,5017.5,no
+33,unemployed,married,high.school,no,no,yes,cellular,oct,tue,227,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+58,unemployed,married,basic.9y,no,no,yes,cellular,oct,tue,49,1,999,2,failure,-3.4,92.431,-26.9,0.742,5017.5,no
+55,technician,married,professional.course,no,yes,no,cellular,oct,tue,182,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+55,technician,married,professional.course,no,no,no,cellular,oct,tue,213,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+55,technician,married,professional.course,no,no,no,cellular,oct,tue,285,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+48,technician,married,professional.course,no,no,yes,telephone,oct,tue,200,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+32,admin.,married,professional.course,no,yes,no,cellular,oct,tue,169,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+32,admin.,married,professional.course,no,no,yes,cellular,oct,tue,221,1,6,1,success,-3.4,92.431,-26.9,0.742,5017.5,yes
+22,student,single,high.school,no,yes,no,cellular,oct,tue,210,1,6,1,success,-3.4,92.431,-26.9,0.742,5017.5,yes
+26,student,single,basic.9y,no,yes,no,cellular,oct,tue,75,2,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,no
+27,technician,single,unknown,no,no,no,cellular,oct,tue,404,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+56,admin.,married,basic.9y,no,yes,no,cellular,oct,tue,1573,2,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,no
+17,student,single,unknown,no,no,yes,cellular,oct,tue,896,1,2,2,success,-3.4,92.431,-26.9,0.742,5017.5,yes
+33,unemployed,married,high.school,no,yes,yes,cellular,oct,tue,301,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes
+45,blue-collar,single,basic.9y,no,no,yes,cellular,oct,tue,204,2,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,yes
+26,student,single,basic.9y,no,yes,no,telephone,oct,tue,1003,3,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes
+48,admin.,married,basic.6y,no,yes,no,cellular,oct,tue,115,2,5,2,success,-3.4,92.431,-26.9,0.742,5017.5,no
+80,retired,married,basic.4y,no,no,no,cellular,oct,tue,82,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+44,blue-collar,single,professional.course,no,no,no,cellular,oct,tue,123,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+71,retired,single,university.degree,no,no,no,telephone,oct,tue,120,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+28,technician,single,high.school,no,no,no,cellular,oct,wed,216,1,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,yes
+28,technician,single,high.school,no,unknown,unknown,cellular,oct,wed,84,1,6,1,success,-3.4,92.431,-26.9,0.742,5017.5,yes
+28,admin.,single,high.school,no,no,no,telephone,oct,wed,958,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes
+36,admin.,single,university.degree,no,no,no,cellular,oct,wed,146,1,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,no
+71,retired,married,basic.9y,no,no,no,cellular,oct,wed,237,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+36,admin.,single,university.degree,no,yes,no,cellular,oct,wed,113,1,2,2,success,-3.4,92.431,-26.9,0.742,5017.5,no
+74,retired,married,unknown,no,yes,yes,cellular,oct,wed,251,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes
+37,technician,married,university.degree,no,yes,no,cellular,oct,wed,364,1,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,yes
+36,admin.,married,university.degree,no,yes,no,cellular,oct,wed,104,1,999,2,failure,-3.4,92.431,-26.9,0.742,5017.5,no
+37,blue-collar,single,professional.course,no,no,no,cellular,oct,wed,727,3,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+56,admin.,married,basic.9y,no,no,no,cellular,oct,wed,79,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+38,admin.,married,high.school,no,yes,no,cellular,oct,wed,108,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+35,technician,married,university.degree,no,yes,no,cellular,oct,wed,68,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+42,entrepreneur,married,basic.9y,no,no,no,cellular,oct,wed,122,3,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+34,management,married,university.degree,no,no,no,telephone,oct,wed,290,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes
+28,technician,single,university.degree,no,yes,yes,cellular,oct,wed,166,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+36,admin.,married,university.degree,no,no,no,cellular,oct,wed,632,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no
+36,unemployed,married,high.school,no,no,no,telephone,oct,thu,130,2,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+33,admin.,single,university.degree,no,no,no,cellular,oct,thu,441,5,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,yes
+37,blue-collar,married,basic.6y,no,yes,no,cellular,oct,thu,262,4,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+35,admin.,married,university.degree,no,yes,no,cellular,oct,thu,86,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,no
+49,admin.,single,university.degree,no,no,no,cellular,oct,thu,73,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+28,student,single,high.school,no,no,no,telephone,oct,thu,280,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+34,technician,single,professional.course,no,no,no,cellular,oct,thu,138,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,no
+30,self-employed,single,high.school,no,no,no,telephone,oct,thu,172,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+44,admin.,divorced,high.school,no,no,no,cellular,oct,thu,634,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+28,admin.,single,university.degree,no,yes,no,cellular,oct,thu,522,2,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+68,retired,married,professional.course,no,no,no,cellular,oct,thu,76,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,no
+37,blue-collar,married,basic.6y,no,no,no,cellular,oct,thu,244,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+37,blue-collar,married,basic.6y,no,yes,no,cellular,oct,thu,68,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+40,services,married,professional.course,no,yes,no,cellular,oct,thu,244,1,3,1,success,-3.4,92.431,-26.9,0.74,5017.5,yes
+28,student,single,unknown,no,yes,no,cellular,oct,thu,231,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+74,retired,married,professional.course,no,yes,no,cellular,oct,thu,96,2,3,1,success,-3.4,92.431,-26.9,0.74,5017.5,no
+35,admin.,married,university.degree,no,yes,no,cellular,oct,thu,126,2,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+74,retired,married,basic.9y,no,yes,no,cellular,oct,thu,134,2,6,1,success,-3.4,92.431,-26.9,0.74,5017.5,yes
+37,blue-collar,married,basic.6y,no,no,no,cellular,oct,thu,246,5,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+37,blue-collar,married,basic.6y,no,no,no,cellular,oct,thu,128,2,6,3,failure,-3.4,92.431,-26.9,0.74,5017.5,yes
+33,admin.,single,university.degree,no,yes,no,telephone,oct,thu,166,3,6,2,success,-3.4,92.431,-26.9,0.74,5017.5,yes
+25,admin.,single,university.degree,no,yes,yes,telephone,oct,thu,227,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no
+37,management,single,university.degree,no,no,no,cellular,oct,thu,570,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,yes
+83,retired,married,basic.9y,no,no,no,cellular,oct,fri,138,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+25,admin.,single,university.degree,no,yes,yes,cellular,oct,fri,115,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,yes
+28,services,married,basic.9y,no,yes,no,telephone,oct,fri,186,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,yes
+28,services,married,basic.9y,no,yes,no,cellular,oct,fri,847,1,2,1,success,-3.4,92.431,-26.9,0.739,5017.5,yes
+85,housemaid,divorced,basic.4y,unknown,yes,no,telephone,oct,fri,181,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+22,student,single,high.school,no,no,no,cellular,oct,fri,154,2,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,yes
+32,self-employed,married,professional.course,no,no,yes,cellular,oct,fri,55,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+25,admin.,single,university.degree,no,unknown,unknown,cellular,oct,fri,1580,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+39,technician,married,university.degree,no,no,no,cellular,oct,fri,170,1,6,1,success,-3.4,92.431,-26.9,0.739,5017.5,yes
+33,technician,married,professional.course,no,yes,no,cellular,oct,fri,154,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes
+40,admin.,married,university.degree,no,yes,yes,cellular,oct,fri,109,5,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+38,admin.,married,university.degree,no,yes,no,cellular,oct,fri,131,2,8,1,success,-3.4,92.431,-26.9,0.739,5017.5,no
+39,technician,married,university.degree,no,yes,no,cellular,oct,fri,141,1,7,2,failure,-3.4,92.431,-26.9,0.739,5017.5,no
+39,admin.,single,high.school,no,no,no,cellular,oct,fri,95,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+39,admin.,single,high.school,no,yes,no,cellular,oct,fri,132,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+33,admin.,single,university.degree,no,yes,no,cellular,oct,fri,233,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes
+60,self-employed,married,university.degree,no,yes,no,telephone,oct,fri,128,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+33,self-employed,single,professional.course,no,yes,yes,telephone,oct,fri,193,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,no
+26,admin.,single,university.degree,no,no,no,cellular,oct,fri,306,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes
+30,technician,single,professional.course,no,yes,no,telephone,oct,fri,169,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+36,services,married,high.school,no,yes,no,cellular,oct,fri,104,1,6,1,success,-3.4,92.431,-26.9,0.739,5017.5,no
+36,services,married,high.school,no,no,no,cellular,oct,fri,141,1,999,2,failure,-3.4,92.431,-26.9,0.739,5017.5,no
+49,admin.,single,high.school,no,no,no,cellular,oct,fri,165,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,no
+49,admin.,single,high.school,no,yes,no,telephone,oct,fri,434,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,yes
+28,admin.,single,university.degree,no,no,no,cellular,oct,fri,317,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+50,technician,married,professional.course,no,unknown,unknown,cellular,oct,fri,447,1,8,2,failure,-3.4,92.431,-26.9,0.739,5017.5,yes
+33,admin.,married,university.degree,no,no,no,cellular,oct,fri,130,1,6,1,success,-3.4,92.431,-26.9,0.739,5017.5,yes
+38,technician,married,university.degree,no,no,no,cellular,oct,fri,156,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes
+28,management,single,university.degree,no,no,no,cellular,oct,fri,324,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,yes
+62,retired,married,university.degree,unknown,no,no,cellular,oct,fri,717,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes
+34,management,married,university.degree,no,yes,no,cellular,oct,fri,87,1,2,1,success,-3.4,92.431,-26.9,0.739,5017.5,no
+44,blue-collar,married,professional.course,no,no,no,cellular,oct,fri,283,1,999,2,failure,-3.4,92.431,-26.9,0.739,5017.5,no
+32,admin.,single,university.degree,no,no,no,cellular,oct,fri,147,2,6,1,success,-3.4,92.431,-26.9,0.739,5017.5,no
+49,admin.,single,high.school,no,yes,no,cellular,oct,fri,136,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes
+36,admin.,married,university.degree,no,no,no,cellular,oct,fri,342,1,999,2,failure,-3.4,92.431,-26.9,0.739,5017.5,yes
+36,management,married,basic.4y,no,no,no,cellular,oct,mon,143,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+70,retired,married,basic.4y,no,yes,no,cellular,oct,mon,131,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes
+34,admin.,single,university.degree,no,no,no,cellular,oct,mon,131,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,no
+29,management,single,university.degree,no,no,no,cellular,oct,mon,94,1,999,2,failure,-3.4,92.431,-26.9,0.739,5017.5,no
+21,student,single,high.school,no,no,yes,cellular,oct,mon,238,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+60,retired,married,basic.4y,no,no,no,cellular,oct,mon,98,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes
+60,retired,married,basic.4y,no,no,no,cellular,oct,mon,599,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,no
+60,retired,married,basic.4y,no,yes,no,cellular,oct,mon,1020,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+25,admin.,single,university.degree,no,yes,no,cellular,oct,mon,123,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+36,admin.,single,high.school,no,yes,no,cellular,oct,mon,113,1,6,1,success,-3.4,92.431,-26.9,0.739,5017.5,no
+55,entrepreneur,married,professional.course,no,yes,no,cellular,oct,mon,534,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+60,retired,married,basic.4y,no,no,no,cellular,oct,mon,82,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+55,entrepreneur,married,professional.course,no,no,no,cellular,oct,mon,116,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+30,services,single,high.school,no,no,no,cellular,oct,mon,120,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+32,services,married,high.school,no,no,no,cellular,oct,mon,217,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+54,unemployed,divorced,high.school,no,no,yes,cellular,oct,mon,54,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+20,student,single,high.school,no,no,yes,cellular,oct,mon,169,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+36,management,married,basic.4y,no,yes,no,cellular,oct,mon,109,3,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+38,blue-collar,married,basic.9y,no,yes,no,cellular,oct,mon,167,3,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+30,services,single,high.school,no,yes,no,cellular,oct,mon,385,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes
+55,entrepreneur,married,professional.course,no,yes,no,telephone,oct,mon,323,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+41,blue-collar,married,basic.9y,no,no,no,cellular,oct,mon,79,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,no
+41,blue-collar,married,basic.9y,no,no,no,cellular,oct,mon,104,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+55,entrepreneur,married,professional.course,no,yes,yes,cellular,oct,mon,233,1,999,2,failure,-3.4,92.431,-26.9,0.739,5017.5,no
+65,retired,married,unknown,no,unknown,unknown,telephone,oct,mon,208,3,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,no
+54,housemaid,married,professional.course,no,no,no,telephone,oct,mon,187,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+67,retired,married,professional.course,no,no,no,telephone,oct,mon,270,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+35,self-employed,single,university.degree,no,unknown,unknown,cellular,oct,mon,123,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no
+54,housemaid,married,professional.course,no,no,no,telephone,oct,mon,1745,3,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,no
+21,student,single,high.school,no,no,no,cellular,oct,mon,328,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes
+51,entrepreneur,married,basic.4y,no,no,no,cellular,oct,tue,626,1,999,1,failure,-3.4,92.431,-26.9,0.737,5017.5,no
+59,housemaid,married,basic.4y,no,no,no,telephone,oct,tue,2187,1,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,no
+30,technician,married,professional.course,no,yes,no,cellular,oct,tue,59,1,999,1,failure,-3.4,92.431,-26.9,0.737,5017.5,no
+58,blue-collar,married,basic.9y,no,yes,no,cellular,oct,tue,164,1,999,1,failure,-3.4,92.431,-26.9,0.737,5017.5,no
+58,blue-collar,married,basic.9y,no,yes,no,cellular,oct,tue,92,1,999,1,failure,-3.4,92.431,-26.9,0.737,5017.5,no
+36,management,married,basic.6y,no,yes,no,cellular,oct,tue,332,1,999,1,failure,-3.4,92.431,-26.9,0.737,5017.5,yes
+33,admin.,married,university.degree,no,yes,no,cellular,oct,tue,148,2,6,1,success,-3.4,92.431,-26.9,0.737,5017.5,yes
+31,admin.,married,university.degree,no,yes,no,cellular,oct,tue,107,1,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,no
+57,admin.,single,high.school,no,unknown,unknown,telephone,oct,tue,513,1,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,yes
+31,services,single,professional.course,no,yes,no,telephone,oct,tue,373,1,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,yes
+31,admin.,married,university.degree,no,yes,no,cellular,oct,tue,213,1,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,yes
+60,technician,married,basic.4y,no,yes,no,cellular,oct,tue,595,2,6,1,success,-3.4,92.431,-26.9,0.737,5017.5,yes
+70,retired,married,basic.4y,no,yes,no,cellular,oct,tue,76,2,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,no
+59,housemaid,married,basic.4y,no,yes,no,cellular,oct,tue,518,2,6,1,success,-3.4,92.431,-26.9,0.737,5017.5,yes
+53,entrepreneur,married,basic.4y,no,yes,no,telephone,oct,tue,251,2,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,no
+30,technician,married,professional.course,no,yes,no,cellular,oct,tue,427,1,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,yes
+24,management,single,university.degree,no,yes,no,cellular,oct,tue,676,2,999,1,failure,-3.4,92.431,-26.9,0.737,5017.5,yes
+39,admin.,single,high.school,no,yes,no,cellular,oct,tue,386,1,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,yes
+44,admin.,married,university.degree,no,yes,no,cellular,oct,wed,192,3,6,1,success,-3.4,92.431,-26.9,0.735,5017.5,yes
+38,admin.,married,university.degree,no,yes,no,cellular,oct,wed,828,1,999,1,failure,-3.4,92.431,-26.9,0.735,5017.5,yes
+38,admin.,married,university.degree,no,yes,no,cellular,oct,wed,576,1,6,1,success,-3.4,92.431,-26.9,0.735,5017.5,yes
+70,retired,married,high.school,no,yes,no,cellular,oct,wed,72,3,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,no
+33,admin.,single,university.degree,no,no,yes,cellular,oct,wed,110,1,999,2,failure,-3.4,92.431,-26.9,0.735,5017.5,no
+88,retired,divorced,basic.4y,no,yes,no,cellular,oct,wed,180,1,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,no
+36,admin.,married,university.degree,no,yes,no,cellular,oct,wed,825,1,6,1,success,-3.4,92.431,-26.9,0.735,5017.5,yes
+62,retired,divorced,university.degree,no,yes,no,telephone,oct,wed,129,3,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,no
+44,admin.,married,university.degree,no,no,no,cellular,oct,wed,1206,1,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,no
+32,admin.,married,university.degree,no,yes,no,cellular,oct,wed,467,2,6,1,success,-3.4,92.431,-26.9,0.735,5017.5,yes
+88,retired,divorced,basic.4y,no,no,no,cellular,oct,wed,512,2,6,1,success,-3.4,92.431,-26.9,0.735,5017.5,yes
+44,admin.,married,university.degree,no,yes,no,telephone,oct,wed,749,1,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,yes
+36,admin.,married,university.degree,no,no,no,cellular,oct,wed,135,1,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,yes
+54,admin.,divorced,university.degree,no,yes,no,cellular,oct,wed,164,2,6,2,success,-3.4,92.431,-26.9,0.735,5017.5,no
+42,blue-collar,married,professional.course,no,yes,no,cellular,oct,wed,307,1,7,1,success,-3.4,92.431,-26.9,0.735,5017.5,yes
+42,blue-collar,married,professional.course,no,no,no,cellular,oct,wed,287,1,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,yes
+29,blue-collar,single,basic.9y,no,no,yes,cellular,oct,wed,107,2,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,yes
+54,unemployed,married,basic.9y,no,yes,no,cellular,oct,wed,200,1,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,yes
+34,technician,married,professional.course,no,yes,no,cellular,oct,wed,442,2,8,1,success,-3.4,92.431,-26.9,0.735,5017.5,yes
+32,admin.,single,university.degree,no,yes,no,cellular,oct,wed,197,2,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,no
+30,admin.,married,university.degree,no,yes,no,telephone,oct,wed,196,2,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,no
+37,unemployed,married,university.degree,no,yes,no,cellular,oct,thu,249,2,999,1,failure,-3.4,92.431,-26.9,0.733,5017.5,yes
+35,unemployed,married,university.degree,no,no,no,cellular,oct,thu,360,5,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,yes
+56,technician,married,basic.4y,no,no,no,cellular,oct,thu,257,1,6,1,success,-3.4,92.431,-26.9,0.733,5017.5,yes
+33,services,married,high.school,no,yes,no,cellular,oct,thu,313,3,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,yes
+71,management,married,university.degree,no,yes,no,cellular,oct,thu,127,3,999,2,failure,-3.4,92.431,-26.9,0.733,5017.5,yes
+56,retired,married,professional.course,no,unknown,unknown,cellular,oct,thu,181,1,6,1,success,-3.4,92.431,-26.9,0.733,5017.5,yes
+56,retired,married,professional.course,no,no,no,cellular,oct,thu,133,1,3,1,success,-3.4,92.431,-26.9,0.733,5017.5,yes
+25,services,single,high.school,no,yes,no,cellular,oct,thu,287,1,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,no
+31,admin.,single,university.degree,no,no,no,cellular,oct,thu,334,1,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,no
+35,unemployed,married,university.degree,no,yes,no,cellular,oct,thu,391,2,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,no
+45,technician,married,professional.course,no,no,no,cellular,oct,thu,504,1,6,1,success,-3.4,92.431,-26.9,0.733,5017.5,yes
+30,admin.,single,university.degree,no,yes,no,telephone,oct,thu,1002,4,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,yes
+56,technician,married,basic.4y,no,no,no,cellular,oct,thu,306,3,3,1,success,-3.4,92.431,-26.9,0.733,5017.5,yes
+25,services,single,high.school,no,yes,no,cellular,oct,thu,260,2,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,yes
+24,admin.,single,university.degree,no,yes,yes,telephone,oct,thu,97,1,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,yes
+30,admin.,single,university.degree,no,no,yes,cellular,oct,thu,102,1,999,1,failure,-3.4,92.431,-26.9,0.733,5017.5,no
+35,unemployed,married,university.degree,no,no,no,cellular,oct,thu,344,1,6,1,success,-3.4,92.431,-26.9,0.733,5017.5,yes
+24,student,single,unknown,no,no,no,cellular,oct,fri,114,4,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,no
+61,management,married,university.degree,no,yes,no,cellular,oct,fri,336,2,999,1,failure,-3.4,92.431,-26.9,0.73,5017.5,yes
+22,student,single,high.school,no,no,no,cellular,oct,fri,270,3,6,1,success,-3.4,92.431,-26.9,0.73,5017.5,yes
+64,admin.,married,high.school,no,yes,no,cellular,oct,fri,130,1,999,1,failure,-3.4,92.431,-26.9,0.73,5017.5,yes
+23,technician,single,university.degree,no,yes,no,cellular,oct,fri,374,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,yes
+21,student,single,high.school,no,yes,no,cellular,oct,fri,149,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,yes
+32,unknown,single,high.school,no,yes,no,cellular,oct,fri,267,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,no
+24,student,single,unknown,no,yes,no,cellular,oct,fri,460,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,yes
+32,admin.,married,university.degree,no,yes,no,cellular,oct,fri,94,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,no
+98,retired,married,basic.4y,unknown,yes,no,cellular,oct,fri,476,1,2,2,success,-3.4,92.431,-26.9,0.73,5017.5,yes
+64,admin.,married,high.school,no,yes,no,cellular,oct,fri,427,1,999,1,failure,-3.4,92.431,-26.9,0.73,5017.5,yes
+35,blue-collar,single,high.school,no,no,no,cellular,oct,fri,622,1,6,1,success,-3.4,92.431,-26.9,0.73,5017.5,no
+98,retired,married,basic.4y,unknown,yes,no,cellular,oct,fri,272,2,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,yes
+22,student,single,basic.9y,no,no,no,cellular,oct,fri,438,1,999,1,failure,-3.4,92.431,-26.9,0.73,5017.5,yes
+22,student,single,basic.9y,no,no,no,cellular,oct,fri,221,2,6,1,success,-3.4,92.431,-26.9,0.73,5017.5,yes
+26,admin.,single,university.degree,no,no,no,cellular,oct,fri,133,2,999,1,failure,-3.4,92.431,-26.9,0.73,5017.5,no
+31,self-employed,single,university.degree,no,yes,no,cellular,oct,fri,91,1,999,1,failure,-3.4,92.431,-26.9,0.73,5017.5,no
+31,self-employed,single,university.degree,no,no,no,cellular,oct,fri,76,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,no
+29,admin.,single,high.school,no,yes,no,cellular,oct,fri,292,1,6,1,success,-3.4,92.431,-26.9,0.73,5017.5,yes
+34,admin.,married,university.degree,no,no,no,cellular,oct,fri,281,1,999,2,failure,-3.4,92.431,-26.9,0.73,5017.5,yes
+37,blue-collar,married,basic.6y,no,unknown,unknown,cellular,oct,fri,93,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,no
+37,blue-collar,married,basic.6y,no,no,no,telephone,oct,fri,131,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,no
+26,admin.,single,high.school,no,no,no,telephone,oct,fri,257,2,4,1,success,-3.4,92.431,-26.9,0.73,5017.5,yes
+61,management,married,university.degree,no,no,no,cellular,oct,fri,56,4,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,no
+33,admin.,single,high.school,no,yes,no,cellular,oct,mon,61,2,6,2,failure,-3.4,92.431,-26.9,0.731,5017.5,no
+26,admin.,married,high.school,no,yes,yes,cellular,oct,mon,183,2,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,no
+29,admin.,single,university.degree,no,no,no,cellular,oct,mon,87,2,999,1,failure,-3.4,92.431,-26.9,0.731,5017.5,no
+29,technician,single,professional.course,no,yes,no,cellular,oct,mon,633,2,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,no
+73,retired,divorced,basic.4y,no,yes,no,cellular,oct,mon,127,2,999,3,failure,-3.4,92.431,-26.9,0.731,5017.5,no
+29,admin.,single,university.degree,no,yes,no,cellular,oct,mon,110,2,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,no
+50,management,married,basic.9y,no,no,no,cellular,oct,mon,151,2,6,2,failure,-3.4,92.431,-26.9,0.731,5017.5,no
+29,admin.,single,university.degree,no,yes,no,cellular,oct,mon,99,2,999,1,failure,-3.4,92.431,-26.9,0.731,5017.5,no
+33,admin.,single,high.school,no,no,no,cellular,oct,mon,87,1,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,no
+33,admin.,single,high.school,no,no,no,cellular,oct,mon,251,1,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,yes
+30,unemployed,single,high.school,no,yes,no,cellular,oct,mon,67,1,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,no
+26,admin.,married,high.school,no,yes,no,cellular,oct,mon,703,1,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,yes
+26,admin.,married,high.school,no,yes,yes,cellular,oct,mon,126,1,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,no
+42,management,married,university.degree,no,yes,no,cellular,oct,mon,355,1,999,1,failure,-3.4,92.431,-26.9,0.731,5017.5,yes
+42,management,married,university.degree,no,yes,yes,cellular,oct,mon,298,1,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,no
+55,unemployed,married,basic.9y,no,yes,no,cellular,oct,tue,156,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no
+55,unemployed,married,basic.9y,no,no,no,cellular,oct,tue,131,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes
+32,admin.,single,university.degree,no,no,no,cellular,oct,tue,96,1,999,3,failure,-3.4,92.431,-26.9,0.728,5017.5,no
+63,technician,married,professional.course,no,no,no,cellular,oct,tue,157,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no
+72,admin.,married,university.degree,unknown,no,yes,cellular,oct,tue,143,1,6,1,success,-3.4,92.431,-26.9,0.728,5017.5,yes
+71,retired,married,basic.4y,no,yes,yes,cellular,oct,tue,120,1,6,1,success,-3.4,92.431,-26.9,0.728,5017.5,no
+71,retired,married,basic.4y,no,no,no,cellular,oct,tue,207,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes
+32,technician,single,university.degree,no,no,no,cellular,oct,tue,96,1,999,1,failure,-3.4,92.431,-26.9,0.728,5017.5,yes
+52,housemaid,married,high.school,no,no,no,cellular,oct,tue,297,1,999,2,failure,-3.4,92.431,-26.9,0.728,5017.5,yes
+68,retired,married,basic.4y,no,yes,no,cellular,oct,tue,102,1,6,2,success,-3.4,92.431,-26.9,0.728,5017.5,yes
+45,blue-collar,married,university.degree,no,no,no,telephone,oct,tue,79,2,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no
+29,services,married,high.school,no,no,no,cellular,oct,tue,424,1,999,1,failure,-3.4,92.431,-26.9,0.728,5017.5,yes
+33,services,single,high.school,no,no,no,cellular,oct,tue,137,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes
+65,housemaid,married,basic.4y,no,unknown,unknown,cellular,oct,tue,759,2,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes
+42,management,married,university.degree,no,no,no,telephone,oct,tue,83,1,3,1,success,-3.4,92.431,-26.9,0.728,5017.5,yes
+61,retired,married,high.school,no,no,no,telephone,oct,tue,515,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no
+22,student,single,basic.6y,no,yes,no,cellular,oct,tue,89,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no
+22,student,single,basic.6y,no,yes,no,cellular,oct,tue,88,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no
+30,technician,married,professional.course,no,yes,no,telephone,oct,tue,521,2,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no
+32,admin.,single,university.degree,no,yes,no,telephone,oct,tue,376,1,999,2,failure,-3.4,92.431,-26.9,0.728,5017.5,no
+39,admin.,married,professional.course,no,no,no,telephone,oct,tue,219,2,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no
+63,technician,married,professional.course,no,yes,no,cellular,oct,tue,298,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes
+63,technician,married,professional.course,no,no,no,cellular,oct,tue,259,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no
+81,retired,married,university.degree,unknown,yes,yes,cellular,oct,tue,327,2,6,1,success,-3.4,92.431,-26.9,0.728,5017.5,no
+65,housemaid,married,basic.4y,no,yes,no,cellular,oct,tue,253,2,999,1,failure,-3.4,92.431,-26.9,0.728,5017.5,no
+44,technician,married,unknown,no,no,yes,cellular,oct,tue,139,2,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no
+31,management,married,university.degree,no,yes,no,cellular,oct,tue,255,3,4,1,success,-3.4,92.431,-26.9,0.728,5017.5,yes
+68,retired,divorced,professional.course,no,yes,no,cellular,oct,tue,418,2,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes
+46,blue-collar,married,basic.9y,no,yes,no,cellular,oct,tue,65,1,999,1,failure,-3.4,92.431,-26.9,0.728,5017.5,no
+33,services,single,high.school,no,yes,no,cellular,oct,tue,189,2,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no
+26,management,single,university.degree,no,yes,no,cellular,oct,tue,114,1,6,1,success,-3.4,92.431,-26.9,0.728,5017.5,no
+28,admin.,single,high.school,no,yes,no,cellular,oct,tue,83,2,999,3,failure,-3.4,92.431,-26.9,0.728,5017.5,no
+71,retired,married,basic.4y,no,no,no,cellular,oct,tue,353,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes
+21,student,single,high.school,no,no,no,cellular,oct,tue,113,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes
+32,technician,single,university.degree,no,yes,no,cellular,oct,tue,149,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes
+75,retired,married,basic.4y,no,no,no,cellular,oct,wed,113,2,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+81,housemaid,married,basic.4y,no,yes,no,cellular,oct,wed,246,2,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+60,management,married,professional.course,no,yes,no,cellular,oct,wed,219,2,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+61,blue-collar,married,high.school,no,no,no,cellular,oct,wed,108,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+63,retired,married,high.school,no,yes,no,cellular,oct,wed,96,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,yes
+46,admin.,married,high.school,no,yes,no,cellular,oct,wed,143,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+46,admin.,married,high.school,no,yes,yes,telephone,oct,wed,149,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+35,admin.,married,university.degree,no,yes,no,cellular,oct,wed,300,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+40,admin.,married,high.school,no,yes,yes,cellular,oct,wed,73,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+35,management,married,university.degree,no,yes,no,cellular,oct,wed,1118,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+62,retired,married,high.school,no,no,no,cellular,oct,wed,210,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+45,admin.,married,high.school,no,yes,no,cellular,oct,wed,1092,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+58,unemployed,divorced,basic.9y,no,yes,no,telephone,oct,wed,509,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,yes
+61,blue-collar,married,high.school,no,no,no,cellular,oct,wed,190,1,2,1,success,-3.4,92.431,-26.9,0.724,5017.5,no
+32,admin.,single,university.degree,no,no,no,cellular,oct,wed,371,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,yes
+34,unknown,single,university.degree,no,yes,no,telephone,oct,wed,182,2,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+24,technician,single,university.degree,no,no,no,cellular,oct,wed,197,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+30,admin.,married,university.degree,no,yes,no,cellular,oct,wed,133,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+40,management,married,university.degree,no,yes,no,telephone,oct,wed,172,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+73,retired,married,basic.4y,no,yes,no,telephone,oct,wed,185,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+34,unknown,single,university.degree,no,no,no,telephone,oct,wed,85,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no
+40,admin.,married,high.school,no,no,no,cellular,oct,wed,524,3,999,1,failure,-3.4,92.431,-26.9,0.724,5017.5,yes
+62,retired,married,high.school,no,no,no,cellular,oct,wed,207,1,6,1,success,-3.4,92.431,-26.9,0.724,5017.5,yes
+54,retired,married,basic.4y,no,no,yes,cellular,oct,thu,164,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+24,student,single,high.school,no,yes,no,cellular,oct,thu,423,3,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+23,technician,married,professional.course,no,yes,yes,cellular,oct,thu,408,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no
+36,admin.,married,university.degree,no,no,no,cellular,oct,thu,343,2,999,1,failure,-3.4,92.431,-26.9,0.722,5017.5,no
+31,admin.,married,high.school,no,yes,no,cellular,oct,thu,269,2,999,1,failure,-3.4,92.431,-26.9,0.722,5017.5,no
+61,technician,married,professional.course,no,no,no,cellular,oct,thu,76,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no
+55,retired,married,basic.4y,no,yes,no,cellular,oct,thu,139,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+33,admin.,single,university.degree,no,no,no,cellular,oct,thu,410,1,999,1,failure,-3.4,92.431,-26.9,0.722,5017.5,yes
+80,retired,divorced,high.school,no,yes,no,cellular,oct,thu,169,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+75,retired,divorced,basic.4y,no,no,no,cellular,oct,thu,247,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no
+31,entrepreneur,unknown,university.degree,no,no,no,cellular,oct,thu,164,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+31,admin.,married,high.school,no,no,no,cellular,oct,thu,142,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+53,admin.,divorced,high.school,no,no,no,cellular,oct,thu,209,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+58,retired,divorced,high.school,no,yes,no,cellular,oct,thu,76,4,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no
+30,technician,married,professional.course,no,yes,yes,cellular,oct,thu,1707,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+28,admin.,single,university.degree,no,no,no,cellular,oct,thu,72,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no
+72,retired,married,basic.6y,no,yes,yes,cellular,oct,thu,189,3,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+82,retired,single,basic.4y,no,yes,no,cellular,oct,thu,251,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+34,admin.,married,university.degree,no,no,no,cellular,oct,thu,401,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+69,retired,married,professional.course,no,no,yes,cellular,oct,thu,103,1,999,1,failure,-3.4,92.431,-26.9,0.722,5017.5,no
+32,self-employed,married,university.degree,no,yes,yes,cellular,oct,thu,679,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no
+67,admin.,married,basic.4y,unknown,no,no,cellular,oct,thu,299,2,2,2,success,-3.4,92.431,-26.9,0.722,5017.5,yes
+48,technician,married,high.school,no,no,no,cellular,oct,thu,264,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+60,retired,divorced,basic.4y,no,yes,no,cellular,oct,thu,262,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no
+61,technician,married,professional.course,no,no,no,cellular,oct,thu,106,2,999,1,failure,-3.4,92.431,-26.9,0.722,5017.5,yes
+48,technician,married,high.school,no,yes,no,cellular,oct,thu,215,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+48,technician,married,high.school,no,no,yes,cellular,oct,thu,288,3,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+67,retired,married,unknown,no,no,no,cellular,oct,thu,140,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no
+36,technician,married,university.degree,no,yes,yes,cellular,oct,thu,68,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no
+69,retired,married,basic.4y,no,yes,no,cellular,oct,thu,124,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+34,technician,single,university.degree,no,no,no,cellular,oct,thu,136,1,999,1,failure,-3.4,92.431,-26.9,0.722,5017.5,yes
+32,admin.,single,university.degree,no,yes,no,telephone,oct,thu,220,3,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+51,blue-collar,married,basic.9y,no,yes,no,cellular,oct,thu,746,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+54,retired,married,basic.4y,no,no,no,cellular,oct,thu,377,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes
+55,retired,married,basic.4y,no,no,no,cellular,oct,thu,250,1,999,2,failure,-3.4,92.431,-26.9,0.722,5017.5,no
+55,retired,married,high.school,no,yes,no,cellular,oct,thu,424,2,7,1,success,-3.4,92.431,-26.9,0.722,5017.5,yes
+61,technician,married,professional.course,no,no,no,cellular,oct,thu,174,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no
+82,retired,single,basic.4y,no,yes,no,cellular,oct,thu,185,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no
+60,technician,married,basic.4y,no,yes,no,cellular,oct,thu,133,6,999,2,failure,-3.4,92.431,-26.9,0.722,5017.5,no
+31,entrepreneur,unknown,university.degree,no,yes,no,telephone,oct,thu,157,4,999,1,failure,-3.4,92.431,-26.9,0.722,5017.5,no
+78,retired,divorced,basic.6y,no,no,no,cellular,oct,fri,631,2,999,2,failure,-3.4,92.431,-26.9,0.72,5017.5,no
+27,admin.,single,university.degree,no,yes,yes,telephone,oct,fri,70,3,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no
+78,retired,divorced,basic.6y,no,no,no,cellular,oct,fri,212,2,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes
+65,retired,married,basic.4y,no,no,no,cellular,oct,fri,176,5,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no
+26,student,single,high.school,no,no,no,cellular,oct,fri,373,3,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes
+37,admin.,single,university.degree,no,yes,no,telephone,oct,fri,62,3,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no
+24,blue-collar,married,basic.9y,no,yes,no,cellular,oct,fri,160,1,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no
+72,retired,married,basic.4y,no,no,no,cellular,oct,fri,155,1,6,1,success,-3.4,92.431,-26.9,0.72,5017.5,no
+60,retired,married,basic.4y,unknown,yes,no,cellular,oct,fri,59,1,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no
+39,technician,single,university.degree,unknown,no,yes,cellular,oct,fri,125,1,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes
+39,technician,single,university.degree,unknown,yes,no,cellular,oct,fri,217,1,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes
+34,technician,single,university.degree,no,no,no,cellular,oct,fri,144,1,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes
+36,self-employed,single,university.degree,no,no,no,cellular,oct,fri,480,1,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes
+37,admin.,single,university.degree,no,yes,no,cellular,oct,fri,183,2,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no
+59,technician,married,basic.9y,no,no,no,cellular,oct,fri,445,1,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes
+25,student,single,high.school,no,no,no,cellular,oct,fri,294,1,999,1,failure,-3.4,92.431,-26.9,0.72,5017.5,yes
+69,retired,married,basic.4y,no,yes,yes,cellular,oct,fri,257,3,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes
+18,student,single,basic.6y,no,no,yes,cellular,oct,fri,368,2,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes
+59,retired,divorced,basic.4y,no,yes,no,telephone,oct,fri,152,4,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no
+37,admin.,single,university.degree,no,no,no,cellular,oct,fri,416,2,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes
+78,retired,divorced,basic.6y,no,no,no,telephone,oct,fri,177,2,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no
+23,student,single,high.school,no,no,no,telephone,nov,mon,105,2,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+41,admin.,single,high.school,no,no,no,cellular,nov,mon,131,2,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,no
+34,admin.,single,high.school,no,yes,no,cellular,nov,mon,121,2,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,yes
+37,admin.,married,high.school,no,yes,no,cellular,nov,mon,101,3,3,1,success,-3.4,92.649,-30.1,0.722,5017.5,no
+37,admin.,divorced,high.school,no,no,no,cellular,nov,mon,131,2,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+36,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,69,4,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,no
+50,admin.,married,university.degree,no,yes,no,cellular,nov,mon,91,2,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+35,management,single,university.degree,no,no,yes,cellular,nov,mon,75,2,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+21,student,single,basic.9y,no,no,no,cellular,nov,mon,59,2,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+34,technician,married,professional.course,no,yes,no,cellular,nov,mon,53,2,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,no
+60,housemaid,married,university.degree,no,yes,no,cellular,nov,mon,66,3,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+30,admin.,single,university.degree,no,no,no,cellular,nov,mon,106,1,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,yes
+37,admin.,married,high.school,no,no,no,cellular,nov,mon,235,4,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+55,admin.,married,basic.9y,no,no,no,cellular,nov,mon,154,3,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+37,self-employed,married,professional.course,no,yes,yes,cellular,nov,mon,1024,1,5,1,success,-3.4,92.649,-30.1,0.722,5017.5,yes
+64,housemaid,married,basic.4y,no,yes,no,cellular,nov,mon,173,1,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+37,blue-collar,single,high.school,no,yes,no,cellular,nov,mon,128,1,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+37,admin.,married,high.school,no,yes,no,telephone,nov,mon,459,1,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+37,admin.,married,high.school,no,yes,yes,cellular,nov,mon,272,1,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+50,admin.,married,university.degree,no,yes,no,cellular,nov,mon,204,1,7,1,success,-3.4,92.649,-30.1,0.722,5017.5,no
+47,technician,divorced,high.school,no,yes,no,cellular,nov,mon,182,1,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,yes
+32,admin.,married,university.degree,no,yes,yes,cellular,nov,mon,144,1,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+32,admin.,single,university.degree,no,unknown,unknown,telephone,nov,mon,143,3,7,1,success,-3.4,92.649,-30.1,0.722,5017.5,no
+37,admin.,divorced,high.school,no,yes,yes,telephone,nov,mon,227,5,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+30,admin.,single,university.degree,no,yes,no,cellular,nov,mon,109,1,6,1,success,-3.4,92.649,-30.1,0.722,5017.5,no
+24,student,single,professional.course,no,no,no,cellular,nov,mon,180,2,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,no
+50,admin.,married,high.school,no,no,no,telephone,nov,mon,117,5,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+45,blue-collar,married,high.school,no,yes,no,cellular,nov,mon,162,2,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,yes
+34,admin.,single,high.school,no,yes,no,cellular,nov,mon,725,2,8,2,failure,-3.4,92.649,-30.1,0.722,5017.5,no
+33,admin.,married,university.degree,no,yes,no,telephone,nov,mon,83,4,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+32,admin.,single,university.degree,no,no,no,cellular,nov,mon,85,2,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+34,technician,married,professional.course,no,yes,no,telephone,nov,mon,179,5,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,no
+52,management,married,basic.6y,no,no,no,cellular,nov,mon,209,2,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,yes
+37,admin.,married,high.school,no,no,yes,cellular,nov,mon,46,3,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no
+71,retired,married,professional.course,no,yes,no,cellular,nov,tue,102,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes
+52,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,551,1,999,3,failure,-3.4,92.649,-30.1,0.72,5017.5,no
+56,admin.,divorced,high.school,no,no,no,cellular,nov,tue,786,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,no
+67,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,68,4,999,1,failure,-3.4,92.649,-30.1,0.72,5017.5,no
+40,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,88,2,999,2,failure,-3.4,92.649,-30.1,0.72,5017.5,no
+56,management,married,university.degree,no,unknown,unknown,cellular,nov,tue,289,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes
+32,admin.,single,high.school,no,no,no,cellular,nov,tue,1233,1,999,1,failure,-3.4,92.649,-30.1,0.72,5017.5,yes
+36,admin.,single,university.degree,no,no,yes,cellular,nov,tue,187,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes
+79,retired,married,basic.4y,no,no,yes,cellular,nov,tue,149,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes
+56,housemaid,divorced,professional.course,no,yes,no,cellular,nov,tue,566,1,7,2,failure,-3.4,92.649,-30.1,0.72,5017.5,yes
+27,unemployed,married,high.school,no,no,yes,cellular,nov,tue,222,3,999,1,failure,-3.4,92.649,-30.1,0.72,5017.5,no
+30,unemployed,single,basic.9y,no,yes,no,cellular,nov,tue,537,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes
+27,blue-collar,single,basic.9y,no,no,no,cellular,nov,tue,217,1,999,2,failure,-3.4,92.649,-30.1,0.72,5017.5,yes
+47,admin.,single,university.degree,no,no,no,cellular,nov,tue,193,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,no
+47,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,181,4,6,1,success,-3.4,92.649,-30.1,0.72,5017.5,yes
+54,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,215,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes
+22,technician,single,professional.course,no,yes,no,cellular,nov,tue,358,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes
+28,self-employed,married,professional.course,no,yes,no,cellular,nov,tue,179,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes
+32,admin.,married,high.school,no,yes,no,cellular,nov,tue,322,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes
+30,admin.,single,university.degree,no,yes,no,cellular,nov,tue,402,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,no
+54,technician,married,basic.9y,no,no,no,cellular,nov,tue,284,2,999,1,failure,-3.4,92.649,-30.1,0.72,5017.5,yes
+71,retired,married,professional.course,no,yes,yes,telephone,nov,tue,383,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes
+37,entrepreneur,divorced,high.school,no,yes,yes,cellular,nov,wed,258,2,999,1,failure,-3.4,92.649,-30.1,0.719,5017.5,no
+37,entrepreneur,divorced,high.school,no,no,no,cellular,nov,wed,90,2,999,2,failure,-3.4,92.649,-30.1,0.719,5017.5,no
+37,entrepreneur,divorced,high.school,no,no,no,cellular,nov,wed,116,4,999,1,failure,-3.4,92.649,-30.1,0.719,5017.5,no
+37,entrepreneur,divorced,high.school,no,no,no,cellular,nov,wed,298,2,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no
+58,management,married,basic.4y,no,yes,no,cellular,nov,wed,70,5,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no
+54,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,138,1,7,2,failure,-3.4,92.649,-30.1,0.719,5017.5,no
+54,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,wed,101,1,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no
+29,admin.,married,high.school,no,yes,no,cellular,nov,wed,85,1,999,1,failure,-3.4,92.649,-30.1,0.719,5017.5,no
+28,admin.,married,high.school,no,yes,no,cellular,nov,wed,158,1,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no
+26,technician,single,professional.course,no,no,yes,cellular,nov,wed,358,1,9,2,failure,-3.4,92.649,-30.1,0.719,5017.5,yes
+29,management,married,university.degree,no,yes,no,cellular,nov,wed,199,1,9,1,success,-3.4,92.649,-30.1,0.719,5017.5,no
+26,admin.,married,high.school,no,no,yes,cellular,nov,wed,112,1,999,1,failure,-3.4,92.649,-30.1,0.719,5017.5,no
+56,retired,married,university.degree,no,yes,no,cellular,nov,wed,156,1,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no
+51,technician,married,professional.course,no,no,no,cellular,nov,wed,272,1,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no
+62,admin.,divorced,university.degree,no,yes,no,cellular,nov,wed,572,1,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no
+58,management,married,basic.4y,no,no,no,cellular,nov,wed,88,2,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no
+29,technician,single,professional.course,no,unknown,unknown,cellular,nov,wed,257,2,999,1,failure,-3.4,92.649,-30.1,0.719,5017.5,no
+32,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,96,3,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,no
+32,admin.,married,high.school,no,yes,no,telephone,nov,thu,143,3,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+73,retired,married,university.degree,no,no,yes,cellular,nov,thu,749,7,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,yes
+32,blue-collar,married,basic.4y,no,yes,no,telephone,nov,thu,111,8,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+34,admin.,single,university.degree,no,no,no,cellular,nov,thu,509,2,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+69,retired,married,basic.6y,no,yes,no,cellular,nov,thu,355,3,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,yes
+34,unemployed,single,university.degree,no,no,no,cellular,nov,fri,464,5,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,yes
+37,admin.,married,high.school,no,yes,no,telephone,nov,fri,136,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+54,admin.,married,high.school,no,yes,no,cellular,nov,fri,402,1,3,3,success,-3.4,92.649,-30.1,0.716,5017.5,yes
+34,technician,married,university.degree,no,yes,no,cellular,nov,fri,312,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+34,technician,married,basic.9y,no,yes,no,cellular,nov,fri,126,2,999,2,failure,-3.4,92.649,-30.1,0.716,5017.5,no
+54,admin.,married,university.degree,no,yes,no,cellular,nov,fri,455,2,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,yes
+53,management,divorced,university.degree,no,no,yes,cellular,nov,fri,368,2,3,1,success,-3.4,92.649,-30.1,0.716,5017.5,yes
+56,technician,divorced,university.degree,no,no,no,cellular,nov,fri,178,2,3,1,success,-3.4,92.649,-30.1,0.716,5017.5,yes
+69,retired,married,high.school,no,no,no,cellular,nov,mon,178,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+26,admin.,single,high.school,no,yes,no,cellular,nov,mon,262,1,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+26,admin.,single,high.school,no,unknown,unknown,cellular,nov,mon,347,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+27,student,single,university.degree,no,no,yes,cellular,nov,mon,118,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+57,admin.,married,high.school,no,yes,no,cellular,nov,mon,169,1,3,3,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+25,admin.,single,university.degree,no,no,yes,cellular,nov,mon,165,1,3,2,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+24,unemployed,married,high.school,no,yes,no,cellular,nov,mon,98,1,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,yes
+29,housemaid,single,university.degree,no,no,yes,telephone,nov,mon,201,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+22,student,single,professional.course,no,no,no,cellular,nov,mon,113,3,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+81,unknown,divorced,unknown,unknown,yes,no,cellular,nov,mon,161,1,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,yes
+41,management,married,university.degree,no,no,no,cellular,nov,mon,696,2,7,3,failure,-3.4,92.649,-30.1,0.715,5017.5,yes
+26,admin.,single,high.school,no,no,no,cellular,nov,mon,371,2,999,2,failure,-3.4,92.649,-30.1,0.715,5017.5,no
+81,unknown,divorced,unknown,unknown,yes,no,cellular,nov,mon,263,1,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,yes
+30,blue-collar,single,unknown,no,yes,no,telephone,nov,mon,235,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no
+29,housemaid,single,university.degree,no,no,no,cellular,nov,mon,257,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no
+76,retired,single,basic.4y,no,no,no,cellular,nov,mon,347,4,6,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+32,admin.,married,university.degree,no,no,no,cellular,nov,mon,178,2,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no
+38,admin.,married,university.degree,no,no,no,cellular,nov,tue,182,2,7,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+27,blue-collar,single,high.school,no,no,no,cellular,nov,tue,775,2,8,2,failure,-3.4,92.649,-30.1,0.715,5017.5,yes
+71,housemaid,married,basic.4y,no,yes,no,cellular,nov,tue,193,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+28,admin.,married,high.school,no,no,no,cellular,nov,tue,406,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+34,technician,married,professional.course,no,yes,no,cellular,nov,tue,336,4,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+61,management,married,university.degree,no,yes,no,cellular,nov,tue,147,1,3,2,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+61,management,married,university.degree,no,yes,no,cellular,nov,tue,195,1,7,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+41,admin.,married,university.degree,no,no,no,telephone,nov,tue,234,2,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+57,technician,married,professional.course,no,no,no,cellular,nov,tue,564,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no
+71,retired,married,basic.4y,no,no,no,cellular,nov,tue,71,2,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no
+33,admin.,married,university.degree,no,yes,no,cellular,nov,tue,318,2,3,3,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+38,admin.,married,university.degree,no,yes,no,cellular,nov,tue,64,1,3,3,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+41,admin.,married,university.degree,no,yes,no,cellular,nov,tue,95,1,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+52,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,89,1,3,2,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+25,student,single,high.school,no,no,no,telephone,nov,tue,345,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no
+33,admin.,married,university.degree,no,yes,no,cellular,nov,tue,344,2,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+30,admin.,single,university.degree,no,no,no,cellular,nov,tue,266,2,999,2,failure,-3.4,92.649,-30.1,0.715,5017.5,yes
+79,retired,married,basic.4y,no,no,yes,cellular,nov,tue,301,2,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+28,admin.,married,high.school,no,yes,no,cellular,nov,tue,254,5,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+54,technician,married,basic.9y,no,no,no,cellular,nov,tue,293,3,7,2,failure,-3.4,92.649,-30.1,0.715,5017.5,yes
+49,management,married,university.degree,no,no,yes,cellular,nov,tue,185,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no
+79,retired,married,basic.4y,no,yes,no,cellular,nov,tue,594,1,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+21,student,single,high.school,no,no,no,cellular,nov,tue,280,1,7,2,failure,-3.4,92.649,-30.1,0.715,5017.5,no
+52,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,213,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+63,management,married,basic.4y,unknown,yes,no,cellular,nov,tue,131,4,999,2,failure,-3.4,92.649,-30.1,0.715,5017.5,yes
+52,admin.,divorced,university.degree,no,unknown,unknown,cellular,nov,tue,143,5,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no
+45,management,married,university.degree,no,no,no,telephone,nov,tue,208,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no
+45,admin.,single,university.degree,no,unknown,unknown,cellular,nov,tue,133,3,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no
+30,admin.,single,university.degree,no,yes,yes,cellular,nov,tue,98,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no
+37,services,married,high.school,no,no,no,cellular,nov,wed,516,2,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no
+72,retired,married,professional.course,no,yes,no,telephone,nov,wed,93,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no
+37,services,married,high.school,no,no,no,cellular,nov,wed,459,2,999,2,failure,-3.4,92.649,-30.1,0.715,5017.5,yes
+45,admin.,married,university.degree,no,no,yes,cellular,nov,wed,158,1,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no
+36,self-employed,divorced,basic.9y,no,no,no,cellular,nov,wed,133,1,999,2,failure,-3.4,92.649,-30.1,0.715,5017.5,no
+45,admin.,married,university.degree,no,no,yes,cellular,nov,wed,106,1,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no
+72,retired,married,basic.4y,no,yes,no,cellular,nov,wed,406,1,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,yes
+20,student,single,high.school,no,yes,no,cellular,nov,wed,166,1,7,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+25,technician,single,university.degree,no,no,yes,cellular,nov,wed,79,4,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no
+28,management,married,university.degree,no,no,no,cellular,nov,wed,69,3,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+72,retired,divorced,basic.6y,no,yes,no,cellular,nov,wed,199,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+45,technician,married,university.degree,no,yes,no,cellular,nov,wed,359,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no
+35,admin.,single,high.school,no,no,yes,cellular,nov,wed,98,2,7,2,failure,-3.4,92.649,-30.1,0.715,5017.5,no
+20,student,single,high.school,no,no,no,cellular,nov,wed,131,1,999,3,failure,-3.4,92.649,-30.1,0.715,5017.5,yes
+20,student,single,high.school,no,no,no,cellular,nov,wed,229,2,3,3,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+20,student,single,high.school,no,no,no,cellular,nov,wed,187,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no
+36,management,married,university.degree,no,no,yes,cellular,nov,wed,166,3,3,3,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+72,retired,divorced,basic.6y,no,yes,no,cellular,nov,wed,244,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+37,services,married,high.school,no,no,yes,cellular,nov,wed,54,4,6,1,success,-3.4,92.649,-30.1,0.715,5017.5,no
+45,admin.,married,university.degree,no,unknown,unknown,cellular,nov,wed,135,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no
+29,admin.,single,university.degree,no,no,yes,cellular,nov,wed,158,1,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+23,student,single,university.degree,no,yes,no,cellular,nov,wed,172,1,3,2,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+33,admin.,married,university.degree,no,yes,no,telephone,nov,wed,241,1,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+37,admin.,single,high.school,no,no,yes,cellular,nov,wed,248,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no
+53,housemaid,married,basic.4y,no,no,yes,telephone,nov,wed,513,1,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+38,admin.,married,university.degree,no,no,no,telephone,nov,thu,71,1,13,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+40,services,married,high.school,no,yes,no,cellular,nov,thu,90,3,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+29,student,single,professional.course,no,no,no,cellular,nov,thu,227,3,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+23,technician,single,professional.course,no,yes,no,cellular,nov,thu,116,5,9,2,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+32,self-employed,married,university.degree,no,no,no,cellular,nov,thu,66,2,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+29,student,single,professional.course,no,yes,yes,cellular,nov,thu,123,1,7,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+67,retired,married,basic.4y,no,yes,no,cellular,nov,thu,39,3,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+40,admin.,married,university.degree,no,no,no,cellular,nov,thu,96,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+65,retired,single,university.degree,no,no,no,cellular,nov,thu,253,1,999,2,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+43,management,married,high.school,no,no,no,cellular,nov,thu,226,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+43,management,married,high.school,no,yes,no,cellular,nov,thu,177,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+25,admin.,married,unknown,no,no,no,cellular,nov,thu,241,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+25,admin.,married,high.school,no,yes,no,cellular,nov,thu,702,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+64,unemployed,married,basic.4y,no,yes,no,cellular,nov,thu,427,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+25,admin.,married,unknown,no,no,no,cellular,nov,thu,110,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+65,retired,single,university.degree,no,no,no,cellular,nov,thu,88,2,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+29,admin.,single,university.degree,no,no,no,cellular,nov,thu,134,2,9,2,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+38,admin.,married,university.degree,no,no,no,cellular,nov,thu,126,1,7,4,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+67,retired,married,basic.4y,no,yes,no,cellular,nov,thu,99,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+51,self-employed,single,basic.9y,no,yes,no,cellular,nov,thu,104,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+49,unemployed,married,professional.course,no,yes,no,telephone,nov,thu,226,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+34,admin.,single,university.degree,no,yes,no,cellular,nov,thu,89,1,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+34,admin.,single,university.degree,no,no,no,cellular,nov,thu,169,1,7,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+34,admin.,single,university.degree,no,no,no,cellular,nov,thu,135,1,6,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+78,retired,divorced,basic.4y,no,yes,no,cellular,nov,thu,463,1,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,no
+56,blue-collar,divorced,basic.4y,no,no,no,cellular,nov,thu,150,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+56,blue-collar,divorced,basic.4y,no,no,no,cellular,nov,thu,134,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+32,self-employed,married,university.degree,no,yes,no,cellular,nov,thu,247,1,6,3,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+52,blue-collar,single,basic.9y,no,no,no,cellular,nov,thu,771,2,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+62,housemaid,married,basic.4y,no,yes,no,cellular,nov,thu,443,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+29,student,single,professional.course,no,yes,no,telephone,nov,thu,124,2,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+52,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,191,3,9,1,success,-3.4,92.649,-30.1,0.714,5017.5,no
+66,retired,married,basic.4y,no,yes,yes,telephone,nov,thu,1127,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+28,admin.,single,university.degree,no,yes,no,cellular,nov,thu,189,2,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+56,management,divorced,unknown,no,yes,no,cellular,nov,thu,893,7,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+35,technician,single,professional.course,no,yes,no,cellular,nov,thu,192,2,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+49,unemployed,married,professional.course,no,yes,yes,cellular,nov,thu,366,2,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+32,self-employed,married,university.degree,no,no,no,cellular,nov,thu,707,2,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+60,unemployed,married,basic.4y,no,no,no,cellular,nov,thu,627,2,6,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+62,housemaid,married,university.degree,no,yes,no,cellular,nov,thu,237,1,3,3,success,-3.4,92.649,-30.1,0.714,5017.5,no
+38,admin.,married,university.degree,no,no,no,telephone,nov,thu,411,4,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+29,admin.,single,high.school,no,yes,no,cellular,nov,fri,176,2,7,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+25,admin.,single,university.degree,no,no,no,cellular,nov,fri,350,5,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,no
+26,admin.,married,high.school,no,yes,no,cellular,nov,fri,338,1,7,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+52,technician,married,professional.course,no,no,no,cellular,nov,fri,202,5,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+26,student,single,university.degree,no,no,no,cellular,nov,fri,181,1,7,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+26,blue-collar,single,high.school,no,yes,no,telephone,nov,fri,208,2,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+29,admin.,single,university.degree,no,no,no,cellular,nov,fri,122,1,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+32,admin.,single,university.degree,no,yes,no,telephone,nov,fri,2184,2,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+32,admin.,single,university.degree,no,yes,no,telephone,nov,fri,135,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+53,admin.,single,university.degree,no,yes,yes,telephone,nov,fri,212,3,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+80,retired,divorced,unknown,no,yes,yes,cellular,nov,fri,186,2,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+31,technician,married,unknown,no,no,no,cellular,nov,fri,498,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+21,student,single,university.degree,no,yes,no,cellular,nov,fri,180,3,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,no
+65,retired,married,university.degree,no,no,no,cellular,nov,fri,226,1,3,3,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+43,technician,single,university.degree,no,no,yes,cellular,nov,fri,122,5,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+63,retired,married,unknown,no,no,no,telephone,nov,fri,137,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+31,admin.,single,high.school,no,no,no,cellular,nov,fri,122,4,999,3,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+29,technician,married,university.degree,no,yes,no,cellular,nov,fri,210,1,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+26,blue-collar,single,high.school,no,no,no,telephone,nov,fri,201,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+52,technician,married,professional.course,no,yes,no,cellular,nov,fri,495,1,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+52,technician,married,professional.course,no,yes,no,cellular,nov,fri,632,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+52,technician,married,professional.course,no,yes,no,cellular,nov,fri,259,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+27,admin.,single,university.degree,no,yes,no,cellular,nov,fri,264,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+39,management,single,university.degree,no,yes,no,cellular,nov,fri,239,2,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+77,retired,married,unknown,no,yes,no,cellular,nov,fri,381,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+77,retired,married,unknown,no,yes,no,cellular,nov,fri,193,1,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+31,admin.,single,high.school,no,no,no,telephone,nov,fri,53,3,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+31,services,married,high.school,no,no,no,telephone,nov,fri,271,2,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+41,management,married,unknown,no,no,yes,cellular,nov,fri,129,2,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+52,technician,married,professional.course,no,yes,no,telephone,nov,fri,332,2,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,no
+55,blue-collar,married,basic.4y,no,no,no,cellular,nov,fri,227,2,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+78,retired,divorced,basic.4y,no,yes,no,cellular,nov,fri,182,2,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+18,student,single,high.school,no,no,no,cellular,nov,fri,256,2,7,2,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+40,technician,single,university.degree,no,yes,no,cellular,nov,mon,139,2,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,no
+19,student,single,unknown,no,no,no,cellular,nov,mon,132,2,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,no
+40,technician,single,university.degree,no,no,no,cellular,nov,mon,141,3,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+25,student,single,high.school,no,yes,no,cellular,nov,mon,61,3,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+40,technician,single,university.degree,no,yes,no,cellular,nov,mon,95,1,7,1,success,-3.4,92.649,-30.1,0.714,5017.5,no
+40,technician,single,university.degree,no,no,no,cellular,nov,mon,130,1,7,2,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+25,admin.,single,university.degree,no,no,yes,cellular,nov,mon,295,1,7,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+61,retired,married,basic.4y,no,yes,no,cellular,nov,mon,301,1,9,3,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+39,admin.,married,high.school,no,no,no,cellular,nov,mon,1011,1,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,no
+50,admin.,married,university.degree,no,yes,no,cellular,nov,mon,124,5,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+64,retired,married,high.school,no,no,no,cellular,nov,mon,146,1,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+67,retired,married,basic.4y,no,no,no,telephone,nov,mon,167,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+50,admin.,married,university.degree,no,yes,no,cellular,nov,mon,183,1,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+75,housemaid,divorced,basic.4y,no,no,no,telephone,nov,mon,135,8,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,no
+50,admin.,married,university.degree,no,no,no,cellular,nov,mon,176,1,7,2,success,-3.4,92.649,-30.1,0.714,5017.5,no
+56,management,married,university.degree,no,yes,no,cellular,nov,mon,124,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+37,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,163,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+37,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,84,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+37,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,843,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+35,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,365,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+27,admin.,married,high.school,no,no,yes,cellular,nov,mon,62,7,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+25,admin.,single,university.degree,no,yes,no,telephone,nov,mon,107,2,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+30,blue-collar,single,high.school,no,unknown,unknown,cellular,nov,mon,235,5,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+26,admin.,married,high.school,no,yes,no,cellular,nov,mon,432,5,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+35,management,married,university.degree,no,yes,yes,cellular,nov,mon,244,2,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+38,admin.,married,high.school,no,yes,no,cellular,nov,mon,136,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+43,self-employed,married,high.school,no,no,no,cellular,nov,mon,137,3,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+54,services,married,basic.9y,no,yes,yes,cellular,nov,mon,175,3,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+30,admin.,married,high.school,no,unknown,unknown,cellular,nov,mon,104,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+30,blue-collar,single,high.school,no,no,no,cellular,nov,mon,250,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+35,management,married,university.degree,no,no,no,telephone,nov,mon,986,1,7,3,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+31,technician,married,university.degree,no,no,no,telephone,nov,mon,57,4,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+25,admin.,single,unknown,no,yes,no,telephone,nov,mon,643,4,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+66,retired,married,basic.4y,no,yes,no,cellular,nov,mon,175,1,7,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+64,retired,married,high.school,no,yes,no,cellular,nov,mon,79,4,999,2,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+34,technician,married,professional.course,no,yes,no,cellular,nov,mon,93,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+30,blue-collar,single,high.school,no,no,no,cellular,nov,mon,94,1,999,2,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+19,student,single,unknown,no,yes,no,cellular,nov,mon,380,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+25,admin.,single,unknown,no,yes,no,cellular,nov,mon,381,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+25,admin.,married,university.degree,no,yes,no,telephone,nov,mon,446,8,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+42,management,married,university.degree,no,yes,no,cellular,nov,mon,104,3,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+48,technician,married,professional.course,no,yes,no,cellular,nov,mon,69,5,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,no
+32,technician,married,university.degree,no,yes,no,cellular,nov,mon,77,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+72,retired,married,high.school,no,no,no,cellular,nov,mon,257,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+27,admin.,married,high.school,no,no,no,cellular,nov,mon,116,1,4,2,failure,-3.4,92.649,-30.1,0.714,5017.5,no
+77,retired,divorced,basic.4y,no,yes,no,cellular,nov,mon,445,2,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+34,management,married,university.degree,no,no,no,cellular,nov,mon,75,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+72,retired,married,university.degree,no,no,no,cellular,nov,mon,111,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+40,technician,single,university.degree,no,no,no,cellular,nov,mon,105,2,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes
+40,technician,single,university.degree,no,no,no,cellular,nov,mon,984,5,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes
+50,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,202,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no
+68,retired,married,high.school,no,no,no,cellular,nov,mon,1248,2,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes
+34,self-employed,single,university.degree,no,no,yes,telephone,nov,tue,85,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+47,management,married,basic.9y,no,yes,no,cellular,nov,tue,709,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+31,admin.,single,university.degree,no,yes,no,cellular,nov,tue,168,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no
+36,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,320,1,999,2,failure,-3.4,92.649,-30.1,0.715,5017.5,no
+35,management,married,university.degree,no,yes,no,cellular,nov,tue,209,1,999,2,failure,-3.4,92.649,-30.1,0.715,5017.5,yes
+45,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,140,3,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no
+63,retired,married,basic.4y,no,yes,no,cellular,nov,tue,408,3,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no
+82,retired,divorced,basic.4y,no,yes,no,cellular,nov,tue,134,2,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+48,management,married,university.degree,no,yes,yes,cellular,nov,tue,747,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+53,admin.,married,university.degree,no,yes,no,cellular,nov,tue,409,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+43,admin.,married,university.degree,no,yes,no,telephone,nov,tue,135,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+34,housemaid,single,basic.4y,no,yes,no,cellular,nov,tue,393,4,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+43,admin.,married,university.degree,no,yes,no,cellular,nov,tue,255,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+26,admin.,single,university.degree,no,yes,no,cellular,nov,tue,309,3,7,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes
+66,retired,single,basic.4y,no,yes,no,cellular,nov,tue,525,3,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes
+40,unemployed,divorced,basic.4y,no,no,no,cellular,nov,tue,108,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+83,retired,divorced,basic.4y,no,no,no,cellular,nov,tue,242,1,3,3,success,-3.4,92.649,-30.1,0.716,5017.5,yes
+32,management,married,university.degree,no,no,no,cellular,nov,tue,107,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+35,management,married,university.degree,no,no,no,cellular,nov,tue,56,1,3,2,success,-3.4,92.649,-30.1,0.716,5017.5,no
+35,management,married,university.degree,no,no,no,cellular,nov,tue,190,3,7,3,failure,-3.4,92.649,-30.1,0.716,5017.5,no
+34,admin.,divorced,high.school,no,no,no,cellular,nov,tue,492,2,6,3,success,-3.4,92.649,-30.1,0.716,5017.5,no
+30,admin.,single,university.degree,no,yes,no,cellular,nov,tue,187,2,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+65,retired,married,basic.4y,no,no,yes,cellular,nov,tue,141,2,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+31,admin.,single,university.degree,no,no,no,cellular,nov,tue,166,2,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+83,retired,divorced,basic.4y,no,yes,yes,cellular,nov,tue,112,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+55,management,married,university.degree,no,yes,no,cellular,nov,tue,283,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+27,management,single,professional.course,no,yes,no,cellular,nov,tue,325,1,3,1,success,-3.4,92.649,-30.1,0.716,5017.5,yes
+56,retired,married,university.degree,no,yes,no,cellular,nov,wed,968,2,3,3,success,-3.4,92.649,-30.1,0.716,5017.5,yes
+26,student,single,unknown,no,yes,no,cellular,nov,wed,92,2,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+24,student,single,unknown,no,yes,no,cellular,nov,wed,285,2,3,3,success,-3.4,92.649,-30.1,0.716,5017.5,yes
+57,retired,married,basic.4y,no,yes,no,cellular,nov,wed,295,1,3,2,success,-3.4,92.649,-30.1,0.716,5017.5,no
+53,unknown,married,basic.9y,no,no,yes,cellular,nov,wed,242,1,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,no
+24,admin.,single,university.degree,no,yes,no,cellular,nov,wed,84,1,9,3,failure,-3.4,92.649,-30.1,0.716,5017.5,no
+58,self-employed,married,university.degree,no,no,no,cellular,nov,wed,106,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+58,self-employed,married,university.degree,no,no,no,cellular,nov,wed,1092,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+32,admin.,single,high.school,no,no,no,cellular,nov,wed,421,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+94,retired,married,basic.9y,no,no,no,cellular,nov,wed,134,1,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,no
+22,student,single,unknown,no,no,no,cellular,nov,wed,87,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+31,technician,single,university.degree,no,no,no,cellular,nov,wed,372,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,yes
+78,retired,married,professional.course,no,yes,no,cellular,nov,wed,103,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+21,student,single,professional.course,no,no,no,telephone,nov,wed,250,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+55,management,married,university.degree,no,yes,no,cellular,nov,wed,99,1,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,no
+57,admin.,married,university.degree,no,no,no,cellular,nov,wed,182,1,3,2,success,-3.4,92.649,-30.1,0.716,5017.5,yes
+61,retired,married,basic.4y,no,yes,no,cellular,nov,wed,234,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,yes
+58,retired,married,basic.4y,no,yes,no,cellular,nov,wed,487,1,999,2,failure,-3.4,92.649,-30.1,0.716,5017.5,yes
+56,retired,married,university.degree,no,no,no,cellular,nov,wed,232,1,3,1,success,-3.4,92.649,-30.1,0.716,5017.5,yes
+48,management,divorced,university.degree,no,yes,no,cellular,nov,wed,208,1,3,1,success,-3.4,92.649,-30.1,0.716,5017.5,yes
+28,admin.,single,university.degree,no,yes,no,cellular,nov,wed,170,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+55,entrepreneur,married,university.degree,no,yes,no,cellular,nov,wed,87,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no
+56,housemaid,divorced,basic.4y,no,yes,no,cellular,nov,wed,414,1,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,yes
+28,technician,single,professional.course,no,yes,no,cellular,nov,wed,296,1,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,yes
+86,retired,divorced,basic.4y,no,yes,no,cellular,nov,wed,237,1,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,no
+27,technician,single,university.degree,no,no,yes,cellular,nov,wed,342,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,yes
+28,technician,single,professional.course,no,yes,no,cellular,nov,wed,238,2,6,1,success,-3.4,92.649,-30.1,0.716,5017.5,yes
+25,technician,single,professional.course,no,yes,no,cellular,nov,wed,541,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,yes
+65,admin.,divorced,university.degree,no,no,no,cellular,nov,fri,142,2,999,0,nonexistent,-3.4,92.649,-30.1,0.718,5017.5,no
+32,management,single,university.degree,no,yes,yes,cellular,nov,fri,92,2,999,1,failure,-3.4,92.649,-30.1,0.718,5017.5,no
+78,retired,married,professional.course,no,no,no,cellular,nov,fri,319,2,999,1,failure,-3.4,92.649,-30.1,0.718,5017.5,yes
+72,retired,married,basic.9y,unknown,yes,no,cellular,nov,fri,96,2,999,0,nonexistent,-3.4,92.649,-30.1,0.718,5017.5,no
+77,retired,divorced,basic.4y,no,no,no,cellular,nov,fri,90,2,999,0,nonexistent,-3.4,92.649,-30.1,0.718,5017.5,no
+67,retired,married,basic.4y,no,no,no,telephone,nov,fri,341,4,999,1,failure,-3.4,92.649,-30.1,0.718,5017.5,no
+73,retired,married,university.degree,no,no,no,cellular,nov,fri,160,1,999,0,nonexistent,-3.4,92.649,-30.1,0.718,5017.5,yes
+31,blue-collar,married,basic.6y,no,yes,no,cellular,nov,fri,65,3,999,0,nonexistent,-3.4,92.649,-30.1,0.718,5017.5,no
+38,admin.,married,university.degree,no,yes,no,cellular,nov,mon,110,3,6,1,success,-3.4,92.649,-30.1,0.719,5017.5,no
+44,admin.,divorced,high.school,no,yes,no,telephone,nov,mon,1628,2,6,1,success,-3.4,92.649,-30.1,0.719,5017.5,yes
+38,admin.,married,university.degree,no,no,yes,telephone,nov,mon,337,3,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no
+38,admin.,married,university.degree,no,yes,no,cellular,nov,mon,210,3,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no
+62,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,152,1,6,1,success,-3.4,92.649,-30.1,0.719,5017.5,no
+81,housemaid,divorced,basic.4y,no,yes,no,cellular,nov,mon,151,6,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no
+62,blue-collar,married,basic.4y,no,no,no,cellular,nov,mon,123,1,999,1,failure,-3.4,92.649,-30.1,0.719,5017.5,no
+62,blue-collar,married,basic.4y,no,yes,yes,cellular,nov,mon,152,1,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no
+31,blue-collar,married,basic.6y,no,yes,no,cellular,nov,mon,107,1,999,2,failure,-3.4,92.649,-30.1,0.719,5017.5,no
+62,blue-collar,married,basic.4y,no,yes,yes,cellular,nov,mon,113,1,999,1,failure,-3.4,92.649,-30.1,0.719,5017.5,no
+60,admin.,married,unknown,unknown,yes,no,cellular,dec,wed,357,1,999,0,nonexistent,-3,92.713,-33,0.721,5023.5,yes
+38,technician,married,university.degree,no,yes,yes,cellular,dec,wed,310,1,999,0,nonexistent,-3,92.713,-33,0.721,5023.5,yes
+76,retired,married,university.degree,no,yes,no,cellular,dec,wed,258,1,999,0,nonexistent,-3,92.713,-33,0.721,5023.5,no
+54,unemployed,married,high.school,no,yes,no,cellular,dec,wed,346,1,999,0,nonexistent,-3,92.713,-33,0.721,5023.5,yes
+38,technician,married,university.degree,no,no,no,cellular,dec,wed,415,1,999,2,failure,-3,92.713,-33,0.721,5023.5,yes
+42,blue-collar,married,basic.9y,no,yes,no,cellular,dec,wed,187,2,999,0,nonexistent,-3,92.713,-33,0.721,5023.5,no
+30,technician,married,university.degree,no,yes,no,cellular,dec,thu,244,2,6,1,success,-3,92.713,-33,0.72,5023.5,yes
+55,technician,married,high.school,no,yes,no,cellular,dec,thu,284,1,999,1,failure,-3,92.713,-33,0.72,5023.5,yes
+58,unknown,married,basic.9y,no,yes,no,cellular,dec,thu,154,1,999,1,failure,-3,92.713,-33,0.72,5023.5,yes
+83,retired,married,high.school,no,no,no,cellular,dec,thu,155,1,4,3,success,-3,92.713,-33,0.72,5023.5,yes
+83,retired,married,high.school,no,yes,no,cellular,dec,thu,96,1,999,0,nonexistent,-3,92.713,-33,0.72,5023.5,no
+64,admin.,married,university.degree,no,no,yes,cellular,dec,thu,1804,3,999,0,nonexistent,-3,92.713,-33,0.72,5023.5,no
+60,retired,married,high.school,no,no,no,cellular,dec,thu,472,1,999,0,nonexistent,-3,92.713,-33,0.72,5023.5,yes
+64,management,divorced,university.degree,no,no,yes,cellular,dec,thu,421,1,999,1,failure,-3,92.713,-33,0.72,5023.5,no
+40,blue-collar,married,professional.course,no,no,no,telephone,dec,thu,237,1,999,0,nonexistent,-3,92.713,-33,0.72,5023.5,no
+53,admin.,married,university.degree,no,no,no,cellular,dec,thu,110,1,6,1,success,-3,92.713,-33,0.72,5023.5,no
+48,admin.,married,high.school,unknown,no,yes,cellular,dec,thu,274,1,8,1,success,-3,92.713,-33,0.72,5023.5,yes
+50,admin.,single,high.school,no,yes,no,telephone,dec,fri,705,2,999,0,nonexistent,-3,92.713,-33,0.718,5023.5,yes
+60,retired,married,university.degree,no,no,no,cellular,dec,fri,439,3,6,2,success,-3,92.713,-33,0.718,5023.5,yes
+23,student,single,university.degree,no,yes,no,cellular,dec,fri,127,2,6,2,success,-3,92.713,-33,0.718,5023.5,no
+48,management,married,university.degree,no,yes,no,cellular,dec,fri,377,5,999,1,failure,-3,92.713,-33,0.718,5023.5,no
+25,admin.,single,university.degree,no,no,no,cellular,dec,fri,78,2,999,0,nonexistent,-3,92.713,-33,0.718,5023.5,no
+60,retired,married,university.degree,no,yes,no,cellular,dec,fri,55,2,999,0,nonexistent,-3,92.713,-33,0.718,5023.5,no
+46,admin.,married,university.degree,no,unknown,unknown,cellular,dec,fri,696,10,999,0,nonexistent,-3,92.713,-33,0.718,5023.5,yes
+25,admin.,single,university.degree,no,no,no,cellular,dec,fri,1139,2,4,1,success,-3,92.713,-33,0.718,5023.5,no
+55,admin.,married,high.school,no,no,no,cellular,dec,fri,254,2,999,0,nonexistent,-3,92.713,-33,0.718,5023.5,no
+80,retired,divorced,basic.4y,no,no,yes,cellular,dec,fri,720,5,999,1,failure,-3,92.713,-33,0.718,5023.5,no
+48,admin.,married,university.degree,no,no,no,cellular,dec,mon,85,2,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no
+30,student,single,unknown,no,no,no,cellular,dec,mon,69,1,999,1,failure,-3,92.713,-33,0.717,5023.5,no
+50,technician,married,high.school,no,yes,no,cellular,dec,mon,229,1,999,1,failure,-3,92.713,-33,0.717,5023.5,yes
+49,housemaid,single,university.degree,no,no,yes,cellular,dec,mon,334,3,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no
+36,admin.,single,high.school,no,unknown,unknown,cellular,dec,mon,480,1,999,1,failure,-3,92.713,-33,0.717,5023.5,yes
+54,blue-collar,married,high.school,no,no,no,cellular,dec,mon,344,1,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,yes
+36,technician,single,professional.course,no,no,no,cellular,dec,mon,371,1,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no
+54,technician,divorced,university.degree,no,unknown,unknown,cellular,dec,mon,164,1,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no
+43,admin.,married,high.school,no,no,yes,cellular,dec,mon,415,2,8,2,failure,-3,92.713,-33,0.717,5023.5,yes
+36,admin.,single,high.school,no,yes,no,telephone,dec,mon,358,6,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no
+47,admin.,married,university.degree,no,no,no,telephone,dec,mon,91,2,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no
+49,housemaid,single,university.degree,no,yes,no,cellular,dec,mon,583,2,6,1,success,-3,92.713,-33,0.717,5023.5,yes
+47,admin.,married,university.degree,no,yes,yes,cellular,dec,mon,67,5,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no
+48,admin.,married,university.degree,no,yes,no,cellular,dec,mon,347,4,6,2,success,-3,92.713,-33,0.717,5023.5,no
+50,technician,married,high.school,no,no,no,cellular,dec,mon,620,3,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,yes
+38,technician,single,university.degree,no,yes,no,cellular,dec,mon,329,2,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,yes
+73,retired,married,basic.4y,no,no,no,cellular,dec,mon,245,5,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no
+38,unemployed,single,high.school,no,yes,no,cellular,dec,mon,1002,3,10,1,success,-3,92.713,-33,0.717,5023.5,no
+54,admin.,divorced,university.degree,no,no,no,cellular,dec,wed,288,7,6,2,success,-3,92.713,-33,0.715,5023.5,yes
+42,services,married,university.degree,no,no,no,cellular,dec,wed,179,1,6,1,success,-3,92.713,-33,0.715,5023.5,yes
+29,student,single,high.school,no,no,no,cellular,dec,wed,390,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no
+64,retired,married,basic.4y,no,unknown,unknown,telephone,dec,wed,137,8,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no
+56,management,married,professional.course,no,no,no,cellular,dec,wed,124,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no
+30,student,single,unknown,no,no,no,cellular,dec,wed,343,1,4,2,success,-3,92.713,-33,0.715,5023.5,yes
+31,self-employed,single,university.degree,no,no,no,cellular,dec,wed,854,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes
+32,admin.,married,high.school,no,yes,yes,cellular,dec,wed,479,2,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes
+86,retired,married,professional.course,no,no,no,telephone,dec,wed,343,2,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes
+41,self-employed,married,university.degree,no,unknown,unknown,telephone,dec,wed,595,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes
+26,admin.,single,university.degree,no,yes,no,telephone,dec,wed,395,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes
+65,management,married,unknown,no,no,no,cellular,dec,wed,456,2,9,1,success,-3,92.713,-33,0.715,5023.5,yes
+32,student,married,high.school,no,yes,no,telephone,dec,wed,87,5,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no
+32,student,married,high.school,no,yes,no,telephone,dec,wed,135,3,999,1,failure,-3,92.713,-33,0.715,5023.5,no
+70,retired,divorced,basic.9y,no,no,no,telephone,dec,wed,220,2,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no
+65,management,married,unknown,no,yes,no,telephone,dec,wed,207,3,999,1,failure,-3,92.713,-33,0.715,5023.5,yes
+37,management,married,unknown,no,no,no,cellular,dec,wed,149,3,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes
+64,housemaid,married,basic.4y,no,yes,yes,cellular,dec,thu,336,5,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,yes
+56,retired,married,basic.4y,no,no,no,cellular,dec,thu,429,1,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,yes
+51,unemployed,divorced,high.school,no,no,no,cellular,dec,thu,112,2,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,no
+55,admin.,married,professional.course,no,yes,no,cellular,dec,thu,798,1,9,2,success,-3,92.713,-33,0.714,5023.5,yes
+29,unemployed,married,basic.4y,no,no,no,telephone,dec,thu,805,1,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,yes
+71,retired,married,unknown,no,yes,yes,cellular,dec,thu,182,1,999,1,failure,-3,92.713,-33,0.714,5023.5,no
+64,housemaid,married,basic.4y,no,no,no,cellular,dec,thu,422,1,6,2,success,-3,92.713,-33,0.714,5023.5,yes
+64,housemaid,married,basic.4y,no,no,no,telephone,dec,thu,208,1,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,no
+64,housemaid,married,basic.4y,no,no,no,cellular,dec,thu,232,1,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,yes
+64,housemaid,married,basic.4y,no,no,yes,cellular,dec,thu,501,1,6,1,success,-3,92.713,-33,0.714,5023.5,no
+56,retired,married,basic.4y,no,no,no,cellular,dec,thu,582,4,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,yes
+62,housemaid,married,professional.course,no,yes,no,cellular,dec,fri,141,2,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,yes
+81,retired,divorced,basic.4y,no,yes,no,cellular,dec,fri,166,3,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,yes
+61,admin.,married,university.degree,no,no,no,cellular,dec,mon,263,1,999,1,failure,-3,92.713,-33,0.715,5023.5,no
+57,admin.,single,high.school,no,no,no,cellular,dec,mon,388,1,6,2,success,-3,92.713,-33,0.715,5023.5,no
+54,technician,divorced,professional.course,no,yes,no,cellular,dec,mon,352,1,6,1,success,-3,92.713,-33,0.715,5023.5,no
+18,student,single,basic.9y,no,yes,no,cellular,dec,mon,269,1,999,1,failure,-3,92.713,-33,0.715,5023.5,no
+48,technician,married,professional.course,no,yes,yes,cellular,dec,mon,122,3,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no
+74,retired,divorced,high.school,no,yes,yes,telephone,dec,mon,88,6,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no
+18,student,single,basic.9y,no,yes,no,cellular,dec,mon,446,2,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no
+63,technician,married,unknown,no,yes,no,cellular,dec,mon,510,2,999,1,failure,-3,92.713,-33,0.715,5023.5,yes
+85,retired,divorced,basic.4y,unknown,yes,no,cellular,dec,mon,321,3,6,1,success,-3,92.713,-33,0.715,5023.5,yes
+84,retired,married,high.school,no,no,no,cellular,dec,tue,351,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes
+85,retired,divorced,basic.4y,unknown,yes,no,telephone,dec,tue,150,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no
+59,retired,married,professional.course,no,no,no,telephone,dec,tue,476,1,999,1,failure,-3,92.713,-33,0.715,5023.5,yes
+46,admin.,single,university.degree,no,yes,yes,cellular,dec,tue,324,2,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes
+56,blue-collar,married,basic.4y,unknown,yes,no,cellular,dec,tue,280,3,6,1,success,-3,92.713,-33,0.715,5023.5,yes
+43,admin.,married,high.school,no,yes,no,cellular,dec,tue,72,4,6,1,success,-3,92.713,-33,0.715,5023.5,no
+55,services,married,basic.9y,no,yes,no,cellular,dec,wed,314,1,6,1,success,-3,92.713,-33,0.715,5023.5,yes
+70,retired,married,basic.4y,no,yes,no,cellular,dec,wed,325,1,999,2,failure,-3,92.713,-33,0.715,5023.5,no
+56,admin.,divorced,unknown,no,no,no,cellular,dec,wed,205,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no
+64,retired,married,high.school,no,yes,no,cellular,dec,wed,354,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes
+70,retired,married,basic.4y,no,no,no,cellular,dec,wed,546,2,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes
+47,housemaid,married,basic.9y,no,yes,no,cellular,dec,thu,155,1,999,1,failure,-3,92.713,-33,0.712,5023.5,no
+68,management,married,basic.9y,no,yes,no,cellular,dec,thu,97,1,999,2,failure,-3,92.713,-33,0.712,5023.5,no
+76,retired,married,university.degree,no,no,no,cellular,dec,thu,103,1,999,1,failure,-3,92.713,-33,0.712,5023.5,no
+68,technician,married,unknown,no,no,no,cellular,dec,thu,141,4,999,0,nonexistent,-3,92.713,-33,0.712,5023.5,no
+18,student,single,basic.9y,no,no,no,cellular,dec,thu,412,2,999,0,nonexistent,-3,92.713,-33,0.712,5023.5,yes
+76,retired,married,university.degree,no,yes,yes,cellular,dec,thu,330,2,4,2,success,-3,92.713,-33,0.712,5023.5,yes
+19,student,single,high.school,no,yes,no,cellular,dec,thu,110,2,999,3,failure,-3,92.713,-33,0.712,5023.5,no
+24,student,single,high.school,no,yes,no,cellular,dec,thu,726,3,999,0,nonexistent,-3,92.713,-33,0.712,5023.5,yes
+76,retired,married,university.degree,no,no,yes,cellular,dec,thu,324,3,4,2,success,-3,92.713,-33,0.712,5023.5,yes
+76,retired,married,university.degree,no,unknown,unknown,cellular,dec,thu,184,6,999,1,failure,-3,92.713,-33,0.712,5023.5,no
+38,unemployed,single,high.school,no,yes,no,cellular,dec,fri,170,4,6,1,success,-3,92.713,-33,0.71,5023.5,yes
+28,admin.,single,university.degree,no,yes,yes,cellular,dec,fri,454,6,999,1,failure,-3,92.713,-33,0.71,5023.5,no
+21,student,single,university.degree,no,yes,no,cellular,dec,fri,379,3,6,1,success,-3,92.713,-33,0.71,5023.5,yes
+52,technician,married,high.school,no,no,no,cellular,dec,fri,406,1,999,1,failure,-3,92.713,-33,0.71,5023.5,yes
+23,blue-collar,single,high.school,no,yes,no,cellular,dec,fri,248,6,999,0,nonexistent,-3,92.713,-33,0.71,5023.5,no
+30,self-employed,single,university.degree,no,yes,yes,cellular,dec,fri,127,2,6,1,success,-3,92.713,-33,0.71,5023.5,no
+55,entrepreneur,divorced,basic.9y,no,no,no,cellular,dec,fri,415,7,999,0,nonexistent,-3,92.713,-33,0.71,5023.5,yes
+36,admin.,married,university.degree,no,yes,no,telephone,dec,fri,52,4,999,0,nonexistent,-3,92.713,-33,0.71,5023.5,no
+42,admin.,married,university.degree,no,no,no,telephone,dec,fri,104,5,6,1,success,-3,92.713,-33,0.71,5023.5,no
+29,admin.,married,university.degree,no,yes,no,cellular,dec,mon,116,2,999,1,failure,-3,92.713,-33,0.709,5023.5,no
+26,student,single,university.degree,no,no,no,telephone,dec,mon,796,1,999,0,nonexistent,-3,92.713,-33,0.709,5023.5,no
+43,management,married,unknown,no,yes,no,telephone,dec,mon,2062,2,8,1,success,-3,92.713,-33,0.709,5023.5,yes
+29,admin.,married,university.degree,no,no,no,cellular,dec,mon,77,3,999,1,failure,-3,92.713,-33,0.709,5023.5,no
+29,technician,single,university.degree,no,yes,no,cellular,dec,mon,264,2,999,0,nonexistent,-3,92.713,-33,0.709,5023.5,yes
+28,unemployed,single,high.school,no,yes,no,cellular,dec,mon,94,3,6,3,success,-3,92.713,-33,0.709,5023.5,no
+31,admin.,married,professional.course,no,no,yes,cellular,dec,mon,367,2,999,1,failure,-3,92.713,-33,0.709,5023.5,yes
+51,technician,married,professional.course,no,no,yes,cellular,dec,mon,267,2,999,0,nonexistent,-3,92.713,-33,0.709,5023.5,yes
+23,student,single,basic.9y,no,yes,no,cellular,dec,tue,321,2,999,0,nonexistent,-3,92.713,-33,0.708,5023.5,yes
+27,student,single,high.school,no,yes,no,cellular,dec,tue,396,1,999,0,nonexistent,-3,92.713,-33,0.708,5023.5,no
+23,student,single,basic.9y,no,yes,no,cellular,dec,tue,256,2,999,0,nonexistent,-3,92.713,-33,0.708,5023.5,yes
+50,admin.,married,university.degree,no,yes,no,cellular,dec,tue,410,3,999,0,nonexistent,-3,92.713,-33,0.708,5023.5,yes
+27,technician,single,university.degree,no,yes,no,cellular,dec,tue,305,3,10,1,success,-3,92.713,-33,0.708,5023.5,yes
+23,student,single,basic.9y,no,yes,no,cellular,dec,tue,158,2,999,0,nonexistent,-3,92.713,-33,0.708,5023.5,no
+62,retired,married,university.degree,no,yes,no,cellular,dec,wed,282,1,6,1,success,-3,92.713,-33,0.706,5023.5,yes
+28,student,single,unknown,no,yes,no,cellular,dec,wed,102,2,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,no
+57,admin.,married,unknown,no,yes,no,cellular,dec,wed,391,2,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,yes
+41,admin.,married,university.degree,no,yes,no,cellular,dec,thu,422,2,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,yes
+35,blue-collar,married,basic.9y,no,no,yes,cellular,dec,thu,520,3,999,2,failure,-3,92.713,-33,0.707,5023.5,no
+41,admin.,married,university.degree,no,no,no,cellular,dec,thu,213,1,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,yes
+41,admin.,married,university.degree,no,yes,no,cellular,dec,thu,500,1,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,yes
+76,retired,divorced,professional.course,no,yes,no,cellular,dec,thu,956,1,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,dec,thu,105,1,4,3,success,-3,92.713,-33,0.707,5023.5,no
+45,admin.,married,university.degree,no,no,no,cellular,dec,thu,150,2,6,1,success,-3,92.713,-33,0.707,5023.5,yes
+35,unemployed,married,professional.course,no,yes,yes,cellular,dec,thu,62,3,999,1,failure,-3,92.713,-33,0.707,5023.5,no
+41,admin.,single,university.degree,no,yes,yes,telephone,dec,thu,273,1,999,1,failure,-3,92.713,-33,0.707,5023.5,no
+46,technician,married,professional.course,no,yes,no,telephone,dec,mon,679,1,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,yes
+22,technician,single,professional.course,no,yes,no,cellular,dec,mon,1141,1,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,yes
+63,retired,married,professional.course,no,no,no,cellular,dec,mon,83,4,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,no
+59,self-employed,married,university.degree,no,no,no,cellular,dec,mon,193,1,999,1,failure,-3,92.713,-33,0.706,5023.5,no
+53,admin.,married,university.degree,no,yes,yes,cellular,dec,mon,433,1,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,no
+37,admin.,married,university.degree,no,no,yes,cellular,dec,mon,206,2,6,1,success,-3,92.713,-33,0.706,5023.5,yes
+35,unemployed,married,professional.course,no,yes,no,cellular,dec,mon,315,1,6,1,success,-3,92.713,-33,0.706,5023.5,yes
+39,unemployed,single,university.degree,no,yes,no,cellular,dec,mon,387,1,6,2,success,-3,92.713,-33,0.706,5023.5,yes
+53,admin.,married,university.degree,no,yes,yes,telephone,dec,mon,824,1,6,2,success,-3,92.713,-33,0.706,5023.5,yes
+30,student,single,university.degree,no,yes,no,cellular,dec,mon,256,1,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,no
+46,unknown,single,unknown,unknown,yes,no,cellular,dec,mon,1472,1,6,1,success,-3,92.713,-33,0.706,5023.5,no
+63,retired,married,professional.course,no,no,no,cellular,dec,mon,137,1,999,1,failure,-3,92.713,-33,0.706,5023.5,no
+32,self-employed,single,university.degree,no,yes,no,cellular,dec,mon,205,4,999,1,failure,-3,92.713,-33,0.706,5023.5,yes
+35,management,divorced,university.degree,no,no,no,cellular,dec,mon,473,2,999,1,failure,-3,92.713,-33,0.706,5023.5,yes
+40,self-employed,married,university.degree,no,no,yes,cellular,dec,mon,893,1,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,yes
+34,admin.,married,university.degree,no,yes,no,cellular,dec,tue,195,2,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,no
+29,management,married,university.degree,no,yes,no,telephone,dec,tue,207,4,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,no
+73,retired,divorced,high.school,no,yes,no,cellular,dec,tue,284,1,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,yes
+43,blue-collar,married,basic.9y,no,yes,no,cellular,dec,tue,689,2,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,yes
+26,technician,single,university.degree,no,yes,no,cellular,dec,tue,296,1,5,1,success,-3,92.713,-33,0.707,5023.5,yes
+27,technician,single,university.degree,no,yes,no,cellular,dec,tue,1370,3,6,2,success,-3,92.713,-33,0.707,5023.5,yes
+32,admin.,single,university.degree,no,yes,no,cellular,dec,tue,449,2,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,yes
+34,admin.,married,university.degree,no,no,yes,cellular,dec,tue,196,2,6,2,success,-3,92.713,-33,0.707,5023.5,yes
+32,admin.,single,university.degree,no,yes,no,cellular,dec,tue,215,2,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,no
+27,technician,single,university.degree,no,yes,no,cellular,dec,tue,109,1,999,1,failure,-3,92.713,-33,0.707,5023.5,no
+35,admin.,married,university.degree,no,no,no,cellular,dec,tue,554,1,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,no
+73,retired,divorced,high.school,no,no,yes,cellular,dec,tue,63,3,6,2,success,-3,92.713,-33,0.707,5023.5,yes
+51,blue-collar,married,professional.course,no,yes,no,cellular,dec,wed,241,3,999,0,nonexistent,-3,92.713,-33,0.7,5023.5,yes
+31,student,married,high.school,no,yes,no,cellular,dec,wed,158,3,999,0,nonexistent,-3,92.713,-33,0.7,5023.5,no
+39,admin.,married,high.school,no,yes,no,cellular,dec,wed,110,3,999,1,failure,-3,92.713,-33,0.7,5023.5,no
+59,management,married,university.degree,no,no,no,cellular,dec,thu,112,4,999,1,failure,-3,92.713,-33,0.7,5023.5,no
+59,management,married,university.degree,no,yes,no,cellular,dec,thu,646,3,6,1,success,-3,92.713,-33,0.7,5023.5,no
+39,admin.,single,university.degree,no,yes,no,telephone,mar,mon,229,1,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,yes
+60,technician,married,university.degree,no,yes,no,telephone,mar,mon,10,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no
+30,blue-collar,married,high.school,no,yes,no,telephone,mar,tue,904,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes
+78,retired,divorced,professional.course,no,yes,no,cellular,mar,tue,591,1,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,yes
+66,retired,married,basic.4y,no,yes,no,cellular,mar,tue,229,1,6,1,success,-1.8,93.369,-34.8,0.655,5008.7,yes
+66,retired,married,professional.course,no,no,yes,cellular,mar,tue,525,1,21,2,failure,-1.8,93.369,-34.8,0.655,5008.7,yes
+31,admin.,divorced,professional.course,no,yes,no,cellular,mar,tue,107,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no
+30,blue-collar,married,high.school,no,no,no,cellular,mar,tue,658,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes
+30,technician,married,professional.course,no,yes,no,cellular,mar,tue,368,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes
+30,technician,married,professional.course,no,yes,yes,cellular,mar,tue,147,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no
+27,technician,married,professional.course,no,no,yes,telephone,mar,tue,18,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no
+30,technician,married,professional.course,no,yes,no,cellular,mar,tue,105,1,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,no
+31,admin.,married,university.degree,no,unknown,unknown,cellular,mar,tue,207,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes
+66,retired,married,professional.course,no,no,no,cellular,mar,tue,328,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no
+66,retired,married,professional.course,no,no,no,cellular,mar,tue,177,1,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,yes
+53,technician,married,high.school,no,yes,no,cellular,mar,tue,539,2,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes
+27,unknown,single,university.degree,no,no,no,cellular,mar,tue,133,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no
+19,student,single,basic.6y,no,yes,no,cellular,mar,tue,313,1,5,2,success,-1.8,93.369,-34.8,0.655,5008.7,yes
+31,admin.,divorced,professional.course,no,yes,no,cellular,mar,tue,292,2,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,yes
+25,blue-collar,single,basic.6y,no,no,no,cellular,mar,tue,228,4,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes
+35,services,single,high.school,no,yes,no,telephone,mar,tue,187,3,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes
+30,technician,married,professional.course,no,yes,no,cellular,mar,tue,263,2,6,2,success,-1.8,93.369,-34.8,0.655,5008.7,yes
+33,admin.,married,university.degree,no,yes,no,cellular,mar,wed,235,3,4,1,success,-1.8,93.369,-34.8,0.655,5008.7,yes
+21,student,single,basic.9y,no,no,no,cellular,mar,wed,363,1,6,1,success,-1.8,93.369,-34.8,0.655,5008.7,yes
+38,blue-collar,single,high.school,no,no,no,cellular,mar,wed,141,1,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,yes
+38,blue-collar,single,high.school,no,yes,no,telephone,mar,wed,557,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes
+24,admin.,single,university.degree,no,yes,no,cellular,mar,wed,145,2,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,yes
+38,blue-collar,single,high.school,no,yes,no,cellular,mar,wed,355,1,13,2,failure,-1.8,93.369,-34.8,0.655,5008.7,yes
+51,management,married,university.degree,no,no,no,telephone,mar,wed,19,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no
+37,admin.,single,high.school,no,no,no,cellular,mar,wed,153,2,4,2,success,-1.8,93.369,-34.8,0.655,5008.7,yes
+21,student,single,basic.9y,no,yes,no,cellular,mar,wed,136,2,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,yes
+36,admin.,married,high.school,no,yes,no,cellular,mar,wed,114,6,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no
+54,technician,single,university.degree,no,yes,no,telephone,mar,wed,700,3,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no
+36,management,single,university.degree,no,no,no,telephone,mar,wed,834,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes
+34,technician,single,university.degree,no,yes,yes,cellular,mar,thu,221,3,3,2,success,-1.8,93.369,-34.8,0.654,5008.7,yes
+37,admin.,single,university.degree,no,yes,no,cellular,mar,thu,194,2,999,1,failure,-1.8,93.369,-34.8,0.654,5008.7,no
+34,technician,single,university.degree,no,yes,no,cellular,mar,thu,180,2,999,0,nonexistent,-1.8,93.369,-34.8,0.654,5008.7,yes
+52,services,married,high.school,unknown,yes,no,cellular,mar,thu,177,2,11,3,failure,-1.8,93.369,-34.8,0.654,5008.7,yes
+34,admin.,married,professional.course,no,no,yes,telephone,mar,thu,364,2,999,1,failure,-1.8,93.369,-34.8,0.654,5008.7,no
+34,technician,single,university.degree,no,no,no,cellular,mar,thu,251,1,999,2,failure,-1.8,93.369,-34.8,0.654,5008.7,yes
+36,management,married,university.degree,no,no,no,cellular,mar,thu,148,1,999,2,failure,-1.8,93.369,-34.8,0.654,5008.7,yes
+53,admin.,divorced,university.degree,no,no,no,cellular,mar,thu,2486,1,999,0,nonexistent,-1.8,93.369,-34.8,0.654,5008.7,yes
+53,admin.,divorced,university.degree,no,yes,yes,cellular,mar,thu,431,1,999,1,failure,-1.8,93.369,-34.8,0.654,5008.7,no
+25,blue-collar,single,basic.9y,no,no,no,cellular,mar,thu,117,2,999,0,nonexistent,-1.8,93.369,-34.8,0.654,5008.7,no
+55,admin.,married,university.degree,no,yes,no,telephone,mar,thu,220,7,999,0,nonexistent,-1.8,93.369,-34.8,0.654,5008.7,no
+25,blue-collar,single,basic.9y,no,no,no,cellular,mar,thu,456,2,10,2,success,-1.8,93.369,-34.8,0.654,5008.7,yes
+66,retired,divorced,basic.4y,no,yes,no,cellular,mar,thu,141,4,999,2,failure,-1.8,93.369,-34.8,0.654,5008.7,no
+53,admin.,divorced,university.degree,no,yes,no,telephone,mar,thu,262,1,999,2,failure,-1.8,93.369,-34.8,0.654,5008.7,no
+34,admin.,married,professional.course,no,yes,no,cellular,mar,thu,562,3,999,1,failure,-1.8,93.369,-34.8,0.654,5008.7,yes
+25,student,single,university.degree,no,yes,no,telephone,mar,fri,252,3,999,1,failure,-1.8,93.369,-34.8,0.653,5008.7,no
+64,retired,married,university.degree,no,no,no,cellular,mar,fri,158,1,3,2,success,-1.8,93.369,-34.8,0.653,5008.7,no
+34,blue-collar,married,high.school,no,yes,no,cellular,mar,fri,115,1,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes
+41,admin.,divorced,university.degree,no,yes,yes,cellular,mar,fri,418,1,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes
+28,unemployed,married,high.school,no,no,no,telephone,mar,fri,341,4,6,1,success,-1.8,93.369,-34.8,0.653,5008.7,yes
+72,retired,married,professional.course,no,no,no,cellular,mar,fri,87,1,3,1,success,-1.8,93.369,-34.8,0.653,5008.7,yes
+33,entrepreneur,single,professional.course,no,yes,no,cellular,mar,fri,373,1,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes
+85,retired,single,professional.course,no,no,no,cellular,mar,fri,116,7,7,2,success,-1.8,93.369,-34.8,0.653,5008.7,no
+38,technician,single,high.school,no,no,no,cellular,mar,fri,154,3,17,3,failure,-1.8,93.369,-34.8,0.653,5008.7,no
+31,technician,single,professional.course,no,no,no,cellular,mar,fri,172,2,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,no
+34,technician,divorced,professional.course,no,no,no,telephone,mar,fri,257,1,999,1,failure,-1.8,93.369,-34.8,0.653,5008.7,yes
+74,retired,married,unknown,no,no,yes,cellular,mar,fri,607,2,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes
+27,student,single,high.school,no,no,no,cellular,mar,fri,219,1,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes
+22,student,single,basic.9y,no,no,no,cellular,mar,fri,84,1,999,1,failure,-1.8,93.369,-34.8,0.653,5008.7,no
+50,technician,married,university.degree,no,yes,no,cellular,mar,fri,809,1,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes
+41,admin.,divorced,university.degree,no,no,no,cellular,mar,fri,319,1,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes
+38,technician,single,high.school,no,yes,no,cellular,mar,fri,292,2,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes
+41,admin.,divorced,university.degree,no,yes,no,cellular,mar,fri,498,2,6,3,success,-1.8,93.369,-34.8,0.653,5008.7,yes
+41,admin.,divorced,university.degree,no,yes,no,cellular,mar,fri,376,2,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes
+43,self-employed,married,university.degree,no,yes,no,cellular,mar,mon,264,2,9,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+59,management,married,basic.4y,no,yes,no,cellular,mar,mon,284,2,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,no
+35,technician,single,professional.course,no,no,no,cellular,mar,mon,185,2,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,no
+29,admin.,single,high.school,no,no,no,cellular,mar,mon,150,4,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,no
+27,services,single,university.degree,no,yes,no,cellular,mar,mon,111,3,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,no
+29,management,single,university.degree,no,yes,no,cellular,mar,mon,154,2,999,1,failure,-1.8,93.369,-34.8,0.652,5008.7,no
+73,retired,married,unknown,no,yes,no,telephone,mar,mon,659,1,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes
+29,admin.,single,unknown,no,yes,no,cellular,mar,mon,132,1,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes
+49,blue-collar,married,basic.9y,unknown,yes,no,cellular,mar,mon,277,4,999,1,failure,-1.8,93.369,-34.8,0.652,5008.7,yes
+49,blue-collar,married,basic.9y,unknown,no,no,cellular,mar,mon,157,3,7,2,success,-1.8,93.369,-34.8,0.652,5008.7,no
+27,services,single,university.degree,no,yes,no,cellular,mar,mon,104,1,6,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+49,blue-collar,married,basic.9y,unknown,no,no,cellular,mar,mon,172,1,6,2,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+59,blue-collar,married,basic.4y,no,yes,no,cellular,mar,mon,124,2,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes
+33,self-employed,single,university.degree,no,yes,no,cellular,mar,mon,265,2,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes
+36,admin.,single,university.degree,no,no,no,cellular,mar,mon,409,1,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes
+49,blue-collar,married,basic.9y,unknown,no,no,cellular,mar,mon,301,1,3,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+27,services,single,university.degree,no,no,no,cellular,mar,mon,139,6,999,1,failure,-1.8,93.369,-34.8,0.652,5008.7,no
+64,retired,married,university.degree,no,no,no,cellular,mar,tue,139,2,6,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+34,admin.,single,university.degree,no,no,no,telephone,mar,tue,225,1,3,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+42,blue-collar,married,basic.6y,no,yes,yes,cellular,mar,tue,185,1,7,3,failure,-1.8,93.369,-34.8,0.652,5008.7,yes
+34,admin.,single,high.school,no,no,no,cellular,mar,tue,469,1,6,2,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+29,blue-collar,single,professional.course,no,yes,yes,cellular,mar,tue,176,1,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes
+34,admin.,single,university.degree,no,yes,no,cellular,mar,tue,568,1,6,3,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+34,admin.,single,university.degree,no,no,no,cellular,mar,tue,241,1,6,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+34,admin.,single,university.degree,no,yes,yes,cellular,mar,tue,301,1,3,2,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+34,admin.,single,university.degree,no,no,yes,cellular,mar,tue,236,1,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes
+55,unemployed,divorced,university.degree,no,no,no,cellular,mar,tue,212,3,6,3,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+34,admin.,single,university.degree,no,no,yes,cellular,mar,tue,305,1,11,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+34,admin.,single,university.degree,no,no,yes,cellular,mar,tue,288,2,3,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+64,retired,married,university.degree,no,no,no,cellular,mar,tue,700,2,5,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+26,admin.,single,high.school,no,no,no,cellular,mar,tue,273,2,6,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+34,admin.,single,university.degree,no,yes,no,cellular,mar,tue,265,2,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,no
+34,admin.,single,university.degree,no,yes,yes,cellular,mar,tue,295,1,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes
+38,blue-collar,single,high.school,no,no,no,telephone,mar,tue,450,3,6,2,success,-1.8,93.369,-34.8,0.652,5008.7,yes
+29,blue-collar,single,professional.course,no,no,yes,cellular,mar,tue,207,2,999,1,failure,-1.8,93.369,-34.8,0.652,5008.7,yes
+25,unemployed,married,high.school,no,yes,no,cellular,mar,wed,436,2,6,1,success,-1.8,93.369,-34.8,0.651,5008.7,yes
+43,self-employed,married,university.degree,no,yes,no,cellular,mar,wed,239,1,999,0,nonexistent,-1.8,93.369,-34.8,0.651,5008.7,yes
+35,technician,married,university.degree,no,yes,yes,cellular,mar,wed,138,1,999,1,failure,-1.8,93.369,-34.8,0.651,5008.7,no
+28,self-employed,single,university.degree,no,yes,yes,cellular,mar,wed,217,1,999,1,failure,-1.8,93.369,-34.8,0.651,5008.7,no
+28,self-employed,single,university.degree,no,yes,no,telephone,mar,wed,152,1,999,1,failure,-1.8,93.369,-34.8,0.651,5008.7,no
+31,technician,married,university.degree,no,no,no,cellular,mar,wed,625,4,999,0,nonexistent,-1.8,93.369,-34.8,0.651,5008.7,no
+55,admin.,married,high.school,no,yes,no,cellular,mar,wed,106,2,999,1,failure,-1.8,93.369,-34.8,0.651,5008.7,yes
+28,admin.,single,university.degree,no,yes,no,cellular,mar,thu,257,4,999,2,failure,-1.8,93.369,-34.8,0.65,5008.7,yes
+33,admin.,married,university.degree,no,no,yes,telephone,mar,thu,78,2,999,1,failure,-1.8,93.369,-34.8,0.65,5008.7,no
+27,technician,single,university.degree,no,yes,no,cellular,mar,thu,129,4,999,1,failure,-1.8,93.369,-34.8,0.65,5008.7,no
+39,admin.,divorced,university.degree,no,yes,no,cellular,mar,thu,93,1,13,1,success,-1.8,93.369,-34.8,0.65,5008.7,no
+46,admin.,married,university.degree,no,no,no,telephone,mar,thu,184,1,3,1,success,-1.8,93.369,-34.8,0.65,5008.7,no
+46,admin.,married,university.degree,no,yes,no,cellular,mar,thu,335,1,999,0,nonexistent,-1.8,93.369,-34.8,0.65,5008.7,yes
+38,services,married,high.school,no,yes,no,cellular,mar,thu,257,1,999,0,nonexistent,-1.8,93.369,-34.8,0.65,5008.7,yes
+53,admin.,divorced,university.degree,no,yes,no,cellular,mar,thu,228,1,999,1,failure,-1.8,93.369,-34.8,0.65,5008.7,no
+35,technician,married,professional.course,no,no,no,telephone,mar,thu,282,2,6,1,success,-1.8,93.369,-34.8,0.65,5008.7,no
+33,admin.,married,university.degree,no,yes,no,cellular,mar,thu,117,1,3,1,success,-1.8,93.369,-34.8,0.65,5008.7,no
+31,admin.,single,university.degree,no,no,no,cellular,mar,thu,275,2,999,0,nonexistent,-1.8,93.369,-34.8,0.65,5008.7,no
+31,self-employed,married,professional.course,no,yes,no,cellular,mar,thu,171,4,999,3,failure,-1.8,93.369,-34.8,0.65,5008.7,yes
+28,services,single,professional.course,no,yes,no,cellular,mar,fri,169,3,999,1,failure,-1.8,93.369,-34.8,0.649,5008.7,no
+61,self-employed,divorced,university.degree,no,no,no,cellular,mar,fri,102,2,999,1,failure,-1.8,93.369,-34.8,0.649,5008.7,no
+33,admin.,married,university.degree,no,no,no,cellular,mar,fri,121,2,999,1,failure,-1.8,93.369,-34.8,0.649,5008.7,no
+23,student,single,high.school,no,no,no,telephone,mar,fri,290,1,3,1,success,-1.8,93.369,-34.8,0.649,5008.7,yes
+38,housemaid,single,high.school,no,yes,no,cellular,mar,fri,422,1,10,1,success,-1.8,93.369,-34.8,0.649,5008.7,yes
+33,admin.,married,university.degree,no,no,no,cellular,mar,fri,119,2,999,3,failure,-1.8,93.369,-34.8,0.649,5008.7,no
+26,student,single,high.school,no,no,no,cellular,mar,fri,215,1,6,3,success,-1.8,93.369,-34.8,0.649,5008.7,yes
+27,services,single,university.degree,no,no,no,cellular,mar,fri,212,1,999,0,nonexistent,-1.8,93.369,-34.8,0.649,5008.7,yes
+27,services,single,university.degree,no,yes,no,cellular,mar,fri,229,3,999,1,failure,-1.8,93.369,-34.8,0.649,5008.7,yes
+80,retired,married,basic.4y,no,no,no,cellular,mar,fri,213,3,6,4,success,-1.8,93.369,-34.8,0.649,5008.7,yes
+62,technician,married,unknown,no,no,no,cellular,mar,mon,104,2,3,2,success,-1.8,93.369,-34.8,0.646,5008.7,yes
+58,retired,married,university.degree,no,yes,no,cellular,mar,mon,144,2,999,1,failure,-1.8,93.369,-34.8,0.646,5008.7,no
+73,retired,married,basic.4y,no,yes,no,cellular,mar,mon,209,2,999,1,failure,-1.8,93.369,-34.8,0.646,5008.7,no
+53,technician,married,professional.course,no,no,no,cellular,mar,mon,261,4,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no
+30,management,married,university.degree,no,yes,no,cellular,mar,mon,106,3,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no
+29,admin.,single,high.school,no,yes,yes,cellular,mar,mon,257,1,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,yes
+62,technician,married,unknown,no,yes,no,cellular,mar,mon,192,1,6,1,success,-1.8,93.369,-34.8,0.646,5008.7,yes
+48,unemployed,married,university.degree,no,no,yes,cellular,mar,mon,151,1,999,1,failure,-1.8,93.369,-34.8,0.646,5008.7,no
+53,technician,married,professional.course,no,yes,no,telephone,mar,mon,247,5,999,2,failure,-1.8,93.369,-34.8,0.646,5008.7,no
+53,technician,married,professional.course,no,yes,yes,cellular,mar,mon,109,1,999,1,failure,-1.8,93.369,-34.8,0.646,5008.7,no
+33,admin.,single,university.degree,no,no,no,cellular,mar,mon,427,1,6,2,success,-1.8,93.369,-34.8,0.646,5008.7,yes
+58,admin.,married,university.degree,no,yes,no,cellular,mar,mon,549,5,999,2,failure,-1.8,93.369,-34.8,0.646,5008.7,no
+62,technician,married,unknown,no,no,no,cellular,mar,mon,435,3,6,1,success,-1.8,93.369,-34.8,0.646,5008.7,no
+82,retired,married,professional.course,no,yes,no,telephone,mar,mon,506,2,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,yes
+29,admin.,single,university.degree,no,no,no,cellular,mar,mon,287,2,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no
+31,admin.,married,professional.course,no,no,no,cellular,mar,mon,161,2,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,yes
+62,technician,married,unknown,no,no,no,cellular,mar,mon,105,2,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no
+30,self-employed,married,university.degree,no,yes,no,telephone,mar,mon,577,7,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,yes
+30,unemployed,single,professional.course,no,yes,no,cellular,mar,mon,341,1,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no
+34,technician,married,professional.course,no,no,no,telephone,mar,mon,300,6,6,1,success,-1.8,93.369,-34.8,0.646,5008.7,yes
+48,unemployed,married,university.degree,no,yes,no,cellular,mar,mon,195,2,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no
+29,admin.,single,university.degree,no,yes,no,cellular,mar,mon,361,1,3,3,success,-1.8,93.369,-34.8,0.646,5008.7,yes
+34,technician,married,professional.course,no,yes,no,telephone,mar,mon,129,1,6,1,success,-1.8,93.369,-34.8,0.646,5008.7,no
+65,retired,married,basic.4y,no,yes,no,cellular,mar,tue,189,1,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no
+31,unemployed,single,university.degree,no,yes,no,cellular,mar,tue,180,1,10,1,success,-1.8,93.369,-34.8,0.646,5008.7,yes
+47,self-employed,divorced,university.degree,no,no,no,cellular,mar,tue,261,1,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,yes
+48,unemployed,married,university.degree,no,yes,no,cellular,mar,tue,279,1,999,2,failure,-1.8,93.369,-34.8,0.646,5008.7,yes
+33,technician,single,professional.course,no,yes,no,cellular,mar,tue,459,1,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,yes
+52,admin.,married,university.degree,no,yes,no,telephone,mar,tue,294,1,999,1,failure,-1.8,93.369,-34.8,0.646,5008.7,no
+46,unemployed,single,university.degree,no,no,no,cellular,mar,tue,263,1,10,2,success,-1.8,93.369,-34.8,0.646,5008.7,yes
+31,admin.,single,university.degree,no,yes,no,telephone,mar,tue,295,1,3,2,success,-1.8,93.369,-34.8,0.646,5008.7,yes
+33,technician,single,professional.course,no,yes,no,telephone,mar,tue,244,2,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no
+27,services,single,high.school,no,yes,yes,cellular,mar,tue,384,1,9,2,failure,-1.8,93.369,-34.8,0.646,5008.7,no
+52,admin.,married,university.degree,no,no,no,cellular,mar,tue,231,1,6,2,success,-1.8,93.369,-34.8,0.646,5008.7,yes
+66,retired,married,high.school,no,no,no,cellular,mar,tue,618,1,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no
+30,technician,single,university.degree,no,unknown,unknown,cellular,mar,tue,272,3,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no
+66,retired,married,high.school,no,unknown,unknown,cellular,mar,tue,881,3,999,1,failure,-1.8,93.369,-34.8,0.646,5008.7,yes
+23,student,single,high.school,no,no,no,cellular,mar,wed,128,1,999,0,nonexistent,-1.8,93.369,-34.8,0.644,5008.7,yes
+33,self-employed,married,university.degree,no,yes,no,cellular,mar,wed,184,1,11,1,success,-1.8,93.369,-34.8,0.644,5008.7,no
+37,technician,married,professional.course,no,yes,yes,cellular,mar,wed,395,1,9,1,success,-1.8,93.369,-34.8,0.644,5008.7,no
+56,retired,married,basic.4y,no,no,no,cellular,mar,wed,181,2,9,2,failure,-1.8,93.369,-34.8,0.644,5008.7,no
+59,admin.,married,university.degree,no,yes,no,telephone,mar,wed,133,7,999,0,nonexistent,-1.8,93.369,-34.8,0.644,5008.7,no
+52,technician,married,basic.9y,no,no,no,cellular,mar,wed,272,3,999,0,nonexistent,-1.8,93.369,-34.8,0.644,5008.7,yes
+53,blue-collar,single,basic.9y,no,unknown,unknown,cellular,mar,thu,362,1,9,2,success,-1.8,93.369,-34.8,0.643,5008.7,yes
+53,technician,married,unknown,no,no,no,cellular,mar,thu,93,1,999,1,failure,-1.8,93.369,-34.8,0.643,5008.7,no
+26,admin.,married,unknown,no,no,no,cellular,mar,thu,359,1,999,1,failure,-1.8,93.369,-34.8,0.643,5008.7,no
+28,admin.,single,university.degree,no,yes,no,cellular,mar,thu,370,1,9,1,success,-1.8,93.369,-34.8,0.643,5008.7,no
+28,admin.,single,university.degree,no,no,no,cellular,mar,thu,237,1,999,0,nonexistent,-1.8,93.369,-34.8,0.643,5008.7,yes
+28,admin.,single,university.degree,no,no,no,cellular,mar,thu,125,1,999,0,nonexistent,-1.8,93.369,-34.8,0.643,5008.7,no
+47,services,single,unknown,no,unknown,unknown,cellular,mar,thu,394,2,999,0,nonexistent,-1.8,93.369,-34.8,0.643,5008.7,no
+38,admin.,single,university.degree,no,yes,no,cellular,mar,thu,420,1,999,0,nonexistent,-1.8,93.369,-34.8,0.643,5008.7,yes
+43,admin.,married,high.school,no,yes,no,cellular,mar,thu,265,1,999,0,nonexistent,-1.8,93.369,-34.8,0.643,5008.7,yes
+34,admin.,single,university.degree,no,yes,no,cellular,mar,thu,910,2,6,3,success,-1.8,93.369,-34.8,0.643,5008.7,yes
+29,technician,single,professional.course,no,yes,yes,cellular,mar,thu,467,2,13,1,success,-1.8,93.369,-34.8,0.643,5008.7,yes
+24,technician,single,professional.course,no,yes,no,telephone,mar,thu,165,3,999,0,nonexistent,-1.8,93.369,-34.8,0.643,5008.7,no
+50,management,married,university.degree,no,yes,no,cellular,mar,thu,245,2,999,0,nonexistent,-1.8,93.369,-34.8,0.643,5008.7,no
+39,admin.,divorced,professional.course,no,no,no,cellular,mar,thu,593,4,999,1,failure,-1.8,93.369,-34.8,0.643,5008.7,yes
+75,retired,married,basic.9y,no,no,no,cellular,mar,mon,293,2,999,1,failure,-1.8,93.369,-34.8,0.639,5008.7,yes
+59,unemployed,married,basic.9y,no,yes,no,cellular,mar,mon,254,2,999,0,nonexistent,-1.8,93.369,-34.8,0.639,5008.7,yes
+27,admin.,single,unknown,no,yes,no,cellular,mar,mon,247,3,6,2,success,-1.8,93.369,-34.8,0.639,5008.7,yes
+30,technician,unknown,university.degree,no,no,no,cellular,mar,mon,977,2,11,2,success,-1.8,93.369,-34.8,0.639,5008.7,yes
+30,technician,unknown,university.degree,no,no,no,cellular,mar,mon,173,2,6,2,success,-1.8,93.369,-34.8,0.639,5008.7,yes
+29,admin.,single,university.degree,no,yes,no,cellular,mar,mon,215,1,999,0,nonexistent,-1.8,93.369,-34.8,0.639,5008.7,yes
+38,student,single,unknown,no,no,yes,cellular,mar,mon,248,1,3,4,success,-1.8,93.369,-34.8,0.639,5008.7,yes
+38,student,single,unknown,no,yes,no,cellular,mar,mon,344,1,11,1,success,-1.8,93.369,-34.8,0.639,5008.7,no
+38,student,single,unknown,no,no,no,cellular,mar,mon,516,6,999,0,nonexistent,-1.8,93.369,-34.8,0.639,5008.7,no
+39,technician,divorced,high.school,no,no,no,cellular,mar,mon,222,1,12,2,success,-1.8,93.369,-34.8,0.639,5008.7,yes
+39,technician,divorced,high.school,no,no,no,cellular,mar,mon,174,1,3,1,success,-1.8,93.369,-34.8,0.639,5008.7,yes
+36,blue-collar,divorced,high.school,no,no,no,cellular,mar,mon,96,2,999,1,failure,-1.8,93.369,-34.8,0.639,5008.7,no
+70,retired,married,unknown,no,no,no,telephone,mar,mon,174,2,7,2,success,-1.8,93.369,-34.8,0.639,5008.7,no
+75,retired,married,basic.9y,no,no,no,cellular,mar,mon,153,2,999,0,nonexistent,-1.8,93.369,-34.8,0.639,5008.7,no
+27,admin.,single,unknown,no,no,no,cellular,mar,mon,291,1,999,3,failure,-1.8,93.369,-34.8,0.639,5008.7,yes
+30,student,single,unknown,no,no,yes,telephone,mar,tue,255,1,3,2,success,-1.8,93.369,-34.8,0.637,5008.7,yes
+37,blue-collar,married,basic.9y,no,yes,no,cellular,mar,tue,158,1,999,1,failure,-1.8,93.369,-34.8,0.637,5008.7,no
+30,student,single,unknown,no,yes,no,cellular,mar,tue,136,1,9,1,success,-1.8,93.369,-34.8,0.637,5008.7,yes
+27,admin.,single,university.degree,no,no,no,cellular,mar,tue,273,1,999,0,nonexistent,-1.8,93.369,-34.8,0.637,5008.7,yes
+27,admin.,single,unknown,no,no,no,cellular,mar,tue,128,1,3,1,success,-1.8,93.369,-34.8,0.637,5008.7,yes
+27,admin.,single,university.degree,no,no,no,cellular,mar,tue,191,2,999,0,nonexistent,-1.8,93.369,-34.8,0.637,5008.7,yes
+30,student,single,unknown,no,no,no,cellular,mar,thu,101,1,14,1,success,-1.8,93.369,-34.8,0.635,5008.7,yes
+30,student,single,unknown,no,yes,no,cellular,mar,thu,292,1,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,yes
+80,retired,married,basic.4y,no,yes,no,cellular,mar,thu,156,1,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,yes
+28,blue-collar,single,high.school,no,no,no,cellular,mar,thu,247,1,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,no
+41,technician,divorced,university.degree,no,no,no,cellular,mar,thu,187,1,6,1,success,-1.8,93.369,-34.8,0.635,5008.7,yes
+33,admin.,single,unknown,no,no,no,cellular,mar,thu,196,3,999,1,failure,-1.8,93.369,-34.8,0.635,5008.7,no
+28,admin.,single,university.degree,no,no,no,cellular,mar,thu,189,1,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,no
+36,admin.,single,unknown,no,yes,no,cellular,mar,thu,231,1,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,no
+78,retired,married,unknown,no,no,no,cellular,mar,thu,272,1,6,2,success,-1.8,93.369,-34.8,0.635,5008.7,yes
+66,housemaid,divorced,basic.4y,no,yes,no,cellular,mar,thu,201,1,3,2,success,-1.8,93.369,-34.8,0.635,5008.7,yes
+34,blue-collar,single,unknown,no,no,no,cellular,mar,fri,98,2,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,no
+57,blue-collar,married,basic.9y,no,no,no,cellular,mar,fri,94,2,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,no
+65,housemaid,divorced,basic.4y,unknown,no,no,cellular,mar,fri,288,3,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,yes
+33,services,single,high.school,no,yes,no,cellular,mar,fri,128,2,6,1,success,-1.8,93.369,-34.8,0.636,5008.7,no
+59,services,single,high.school,no,yes,no,cellular,mar,fri,169,2,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,no
+34,blue-collar,single,unknown,no,yes,no,cellular,mar,fri,360,1,999,1,failure,-1.8,93.369,-34.8,0.636,5008.7,yes
+26,admin.,single,high.school,no,yes,no,cellular,mar,fri,454,1,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,no
+27,self-employed,single,university.degree,no,no,no,cellular,mar,fri,281,1,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,yes
+26,admin.,single,university.degree,no,no,no,cellular,mar,fri,81,1,7,4,failure,-1.8,93.369,-34.8,0.636,5008.7,no
+34,admin.,divorced,high.school,no,no,no,cellular,mar,fri,156,1,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,no
+78,retired,married,basic.4y,no,yes,no,telephone,mar,fri,139,1,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,no
+28,admin.,single,university.degree,no,no,no,cellular,mar,fri,157,2,999,1,failure,-1.8,93.369,-34.8,0.636,5008.7,no
+51,admin.,married,university.degree,no,yes,yes,cellular,mar,fri,201,3,999,1,failure,-1.8,93.369,-34.8,0.636,5008.7,no
+57,blue-collar,married,basic.9y,no,no,no,cellular,mar,fri,698,1,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,no
+58,services,married,high.school,no,no,no,cellular,mar,mon,92,2,3,1,success,-1.8,93.369,-34.8,0.635,5008.7,yes
+58,services,married,high.school,no,no,no,cellular,mar,mon,198,2,999,2,failure,-1.8,93.369,-34.8,0.635,5008.7,no
+58,services,married,high.school,no,yes,no,cellular,mar,mon,88,3,999,2,failure,-1.8,93.369,-34.8,0.635,5008.7,no
+58,services,married,high.school,no,yes,no,cellular,mar,mon,164,5,999,1,failure,-1.8,93.369,-34.8,0.635,5008.7,no
+58,services,married,high.school,no,no,no,cellular,mar,mon,135,1,999,2,failure,-1.8,93.369,-34.8,0.635,5008.7,no
+36,admin.,single,university.degree,no,yes,no,cellular,mar,mon,231,2,999,4,failure,-1.8,93.369,-34.8,0.635,5008.7,no
+57,management,married,university.degree,no,no,no,cellular,mar,mon,341,2,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,yes
+62,blue-collar,married,unknown,no,no,no,cellular,mar,mon,515,2,999,2,failure,-1.8,93.369,-34.8,0.635,5008.7,no
+58,services,married,high.school,no,yes,no,cellular,mar,mon,317,4,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,no
+20,services,single,unknown,no,no,no,cellular,mar,mon,150,3,3,3,success,-1.8,93.369,-34.8,0.635,5008.7,no
+58,services,married,high.school,no,yes,no,telephone,mar,mon,113,4,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,no
+35,blue-collar,married,basic.4y,no,no,no,telephone,mar,mon,433,3,999,1,failure,-1.8,93.369,-34.8,0.635,5008.7,yes
+49,technician,divorced,professional.course,no,yes,no,cellular,mar,tue,361,2,999,1,failure,-1.8,93.369,-34.8,0.635,5008.7,no
+86,retired,married,basic.4y,unknown,yes,no,cellular,mar,tue,186,2,999,2,failure,-1.8,93.369,-34.8,0.635,5008.7,no
+68,retired,divorced,basic.4y,no,yes,no,cellular,mar,tue,277,2,11,1,success,-1.8,93.369,-34.8,0.635,5008.7,yes
+59,admin.,divorced,university.degree,no,yes,no,cellular,mar,tue,236,1,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,yes
+27,admin.,single,university.degree,no,yes,no,cellular,mar,tue,359,1,999,1,failure,-1.8,93.369,-34.8,0.635,5008.7,yes
+47,self-employed,married,professional.course,no,yes,no,telephone,mar,tue,110,1,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,yes
+34,management,married,university.degree,no,unknown,unknown,cellular,mar,tue,57,4,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,no
+27,admin.,single,university.degree,no,yes,no,cellular,mar,tue,371,1,999,2,failure,-1.8,93.369,-34.8,0.635,5008.7,no
+27,admin.,single,university.degree,no,no,no,cellular,mar,tue,238,4,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,yes
+49,technician,divorced,professional.course,no,yes,no,cellular,mar,tue,236,4,3,1,success,-1.8,93.369,-34.8,0.635,5008.7,yes
+64,retired,married,basic.4y,no,yes,no,cellular,mar,wed,262,2,999,0,nonexistent,-1.8,93.369,-34.8,0.634,5008.7,yes
+56,unemployed,divorced,basic.4y,no,no,no,cellular,mar,wed,577,1,999,0,nonexistent,-1.8,93.369,-34.8,0.634,5008.7,yes
+56,unemployed,divorced,basic.4y,no,yes,no,cellular,mar,wed,170,1,999,1,failure,-1.8,93.369,-34.8,0.634,5008.7,yes
+56,admin.,single,university.degree,no,no,no,cellular,mar,wed,193,1,5,1,success,-1.8,93.369,-34.8,0.634,5008.7,yes
+56,admin.,single,university.degree,no,yes,no,cellular,mar,wed,175,1,999,1,failure,-1.8,93.369,-34.8,0.634,5008.7,yes
+56,admin.,single,university.degree,no,yes,no,cellular,mar,wed,382,1,999,1,failure,-1.8,93.369,-34.8,0.634,5008.7,no
+27,admin.,single,university.degree,no,yes,no,cellular,mar,wed,210,1,6,2,success,-1.8,93.369,-34.8,0.634,5008.7,yes
+32,management,married,university.degree,no,yes,no,telephone,mar,wed,30,1,999,0,nonexistent,-1.8,93.369,-34.8,0.634,5008.7,no
+60,housemaid,married,basic.4y,no,yes,yes,cellular,apr,thu,149,1,12,1,success,-1.8,93.749,-34.6,0.635,5008.7,yes
+56,admin.,single,university.degree,no,no,yes,cellular,apr,thu,158,1,999,1,failure,-1.8,93.749,-34.6,0.635,5008.7,no
+33,admin.,single,university.degree,no,yes,no,cellular,apr,thu,280,1,7,2,success,-1.8,93.749,-34.6,0.635,5008.7,yes
+27,student,single,unknown,no,yes,no,telephone,apr,thu,390,1,4,1,success,-1.8,93.749,-34.6,0.635,5008.7,yes
+41,admin.,divorced,high.school,no,no,no,telephone,apr,thu,558,2,999,0,nonexistent,-1.8,93.749,-34.6,0.635,5008.7,yes
+27,student,single,unknown,no,yes,no,cellular,apr,thu,176,1,999,1,failure,-1.8,93.749,-34.6,0.635,5008.7,no
+35,admin.,divorced,high.school,no,yes,no,telephone,apr,thu,216,3,999,1,failure,-1.8,93.749,-34.6,0.635,5008.7,yes
+27,student,single,unknown,no,no,no,cellular,apr,thu,263,1,999,0,nonexistent,-1.8,93.749,-34.6,0.635,5008.7,no
+84,retired,divorced,basic.4y,no,no,no,cellular,apr,thu,220,2,999,2,failure,-1.8,93.749,-34.6,0.635,5008.7,no
+32,admin.,single,university.degree,no,yes,no,cellular,apr,thu,358,2,999,0,nonexistent,-1.8,93.749,-34.6,0.635,5008.7,yes
+35,admin.,divorced,high.school,no,yes,yes,telephone,apr,thu,111,1,999,0,nonexistent,-1.8,93.749,-34.6,0.635,5008.7,yes
+33,admin.,single,university.degree,no,yes,no,cellular,apr,tue,179,3,999,0,nonexistent,-1.8,93.749,-34.6,0.638,5008.7,yes
+27,technician,single,professional.course,no,no,no,cellular,apr,tue,127,3,999,1,failure,-1.8,93.749,-34.6,0.638,5008.7,no
+46,technician,married,professional.course,no,no,yes,cellular,apr,tue,189,1,5,2,success,-1.8,93.749,-34.6,0.638,5008.7,yes
+27,admin.,single,university.degree,no,no,no,cellular,apr,tue,317,1,12,1,success,-1.8,93.749,-34.6,0.638,5008.7,yes
+61,admin.,married,high.school,no,yes,no,cellular,apr,tue,196,1,999,1,failure,-1.8,93.749,-34.6,0.638,5008.7,yes
+76,retired,married,basic.4y,no,no,no,cellular,apr,tue,122,4,999,1,failure,-1.8,93.749,-34.6,0.638,5008.7,no
+82,housemaid,divorced,basic.4y,no,unknown,unknown,cellular,apr,tue,139,6,999,0,nonexistent,-1.8,93.749,-34.6,0.638,5008.7,yes
+58,retired,married,basic.4y,no,no,no,cellular,apr,wed,1307,1,999,0,nonexistent,-1.8,93.749,-34.6,0.639,5008.7,yes
+39,technician,married,professional.course,no,no,no,cellular,apr,thu,208,3,999,1,failure,-1.8,93.749,-34.6,0.64,5008.7,no
+53,management,divorced,university.degree,no,yes,no,cellular,apr,thu,222,2,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,yes
+75,retired,married,unknown,no,yes,no,cellular,apr,thu,237,2,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,no
+53,management,divorced,university.degree,no,yes,yes,cellular,apr,thu,126,6,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,no
+53,management,divorced,university.degree,no,no,no,cellular,apr,thu,198,2,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,no
+58,housemaid,single,professional.course,no,no,yes,cellular,apr,thu,335,1,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,yes
+26,unemployed,single,university.degree,no,yes,no,cellular,apr,thu,618,1,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,yes
+71,retired,married,professional.course,no,no,no,cellular,apr,thu,559,1,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,yes
+53,technician,married,university.degree,no,unknown,unknown,cellular,apr,thu,758,2,999,2,failure,-1.8,93.749,-34.6,0.64,5008.7,yes
+71,retired,married,professional.course,no,yes,no,cellular,apr,thu,236,2,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,no
+37,technician,married,professional.course,no,yes,no,telephone,apr,mon,481,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes
+54,admin.,married,high.school,no,yes,no,cellular,apr,mon,158,2,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes
+37,management,single,university.degree,no,no,no,cellular,apr,mon,161,1,999,1,failure,-1.8,93.749,-34.6,0.642,5008.7,no
+35,admin.,married,university.degree,no,yes,no,cellular,apr,mon,337,1,999,2,failure,-1.8,93.749,-34.6,0.642,5008.7,no
+33,admin.,single,university.degree,no,yes,no,cellular,apr,mon,169,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,no
+58,housemaid,single,professional.course,no,yes,no,cellular,apr,mon,284,1,6,1,success,-1.8,93.749,-34.6,0.642,5008.7,no
+62,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,mon,366,2,10,1,success,-1.8,93.749,-34.6,0.642,5008.7,no
+58,housemaid,single,professional.course,no,no,no,cellular,apr,mon,158,2,6,2,success,-1.8,93.749,-34.6,0.642,5008.7,no
+33,admin.,single,university.degree,no,no,no,cellular,apr,mon,339,1,999,2,failure,-1.8,93.749,-34.6,0.642,5008.7,no
+48,admin.,married,professional.course,no,yes,no,cellular,apr,mon,333,1,7,1,success,-1.8,93.749,-34.6,0.642,5008.7,yes
+49,admin.,married,high.school,unknown,no,no,cellular,apr,mon,119,1,6,1,success,-1.8,93.749,-34.6,0.642,5008.7,no
+42,housemaid,divorced,basic.4y,no,yes,no,telephone,apr,mon,271,1,999,1,failure,-1.8,93.749,-34.6,0.642,5008.7,no
+33,admin.,single,university.degree,no,yes,no,cellular,apr,mon,143,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,no
+58,housemaid,single,professional.course,no,no,no,cellular,apr,mon,147,1,6,1,success,-1.8,93.749,-34.6,0.642,5008.7,no
+56,technician,married,high.school,no,no,no,cellular,apr,mon,119,2,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,no
+59,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,1397,3,999,1,failure,-1.8,93.749,-34.6,0.642,5008.7,yes
+33,admin.,single,university.degree,no,yes,no,cellular,apr,mon,143,2,999,1,failure,-1.8,93.749,-34.6,0.642,5008.7,no
+35,admin.,married,university.degree,no,yes,no,cellular,apr,mon,176,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes
+63,technician,married,high.school,no,no,no,cellular,apr,mon,176,3,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes
+33,management,single,university.degree,no,no,no,cellular,apr,tue,113,3,999,1,failure,-1.8,93.749,-34.6,0.644,5008.7,no
+26,admin.,single,university.degree,no,yes,yes,cellular,apr,tue,295,4,6,2,success,-1.8,93.749,-34.6,0.644,5008.7,yes
+80,housemaid,married,basic.4y,no,yes,yes,cellular,apr,tue,232,1,12,1,success,-1.8,93.749,-34.6,0.644,5008.7,yes
+49,admin.,married,university.degree,no,yes,yes,cellular,apr,tue,218,2,999,3,failure,-1.8,93.749,-34.6,0.644,5008.7,yes
+20,student,single,basic.4y,no,yes,yes,cellular,apr,tue,240,1,999,1,failure,-1.8,93.749,-34.6,0.644,5008.7,yes
+20,student,single,basic.4y,no,yes,yes,cellular,apr,tue,278,4,6,1,success,-1.8,93.749,-34.6,0.644,5008.7,yes
+53,entrepreneur,married,basic.4y,no,yes,yes,cellular,apr,tue,398,2,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes
+36,admin.,single,basic.9y,no,yes,yes,telephone,apr,wed,173,1,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes
+48,admin.,married,university.degree,no,yes,no,cellular,apr,thu,220,2,999,1,failure,-1.8,93.749,-34.6,0.644,5008.7,no
+48,admin.,married,university.degree,no,no,no,telephone,apr,thu,185,1,6,2,success,-1.8,93.749,-34.6,0.644,5008.7,yes
+74,retired,married,university.degree,no,no,no,cellular,apr,thu,200,1,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes
+48,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,200,1,6,2,success,-1.8,93.749,-34.6,0.644,5008.7,yes
+48,admin.,married,university.degree,no,yes,no,cellular,apr,thu,141,1,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes
+35,admin.,married,university.degree,no,yes,no,cellular,apr,thu,330,1,10,1,success,-1.8,93.749,-34.6,0.644,5008.7,yes
+37,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,214,1,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes
+46,services,single,basic.4y,no,no,no,cellular,apr,thu,191,3,6,1,success,-1.8,93.749,-34.6,0.644,5008.7,no
+58,admin.,married,professional.course,no,yes,no,cellular,apr,thu,98,4,999,2,failure,-1.8,93.749,-34.6,0.644,5008.7,no
+22,services,single,high.school,no,no,no,cellular,apr,thu,699,2,999,1,failure,-1.8,93.749,-34.6,0.644,5008.7,no
+35,services,married,professional.course,no,yes,no,cellular,apr,thu,218,2,6,1,success,-1.8,93.749,-34.6,0.644,5008.7,yes
+68,retired,married,basic.4y,no,yes,no,cellular,apr,fri,177,1,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,no
+41,admin.,married,university.degree,no,yes,no,cellular,apr,fri,961,6,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes
+68,retired,married,university.degree,no,yes,no,cellular,apr,fri,330,3,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes
+55,technician,married,professional.course,no,yes,no,cellular,apr,fri,148,2,999,1,failure,-1.8,93.749,-34.6,0.644,5008.7,no
+50,technician,single,university.degree,no,yes,no,telephone,apr,fri,634,1,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes
+82,retired,divorced,basic.4y,no,yes,yes,cellular,apr,mon,125,2,999,0,nonexistent,-1.8,93.749,-34.6,0.643,5008.7,yes
+25,self-employed,single,unknown,no,no,no,cellular,apr,mon,131,2,999,1,failure,-1.8,93.749,-34.6,0.643,5008.7,no
+29,admin.,single,university.degree,no,yes,no,cellular,apr,mon,237,4,999,0,nonexistent,-1.8,93.749,-34.6,0.643,5008.7,no
+25,self-employed,single,unknown,no,no,no,cellular,apr,mon,232,3,999,1,failure,-1.8,93.749,-34.6,0.643,5008.7,no
+54,admin.,married,high.school,no,no,no,cellular,apr,mon,220,1,12,1,success,-1.8,93.749,-34.6,0.643,5008.7,no
+82,retired,divorced,basic.4y,no,no,no,cellular,apr,mon,529,1,6,2,success,-1.8,93.749,-34.6,0.643,5008.7,yes
+74,retired,divorced,basic.4y,no,yes,no,cellular,apr,mon,142,2,999,0,nonexistent,-1.8,93.749,-34.6,0.643,5008.7,yes
+74,retired,divorced,basic.4y,no,no,yes,cellular,apr,mon,184,2,14,2,failure,-1.8,93.749,-34.6,0.643,5008.7,no
+74,retired,married,basic.4y,no,no,no,telephone,apr,mon,1143,5,999,0,nonexistent,-1.8,93.749,-34.6,0.643,5008.7,yes
+85,housemaid,married,basic.4y,unknown,no,no,cellular,apr,tue,175,6,6,1,success,-1.8,93.749,-34.6,0.642,5008.7,yes
+85,housemaid,married,basic.4y,unknown,yes,no,cellular,apr,tue,167,1,6,2,success,-1.8,93.749,-34.6,0.642,5008.7,yes
+85,housemaid,married,basic.4y,unknown,no,no,cellular,apr,tue,166,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,no
+75,retired,divorced,high.school,no,no,no,telephone,apr,tue,162,1,6,2,success,-1.8,93.749,-34.6,0.642,5008.7,yes
+85,housemaid,married,basic.4y,unknown,yes,no,cellular,apr,tue,462,1,999,1,failure,-1.8,93.749,-34.6,0.642,5008.7,yes
+70,retired,married,basic.4y,no,yes,no,telephone,apr,tue,268,2,999,1,failure,-1.8,93.749,-34.6,0.642,5008.7,no
+45,management,married,unknown,no,yes,no,cellular,apr,tue,379,3,7,1,success,-1.8,93.749,-34.6,0.642,5008.7,yes
+61,retired,married,high.school,no,yes,no,cellular,apr,tue,930,4,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,no
+49,admin.,divorced,high.school,no,no,no,cellular,apr,wed,381,2,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,no
+66,retired,divorced,basic.4y,no,yes,no,cellular,apr,wed,476,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes
+57,housemaid,married,basic.4y,no,yes,no,telephone,apr,wed,595,3,999,1,failure,-1.8,93.749,-34.6,0.642,5008.7,yes
+80,retired,divorced,basic.4y,no,yes,no,cellular,apr,wed,354,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,no
+80,retired,divorced,basic.4y,no,yes,no,telephone,apr,wed,403,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes
+80,retired,divorced,basic.4y,no,yes,no,telephone,apr,wed,623,2,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes
+80,retired,divorced,basic.4y,no,yes,yes,cellular,apr,wed,654,2,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes
+57,housemaid,married,basic.4y,no,no,no,cellular,apr,wed,224,2,6,1,success,-1.8,93.749,-34.6,0.642,5008.7,yes
+58,unemployed,married,basic.9y,no,yes,no,cellular,apr,thu,229,1,6,1,success,-1.8,93.749,-34.6,0.644,5008.7,yes
+53,housemaid,married,university.degree,no,yes,no,cellular,apr,thu,494,1,6,1,success,-1.8,93.749,-34.6,0.644,5008.7,yes
+80,retired,divorced,basic.4y,no,yes,no,cellular,apr,thu,234,1,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,no
+57,retired,married,high.school,no,yes,no,cellular,apr,thu,407,2,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes
+77,retired,married,high.school,no,yes,no,cellular,apr,thu,165,7,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes
+59,retired,divorced,high.school,no,yes,no,cellular,apr,thu,247,2,999,1,failure,-1.8,93.749,-34.6,0.644,5008.7,no
+44,admin.,married,high.school,no,yes,no,cellular,apr,thu,292,4,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,no
+80,retired,divorced,basic.4y,no,yes,yes,cellular,apr,thu,554,1,10,2,success,-1.8,93.749,-34.6,0.644,5008.7,yes
+32,admin.,single,university.degree,no,yes,yes,cellular,apr,fri,109,5,6,1,success,-1.8,93.749,-34.6,0.645,5008.7,no
+43,admin.,divorced,university.degree,no,no,no,telephone,apr,fri,263,4,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,yes
+41,admin.,married,university.degree,no,yes,no,cellular,apr,fri,342,1,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,yes
+63,housemaid,married,basic.9y,no,yes,no,cellular,apr,fri,164,1,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,no
+47,admin.,married,high.school,no,yes,no,cellular,apr,fri,296,1,999,1,failure,-1.8,93.749,-34.6,0.645,5008.7,yes
+73,retired,single,professional.course,no,no,no,cellular,apr,fri,291,1,6,3,success,-1.8,93.749,-34.6,0.645,5008.7,yes
+26,student,single,high.school,no,yes,yes,cellular,apr,fri,888,1,6,2,success,-1.8,93.749,-34.6,0.645,5008.7,yes
+25,admin.,single,university.degree,no,no,yes,cellular,apr,fri,207,1,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,no
+62,technician,married,unknown,no,yes,no,cellular,apr,fri,215,2,999,1,failure,-1.8,93.749,-34.6,0.645,5008.7,no
+71,retired,married,basic.4y,no,no,no,telephone,apr,mon,92,8,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,no
+29,admin.,single,university.degree,no,yes,no,cellular,apr,mon,378,3,12,1,success,-1.8,93.749,-34.6,0.645,5008.7,no
+46,admin.,married,high.school,no,no,no,cellular,apr,mon,194,3,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,yes
+38,management,divorced,university.degree,no,yes,no,cellular,apr,mon,182,2,6,1,success,-1.8,93.749,-34.6,0.645,5008.7,yes
+29,technician,married,university.degree,no,yes,no,cellular,apr,mon,116,2,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,no
+32,technician,married,professional.course,no,no,no,cellular,apr,mon,688,2,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,yes
+46,admin.,married,high.school,no,yes,yes,cellular,apr,mon,128,2,6,2,success,-1.8,93.749,-34.6,0.645,5008.7,no
+29,technician,married,university.degree,no,yes,no,cellular,apr,mon,192,1,999,1,failure,-1.8,93.749,-34.6,0.645,5008.7,yes
+30,student,single,high.school,no,yes,yes,cellular,apr,mon,102,3,10,1,success,-1.8,93.749,-34.6,0.645,5008.7,no
+20,student,single,high.school,no,no,no,cellular,apr,mon,1472,1,999,3,failure,-1.8,93.749,-34.6,0.645,5008.7,yes
+46,admin.,married,high.school,no,yes,no,cellular,apr,mon,166,5,999,4,failure,-1.8,93.749,-34.6,0.645,5008.7,no
+24,blue-collar,single,high.school,no,no,no,cellular,apr,mon,234,10,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,no
+71,retired,married,basic.4y,no,no,no,cellular,apr,mon,328,2,4,1,success,-1.8,93.749,-34.6,0.645,5008.7,yes
+24,blue-collar,single,high.school,no,no,no,cellular,apr,mon,125,2,999,1,failure,-1.8,93.749,-34.6,0.645,5008.7,no
+71,retired,married,basic.4y,no,no,no,cellular,apr,mon,117,3,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,no
+29,technician,married,university.degree,no,no,no,cellular,apr,mon,135,3,999,1,failure,-1.8,93.749,-34.6,0.645,5008.7,no
+24,blue-collar,single,high.school,no,yes,no,cellular,apr,mon,135,1,999,1,failure,-1.8,93.749,-34.6,0.645,5008.7,no
+27,student,single,university.degree,no,yes,yes,cellular,apr,tue,147,2,999,1,failure,-1.8,93.749,-34.6,0.646,5008.7,no
+39,management,married,university.degree,no,no,no,telephone,apr,tue,325,1,999,2,failure,-1.8,93.749,-34.6,0.646,5008.7,yes
+24,student,single,basic.9y,no,yes,no,cellular,apr,tue,345,1,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,no
+24,student,single,basic.9y,no,yes,no,cellular,apr,tue,252,1,999,1,failure,-1.8,93.749,-34.6,0.646,5008.7,no
+27,admin.,single,university.degree,no,yes,no,cellular,apr,tue,605,1,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,no
+37,admin.,married,high.school,no,no,no,telephone,apr,tue,426,2,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,yes
+30,admin.,single,university.degree,no,yes,no,cellular,apr,tue,321,1,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,yes
+20,student,single,unknown,no,yes,no,cellular,apr,tue,81,3,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,no
+44,management,married,unknown,no,no,no,telephone,apr,tue,473,2,999,1,failure,-1.8,93.749,-34.6,0.646,5008.7,yes
+29,services,single,high.school,no,no,no,telephone,apr,tue,370,1,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,yes
+48,technician,single,professional.course,no,yes,no,cellular,apr,tue,159,3,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,yes
+20,student,single,unknown,no,yes,no,cellular,apr,tue,99,1,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,no
+52,admin.,married,unknown,no,yes,no,cellular,apr,wed,184,2,10,1,success,-1.8,93.749,-34.6,0.654,5008.7,yes
+52,admin.,married,unknown,no,yes,no,telephone,apr,wed,403,1,6,1,success,-1.8,93.749,-34.6,0.654,5008.7,yes
+28,admin.,single,unknown,no,yes,no,cellular,apr,wed,545,2,6,4,success,-1.8,93.749,-34.6,0.654,5008.7,yes
+33,admin.,married,university.degree,no,yes,no,cellular,apr,wed,623,1,6,1,success,-1.8,93.749,-34.6,0.654,5008.7,yes
+52,admin.,married,unknown,no,no,no,cellular,apr,wed,387,2,999,0,nonexistent,-1.8,93.749,-34.6,0.654,5008.7,yes
+50,admin.,married,basic.9y,no,yes,no,cellular,apr,thu,717,3,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,yes
+33,admin.,married,university.degree,no,no,no,cellular,apr,thu,157,6,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,no
+29,services,single,unknown,no,yes,no,cellular,apr,thu,226,2,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,yes
+38,admin.,single,high.school,no,yes,no,cellular,apr,thu,882,1,6,1,success,-1.8,93.749,-34.6,0.659,5008.7,yes
+61,retired,married,basic.9y,no,no,no,cellular,apr,thu,165,2,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,no
+31,self-employed,single,university.degree,no,no,no,cellular,apr,thu,210,1,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,yes
+36,admin.,married,unknown,no,no,no,cellular,apr,thu,91,1,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,no
+37,technician,married,professional.course,no,no,no,cellular,apr,thu,277,1,18,1,success,-1.8,93.749,-34.6,0.659,5008.7,yes
+26,admin.,single,university.degree,no,yes,no,cellular,apr,thu,115,2,999,1,failure,-1.8,93.749,-34.6,0.659,5008.7,no
+35,admin.,single,university.degree,no,yes,no,cellular,apr,thu,388,2,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,yes
+29,services,single,unknown,no,yes,no,cellular,apr,thu,1241,5,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,yes
+36,unemployed,married,professional.course,no,yes,no,cellular,apr,thu,835,7,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,no
+52,admin.,married,university.degree,no,no,yes,telephone,apr,thu,395,3,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,yes
+33,admin.,single,university.degree,no,yes,no,cellular,apr,thu,305,3,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,yes
+38,admin.,single,high.school,no,yes,yes,cellular,apr,thu,449,1,13,1,success,-1.8,93.749,-34.6,0.659,5008.7,yes
+34,technician,married,professional.course,no,yes,no,cellular,apr,fri,211,2,6,2,success,-1.8,93.749,-34.6,0.663,5008.7,no
+36,blue-collar,married,unknown,no,no,no,cellular,apr,fri,315,1,6,1,success,-1.8,93.749,-34.6,0.663,5008.7,yes
+30,management,married,university.degree,no,yes,no,cellular,apr,fri,242,4,999,1,failure,-1.8,93.749,-34.6,0.663,5008.7,no
+20,student,single,unknown,no,no,no,cellular,apr,fri,342,2,999,0,nonexistent,-1.8,93.749,-34.6,0.663,5008.7,no
+35,admin.,married,university.degree,no,no,yes,cellular,apr,fri,262,3,999,1,failure,-1.8,93.749,-34.6,0.663,5008.7,yes
+36,blue-collar,married,unknown,no,yes,no,cellular,apr,fri,572,2,999,0,nonexistent,-1.8,93.749,-34.6,0.663,5008.7,no
+28,technician,single,university.degree,no,no,yes,cellular,apr,fri,97,1,999,1,failure,-1.8,93.749,-34.6,0.663,5008.7,no
+28,technician,single,university.degree,no,yes,no,cellular,apr,fri,148,1,999,0,nonexistent,-1.8,93.749,-34.6,0.663,5008.7,no
+31,student,single,university.degree,no,yes,yes,cellular,apr,fri,183,1,6,2,success,-1.8,93.749,-34.6,0.663,5008.7,yes
+21,student,single,high.school,no,yes,no,cellular,apr,fri,551,1,999,0,nonexistent,-1.8,93.749,-34.6,0.663,5008.7,yes
+20,student,single,unknown,no,yes,yes,cellular,apr,fri,180,2,999,0,nonexistent,-1.8,93.749,-34.6,0.663,5008.7,no
+37,admin.,married,university.degree,no,no,no,cellular,may,tue,106,1,999,2,failure,-1.8,93.876,-40,0.668,5008.7,no
+39,admin.,married,high.school,no,yes,no,cellular,may,tue,552,1,3,2,success,-1.8,93.876,-40,0.668,5008.7,yes
+52,admin.,married,university.degree,no,no,no,cellular,may,tue,131,1,3,2,success,-1.8,93.876,-40,0.668,5008.7,no
+29,admin.,single,university.degree,no,no,no,cellular,may,tue,85,1,999,2,failure,-1.8,93.876,-40,0.668,5008.7,no
+30,admin.,single,university.degree,no,no,no,cellular,may,tue,113,1,6,1,success,-1.8,93.876,-40,0.668,5008.7,no
+30,blue-collar,single,professional.course,no,no,no,cellular,may,tue,165,1,999,1,failure,-1.8,93.876,-40,0.668,5008.7,no
+48,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,268,1,3,3,success,-1.8,93.876,-40,0.668,5008.7,yes
+18,student,single,unknown,no,yes,no,telephone,may,tue,421,1,3,1,success,-1.8,93.876,-40,0.668,5008.7,yes
+18,student,single,unknown,no,yes,no,cellular,may,tue,489,1,6,1,success,-1.8,93.876,-40,0.668,5008.7,yes
+79,retired,married,basic.9y,no,no,no,cellular,may,tue,104,1,999,2,failure,-1.8,93.876,-40,0.668,5008.7,no
+79,retired,married,basic.9y,no,no,no,cellular,may,tue,126,1,999,0,nonexistent,-1.8,93.876,-40,0.668,5008.7,no
+43,technician,single,professional.course,no,no,no,cellular,may,tue,164,2,3,2,success,-1.8,93.876,-40,0.668,5008.7,yes
+52,admin.,married,university.degree,no,yes,no,cellular,may,tue,556,2,999,0,nonexistent,-1.8,93.876,-40,0.668,5008.7,yes
+24,student,single,high.school,no,yes,no,cellular,may,tue,153,2,6,2,success,-1.8,93.876,-40,0.668,5008.7,yes
+52,technician,married,university.degree,no,no,yes,telephone,may,tue,209,1,2,2,success,-1.8,93.876,-40,0.668,5008.7,yes
+19,student,single,basic.9y,no,yes,no,cellular,may,tue,203,1,999,3,failure,-1.8,93.876,-40,0.668,5008.7,no
+29,student,single,high.school,no,no,no,cellular,may,tue,104,1,7,1,success,-1.8,93.876,-40,0.668,5008.7,no
+51,services,married,high.school,no,no,no,cellular,may,tue,1267,1,999,1,failure,-1.8,93.876,-40,0.668,5008.7,yes
+32,student,single,unknown,no,yes,no,cellular,may,wed,188,2,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,yes
+37,housemaid,married,university.degree,no,yes,no,cellular,may,wed,100,1,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,no
+24,student,single,high.school,no,no,no,cellular,may,wed,389,1,7,2,success,-1.8,93.876,-40,0.672,5008.7,yes
+24,student,single,high.school,no,yes,no,cellular,may,wed,329,1,1,2,success,-1.8,93.876,-40,0.672,5008.7,no
+24,student,single,high.school,no,yes,no,cellular,may,wed,173,1,999,3,failure,-1.8,93.876,-40,0.672,5008.7,no
+24,student,single,high.school,no,yes,no,cellular,may,wed,258,1,3,5,success,-1.8,93.876,-40,0.672,5008.7,yes
+52,admin.,married,university.degree,no,yes,no,cellular,may,wed,338,1,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,yes
+18,student,single,unknown,no,no,no,telephone,may,wed,110,1,999,2,failure,-1.8,93.876,-40,0.672,5008.7,no
+29,admin.,single,university.degree,no,no,no,cellular,may,wed,720,1,6,2,failure,-1.8,93.876,-40,0.672,5008.7,no
+29,admin.,single,university.degree,no,yes,no,cellular,may,wed,232,1,999,1,failure,-1.8,93.876,-40,0.672,5008.7,yes
+44,blue-collar,single,basic.6y,no,no,no,telephone,may,wed,174,1,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,no
+27,student,married,high.school,no,yes,no,telephone,may,wed,54,1,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,no
+20,student,single,unknown,no,yes,no,telephone,may,wed,510,4,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,yes
+48,admin.,single,university.degree,no,yes,no,cellular,may,wed,121,4,999,1,failure,-1.8,93.876,-40,0.672,5008.7,no
+46,management,married,basic.9y,no,yes,no,telephone,may,wed,16,1,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,no
+72,retired,married,basic.4y,no,yes,no,cellular,may,wed,443,4,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,yes
+36,technician,married,professional.course,no,yes,no,cellular,may,thu,109,1,999,1,failure,-1.8,93.876,-40,0.677,5008.7,no
+37,technician,married,university.degree,no,yes,no,cellular,may,thu,246,1,2,4,success,-1.8,93.876,-40,0.677,5008.7,yes
+33,services,married,high.school,no,no,no,cellular,may,thu,192,1,999,1,failure,-1.8,93.876,-40,0.677,5008.7,yes
+52,admin.,married,university.degree,no,yes,yes,cellular,may,thu,250,1,3,5,success,-1.8,93.876,-40,0.677,5008.7,yes
+52,admin.,married,university.degree,no,no,no,cellular,may,thu,195,1,999,0,nonexistent,-1.8,93.876,-40,0.677,5008.7,yes
+52,admin.,married,university.degree,no,no,no,cellular,may,thu,613,1,3,2,success,-1.8,93.876,-40,0.677,5008.7,yes
+52,admin.,married,university.degree,no,yes,no,cellular,may,thu,227,2,999,0,nonexistent,-1.8,93.876,-40,0.677,5008.7,no
+19,student,single,basic.4y,no,yes,no,cellular,may,thu,220,1,999,1,failure,-1.8,93.876,-40,0.677,5008.7,no
+18,student,single,unknown,no,yes,no,cellular,may,thu,183,1,7,2,success,-1.8,93.876,-40,0.677,5008.7,no
+52,technician,married,university.degree,no,no,no,cellular,may,thu,211,1,3,4,success,-1.8,93.876,-40,0.677,5008.7,yes
+62,retired,married,professional.course,no,no,no,telephone,may,thu,111,1,999,0,nonexistent,-1.8,93.876,-40,0.677,5008.7,no
+31,student,single,unknown,no,no,no,cellular,may,thu,243,2,999,1,failure,-1.8,93.876,-40,0.677,5008.7,yes
+78,retired,divorced,basic.4y,no,yes,no,cellular,may,fri,218,2,7,2,success,-1.8,93.876,-40,0.682,5008.7,no
+37,management,married,high.school,no,no,no,cellular,may,fri,292,3,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,yes
+44,technician,married,university.degree,no,yes,no,cellular,may,fri,662,2,2,1,success,-1.8,93.876,-40,0.682,5008.7,yes
+30,student,single,high.school,no,no,no,telephone,may,fri,300,3,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,yes
+44,technician,married,university.degree,no,no,yes,telephone,may,fri,201,2,999,1,failure,-1.8,93.876,-40,0.682,5008.7,no
+30,student,single,high.school,no,no,no,cellular,may,fri,226,2,3,2,success,-1.8,93.876,-40,0.682,5008.7,yes
+60,retired,married,professional.course,no,yes,no,cellular,may,fri,110,2,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,no
+44,technician,married,university.degree,no,no,no,cellular,may,fri,113,1,999,1,failure,-1.8,93.876,-40,0.682,5008.7,no
+42,retired,single,basic.4y,unknown,yes,yes,cellular,may,fri,116,3,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,no
+44,admin.,single,university.degree,no,yes,no,cellular,may,fri,211,4,3,1,success,-1.8,93.876,-40,0.682,5008.7,yes
+33,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,165,1,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,no
+82,retired,married,high.school,unknown,yes,no,cellular,may,mon,135,3,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,no
+22,student,single,unknown,no,yes,no,cellular,may,mon,171,2,3,2,success,-1.8,93.876,-40,0.682,5008.7,yes
+38,entrepreneur,married,professional.course,no,no,no,cellular,may,mon,269,5,3,2,success,-1.8,93.876,-40,0.682,5008.7,no
+41,admin.,married,university.degree,no,no,no,telephone,may,mon,128,2,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,no
+38,entrepreneur,married,professional.course,no,yes,no,cellular,may,mon,583,6,2,4,success,-1.8,93.876,-40,0.682,5008.7,yes
+46,admin.,single,high.school,no,yes,no,cellular,may,mon,522,6,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,no
+56,technician,married,professional.course,no,yes,no,telephone,may,mon,483,5,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,yes
+24,student,single,high.school,no,yes,no,cellular,may,tue,113,2,999,2,failure,-1.8,93.876,-40,0.682,5008.7,no
+34,technician,married,unknown,no,yes,no,telephone,may,tue,97,3,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,no
+54,technician,married,university.degree,no,yes,no,telephone,may,tue,172,5,999,1,failure,-1.8,93.876,-40,0.682,5008.7,no
+50,admin.,married,university.degree,no,unknown,unknown,cellular,may,wed,801,1,999,1,failure,-1.8,93.876,-40,0.682,5008.7,no
+59,admin.,divorced,basic.4y,no,yes,no,cellular,may,wed,193,1,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,yes
+58,admin.,married,high.school,no,yes,no,cellular,may,wed,309,1,6,1,success,-1.8,93.876,-40,0.682,5008.7,yes
+50,admin.,married,university.degree,no,yes,no,cellular,may,wed,176,2,3,3,success,-1.8,93.876,-40,0.682,5008.7,yes
+77,retired,married,university.degree,no,yes,no,cellular,may,wed,152,1,6,4,success,-1.8,93.876,-40,0.682,5008.7,yes
+66,blue-collar,married,unknown,no,yes,no,cellular,may,wed,171,2,6,2,success,-1.8,93.876,-40,0.682,5008.7,yes
+50,admin.,married,high.school,no,yes,no,cellular,may,wed,333,1,999,2,failure,-1.8,93.876,-40,0.682,5008.7,no
+61,management,married,university.degree,no,no,no,cellular,may,wed,228,2,999,1,failure,-1.8,93.876,-40,0.682,5008.7,yes
+48,unemployed,married,professional.course,no,no,no,cellular,may,wed,317,1,6,3,success,-1.8,93.876,-40,0.682,5008.7,yes
+48,unemployed,married,professional.course,no,yes,no,cellular,may,wed,236,1,6,2,success,-1.8,93.876,-40,0.682,5008.7,yes
+50,admin.,married,high.school,no,no,no,cellular,may,wed,208,2,3,5,success,-1.8,93.876,-40,0.682,5008.7,no
+40,technician,married,professional.course,no,yes,no,cellular,may,wed,248,1,3,4,success,-1.8,93.876,-40,0.682,5008.7,yes
+30,admin.,single,high.school,no,yes,no,cellular,may,wed,144,1,999,1,failure,-1.8,93.876,-40,0.682,5008.7,no
+60,admin.,married,unknown,no,yes,no,cellular,may,wed,762,1,6,2,success,-1.8,93.876,-40,0.682,5008.7,yes
+48,unemployed,married,professional.course,no,no,no,telephone,may,wed,360,1,6,1,success,-1.8,93.876,-40,0.682,5008.7,yes
+77,retired,married,university.degree,no,yes,no,telephone,may,wed,372,1,3,4,success,-1.8,93.876,-40,0.682,5008.7,yes
+30,admin.,single,high.school,no,no,no,cellular,may,wed,177,1,13,1,success,-1.8,93.876,-40,0.682,5008.7,no
+47,management,married,university.degree,no,yes,no,telephone,may,wed,267,2,3,3,success,-1.8,93.876,-40,0.682,5008.7,no
+34,management,single,university.degree,no,yes,no,telephone,may,thu,18,1,999,0,nonexistent,-1.8,93.876,-40,0.683,5008.7,no
+45,blue-collar,married,professional.course,no,yes,no,telephone,may,thu,414,1,6,2,success,-1.8,93.876,-40,0.683,5008.7,yes
+92,retired,married,unknown,no,yes,no,cellular,may,thu,271,1,6,2,success,-1.8,93.876,-40,0.683,5008.7,no
+58,management,married,university.degree,no,no,no,cellular,may,thu,289,1,3,4,success,-1.8,93.876,-40,0.683,5008.7,yes
+31,admin.,married,university.degree,no,yes,no,cellular,may,thu,400,1,3,1,success,-1.8,93.876,-40,0.683,5008.7,yes
+41,unemployed,married,basic.9y,no,yes,no,cellular,may,thu,306,1,6,4,success,-1.8,93.876,-40,0.683,5008.7,yes
+28,admin.,single,high.school,no,yes,no,cellular,may,thu,263,1,6,1,success,-1.8,93.876,-40,0.683,5008.7,yes
+29,admin.,single,university.degree,no,no,no,cellular,may,thu,216,1,3,3,success,-1.8,93.876,-40,0.683,5008.7,yes
+39,services,married,high.school,no,yes,no,cellular,may,thu,328,2,6,3,success,-1.8,93.876,-40,0.683,5008.7,yes
+70,retired,married,basic.4y,no,yes,no,cellular,may,thu,331,1,3,2,success,-1.8,93.876,-40,0.683,5008.7,yes
+40,admin.,single,basic.9y,no,yes,no,cellular,may,thu,356,1,2,3,success,-1.8,93.876,-40,0.683,5008.7,yes
+40,admin.,single,basic.9y,no,yes,no,cellular,may,thu,234,1,3,3,success,-1.8,93.876,-40,0.683,5008.7,yes
+28,admin.,single,high.school,no,yes,no,cellular,may,thu,457,2,999,1,failure,-1.8,93.876,-40,0.683,5008.7,no
+60,management,married,unknown,no,yes,no,cellular,may,thu,336,3,3,5,success,-1.8,93.876,-40,0.683,5008.7,yes
+29,admin.,married,university.degree,no,yes,yes,cellular,may,fri,567,3,13,2,failure,-1.8,93.876,-40,0.684,5008.7,yes
+52,management,married,university.degree,no,no,no,cellular,may,fri,404,2,9,1,success,-1.8,93.876,-40,0.684,5008.7,yes
+52,management,married,university.degree,no,no,no,cellular,may,fri,698,5,999,1,failure,-1.8,93.876,-40,0.684,5008.7,no
+30,admin.,single,high.school,no,yes,no,cellular,may,fri,532,5,999,0,nonexistent,-1.8,93.876,-40,0.684,5008.7,yes
+47,technician,divorced,professional.course,no,no,yes,telephone,may,fri,7,1,999,0,nonexistent,-1.8,93.876,-40,0.684,5008.7,no
+32,admin.,married,university.degree,no,no,no,telephone,may,fri,389,4,999,1,failure,-1.8,93.876,-40,0.684,5008.7,no
+41,admin.,married,university.degree,no,yes,no,telephone,may,fri,338,3,999,1,failure,-1.8,93.876,-40,0.684,5008.7,no
+68,retired,married,basic.4y,no,yes,yes,cellular,may,fri,220,1,6,1,success,-1.8,93.876,-40,0.684,5008.7,yes
+33,technician,married,professional.course,no,yes,no,cellular,may,fri,700,4,3,4,success,-1.8,93.876,-40,0.684,5008.7,yes
+76,retired,married,basic.4y,no,yes,no,cellular,may,fri,1205,2,6,2,success,-1.8,93.876,-40,0.684,5008.7,yes
+65,admin.,married,university.degree,no,yes,no,cellular,may,fri,407,3,999,1,failure,-1.8,93.876,-40,0.684,5008.7,yes
+77,retired,married,unknown,no,yes,yes,cellular,may,fri,318,3,999,0,nonexistent,-1.8,93.876,-40,0.684,5008.7,no
+33,technician,married,professional.course,no,yes,yes,cellular,may,fri,62,2,999,0,nonexistent,-1.8,93.876,-40,0.684,5008.7,no
+52,management,married,university.degree,no,yes,no,cellular,may,fri,787,3,3,3,success,-1.8,93.876,-40,0.684,5008.7,yes
+33,admin.,single,university.degree,no,yes,no,cellular,may,fri,396,5,999,0,nonexistent,-1.8,93.876,-40,0.684,5008.7,yes
+71,admin.,married,basic.4y,no,yes,yes,cellular,may,fri,466,4,3,2,success,-1.8,93.876,-40,0.684,5008.7,yes
+29,student,single,university.degree,no,yes,no,cellular,may,mon,556,1,999,1,failure,-1.8,93.876,-40,0.685,5008.7,yes
+63,retired,married,professional.course,no,yes,no,cellular,may,mon,492,1,999,0,nonexistent,-1.8,93.876,-40,0.685,5008.7,no
+33,admin.,married,university.degree,no,yes,no,cellular,may,mon,740,1,3,2,success,-1.8,93.876,-40,0.685,5008.7,yes
+33,admin.,married,university.degree,no,yes,yes,cellular,may,mon,312,2,999,0,nonexistent,-1.8,93.876,-40,0.685,5008.7,no
+54,admin.,married,professional.course,no,no,no,telephone,may,mon,564,5,999,0,nonexistent,-1.8,93.876,-40,0.685,5008.7,no
+60,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,272,2,6,2,success,-1.8,93.876,-40,0.685,5008.7,yes
+33,admin.,married,university.degree,no,no,no,cellular,may,mon,157,2,15,3,failure,-1.8,93.876,-40,0.685,5008.7,no
+63,retired,married,professional.course,no,yes,yes,cellular,may,mon,444,2,14,1,success,-1.8,93.876,-40,0.685,5008.7,yes
+33,technician,married,university.degree,no,yes,no,cellular,may,mon,508,1,999,0,nonexistent,-1.8,93.876,-40,0.685,5008.7,yes
+74,retired,divorced,university.degree,no,yes,no,cellular,may,tue,387,1,999,0,nonexistent,-1.8,93.876,-40,0.688,5008.7,yes
+47,services,divorced,university.degree,no,yes,yes,cellular,may,tue,336,1,15,3,failure,-1.8,93.876,-40,0.688,5008.7,yes
+50,unemployed,married,high.school,no,no,no,telephone,may,tue,353,3,999,0,nonexistent,-1.8,93.876,-40,0.688,5008.7,yes
+29,admin.,married,high.school,no,no,no,telephone,may,wed,30,1,999,0,nonexistent,-1.8,93.876,-40,0.69,5008.7,no
+48,self-employed,divorced,university.degree,no,no,no,cellular,may,wed,661,3,999,0,nonexistent,-1.8,93.876,-40,0.69,5008.7,yes
+28,student,single,high.school,no,no,yes,cellular,may,wed,472,1,3,5,success,-1.8,93.876,-40,0.69,5008.7,yes
+68,retired,married,professional.course,no,unknown,unknown,cellular,may,thu,237,7,999,2,failure,-1.8,93.876,-40,0.692,5008.7,no
+68,retired,married,professional.course,no,no,yes,cellular,may,thu,420,1,999,1,failure,-1.8,93.876,-40,0.692,5008.7,yes
+45,unknown,married,university.degree,no,yes,no,cellular,may,thu,254,1,999,1,failure,-1.8,93.876,-40,0.692,5008.7,no
+45,management,married,basic.9y,no,yes,no,cellular,may,thu,165,1,999,3,failure,-1.8,93.876,-40,0.692,5008.7,no
+46,admin.,married,university.degree,no,no,no,cellular,may,thu,154,1,999,0,nonexistent,-1.8,93.876,-40,0.692,5008.7,yes
+31,admin.,married,professional.course,no,yes,yes,cellular,may,thu,291,2,999,0,nonexistent,-1.8,93.876,-40,0.692,5008.7,yes
+58,management,married,university.degree,no,yes,no,cellular,may,thu,342,2,999,0,nonexistent,-1.8,93.876,-40,0.692,5008.7,yes
+31,unemployed,single,high.school,no,no,no,cellular,may,thu,339,2,999,0,nonexistent,-1.8,93.876,-40,0.692,5008.7,no
+34,admin.,married,high.school,no,yes,no,cellular,may,thu,321,4,999,3,failure,-1.8,93.876,-40,0.692,5008.7,no
+46,admin.,married,university.degree,no,no,no,telephone,may,thu,351,3,999,0,nonexistent,-1.8,93.876,-40,0.692,5008.7,yes
+28,student,single,university.degree,no,unknown,unknown,cellular,may,fri,226,3,3,2,success,-1.8,93.876,-40,0.695,5008.7,yes
+31,services,single,basic.9y,no,yes,no,cellular,may,fri,214,4,999,0,nonexistent,-1.8,93.876,-40,0.695,5008.7,yes
+31,services,single,basic.9y,no,unknown,unknown,cellular,may,fri,429,1,999,3,failure,-1.8,93.876,-40,0.695,5008.7,no
+61,blue-collar,married,basic.6y,no,yes,yes,cellular,may,fri,403,1,3,2,success,-1.8,93.876,-40,0.695,5008.7,yes
+41,management,married,unknown,no,yes,no,cellular,may,fri,588,1,18,2,failure,-1.8,93.876,-40,0.695,5008.7,yes
+34,admin.,married,university.degree,no,no,no,cellular,may,fri,145,1,999,2,failure,-1.8,93.876,-40,0.695,5008.7,no
+34,admin.,married,university.degree,no,yes,no,cellular,may,fri,407,3,8,3,failure,-1.8,93.876,-40,0.695,5008.7,yes
+29,services,single,high.school,no,yes,no,cellular,may,fri,122,1,999,2,failure,-1.8,93.876,-40,0.695,5008.7,no
+45,self-employed,married,high.school,no,no,no,cellular,may,fri,374,1,999,1,failure,-1.8,93.876,-40,0.695,5008.7,yes
+28,student,single,university.degree,no,unknown,unknown,cellular,may,fri,1027,2,999,0,nonexistent,-1.8,93.876,-40,0.695,5008.7,yes
+24,unemployed,single,high.school,no,no,yes,cellular,may,mon,375,2,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes
+80,retired,married,basic.4y,no,no,no,cellular,may,mon,382,1,3,3,success,-1.8,93.876,-40,0.697,5008.7,yes
+51,management,married,university.degree,no,yes,no,cellular,may,mon,131,2,999,4,failure,-1.8,93.876,-40,0.697,5008.7,no
+36,technician,divorced,professional.course,no,yes,no,cellular,may,mon,341,7,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,no
+79,retired,married,basic.9y,no,yes,yes,cellular,may,mon,260,1,999,1,failure,-1.8,93.876,-40,0.697,5008.7,no
+24,unemployed,single,high.school,no,yes,no,cellular,may,mon,699,1,13,2,failure,-1.8,93.876,-40,0.697,5008.7,yes
+76,retired,divorced,basic.4y,no,yes,no,cellular,may,mon,168,1,999,1,failure,-1.8,93.876,-40,0.697,5008.7,yes
+45,technician,single,university.degree,no,no,no,cellular,may,tue,146,2,999,1,failure,-1.8,93.876,-40,0.697,5008.7,yes
+20,student,single,unknown,no,no,no,cellular,may,tue,530,2,3,5,success,-1.8,93.876,-40,0.697,5008.7,yes
+20,student,single,unknown,no,no,no,cellular,may,tue,202,2,12,1,success,-1.8,93.876,-40,0.697,5008.7,yes
+36,admin.,married,university.degree,no,no,no,cellular,may,tue,641,4,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes
+36,admin.,married,university.degree,no,yes,no,cellular,may,tue,196,1,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes
+77,retired,divorced,basic.4y,no,no,no,cellular,may,tue,393,1,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes
+22,student,single,high.school,no,yes,no,cellular,may,tue,272,1,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes
+46,blue-collar,married,professional.course,no,yes,no,cellular,may,wed,410,1,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes
+69,retired,married,high.school,no,no,no,cellular,may,wed,289,1,10,1,success,-1.8,93.876,-40,0.697,5008.7,yes
+92,retired,divorced,unknown,unknown,no,no,cellular,may,wed,405,3,999,1,failure,-1.8,93.876,-40,0.697,5008.7,yes
+64,housemaid,married,unknown,no,yes,no,telephone,may,wed,671,3,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes
+31,technician,divorced,university.degree,no,no,no,cellular,may,wed,175,3,7,3,success,-1.8,93.876,-40,0.697,5008.7,yes
+84,retired,married,basic.9y,no,yes,no,cellular,may,wed,267,1,999,1,failure,-1.8,93.876,-40,0.697,5008.7,no
+28,admin.,single,university.degree,no,no,no,cellular,may,wed,135,2,3,2,success,-1.8,93.876,-40,0.697,5008.7,yes
+28,admin.,married,high.school,no,no,yes,cellular,may,wed,530,2,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes
+70,retired,divorced,high.school,no,yes,no,telephone,may,wed,283,2,4,2,success,-1.8,93.876,-40,0.697,5008.7,yes
+29,services,single,high.school,no,yes,no,telephone,may,thu,93,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,yes
+60,retired,married,high.school,no,no,no,cellular,may,thu,181,3,6,1,success,-1.8,93.876,-40,0.699,5008.7,yes
+49,technician,married,university.degree,no,no,no,cellular,may,thu,188,1,999,1,failure,-1.8,93.876,-40,0.699,5008.7,no
+49,technician,married,university.degree,no,yes,no,cellular,may,thu,820,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,yes
+36,admin.,married,university.degree,no,yes,yes,cellular,may,thu,1178,1,6,2,success,-1.8,93.876,-40,0.699,5008.7,yes
+37,student,divorced,university.degree,no,yes,no,cellular,may,thu,489,1,999,1,failure,-1.8,93.876,-40,0.699,5008.7,yes
+40,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,thu,57,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no
+43,blue-collar,single,high.school,no,no,yes,telephone,may,thu,137,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no
+43,technician,married,professional.course,no,no,no,cellular,may,thu,460,1,999,1,failure,-1.8,93.876,-40,0.699,5008.7,yes
+34,technician,married,professional.course,no,yes,no,telephone,may,thu,24,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no
+54,admin.,divorced,basic.9y,no,yes,no,telephone,may,thu,74,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no
+79,retired,married,high.school,no,yes,no,cellular,may,thu,196,2,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no
+38,admin.,single,basic.9y,no,no,no,cellular,may,thu,275,2,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,yes
+37,student,divorced,university.degree,no,yes,yes,cellular,may,thu,417,2,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,yes
+61,admin.,married,unknown,no,no,no,cellular,may,thu,173,3,9,2,success,-1.8,93.876,-40,0.699,5008.7,yes
+22,student,single,high.school,unknown,yes,yes,telephone,may,thu,214,2,1,1,success,-1.8,93.876,-40,0.699,5008.7,yes
+35,unemployed,married,high.school,no,yes,no,telephone,may,fri,43,1,999,2,failure,-1.8,93.876,-40,0.699,5008.7,no
+33,admin.,married,university.degree,no,yes,no,cellular,may,fri,101,2,999,3,failure,-1.8,93.876,-40,0.699,5008.7,no
+23,unemployed,married,high.school,no,no,no,telephone,may,fri,35,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no
+32,services,single,university.degree,no,no,yes,cellular,may,fri,473,3,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,yes
+25,technician,single,high.school,no,yes,no,cellular,may,fri,581,3,999,2,failure,-1.8,93.876,-40,0.699,5008.7,no
+74,retired,married,professional.course,no,no,no,cellular,may,fri,309,4,999,3,failure,-1.8,93.876,-40,0.699,5008.7,no
+29,technician,married,professional.course,no,no,no,cellular,may,fri,538,2,999,2,failure,-1.8,93.876,-40,0.699,5008.7,yes
+30,admin.,single,university.degree,no,unknown,unknown,cellular,may,fri,466,3,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,yes
+26,unemployed,married,basic.4y,no,no,no,telephone,may,fri,29,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no
+72,retired,single,university.degree,no,yes,yes,cellular,may,fri,589,3,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no
+33,admin.,married,university.degree,no,yes,no,cellular,may,fri,663,3,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,yes
+72,retired,single,university.degree,no,no,no,cellular,may,fri,114,3,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no
+30,admin.,married,university.degree,no,no,yes,cellular,may,mon,85,2,9,2,success,-1.8,93.876,-40,0.701,5008.7,no
+49,technician,married,professional.course,no,yes,no,cellular,may,mon,113,1,999,0,nonexistent,-1.8,93.876,-40,0.701,5008.7,no
+31,unknown,single,high.school,no,yes,yes,telephone,may,mon,664,1,2,1,success,-1.8,93.876,-40,0.701,5008.7,no
+56,unemployed,married,basic.9y,no,no,no,cellular,may,mon,540,1,999,1,failure,-1.8,93.876,-40,0.701,5008.7,yes
+29,technician,single,high.school,no,no,no,cellular,may,mon,158,1,13,3,failure,-1.8,93.876,-40,0.701,5008.7,no
+27,student,single,basic.9y,no,yes,yes,cellular,may,mon,775,1,999,0,nonexistent,-1.8,93.876,-40,0.701,5008.7,yes
+47,admin.,single,university.degree,no,yes,yes,cellular,may,mon,178,1,999,0,nonexistent,-1.8,93.876,-40,0.701,5008.7,no
+31,unknown,single,high.school,no,no,no,cellular,may,mon,392,1,999,0,nonexistent,-1.8,93.876,-40,0.701,5008.7,yes
+31,unknown,single,high.school,no,no,no,cellular,may,mon,140,5,6,2,success,-1.8,93.876,-40,0.701,5008.7,no
+49,technician,single,university.degree,no,no,no,telephone,may,mon,8,1,999,0,nonexistent,-1.8,93.876,-40,0.701,5008.7,no
+42,management,single,high.school,no,yes,no,telephone,may,mon,113,1,999,0,nonexistent,-1.8,93.876,-40,0.701,5008.7,no
+47,admin.,single,university.degree,no,yes,no,cellular,jun,tue,119,1,999,4,failure,-1.7,94.055,-39.8,0.702,4991.6,no
+37,admin.,single,university.degree,no,yes,yes,cellular,jun,tue,209,3,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,no
+29,admin.,married,university.degree,no,yes,no,cellular,jun,tue,201,1,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,yes
+29,blue-collar,single,basic.9y,no,no,no,telephone,jun,tue,1563,1,6,2,success,-1.7,94.055,-39.8,0.702,4991.6,no
+25,services,single,unknown,no,yes,no,cellular,jun,tue,318,1,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,yes
+25,services,single,unknown,no,yes,no,cellular,jun,tue,516,1,13,2,failure,-1.7,94.055,-39.8,0.702,4991.6,yes
+76,housemaid,married,basic.4y,no,yes,no,cellular,jun,tue,326,1,999,1,failure,-1.7,94.055,-39.8,0.702,4991.6,yes
+25,services,single,unknown,no,yes,no,cellular,jun,tue,154,2,3,3,success,-1.7,94.055,-39.8,0.702,4991.6,yes
+25,services,single,unknown,no,yes,no,cellular,jun,tue,383,2,999,2,failure,-1.7,94.055,-39.8,0.702,4991.6,no
+39,admin.,married,high.school,no,yes,no,cellular,jun,tue,165,2,999,1,failure,-1.7,94.055,-39.8,0.702,4991.6,no
+28,services,married,high.school,no,yes,yes,telephone,jun,tue,12,1,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,no
+29,admin.,married,university.degree,no,no,yes,cellular,jun,tue,347,3,5,1,success,-1.7,94.055,-39.8,0.702,4991.6,yes
+23,technician,single,professional.course,unknown,yes,yes,cellular,jun,tue,421,1,4,3,success,-1.7,94.055,-39.8,0.702,4991.6,no
+59,retired,divorced,professional.course,no,no,no,telephone,jun,tue,8,1,999,1,failure,-1.7,94.055,-39.8,0.702,4991.6,no
+30,technician,single,professional.course,no,no,no,telephone,jun,tue,8,1,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,no
+76,housemaid,married,basic.4y,no,no,no,cellular,jun,tue,296,5,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,yes
+51,technician,married,university.degree,no,yes,no,cellular,jun,tue,303,1,10,1,success,-1.7,94.055,-39.8,0.702,4991.6,yes
+39,technician,married,university.degree,no,no,yes,cellular,jun,tue,434,2,999,1,failure,-1.7,94.055,-39.8,0.702,4991.6,yes
+20,technician,single,professional.course,no,yes,no,telephone,jun,tue,52,1,999,1,failure,-1.7,94.055,-39.8,0.702,4991.6,no
+40,blue-collar,married,basic.6y,no,yes,no,telephone,jun,tue,5,1,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,no
+52,admin.,divorced,university.degree,no,yes,no,telephone,jun,tue,36,1,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,no
+34,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,7,1,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,no
+22,admin.,single,university.degree,no,no,no,cellular,jun,wed,407,1,3,1,success,-1.7,94.055,-39.8,0.704,4991.6,yes
+48,admin.,divorced,high.school,no,no,no,cellular,jun,wed,657,1,6,1,success,-1.7,94.055,-39.8,0.704,4991.6,yes
+29,technician,single,professional.course,no,yes,no,cellular,jun,wed,226,2,6,1,success,-1.7,94.055,-39.8,0.704,4991.6,yes
+29,admin.,single,university.degree,no,yes,no,cellular,jun,wed,147,1,999,2,failure,-1.7,94.055,-39.8,0.704,4991.6,no
+34,admin.,married,high.school,no,yes,no,cellular,jun,wed,238,1,6,2,success,-1.7,94.055,-39.8,0.704,4991.6,yes
+34,admin.,married,high.school,no,yes,no,cellular,jun,wed,161,1,5,1,success,-1.7,94.055,-39.8,0.704,4991.6,no
+32,unemployed,single,professional.course,no,yes,yes,cellular,jun,wed,310,1,999,0,nonexistent,-1.7,94.055,-39.8,0.704,4991.6,yes
+31,services,married,high.school,no,no,yes,telephone,jun,fri,35,1,999,0,nonexistent,-1.7,94.055,-39.8,0.707,4991.6,no
+52,self-employed,married,university.degree,no,yes,no,telephone,jun,fri,32,1,999,0,nonexistent,-1.7,94.055,-39.8,0.707,4991.6,no
+38,blue-collar,married,basic.6y,no,no,yes,cellular,jun,fri,148,2,3,2,success,-1.7,94.055,-39.8,0.707,4991.6,no
+38,blue-collar,married,basic.6y,no,no,no,cellular,jun,fri,346,2,5,3,success,-1.7,94.055,-39.8,0.707,4991.6,no
+38,blue-collar,married,basic.6y,no,yes,no,cellular,jun,fri,106,1,999,2,failure,-1.7,94.055,-39.8,0.707,4991.6,no
+29,services,single,high.school,no,no,yes,telephone,jun,mon,6,1,999,0,nonexistent,-1.7,94.055,-39.8,0.711,4991.6,no
+28,admin.,married,high.school,no,no,yes,telephone,jun,mon,13,1,999,0,nonexistent,-1.7,94.055,-39.8,0.711,4991.6,no
+47,admin.,divorced,high.school,no,yes,no,telephone,jun,mon,302,1,999,0,nonexistent,-1.7,94.055,-39.8,0.711,4991.6,yes
+48,admin.,married,high.school,no,yes,no,telephone,jun,mon,54,1,999,0,nonexistent,-1.7,94.055,-39.8,0.711,4991.6,no
+32,blue-collar,single,basic.9y,no,yes,no,telephone,jun,tue,29,1,999,0,nonexistent,-1.7,94.055,-39.8,0.713,4991.6,no
+35,technician,single,professional.course,no,no,no,telephone,jun,tue,149,1,999,0,nonexistent,-1.7,94.055,-39.8,0.713,4991.6,no
+35,technician,single,professional.course,no,yes,no,cellular,jun,tue,187,1,6,2,success,-1.7,94.055,-39.8,0.713,4991.6,yes
+47,blue-collar,married,basic.9y,no,unknown,unknown,cellular,jun,tue,380,1,999,0,nonexistent,-1.7,94.055,-39.8,0.713,4991.6,yes
+47,blue-collar,married,basic.9y,no,no,no,cellular,jun,tue,544,1,999,0,nonexistent,-1.7,94.055,-39.8,0.713,4991.6,no
+21,student,single,high.school,no,yes,no,telephone,jun,tue,30,1,14,2,success,-1.7,94.055,-39.8,0.713,4991.6,no
+29,unemployed,single,university.degree,no,yes,no,telephone,jun,tue,198,1,999,0,nonexistent,-1.7,94.055,-39.8,0.713,4991.6,no
+26,entrepreneur,single,high.school,no,no,no,telephone,jun,tue,49,1,999,0,nonexistent,-1.7,94.055,-39.8,0.713,4991.6,no
+37,unemployed,married,high.school,no,yes,no,telephone,jun,tue,29,1,999,0,nonexistent,-1.7,94.055,-39.8,0.713,4991.6,no
+34,technician,married,high.school,no,yes,no,cellular,jun,wed,190,1,3,4,success,-1.7,94.055,-39.8,0.715,4991.6,yes
+29,admin.,single,university.degree,no,yes,no,cellular,jun,wed,200,1,6,3,success,-1.7,94.055,-39.8,0.715,4991.6,yes
+34,admin.,married,university.degree,no,no,no,cellular,jun,wed,150,1,3,2,success,-1.7,94.055,-39.8,0.715,4991.6,yes
+33,admin.,single,university.degree,no,no,no,cellular,jun,wed,206,1,3,1,success,-1.7,94.055,-39.8,0.715,4991.6,yes
+44,technician,married,university.degree,no,yes,no,telephone,jun,wed,712,1,6,3,failure,-1.7,94.055,-39.8,0.715,4991.6,yes
+38,technician,single,high.school,no,no,no,telephone,jun,wed,118,1,999,0,nonexistent,-1.7,94.055,-39.8,0.715,4991.6,no
+29,admin.,single,university.degree,no,yes,no,telephone,jun,wed,294,2,3,1,success,-1.7,94.055,-39.8,0.715,4991.6,no
+44,technician,married,university.degree,no,no,no,cellular,jun,wed,874,2,999,1,failure,-1.7,94.055,-39.8,0.715,4991.6,yes
+28,services,married,high.school,no,no,yes,cellular,jun,wed,479,2,6,2,success,-1.7,94.055,-39.8,0.715,4991.6,yes
+27,blue-collar,single,university.degree,no,no,no,cellular,jun,wed,722,2,999,0,nonexistent,-1.7,94.055,-39.8,0.715,4991.6,no
+29,admin.,single,university.degree,no,no,no,cellular,jun,wed,192,2,3,4,success,-1.7,94.055,-39.8,0.715,4991.6,yes
+27,admin.,married,high.school,no,yes,no,telephone,jun,wed,46,1,999,0,nonexistent,-1.7,94.055,-39.8,0.715,4991.6,no
+28,admin.,single,university.degree,no,no,no,telephone,jun,fri,138,1,999,0,nonexistent,-1.7,94.055,-39.8,0.719,4991.6,no
+37,admin.,married,university.degree,no,yes,no,cellular,jun,fri,135,1,999,2,failure,-1.7,94.055,-39.8,0.719,4991.6,no
+37,admin.,married,university.degree,no,unknown,unknown,cellular,jun,fri,602,1,10,1,success,-1.7,94.055,-39.8,0.719,4991.6,yes
+35,admin.,single,university.degree,no,no,yes,cellular,jun,mon,141,2,4,3,success,-1.7,94.055,-39.8,0.72,4991.6,no
+50,management,married,university.degree,no,no,no,telephone,jun,mon,278,5,6,1,success,-1.7,94.055,-39.8,0.72,4991.6,yes
+36,management,divorced,university.degree,no,yes,no,cellular,jun,mon,422,1,3,4,success,-1.7,94.055,-39.8,0.72,4991.6,yes
+23,student,single,high.school,no,yes,no,telephone,jun,mon,434,1,9,1,success,-1.7,94.055,-39.8,0.72,4991.6,yes
+39,technician,married,university.degree,no,yes,no,cellular,jun,mon,187,1,3,5,success,-1.7,94.055,-39.8,0.72,4991.6,yes
+89,retired,divorced,basic.4y,no,no,no,cellular,jun,mon,245,1,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,yes
+30,self-employed,married,university.degree,no,yes,no,cellular,jun,mon,661,1,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,yes
+21,student,single,high.school,no,yes,no,cellular,jun,mon,270,1,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,yes
+39,management,married,university.degree,no,no,no,cellular,jun,mon,168,1,999,1,failure,-1.7,94.055,-39.8,0.72,4991.6,no
+30,self-employed,married,university.degree,no,no,no,cellular,jun,mon,212,4,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,yes
+36,self-employed,single,university.degree,no,no,yes,cellular,jun,mon,458,1,4,4,success,-1.7,94.055,-39.8,0.72,4991.6,yes
+39,technician,married,university.degree,no,yes,no,cellular,jun,mon,713,2,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,yes
+59,unemployed,married,basic.4y,no,yes,no,cellular,jun,mon,614,1,6,2,success,-1.7,94.055,-39.8,0.72,4991.6,yes
+35,technician,single,university.degree,no,no,no,cellular,jun,mon,516,1,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,no
+35,admin.,single,university.degree,no,yes,no,cellular,jun,mon,293,1,14,1,success,-1.7,94.055,-39.8,0.72,4991.6,yes
+22,student,single,high.school,no,no,yes,cellular,jun,mon,563,1,12,2,failure,-1.7,94.055,-39.8,0.72,4991.6,yes
+28,services,single,university.degree,no,no,no,telephone,jun,mon,215,1,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,no
+37,admin.,married,university.degree,no,yes,no,telephone,jun,mon,30,1,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,no
+44,services,single,high.school,no,no,no,telephone,jun,mon,20,1,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,no
+33,services,married,high.school,no,no,no,cellular,jun,mon,472,1,999,1,failure,-1.7,94.055,-39.8,0.72,4991.6,no
+27,admin.,married,university.degree,no,yes,no,cellular,jun,mon,262,3,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,no
+29,self-employed,single,university.degree,no,yes,no,cellular,jun,mon,167,2,999,1,failure,-1.7,94.055,-39.8,0.72,4991.6,yes
+25,student,single,high.school,no,no,no,cellular,jun,mon,485,2,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,yes
+27,student,single,university.degree,no,no,yes,cellular,jun,mon,237,2,3,4,success,-1.7,94.055,-39.8,0.72,4991.6,no
+31,technician,married,professional.course,no,yes,no,cellular,jun,tue,619,2,3,1,success,-1.7,94.055,-39.8,0.723,4991.6,yes
+29,admin.,married,high.school,no,yes,no,cellular,jun,tue,379,2,13,1,success,-1.7,94.055,-39.8,0.723,4991.6,yes
+56,management,married,basic.6y,no,yes,no,cellular,jun,tue,910,1,7,2,success,-1.7,94.055,-39.8,0.723,4991.6,yes
+60,housemaid,married,basic.4y,no,yes,no,cellular,jun,tue,700,3,999,1,failure,-1.7,94.055,-39.8,0.723,4991.6,yes
+29,admin.,married,high.school,no,unknown,unknown,cellular,jun,tue,238,6,3,3,success,-1.7,94.055,-39.8,0.723,4991.6,no
+31,technician,married,professional.course,no,yes,no,cellular,jun,tue,243,5,9,2,success,-1.7,94.055,-39.8,0.723,4991.6,yes
+31,technician,married,professional.course,no,yes,no,cellular,jun,tue,250,4,3,2,success,-1.7,94.055,-39.8,0.723,4991.6,no
+37,unemployed,married,university.degree,no,yes,no,telephone,jun,tue,126,3,2,2,success,-1.7,94.055,-39.8,0.723,4991.6,no
+35,management,divorced,university.degree,no,yes,yes,cellular,jun,tue,270,2,12,2,success,-1.7,94.055,-39.8,0.723,4991.6,no
+31,technician,married,professional.course,no,yes,no,telephone,jun,tue,208,1,999,0,nonexistent,-1.7,94.055,-39.8,0.723,4991.6,yes
+29,admin.,married,high.school,no,yes,no,cellular,jun,wed,292,1,999,1,failure,-1.7,94.055,-39.8,0.727,4991.6,yes
+39,entrepreneur,single,university.degree,no,yes,no,telephone,jun,wed,58,1,999,0,nonexistent,-1.7,94.055,-39.8,0.727,4991.6,no
+33,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,15,1,999,2,failure,-1.7,94.055,-39.8,0.727,4991.6,no
+29,admin.,married,high.school,no,yes,no,cellular,jun,wed,605,3,999,0,nonexistent,-1.7,94.055,-39.8,0.727,4991.6,yes
+24,student,single,high.school,no,no,no,cellular,jun,wed,288,6,6,1,success,-1.7,94.055,-39.8,0.727,4991.6,yes
+28,management,single,university.degree,no,yes,no,cellular,jun,thu,339,3,6,2,success,-1.7,94.055,-39.8,0.729,4991.6,yes
+36,services,married,high.school,no,no,no,cellular,jun,thu,101,3,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,no
+28,management,single,university.degree,no,yes,no,cellular,jun,thu,383,1,22,1,success,-1.7,94.055,-39.8,0.729,4991.6,yes
+29,technician,divorced,professional.course,no,yes,yes,telephone,jun,thu,247,1,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,no
+43,blue-collar,married,professional.course,no,yes,yes,cellular,jun,thu,1720,1,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,yes
+38,blue-collar,single,high.school,no,yes,yes,telephone,jun,thu,21,1,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,no
+24,student,single,high.school,no,yes,yes,cellular,jun,thu,344,1,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,no
+24,student,single,high.school,no,yes,no,cellular,jun,thu,530,1,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,no
+28,management,single,university.degree,no,yes,no,cellular,jun,thu,169,1,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,yes
+78,retired,divorced,unknown,no,no,no,cellular,jun,thu,282,4,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,yes
+24,student,single,high.school,no,no,yes,cellular,jun,thu,176,2,12,2,failure,-1.7,94.055,-39.8,0.729,4991.6,yes
+78,retired,divorced,unknown,no,no,no,cellular,jun,thu,544,1,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,yes
+65,unknown,married,unknown,no,yes,no,cellular,jun,thu,301,2,4,2,success,-1.7,94.055,-39.8,0.729,4991.6,yes
+26,admin.,single,university.degree,no,no,yes,cellular,jun,fri,91,2,6,1,success,-1.7,94.055,-39.8,0.732,4991.6,no
+33,admin.,married,university.degree,no,no,no,telephone,jun,fri,80,1,999,0,nonexistent,-1.7,94.055,-39.8,0.732,4991.6,no
+70,blue-collar,married,basic.4y,no,no,yes,cellular,jun,fri,252,1,3,1,success,-1.7,94.055,-39.8,0.732,4991.6,yes
+62,retired,divorced,high.school,no,yes,no,cellular,jun,fri,201,4,999,0,nonexistent,-1.7,94.055,-39.8,0.732,4991.6,no
+41,entrepreneur,married,university.degree,no,yes,no,telephone,jun,fri,23,1,999,0,nonexistent,-1.7,94.055,-39.8,0.732,4991.6,no
+30,admin.,married,high.school,no,yes,no,cellular,jun,fri,215,1,12,1,success,-1.7,94.055,-39.8,0.732,4991.6,yes
+34,admin.,single,university.degree,no,yes,no,telephone,jun,mon,100,1,999,0,nonexistent,-1.7,94.055,-39.8,0.733,4991.6,no
+27,technician,single,professional.course,no,no,no,cellular,jun,tue,130,2,3,3,success,-1.7,94.055,-39.8,0.737,4991.6,no
+27,technician,single,professional.course,no,no,no,cellular,jun,tue,136,2,999,0,nonexistent,-1.7,94.055,-39.8,0.737,4991.6,no
+18,student,single,basic.4y,no,yes,no,cellular,jun,tue,154,1,999,0,nonexistent,-1.7,94.055,-39.8,0.737,4991.6,no
+24,student,single,high.school,no,no,no,cellular,jun,tue,292,1,999,1,failure,-1.7,94.055,-39.8,0.737,4991.6,no
+36,management,married,university.degree,no,no,no,cellular,jun,tue,867,1,3,2,success,-1.7,94.055,-39.8,0.737,4991.6,yes
+36,management,married,university.degree,no,no,no,cellular,jun,tue,522,1,6,2,success,-1.7,94.055,-39.8,0.737,4991.6,yes
+32,admin.,single,university.degree,no,no,no,cellular,jun,tue,856,1,12,2,success,-1.7,94.055,-39.8,0.737,4991.6,yes
+45,admin.,divorced,university.degree,no,no,yes,cellular,jun,wed,79,1,3,2,success,-1.7,94.055,-39.8,0.739,4991.6,no
+27,admin.,single,high.school,no,yes,no,telephone,jun,wed,193,1,999,1,failure,-1.7,94.055,-39.8,0.739,4991.6,no
+36,admin.,single,university.degree,no,yes,no,cellular,jun,wed,883,1,999,1,failure,-1.7,94.055,-39.8,0.739,4991.6,no
+36,admin.,single,university.degree,no,no,no,cellular,jun,wed,706,1,7,1,success,-1.7,94.055,-39.8,0.739,4991.6,yes
+36,blue-collar,single,high.school,no,yes,yes,cellular,jun,wed,342,2,3,1,success,-1.7,94.055,-39.8,0.739,4991.6,yes
+35,technician,divorced,professional.course,no,no,no,cellular,jun,wed,66,1,13,2,failure,-1.7,94.055,-39.8,0.739,4991.6,no
+36,admin.,single,university.degree,no,yes,yes,cellular,jun,wed,1407,1,999,0,nonexistent,-1.7,94.055,-39.8,0.739,4991.6,yes
+36,blue-collar,single,high.school,no,no,no,cellular,jun,wed,339,1,6,1,success,-1.7,94.055,-39.8,0.739,4991.6,yes
+35,technician,divorced,professional.course,no,yes,yes,cellular,jun,wed,181,1,999,0,nonexistent,-1.7,94.055,-39.8,0.739,4991.6,no
+37,admin.,married,high.school,no,no,no,cellular,jun,wed,671,3,999,0,nonexistent,-1.7,94.055,-39.8,0.739,4991.6,yes
+40,blue-collar,married,basic.9y,no,yes,no,cellular,jun,wed,133,3,3,2,success,-1.7,94.055,-39.8,0.739,4991.6,no
+24,student,single,high.school,no,no,no,cellular,jun,wed,112,2,14,2,success,-1.7,94.055,-39.8,0.739,4991.6,no
+33,management,single,university.degree,no,yes,no,cellular,jun,wed,442,2,999,3,failure,-1.7,94.055,-39.8,0.739,4991.6,no
+22,student,single,high.school,no,yes,no,telephone,jun,wed,355,1,999,2,failure,-1.7,94.055,-39.8,0.739,4991.6,no
+59,technician,married,professional.course,no,no,no,cellular,jun,thu,1207,4,999,1,failure,-1.7,94.055,-39.8,0.742,4991.6,yes
+74,retired,divorced,basic.4y,no,no,no,telephone,jun,thu,369,1,999,1,failure,-1.7,94.055,-39.8,0.742,4991.6,no
+30,admin.,single,university.degree,no,yes,no,telephone,jun,thu,316,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no
+44,self-employed,divorced,professional.course,no,yes,no,cellular,jun,thu,310,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,yes
+43,management,married,university.degree,no,no,no,cellular,jun,thu,185,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no
+44,self-employed,divorced,professional.course,no,yes,yes,cellular,jun,thu,134,1,999,1,failure,-1.7,94.055,-39.8,0.742,4991.6,no
+31,unemployed,single,high.school,no,yes,no,cellular,jun,thu,167,3,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no
+37,unemployed,single,university.degree,no,yes,no,cellular,jun,thu,122,2,6,1,success,-1.7,94.055,-39.8,0.742,4991.6,no
+30,admin.,single,university.degree,no,no,no,cellular,jun,thu,124,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no
+38,technician,single,university.degree,no,yes,yes,cellular,jun,thu,288,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no
+68,retired,married,basic.4y,no,yes,no,cellular,jun,thu,220,2,999,1,failure,-1.7,94.055,-39.8,0.742,4991.6,no
+25,services,single,basic.9y,no,no,no,telephone,jun,thu,180,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no
+33,management,single,high.school,no,no,no,telephone,jun,thu,15,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no
+33,admin.,married,high.school,no,no,no,telephone,jun,thu,11,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no
+26,unemployed,single,high.school,no,yes,no,telephone,jun,thu,22,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no
+39,admin.,married,university.degree,no,yes,no,telephone,jun,thu,52,1,999,1,failure,-1.7,94.055,-39.8,0.742,4991.6,no
+47,technician,divorced,professional.course,no,yes,no,telephone,jun,thu,9,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no
+69,retired,divorced,professional.course,no,no,no,cellular,jun,fri,213,6,12,2,failure,-1.7,94.055,-39.8,0.748,4991.6,yes
+37,technician,single,university.degree,no,yes,no,cellular,jun,fri,300,1,999,2,failure,-1.7,94.055,-39.8,0.748,4991.6,yes
+23,student,single,basic.6y,no,no,no,cellular,jun,fri,276,1,14,1,success,-1.7,94.055,-39.8,0.748,4991.6,yes
+30,technician,married,university.degree,no,no,yes,cellular,jun,fri,131,1,999,1,failure,-1.7,94.055,-39.8,0.748,4991.6,no
+30,technician,married,university.degree,no,no,no,cellular,jun,fri,171,1,7,1,success,-1.7,94.055,-39.8,0.748,4991.6,no
+36,admin.,married,university.degree,no,yes,yes,cellular,jun,fri,427,1,4,4,success,-1.7,94.055,-39.8,0.748,4991.6,no
+53,housemaid,married,high.school,no,yes,no,cellular,jun,fri,195,6,999,0,nonexistent,-1.7,94.055,-39.8,0.748,4991.6,no
+36,unemployed,married,professional.course,no,yes,no,telephone,jun,fri,12,1,999,0,nonexistent,-1.7,94.055,-39.8,0.748,4991.6,no
+83,retired,divorced,basic.4y,no,no,yes,cellular,jun,fri,472,2,999,0,nonexistent,-1.7,94.055,-39.8,0.748,4991.6,yes
+37,unemployed,single,university.degree,no,no,no,cellular,jun,fri,249,2,999,0,nonexistent,-1.7,94.055,-39.8,0.748,4991.6,no
+69,retired,divorced,professional.course,no,yes,no,telephone,jun,fri,359,5,999,0,nonexistent,-1.7,94.055,-39.8,0.748,4991.6,no
+27,admin.,single,university.degree,no,yes,no,cellular,jun,fri,266,2,999,1,failure,-1.7,94.055,-39.8,0.748,4991.6,yes
+53,management,divorced,university.degree,no,yes,no,cellular,jun,mon,348,6,999,2,failure,-1.7,94.055,-39.8,0.754,4991.6,no
+33,services,married,high.school,no,yes,yes,telephone,jun,mon,54,1,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,no
+37,unemployed,married,university.degree,unknown,yes,no,cellular,jun,mon,614,3,3,2,success,-1.7,94.055,-39.8,0.754,4991.6,yes
+51,admin.,married,university.degree,no,no,no,cellular,jun,mon,297,4,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,yes
+51,admin.,married,university.degree,no,yes,no,cellular,jun,mon,281,3,10,3,success,-1.7,94.055,-39.8,0.754,4991.6,yes
+32,technician,married,university.degree,no,no,no,cellular,jun,mon,132,3,999,1,failure,-1.7,94.055,-39.8,0.754,4991.6,no
+53,management,divorced,university.degree,no,no,no,cellular,jun,mon,345,1,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,yes
+51,blue-collar,married,basic.4y,no,no,yes,cellular,jun,mon,325,1,3,1,success,-1.7,94.055,-39.8,0.754,4991.6,yes
+34,admin.,single,university.degree,no,yes,no,cellular,jun,mon,452,1,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,yes
+32,blue-collar,single,high.school,no,no,no,cellular,jun,mon,247,1,2,2,success,-1.7,94.055,-39.8,0.754,4991.6,yes
+32,blue-collar,single,high.school,no,no,no,cellular,jun,mon,197,1,999,1,failure,-1.7,94.055,-39.8,0.754,4991.6,no
+37,self-employed,married,university.degree,no,no,no,telephone,jun,mon,363,1,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,yes
+37,unemployed,married,university.degree,unknown,no,no,telephone,jun,mon,198,1,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,yes
+62,blue-collar,married,high.school,no,yes,no,cellular,jun,mon,563,4,4,3,success,-1.7,94.055,-39.8,0.754,4991.6,yes
+35,management,married,university.degree,no,yes,no,cellular,jun,mon,150,3,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,no
+37,self-employed,married,university.degree,no,no,no,cellular,jun,mon,181,2,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,no
+68,retired,married,basic.4y,unknown,yes,no,cellular,jun,mon,383,3,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,no
+37,self-employed,married,university.degree,no,no,no,telephone,jun,mon,133,4,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,no
+38,technician,single,university.degree,no,yes,no,cellular,jun,mon,737,6,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,yes
+36,management,married,university.degree,no,no,no,cellular,jun,tue,265,1,999,1,failure,-1.7,94.055,-39.8,0.761,4991.6,yes
+81,retired,divorced,high.school,no,no,no,cellular,jun,tue,279,1,999,4,failure,-1.7,94.055,-39.8,0.761,4991.6,no
+34,unemployed,single,university.degree,no,no,no,cellular,jun,tue,401,1,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,yes
+50,blue-collar,married,basic.4y,no,no,no,cellular,jun,tue,135,4,999,1,failure,-1.7,94.055,-39.8,0.761,4991.6,no
+76,retired,married,professional.course,unknown,yes,no,cellular,jun,tue,352,1,3,1,success,-1.7,94.055,-39.8,0.761,4991.6,yes
+76,retired,married,professional.course,unknown,yes,no,cellular,jun,tue,295,1,9,2,success,-1.7,94.055,-39.8,0.761,4991.6,yes
+56,retired,married,high.school,no,no,no,cellular,jun,tue,383,1,3,1,success,-1.7,94.055,-39.8,0.761,4991.6,yes
+64,retired,married,professional.course,no,no,no,cellular,jun,tue,222,1,999,3,failure,-1.7,94.055,-39.8,0.761,4991.6,yes
+27,unemployed,single,basic.4y,no,no,no,cellular,jun,tue,238,1,999,2,failure,-1.7,94.055,-39.8,0.761,4991.6,no
+27,admin.,single,high.school,no,no,no,cellular,jun,tue,586,2,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,yes
+23,student,single,basic.9y,no,yes,no,cellular,jun,tue,189,1,6,3,success,-1.7,94.055,-39.8,0.761,4991.6,no
+35,admin.,married,university.degree,no,yes,no,cellular,jun,tue,385,1,5,1,success,-1.7,94.055,-39.8,0.761,4991.6,no
+25,student,single,high.school,no,yes,yes,cellular,jun,tue,660,2,6,3,success,-1.7,94.055,-39.8,0.761,4991.6,yes
+38,entrepreneur,married,basic.6y,no,no,no,cellular,jun,tue,271,1,2,3,success,-1.7,94.055,-39.8,0.761,4991.6,yes
+38,entrepreneur,married,basic.6y,no,yes,no,cellular,jun,tue,189,1,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,no
+27,admin.,single,high.school,no,no,no,cellular,jun,tue,421,2,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,yes
+32,management,single,university.degree,no,no,no,cellular,jun,tue,264,4,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,no
+30,technician,single,professional.course,no,yes,no,telephone,jun,tue,12,1,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,no
+33,admin.,married,university.degree,no,no,no,telephone,jun,tue,286,2,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,no
+34,unemployed,single,university.degree,no,yes,no,cellular,jun,tue,167,2,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,yes
+32,blue-collar,married,basic.4y,no,yes,no,telephone,jun,tue,13,1,999,1,failure,-1.7,94.055,-39.8,0.761,4991.6,no
+26,technician,single,professional.course,no,no,no,telephone,jun,tue,8,1,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,no
+26,admin.,married,high.school,no,no,no,cellular,jun,wed,598,4,12,3,failure,-1.7,94.055,-39.8,0.767,4991.6,yes
+27,unknown,single,university.degree,no,yes,no,cellular,jun,wed,665,4,3,2,success,-1.7,94.055,-39.8,0.767,4991.6,yes
+52,admin.,married,university.degree,no,yes,no,cellular,jun,wed,255,2,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,no
+26,admin.,married,high.school,no,no,no,cellular,jun,wed,428,1,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,no
+30,technician,single,university.degree,no,yes,no,telephone,jun,wed,263,1,999,2,failure,-1.7,94.055,-39.8,0.767,4991.6,yes
+27,unknown,single,university.degree,no,yes,no,cellular,jun,wed,121,3,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,no
+33,services,married,high.school,no,yes,no,cellular,jun,wed,274,2,12,2,success,-1.7,94.055,-39.8,0.767,4991.6,yes
+56,retired,married,basic.4y,no,yes,no,cellular,jun,wed,337,2,3,2,success,-1.7,94.055,-39.8,0.767,4991.6,yes
+29,technician,single,high.school,no,yes,no,telephone,jun,wed,6,1,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,no
+86,retired,single,basic.9y,unknown,no,no,telephone,jun,wed,955,1,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,yes
+21,student,single,high.school,no,yes,yes,cellular,jun,wed,286,2,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,yes
+29,admin.,single,high.school,no,no,no,cellular,jun,wed,108,5,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,no
+26,admin.,married,high.school,no,yes,yes,cellular,jun,wed,275,2,999,1,failure,-1.7,94.055,-39.8,0.767,4991.6,yes
+66,retired,married,basic.4y,no,no,yes,cellular,jun,wed,319,2,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,yes
+31,technician,single,university.degree,no,yes,no,telephone,jun,wed,119,1,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,no
+52,admin.,married,university.degree,no,yes,yes,cellular,jun,wed,241,4,999,3,failure,-1.7,94.055,-39.8,0.767,4991.6,no
+26,admin.,married,high.school,no,no,no,cellular,jun,wed,301,5,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,yes
+37,admin.,single,high.school,no,yes,yes,cellular,jul,thu,114,4,999,2,failure,-1.7,94.215,-40.3,0.782,4991.6,no
+37,admin.,single,high.school,no,no,no,telephone,jul,thu,494,4,999,3,failure,-1.7,94.215,-40.3,0.782,4991.6,no
+35,management,married,university.degree,no,yes,yes,telephone,jul,thu,165,1,999,1,failure,-1.7,94.215,-40.3,0.782,4991.6,no
+34,admin.,married,high.school,no,yes,no,telephone,jul,thu,12,1,999,1,failure,-1.7,94.215,-40.3,0.782,4991.6,no
+29,admin.,single,high.school,no,no,no,telephone,jul,thu,28,1,999,0,nonexistent,-1.7,94.215,-40.3,0.782,4991.6,no
+60,management,married,university.degree,no,yes,yes,cellular,jul,thu,395,1,4,2,success,-1.7,94.215,-40.3,0.782,4991.6,yes
+37,admin.,single,high.school,no,no,no,cellular,jul,thu,609,2,7,3,success,-1.7,94.215,-40.3,0.782,4991.6,yes
+27,admin.,single,high.school,no,no,no,cellular,jul,thu,113,2,999,2,failure,-1.7,94.215,-40.3,0.782,4991.6,no
+38,admin.,married,high.school,no,no,no,cellular,jul,thu,561,2,10,2,success,-1.7,94.215,-40.3,0.782,4991.6,yes
+33,blue-collar,married,university.degree,no,no,no,telephone,jul,thu,12,1,999,0,nonexistent,-1.7,94.215,-40.3,0.782,4991.6,no
+38,unemployed,divorced,high.school,no,no,no,telephone,jul,thu,10,1,999,0,nonexistent,-1.7,94.215,-40.3,0.782,4991.6,no
+39,blue-collar,married,basic.6y,no,yes,no,telephone,jul,fri,25,1,14,1,success,-1.7,94.215,-40.3,0.79,4991.6,no
+27,services,single,high.school,no,no,no,cellular,jul,fri,423,3,999,0,nonexistent,-1.7,94.215,-40.3,0.79,4991.6,yes
+37,admin.,single,university.degree,no,yes,no,cellular,jul,fri,96,2,4,3,success,-1.7,94.215,-40.3,0.79,4991.6,no
+33,admin.,married,university.degree,no,yes,yes,cellular,jul,fri,217,3,999,0,nonexistent,-1.7,94.215,-40.3,0.79,4991.6,yes
+37,admin.,single,university.degree,no,yes,no,cellular,jul,fri,844,2,6,3,success,-1.7,94.215,-40.3,0.79,4991.6,no
+55,admin.,married,university.degree,no,yes,no,cellular,jul,fri,687,1,999,2,failure,-1.7,94.215,-40.3,0.79,4991.6,yes
+35,admin.,single,university.degree,no,no,no,cellular,jul,fri,391,5,4,1,success,-1.7,94.215,-40.3,0.79,4991.6,yes
+27,services,single,high.school,no,unknown,unknown,cellular,jul,fri,179,1,999,1,failure,-1.7,94.215,-40.3,0.79,4991.6,yes
+25,blue-collar,single,basic.9y,no,no,yes,cellular,jul,fri,667,1,999,0,nonexistent,-1.7,94.215,-40.3,0.79,4991.6,yes
+55,admin.,married,university.degree,no,yes,yes,cellular,jul,fri,129,2,999,1,failure,-1.7,94.215,-40.3,0.79,4991.6,no
+48,admin.,single,university.degree,no,yes,no,cellular,jul,fri,194,2,3,1,success,-1.7,94.215,-40.3,0.79,4991.6,yes
+52,admin.,single,high.school,no,no,no,telephone,jul,mon,9,1,999,1,failure,-1.7,94.215,-40.3,0.793,4991.6,no
+41,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,101,3,999,0,nonexistent,-1.7,94.215,-40.3,0.793,4991.6,no
+34,technician,single,university.degree,no,yes,no,cellular,jul,mon,251,3,999,0,nonexistent,-1.7,94.215,-40.3,0.793,4991.6,yes
+25,admin.,married,high.school,no,yes,no,telephone,jul,mon,29,1,999,0,nonexistent,-1.7,94.215,-40.3,0.793,4991.6,no
+32,technician,married,university.degree,no,yes,yes,telephone,jul,mon,17,1,999,0,nonexistent,-1.7,94.215,-40.3,0.793,4991.6,no
+41,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,128,2,999,0,nonexistent,-1.7,94.215,-40.3,0.793,4991.6,yes
+33,admin.,single,university.degree,no,yes,no,cellular,jul,mon,175,4,999,0,nonexistent,-1.7,94.215,-40.3,0.793,4991.6,no
+41,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,140,1,14,2,success,-1.7,94.215,-40.3,0.793,4991.6,yes
+33,admin.,single,university.degree,no,yes,no,cellular,jul,mon,182,1,999,0,nonexistent,-1.7,94.215,-40.3,0.793,4991.6,no
+30,admin.,single,university.degree,no,yes,no,cellular,jul,tue,255,2,3,1,success,-1.7,94.215,-40.3,0.797,4991.6,no
+21,student,single,basic.9y,no,yes,no,cellular,jul,tue,209,2,999,0,nonexistent,-1.7,94.215,-40.3,0.797,4991.6,yes
+46,admin.,married,high.school,no,yes,no,cellular,jul,tue,267,1,999,0,nonexistent,-1.7,94.215,-40.3,0.797,4991.6,yes
+46,admin.,married,high.school,no,yes,no,cellular,jul,tue,335,3,999,2,failure,-1.7,94.215,-40.3,0.797,4991.6,yes
+30,admin.,single,university.degree,no,no,no,cellular,jul,tue,212,1,3,2,success,-1.7,94.215,-40.3,0.797,4991.6,no
+83,housemaid,divorced,basic.4y,no,yes,yes,cellular,jul,tue,257,1,999,3,failure,-1.7,94.215,-40.3,0.797,4991.6,no
+29,admin.,single,high.school,no,no,no,cellular,jul,tue,319,1,999,0,nonexistent,-1.7,94.215,-40.3,0.797,4991.6,yes
+35,admin.,single,university.degree,no,no,no,telephone,jul,tue,42,1,999,0,nonexistent,-1.7,94.215,-40.3,0.797,4991.6,no
+46,admin.,married,high.school,no,yes,yes,cellular,jul,tue,396,1,13,2,success,-1.7,94.215,-40.3,0.797,4991.6,yes
+43,self-employed,married,university.degree,no,no,no,cellular,jul,tue,386,3,999,1,failure,-1.7,94.215,-40.3,0.797,4991.6,yes
+83,housemaid,divorced,basic.4y,no,yes,no,cellular,jul,tue,667,2,3,1,success,-1.7,94.215,-40.3,0.797,4991.6,yes
+21,student,single,basic.9y,no,yes,yes,telephone,jul,tue,295,1,999,0,nonexistent,-1.7,94.215,-40.3,0.797,4991.6,no
+35,entrepreneur,single,university.degree,no,yes,no,cellular,jul,wed,156,1,999,2,failure,-1.7,94.215,-40.3,0.802,4991.6,no
+55,admin.,married,high.school,no,no,no,telephone,jul,wed,229,1,9,1,success,-1.7,94.215,-40.3,0.802,4991.6,yes
+33,admin.,married,high.school,no,yes,yes,telephone,jul,wed,398,2,999,1,failure,-1.7,94.215,-40.3,0.802,4991.6,yes
+35,admin.,married,high.school,no,yes,no,cellular,jul,wed,273,2,15,1,success,-1.7,94.215,-40.3,0.802,4991.6,yes
+36,services,married,high.school,no,no,no,telephone,jul,wed,276,2,999,0,nonexistent,-1.7,94.215,-40.3,0.802,4991.6,yes
+34,admin.,single,high.school,no,no,no,cellular,jul,wed,346,1,999,1,failure,-1.7,94.215,-40.3,0.802,4991.6,yes
+57,unknown,married,basic.4y,no,yes,no,cellular,jul,wed,183,3,999,0,nonexistent,-1.7,94.215,-40.3,0.802,4991.6,no
+58,admin.,married,high.school,no,yes,no,cellular,jul,thu,214,4,999,2,failure,-1.7,94.215,-40.3,0.81,4991.6,no
+75,retired,married,university.degree,no,yes,no,cellular,jul,thu,229,1,999,2,failure,-1.7,94.215,-40.3,0.81,4991.6,yes
+29,admin.,single,high.school,no,yes,no,cellular,jul,thu,480,1,6,1,success,-1.7,94.215,-40.3,0.81,4991.6,yes
+37,admin.,married,high.school,no,unknown,unknown,cellular,jul,thu,294,1,999,1,failure,-1.7,94.215,-40.3,0.81,4991.6,yes
+21,student,single,unknown,no,yes,yes,cellular,jul,thu,173,11,9,2,failure,-1.7,94.215,-40.3,0.81,4991.6,no
+25,services,single,high.school,no,no,yes,telephone,jul,thu,411,2,8,4,success,-1.7,94.215,-40.3,0.81,4991.6,yes
+21,student,single,unknown,no,no,no,telephone,jul,thu,250,1,12,1,success,-1.7,94.215,-40.3,0.81,4991.6,yes
+21,student,single,unknown,no,no,no,cellular,jul,thu,184,1,999,0,nonexistent,-1.7,94.215,-40.3,0.81,4991.6,no
+21,student,single,unknown,no,yes,no,cellular,jul,thu,968,1,13,2,failure,-1.7,94.215,-40.3,0.81,4991.6,yes
+32,admin.,single,university.degree,no,no,no,telephone,jul,thu,14,1,999,0,nonexistent,-1.7,94.215,-40.3,0.81,4991.6,no
+39,technician,married,professional.course,no,yes,no,cellular,jul,thu,202,1,999,1,failure,-1.7,94.215,-40.3,0.81,4991.6,no
+58,admin.,married,high.school,no,yes,yes,cellular,jul,thu,414,2,999,0,nonexistent,-1.7,94.215,-40.3,0.81,4991.6,yes
+25,admin.,single,high.school,no,no,no,cellular,jul,thu,449,2,999,0,nonexistent,-1.7,94.215,-40.3,0.81,4991.6,yes
+37,admin.,married,high.school,no,yes,no,cellular,jul,thu,230,2,999,0,nonexistent,-1.7,94.215,-40.3,0.81,4991.6,no
+34,self-employed,single,university.degree,no,no,no,cellular,jul,thu,967,3,999,0,nonexistent,-1.7,94.215,-40.3,0.81,4991.6,yes
+21,student,single,unknown,no,no,no,telephone,jul,thu,220,7,999,1,failure,-1.7,94.215,-40.3,0.81,4991.6,no
+25,services,single,high.school,no,yes,no,telephone,jul,thu,312,2,999,2,failure,-1.7,94.215,-40.3,0.81,4991.6,no
+73,retired,divorced,professional.course,unknown,yes,no,cellular,jul,thu,131,2,999,0,nonexistent,-1.7,94.215,-40.3,0.81,4991.6,no
+34,admin.,married,university.degree,no,yes,no,cellular,jul,thu,344,1,999,2,failure,-1.7,94.215,-40.3,0.81,4991.6,yes
+72,retired,married,basic.4y,no,no,yes,cellular,jul,fri,483,4,8,1,success,-1.7,94.215,-40.3,0.822,4991.6,yes
+26,unemployed,married,high.school,no,yes,no,cellular,jul,fri,474,7,999,0,nonexistent,-1.7,94.215,-40.3,0.822,4991.6,yes
+72,retired,married,basic.4y,no,yes,no,cellular,jul,fri,119,9,999,1,failure,-1.7,94.215,-40.3,0.822,4991.6,no
+72,retired,married,basic.4y,no,yes,no,cellular,jul,fri,582,2,999,1,failure,-1.7,94.215,-40.3,0.822,4991.6,no
+32,admin.,single,university.degree,no,yes,no,cellular,jul,fri,1185,1,999,0,nonexistent,-1.7,94.215,-40.3,0.822,4991.6,no
+46,admin.,married,university.degree,no,yes,no,cellular,jul,fri,341,3,999,0,nonexistent,-1.7,94.215,-40.3,0.822,4991.6,yes
+32,entrepreneur,married,university.degree,no,no,yes,cellular,jul,fri,116,1,999,0,nonexistent,-1.7,94.215,-40.3,0.822,4991.6,no
+79,retired,married,basic.4y,no,no,yes,cellular,jul,fri,464,1,999,1,failure,-1.7,94.215,-40.3,0.822,4991.6,yes
+33,blue-collar,single,professional.course,no,no,yes,telephone,jul,fri,15,1,999,0,nonexistent,-1.7,94.215,-40.3,0.822,4991.6,no
+33,unemployed,married,university.degree,no,yes,no,telephone,jul,fri,25,1,999,0,nonexistent,-1.7,94.215,-40.3,0.822,4991.6,no
+26,unemployed,single,high.school,no,yes,no,telephone,jul,fri,23,1,999,0,nonexistent,-1.7,94.215,-40.3,0.822,4991.6,no
+33,blue-collar,married,basic.9y,no,no,yes,telephone,jul,mon,9,1,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,no
+59,retired,divorced,basic.4y,no,no,no,cellular,jul,mon,410,2,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,no
+39,admin.,divorced,university.degree,no,yes,yes,cellular,jul,mon,398,10,999,1,failure,-1.7,94.215,-40.3,0.827,4991.6,yes
+36,technician,single,university.degree,no,yes,yes,cellular,jul,mon,305,4,3,1,success,-1.7,94.215,-40.3,0.827,4991.6,no
+59,retired,divorced,basic.4y,no,no,yes,cellular,jul,mon,210,3,999,2,failure,-1.7,94.215,-40.3,0.827,4991.6,yes
+39,admin.,divorced,university.degree,no,no,yes,cellular,jul,mon,375,3,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,yes
+28,blue-collar,single,high.school,no,no,yes,cellular,jul,mon,101,2,999,2,failure,-1.7,94.215,-40.3,0.827,4991.6,no
+62,technician,married,unknown,no,no,yes,cellular,jul,mon,123,2,6,1,success,-1.7,94.215,-40.3,0.827,4991.6,no
+35,technician,single,professional.course,no,no,no,cellular,jul,mon,562,4,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,yes
+62,technician,married,unknown,no,unknown,unknown,cellular,jul,mon,220,3,999,1,failure,-1.7,94.215,-40.3,0.827,4991.6,yes
+62,technician,married,unknown,no,no,no,cellular,jul,mon,167,1,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,no
+62,technician,married,unknown,no,yes,no,cellular,jul,mon,273,1,16,1,success,-1.7,94.215,-40.3,0.827,4991.6,no
+27,admin.,single,university.degree,unknown,no,yes,cellular,jul,mon,537,1,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,yes
+28,student,single,high.school,no,yes,yes,cellular,jul,mon,154,1,999,2,failure,-1.7,94.215,-40.3,0.827,4991.6,no
+24,admin.,single,high.school,no,no,no,cellular,jul,mon,452,1,14,1,success,-1.7,94.215,-40.3,0.827,4991.6,yes
+19,student,single,basic.9y,no,no,yes,telephone,jul,mon,567,1,6,2,success,-1.7,94.215,-40.3,0.827,4991.6,yes
+59,retired,divorced,basic.4y,no,yes,yes,cellular,jul,mon,796,1,6,1,success,-1.7,94.215,-40.3,0.827,4991.6,yes
+28,blue-collar,single,high.school,no,no,no,cellular,jul,mon,194,3,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,no
+19,student,single,basic.9y,no,yes,no,cellular,jul,mon,236,2,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,no
+62,technician,married,unknown,no,no,no,cellular,jul,mon,262,2,999,2,failure,-1.7,94.215,-40.3,0.827,4991.6,yes
+62,technician,married,unknown,no,yes,no,cellular,jul,mon,248,1,999,2,failure,-1.7,94.215,-40.3,0.827,4991.6,yes
+33,admin.,single,university.degree,no,yes,no,cellular,jul,mon,289,1,999,1,failure,-1.7,94.215,-40.3,0.827,4991.6,no
+27,admin.,single,university.degree,unknown,no,no,cellular,jul,mon,200,6,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,no
+28,student,single,high.school,no,yes,no,cellular,jul,mon,250,2,6,1,success,-1.7,94.215,-40.3,0.827,4991.6,yes
+29,admin.,married,university.degree,no,yes,yes,cellular,jul,tue,256,2,6,1,success,-1.7,94.215,-40.3,0.835,4991.6,no
+73,retired,married,basic.4y,no,yes,no,cellular,jul,tue,305,1,999,0,nonexistent,-1.7,94.215,-40.3,0.835,4991.6,yes
+29,admin.,single,high.school,no,no,no,cellular,jul,tue,195,2,3,3,success,-1.7,94.215,-40.3,0.835,4991.6,yes
+22,services,single,professional.course,no,no,no,cellular,jul,tue,363,1,999,1,failure,-1.7,94.215,-40.3,0.835,4991.6,yes
+83,retired,married,university.degree,no,yes,no,cellular,jul,tue,178,1,6,2,success,-1.7,94.215,-40.3,0.835,4991.6,yes
+32,services,married,basic.6y,no,yes,yes,telephone,jul,tue,35,1,999,0,nonexistent,-1.7,94.215,-40.3,0.835,4991.6,no
+83,retired,married,university.degree,no,no,no,telephone,jul,tue,617,1,12,1,success,-1.7,94.215,-40.3,0.835,4991.6,yes
+66,retired,married,high.school,no,no,no,cellular,jul,tue,475,1,999,0,nonexistent,-1.7,94.215,-40.3,0.835,4991.6,yes
+66,retired,married,high.school,no,yes,no,cellular,jul,tue,317,1,999,0,nonexistent,-1.7,94.215,-40.3,0.835,4991.6,yes
+29,admin.,married,university.degree,no,yes,no,cellular,jul,tue,88,1,999,2,failure,-1.7,94.215,-40.3,0.835,4991.6,no
+29,admin.,married,university.degree,no,unknown,unknown,cellular,jul,tue,311,1,3,1,success,-1.7,94.215,-40.3,0.835,4991.6,yes
+24,student,single,high.school,no,yes,yes,cellular,jul,tue,316,3,999,1,failure,-1.7,94.215,-40.3,0.835,4991.6,no
+31,unemployed,single,university.degree,no,yes,no,cellular,jul,tue,309,1,6,3,success,-1.7,94.215,-40.3,0.835,4991.6,yes
+35,technician,single,professional.course,no,yes,no,cellular,jul,tue,337,1,6,1,success,-1.7,94.215,-40.3,0.835,4991.6,yes
+35,technician,single,professional.course,no,yes,no,cellular,jul,tue,360,1,11,2,success,-1.7,94.215,-40.3,0.835,4991.6,yes
+22,services,single,professional.course,no,no,no,cellular,jul,tue,256,3,999,1,failure,-1.7,94.215,-40.3,0.835,4991.6,yes
+73,retired,married,basic.4y,no,yes,yes,telephone,jul,tue,538,2,999,0,nonexistent,-1.7,94.215,-40.3,0.835,4991.6,no
+29,blue-collar,single,basic.6y,no,yes,no,telephone,jul,tue,151,1,999,0,nonexistent,-1.7,94.215,-40.3,0.835,4991.6,no
+35,technician,single,professional.course,no,yes,no,cellular,jul,tue,577,6,6,1,success,-1.7,94.215,-40.3,0.835,4991.6,yes
+29,admin.,single,high.school,no,yes,no,cellular,jul,tue,272,3,6,1,success,-1.7,94.215,-40.3,0.835,4991.6,yes
+32,technician,divorced,professional.course,no,yes,no,telephone,jul,wed,18,1,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,no
+53,blue-collar,single,basic.9y,no,no,no,telephone,jul,wed,413,1,6,2,success,-1.7,94.215,-40.3,0.84,4991.6,yes
+30,student,single,professional.course,no,yes,no,cellular,jul,wed,334,4,999,2,failure,-1.7,94.215,-40.3,0.84,4991.6,yes
+31,admin.,single,high.school,no,yes,no,cellular,jul,wed,91,1,999,1,failure,-1.7,94.215,-40.3,0.84,4991.6,no
+29,technician,single,basic.9y,no,yes,no,cellular,jul,wed,603,1,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,yes
+53,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,355,1,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,yes
+45,management,married,university.degree,no,yes,no,cellular,jul,wed,817,2,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,yes
+29,technician,single,professional.course,no,yes,no,cellular,jul,wed,133,3,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,no
+29,technician,single,basic.9y,no,yes,no,telephone,jul,wed,247,1,6,1,success,-1.7,94.215,-40.3,0.84,4991.6,yes
+78,retired,married,unknown,no,yes,no,cellular,jul,wed,203,1,999,1,failure,-1.7,94.215,-40.3,0.84,4991.6,no
+29,admin.,single,university.degree,no,yes,no,cellular,jul,wed,276,1,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,yes
+34,services,married,basic.9y,no,no,no,cellular,jul,wed,604,1,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,yes
+53,blue-collar,single,basic.9y,no,yes,no,telephone,jul,wed,897,2,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,yes
+35,admin.,married,university.degree,no,yes,no,cellular,jul,wed,287,2,999,1,failure,-1.7,94.215,-40.3,0.84,4991.6,yes
+34,services,married,basic.9y,no,yes,yes,cellular,jul,wed,86,3,999,1,failure,-1.7,94.215,-40.3,0.84,4991.6,no
+30,student,single,professional.course,no,yes,no,telephone,jul,wed,343,9,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,no
+78,retired,married,unknown,no,yes,no,cellular,jul,wed,87,3,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,yes
+44,blue-collar,divorced,basic.4y,no,no,no,telephone,jul,wed,71,1,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,no
+23,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,268,5,999,1,failure,-1.7,94.215,-40.3,0.846,4991.6,yes
+27,blue-collar,single,high.school,no,yes,no,cellular,jul,thu,185,5,999,2,failure,-1.7,94.215,-40.3,0.846,4991.6,no
+52,technician,married,basic.6y,no,yes,no,cellular,jul,thu,219,1,3,1,success,-1.7,94.215,-40.3,0.846,4991.6,yes
+50,management,married,university.degree,no,yes,no,cellular,jul,thu,367,1,999,0,nonexistent,-1.7,94.215,-40.3,0.846,4991.6,yes
+37,services,married,high.school,no,no,no,cellular,jul,thu,346,1,6,2,success,-1.7,94.215,-40.3,0.846,4991.6,yes
+28,services,single,high.school,no,yes,no,cellular,jul,thu,957,1,6,1,success,-1.7,94.215,-40.3,0.846,4991.6,yes
+32,services,single,unknown,no,no,yes,cellular,jul,thu,415,2,999,0,nonexistent,-1.7,94.215,-40.3,0.846,4991.6,yes
+30,admin.,single,university.degree,no,no,no,cellular,jul,thu,252,1,6,2,success,-1.7,94.215,-40.3,0.846,4991.6,yes
+28,self-employed,single,university.degree,no,no,no,cellular,jul,thu,178,1,999,2,failure,-1.7,94.215,-40.3,0.846,4991.6,no
+32,admin.,single,university.degree,no,yes,no,cellular,jul,thu,250,2,6,1,success,-1.7,94.215,-40.3,0.846,4991.6,no
+20,student,single,basic.9y,no,yes,no,cellular,jul,thu,361,3,6,3,success,-1.7,94.215,-40.3,0.846,4991.6,yes
+80,retired,married,basic.4y,no,no,no,telephone,jul,thu,552,2,999,0,nonexistent,-1.7,94.215,-40.3,0.846,4991.6,yes
+70,retired,divorced,basic.4y,no,no,no,cellular,jul,thu,390,2,6,2,success,-1.7,94.215,-40.3,0.846,4991.6,yes
+35,admin.,married,university.degree,no,no,no,cellular,jul,thu,951,2,6,1,success,-1.7,94.215,-40.3,0.846,4991.6,yes
+23,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,250,4,999,1,failure,-1.7,94.215,-40.3,0.846,4991.6,yes
+32,admin.,single,university.degree,no,yes,no,cellular,jul,thu,210,2,15,1,success,-1.7,94.215,-40.3,0.846,4991.6,no
+28,self-employed,single,university.degree,no,yes,no,cellular,jul,thu,198,2,999,0,nonexistent,-1.7,94.215,-40.3,0.846,4991.6,yes
+47,admin.,single,basic.9y,no,yes,yes,cellular,jul,thu,392,2,6,1,success,-1.7,94.215,-40.3,0.846,4991.6,yes
+38,technician,married,professional.course,no,no,no,cellular,jul,thu,561,2,999,0,nonexistent,-1.7,94.215,-40.3,0.846,4991.6,no
+54,retired,single,basic.4y,no,yes,no,cellular,jul,thu,392,4,999,0,nonexistent,-1.7,94.215,-40.3,0.846,4991.6,no
+63,retired,married,basic.4y,no,yes,no,cellular,jul,thu,261,1,6,1,success,-1.7,94.215,-40.3,0.846,4991.6,no
+31,admin.,single,university.degree,no,yes,no,cellular,jul,fri,815,2,13,2,success,-1.7,94.215,-40.3,0.861,4991.6,yes
+26,technician,single,university.degree,no,no,no,cellular,jul,fri,129,2,6,1,success,-1.7,94.215,-40.3,0.861,4991.6,no
+32,admin.,single,university.degree,no,no,no,cellular,jul,fri,184,1,9,3,failure,-1.7,94.215,-40.3,0.861,4991.6,no
+44,admin.,married,unknown,no,no,no,cellular,jul,fri,745,1,999,1,failure,-1.7,94.215,-40.3,0.861,4991.6,yes
+31,admin.,married,high.school,no,no,no,cellular,jul,fri,136,8,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,no
+60,admin.,married,university.degree,no,no,no,cellular,jul,fri,316,1,6,2,success,-1.7,94.215,-40.3,0.861,4991.6,yes
+51,admin.,married,university.degree,no,no,yes,cellular,jul,fri,486,1,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,yes
+31,admin.,married,high.school,no,yes,yes,cellular,jul,fri,44,4,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,no
+43,technician,divorced,unknown,no,no,no,cellular,jul,fri,377,1,999,1,failure,-1.7,94.215,-40.3,0.861,4991.6,no
+31,admin.,married,university.degree,no,no,no,cellular,jul,fri,106,1,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,no
+27,admin.,single,high.school,no,yes,no,telephone,jul,fri,7,1,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,no
+29,admin.,single,high.school,no,yes,no,cellular,jul,fri,268,2,6,1,success,-1.7,94.215,-40.3,0.861,4991.6,yes
+26,technician,single,university.degree,no,yes,no,cellular,jul,fri,806,3,6,2,success,-1.7,94.215,-40.3,0.861,4991.6,yes
+32,management,single,university.degree,no,no,no,cellular,jul,fri,237,2,999,1,failure,-1.7,94.215,-40.3,0.861,4991.6,no
+51,admin.,married,university.degree,no,no,yes,cellular,jul,fri,73,4,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,no
+44,admin.,single,high.school,no,no,yes,telephone,jul,fri,12,1,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,no
+59,technician,married,professional.course,no,yes,no,cellular,jul,fri,457,2,15,1,success,-1.7,94.215,-40.3,0.861,4991.6,yes
+21,housemaid,single,high.school,no,no,no,cellular,jul,fri,222,2,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,no
+54,admin.,married,university.degree,no,no,yes,cellular,jul,fri,84,5,999,2,failure,-1.7,94.215,-40.3,0.861,4991.6,no
+22,admin.,single,university.degree,no,yes,no,telephone,jul,mon,484,1,999,2,failure,-1.7,94.215,-40.3,0.87,4991.6,yes
+56,technician,married,professional.course,no,yes,no,cellular,jul,mon,207,2,13,1,success,-1.7,94.215,-40.3,0.87,4991.6,yes
+49,technician,divorced,professional.course,no,yes,no,cellular,jul,mon,253,3,15,1,success,-1.7,94.215,-40.3,0.87,4991.6,yes
+78,retired,married,basic.4y,no,no,no,cellular,jul,mon,1148,1,999,0,nonexistent,-1.7,94.215,-40.3,0.87,4991.6,yes
+72,retired,married,basic.4y,no,yes,no,cellular,jul,mon,128,2,999,1,failure,-1.7,94.215,-40.3,0.87,4991.6,no
+72,retired,married,basic.4y,no,yes,no,cellular,jul,mon,268,1,999,0,nonexistent,-1.7,94.215,-40.3,0.87,4991.6,yes
+78,retired,married,basic.4y,no,yes,no,cellular,jul,mon,173,2,999,1,failure,-1.7,94.215,-40.3,0.87,4991.6,yes
+56,technician,married,professional.course,no,no,no,cellular,jul,mon,230,2,999,1,failure,-1.7,94.215,-40.3,0.87,4991.6,yes
+56,unemployed,divorced,basic.4y,no,yes,no,cellular,jul,mon,187,6,999,0,nonexistent,-1.7,94.215,-40.3,0.87,4991.6,yes
+66,retired,married,basic.4y,no,yes,no,cellular,jul,mon,568,7,999,0,nonexistent,-1.7,94.215,-40.3,0.87,4991.6,yes
+78,retired,married,basic.4y,no,yes,no,cellular,jul,mon,212,1,13,2,success,-1.7,94.215,-40.3,0.87,4991.6,yes
+29,admin.,married,university.degree,no,yes,no,cellular,jul,mon,173,3,999,0,nonexistent,-1.7,94.215,-40.3,0.87,4991.6,yes
+30,technician,married,university.degree,no,yes,yes,cellular,jul,mon,204,4,999,0,nonexistent,-1.7,94.215,-40.3,0.87,4991.6,yes
+28,technician,single,university.degree,no,no,no,cellular,jul,tue,146,3,6,2,success,-1.7,94.215,-40.3,0.876,4991.6,no
+28,services,single,high.school,no,yes,no,cellular,jul,tue,192,1,999,0,nonexistent,-1.7,94.215,-40.3,0.876,4991.6,no
+66,housemaid,married,basic.4y,no,no,yes,cellular,jul,tue,296,1,999,1,failure,-1.7,94.215,-40.3,0.876,4991.6,no
+29,technician,single,professional.course,no,no,yes,cellular,jul,tue,178,2,15,2,failure,-1.7,94.215,-40.3,0.876,4991.6,yes
+54,unknown,married,basic.9y,no,yes,no,cellular,jul,tue,174,2,13,2,success,-1.7,94.215,-40.3,0.876,4991.6,no
+28,technician,single,university.degree,no,yes,no,cellular,jul,tue,175,5,999,0,nonexistent,-1.7,94.215,-40.3,0.876,4991.6,no
+23,student,single,unknown,no,no,no,cellular,jul,tue,165,2,16,1,success,-1.7,94.215,-40.3,0.876,4991.6,yes
+35,blue-collar,married,high.school,no,yes,no,telephone,jul,tue,7,1,999,0,nonexistent,-1.7,94.215,-40.3,0.876,4991.6,no
+62,retired,married,high.school,no,no,no,cellular,jul,tue,355,2,999,0,nonexistent,-1.7,94.215,-40.3,0.876,4991.6,yes
+23,unemployed,single,high.school,no,no,no,telephone,jul,tue,7,1,999,0,nonexistent,-1.7,94.215,-40.3,0.876,4991.6,no
+38,admin.,married,high.school,no,no,no,telephone,jul,tue,5,1,999,1,failure,-1.7,94.215,-40.3,0.876,4991.6,no
+48,technician,married,professional.course,no,no,no,cellular,jul,tue,288,1,999,1,failure,-1.7,94.215,-40.3,0.876,4991.6,no
+66,housemaid,married,basic.4y,no,no,no,telephone,jul,tue,1008,2,999,0,nonexistent,-1.7,94.215,-40.3,0.876,4991.6,yes
+23,admin.,single,university.degree,no,yes,no,cellular,jul,wed,104,1,999,2,failure,-1.7,94.215,-40.3,0.881,4991.6,no
+82,housemaid,divorced,basic.4y,no,no,no,cellular,jul,wed,316,1,999,0,nonexistent,-1.7,94.215,-40.3,0.881,4991.6,yes
+72,retired,married,basic.6y,no,no,no,cellular,jul,wed,338,1,999,0,nonexistent,-1.7,94.215,-40.3,0.881,4991.6,no
+72,retired,married,basic.6y,no,yes,no,cellular,jul,wed,143,1,999,0,nonexistent,-1.7,94.215,-40.3,0.881,4991.6,yes
+37,unemployed,single,university.degree,no,yes,yes,cellular,jul,wed,314,1,5,2,success,-1.7,94.215,-40.3,0.881,4991.6,yes
+21,student,single,basic.9y,no,no,no,telephone,jul,thu,5,1,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,no
+24,technician,single,professional.course,no,yes,no,cellular,jul,thu,355,2,3,1,success,-1.7,94.215,-40.3,0.884,4991.6,yes
+71,retired,married,professional.course,no,yes,no,cellular,jul,thu,115,3,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,no
+52,admin.,married,university.degree,no,yes,yes,cellular,jul,thu,942,1,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,yes
+24,services,single,high.school,no,yes,no,cellular,jul,thu,355,1,11,2,success,-1.7,94.215,-40.3,0.884,4991.6,yes
+43,technician,married,professional.course,no,yes,no,cellular,jul,thu,1193,1,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,yes
+64,admin.,married,high.school,no,no,no,cellular,jul,thu,368,1,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,yes
+45,management,married,university.degree,no,yes,no,cellular,jul,thu,138,2,6,2,success,-1.7,94.215,-40.3,0.884,4991.6,yes
+40,management,married,university.degree,no,yes,no,cellular,jul,thu,321,4,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,yes
+30,admin.,single,university.degree,no,yes,no,cellular,jul,thu,248,1,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,yes
+34,technician,single,basic.9y,no,no,no,telephone,jul,thu,23,1,999,1,failure,-1.7,94.215,-40.3,0.884,4991.6,no
+29,self-employed,single,university.degree,no,no,no,telephone,jul,thu,24,1,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,no
+60,admin.,married,basic.9y,no,no,no,cellular,jul,thu,174,2,25,2,failure,-1.7,94.215,-40.3,0.884,4991.6,yes
+24,services,single,high.school,no,yes,no,cellular,jul,thu,860,2,9,2,failure,-1.7,94.215,-40.3,0.884,4991.6,yes
+56,services,married,high.school,no,yes,no,cellular,jul,thu,427,2,999,1,failure,-1.7,94.215,-40.3,0.884,4991.6,no
+45,management,married,university.degree,no,no,yes,telephone,jul,thu,171,2,999,1,failure,-1.7,94.215,-40.3,0.884,4991.6,no
+31,student,single,university.degree,no,no,no,cellular,jul,fri,608,3,6,2,success,-1.7,94.215,-40.3,0.885,4991.6,yes
+59,management,married,basic.4y,no,yes,no,cellular,jul,fri,351,3,999,0,nonexistent,-1.7,94.215,-40.3,0.885,4991.6,yes
+42,unknown,single,university.degree,no,no,no,cellular,jul,fri,366,6,999,0,nonexistent,-1.7,94.215,-40.3,0.885,4991.6,yes
+31,student,single,university.degree,no,yes,yes,cellular,jul,fri,350,2,999,0,nonexistent,-1.7,94.215,-40.3,0.885,4991.6,yes
+32,technician,single,university.degree,no,no,no,cellular,jul,fri,125,1,3,2,success,-1.7,94.215,-40.3,0.885,4991.6,no
+24,technician,married,professional.course,no,no,no,cellular,jul,fri,192,4,26,1,success,-1.7,94.215,-40.3,0.885,4991.6,yes
+42,unknown,single,university.degree,no,yes,no,cellular,jul,fri,513,1,999,2,failure,-1.7,94.215,-40.3,0.885,4991.6,yes
+26,admin.,single,high.school,no,yes,no,cellular,jul,fri,251,1,999,1,failure,-1.7,94.215,-40.3,0.885,4991.6,yes
+26,admin.,single,university.degree,no,no,no,cellular,jul,fri,196,1,9,3,failure,-1.7,94.215,-40.3,0.885,4991.6,yes
+63,admin.,married,university.degree,no,yes,no,cellular,jul,fri,396,2,999,0,nonexistent,-1.7,94.215,-40.3,0.885,4991.6,yes
+29,admin.,single,university.degree,no,yes,no,cellular,jul,mon,110,2,999,1,failure,-1.7,94.215,-40.3,0.889,4991.6,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,275,1,6,2,success,-1.7,94.215,-40.3,0.889,4991.6,yes
+51,technician,married,high.school,no,no,no,cellular,jul,mon,284,1,6,3,success,-1.7,94.215,-40.3,0.889,4991.6,yes
+65,management,married,university.degree,no,yes,no,cellular,jul,mon,183,1,999,2,failure,-1.7,94.215,-40.3,0.889,4991.6,yes
+29,admin.,married,university.degree,no,no,no,telephone,jul,mon,7,1,999,0,nonexistent,-1.7,94.215,-40.3,0.889,4991.6,no
+31,admin.,married,university.degree,no,no,no,telephone,jul,mon,7,1,999,0,nonexistent,-1.7,94.215,-40.3,0.889,4991.6,no
+52,technician,single,professional.course,no,no,no,telephone,jul,mon,84,1,999,0,nonexistent,-1.7,94.215,-40.3,0.889,4991.6,no
+34,admin.,single,university.degree,no,yes,yes,telephone,jul,mon,4,1,999,0,nonexistent,-1.7,94.215,-40.3,0.889,4991.6,no
+27,blue-collar,single,basic.6y,no,no,no,telephone,jul,mon,9,1,999,0,nonexistent,-1.7,94.215,-40.3,0.889,4991.6,no
+35,admin.,married,university.degree,no,no,no,cellular,jul,mon,768,2,3,4,success,-1.7,94.215,-40.3,0.889,4991.6,no
+68,retired,married,university.degree,no,yes,no,cellular,jul,mon,546,2,999,1,failure,-1.7,94.215,-40.3,0.889,4991.6,yes
+68,retired,married,university.degree,no,no,no,cellular,jul,mon,414,2,12,1,success,-1.7,94.215,-40.3,0.889,4991.6,yes
+61,admin.,married,unknown,no,yes,yes,cellular,jul,mon,109,3,999,1,failure,-1.7,94.215,-40.3,0.889,4991.6,no
+24,technician,single,professional.course,no,yes,no,cellular,jul,mon,607,3,13,1,success,-1.7,94.215,-40.3,0.889,4991.6,yes
+84,retired,divorced,basic.4y,no,yes,yes,cellular,jul,tue,666,1,3,2,success,-1.7,94.215,-40.3,0.893,4991.6,yes
+32,admin.,single,university.degree,no,no,no,cellular,jul,tue,527,1,999,0,nonexistent,-1.7,94.215,-40.3,0.893,4991.6,yes
+32,admin.,single,university.degree,no,yes,no,cellular,jul,tue,206,1,999,1,failure,-1.7,94.215,-40.3,0.893,4991.6,no
+23,student,single,unknown,no,no,no,cellular,jul,tue,267,1,999,2,failure,-1.7,94.215,-40.3,0.893,4991.6,yes
+52,admin.,married,professional.course,no,no,no,cellular,jul,tue,606,1,999,0,nonexistent,-1.7,94.215,-40.3,0.893,4991.6,yes
+23,technician,single,professional.course,no,yes,no,telephone,jul,tue,9,1,999,0,nonexistent,-1.7,94.215,-40.3,0.893,4991.6,no
+33,admin.,single,university.degree,no,no,no,telephone,jul,tue,5,1,999,0,nonexistent,-1.7,94.215,-40.3,0.893,4991.6,no
+28,technician,single,professional.course,no,no,yes,telephone,jul,tue,5,1,999,0,nonexistent,-1.7,94.215,-40.3,0.893,4991.6,no
+52,admin.,married,professional.course,no,yes,yes,cellular,jul,tue,139,2,6,1,success,-1.7,94.215,-40.3,0.893,4991.6,no
+28,technician,single,professional.course,no,yes,no,cellular,jul,tue,167,2,6,1,success,-1.7,94.215,-40.3,0.893,4991.6,no
+52,admin.,married,professional.course,no,yes,yes,cellular,jul,tue,287,2,6,1,success,-1.7,94.215,-40.3,0.893,4991.6,yes
+77,retired,married,basic.4y,no,unknown,unknown,cellular,jul,tue,218,2,3,1,success,-1.7,94.215,-40.3,0.893,4991.6,yes
+26,student,single,high.school,no,no,no,cellular,jul,tue,235,1,999,1,failure,-1.7,94.215,-40.3,0.893,4991.6,no
+48,housemaid,married,professional.course,no,yes,no,cellular,jul,wed,496,2,6,2,success,-1.7,94.215,-40.3,0.896,4991.6,yes
+68,retired,divorced,high.school,no,yes,yes,cellular,jul,wed,340,1,3,1,success,-1.7,94.215,-40.3,0.896,4991.6,yes
+74,retired,divorced,basic.4y,no,yes,yes,cellular,jul,wed,106,2,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,no
+24,student,single,professional.course,no,no,no,cellular,jul,wed,429,2,6,3,success,-1.7,94.215,-40.3,0.896,4991.6,yes
+25,self-employed,single,unknown,no,unknown,unknown,cellular,jul,wed,844,5,999,2,failure,-1.7,94.215,-40.3,0.896,4991.6,yes
+57,blue-collar,married,basic.4y,no,no,yes,cellular,jul,wed,471,2,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,yes
+24,student,single,professional.course,no,yes,no,cellular,jul,wed,817,2,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,yes
+66,retired,divorced,high.school,no,no,no,cellular,jul,wed,211,1,999,1,failure,-1.7,94.215,-40.3,0.896,4991.6,no
+51,retired,divorced,high.school,no,no,no,cellular,jul,wed,115,3,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,yes
+50,housemaid,married,basic.4y,no,no,yes,cellular,jul,wed,462,1,4,1,success,-1.7,94.215,-40.3,0.896,4991.6,yes
+47,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,129,3,999,2,failure,-1.7,94.215,-40.3,0.896,4991.6,no
+48,housemaid,married,professional.course,no,no,no,cellular,jul,wed,388,3,6,1,success,-1.7,94.215,-40.3,0.896,4991.6,yes
+26,technician,single,professional.course,no,no,no,cellular,jul,thu,588,3,999,2,failure,-1.7,94.215,-40.3,0.899,4991.6,yes
+60,retired,married,professional.course,no,yes,yes,cellular,jul,thu,95,4,6,2,success,-1.7,94.215,-40.3,0.899,4991.6,no
+76,unknown,married,unknown,no,no,no,telephone,jul,thu,301,3,999,0,nonexistent,-1.7,94.215,-40.3,0.899,4991.6,yes
+23,admin.,single,high.school,no,no,no,telephone,jul,thu,331,1,999,0,nonexistent,-1.7,94.215,-40.3,0.899,4991.6,no
+80,retired,divorced,basic.4y,no,no,yes,cellular,jul,thu,169,2,6,2,success,-1.7,94.215,-40.3,0.899,4991.6,yes
+34,admin.,divorced,university.degree,no,yes,no,telephone,jul,thu,332,3,999,1,failure,-1.7,94.215,-40.3,0.899,4991.6,yes
+50,housemaid,married,basic.6y,no,no,no,cellular,jul,thu,349,3,6,2,success,-1.7,94.215,-40.3,0.899,4991.6,yes
+50,entrepreneur,divorced,university.degree,no,yes,no,cellular,jul,thu,386,1,6,3,success,-1.7,94.215,-40.3,0.899,4991.6,yes
+31,technician,single,university.degree,no,no,no,cellular,jul,thu,200,4,999,1,failure,-1.7,94.215,-40.3,0.899,4991.6,yes
+51,admin.,married,university.degree,no,no,no,cellular,jul,thu,396,4,999,1,failure,-1.7,94.215,-40.3,0.899,4991.6,yes
+65,management,married,high.school,no,yes,no,cellular,jul,thu,117,1,999,2,failure,-1.7,94.215,-40.3,0.899,4991.6,no
+31,technician,single,university.degree,no,yes,no,telephone,jul,thu,426,1,6,2,success,-1.7,94.215,-40.3,0.899,4991.6,yes
+48,blue-collar,married,professional.course,no,no,no,telephone,jul,thu,268,1,999,0,nonexistent,-1.7,94.215,-40.3,0.899,4991.6,yes
+71,retired,married,basic.4y,no,yes,no,cellular,jul,thu,519,2,9,3,failure,-1.7,94.215,-40.3,0.899,4991.6,yes
+31,technician,single,university.degree,no,no,no,telephone,jul,thu,270,1,5,1,success,-1.7,94.215,-40.3,0.899,4991.6,yes
+34,admin.,married,university.degree,no,yes,no,cellular,jul,thu,417,1,6,3,success,-1.7,94.215,-40.3,0.899,4991.6,yes
+53,admin.,married,high.school,no,yes,no,cellular,jul,thu,99,6,999,0,nonexistent,-1.7,94.215,-40.3,0.899,4991.6,no
+39,unemployed,single,high.school,no,yes,no,cellular,jul,fri,90,2,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,no
+27,services,single,high.school,no,no,no,cellular,jul,fri,700,5,6,2,success,-1.7,94.215,-40.3,0.896,4991.6,yes
+32,management,single,university.degree,no,no,no,cellular,jul,fri,221,4,16,1,success,-1.7,94.215,-40.3,0.896,4991.6,no
+23,admin.,single,university.degree,no,no,yes,cellular,jul,fri,76,2,999,1,failure,-1.7,94.215,-40.3,0.896,4991.6,no
+41,admin.,married,university.degree,no,yes,no,cellular,jul,fri,269,7,6,3,success,-1.7,94.215,-40.3,0.896,4991.6,no
+37,management,married,university.degree,no,yes,no,cellular,jul,fri,292,1,6,1,success,-1.7,94.215,-40.3,0.896,4991.6,yes
+35,admin.,married,university.degree,no,yes,no,telephone,jul,fri,304,1,999,2,failure,-1.7,94.215,-40.3,0.896,4991.6,yes
+56,retired,divorced,high.school,no,yes,no,telephone,jul,fri,9,1,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,no
+71,retired,married,basic.9y,no,yes,yes,cellular,jul,fri,230,6,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,yes
+40,management,married,university.degree,no,no,no,telephone,jul,fri,367,2,3,2,success,-1.7,94.215,-40.3,0.896,4991.6,yes
+39,unemployed,single,high.school,no,yes,no,cellular,jul,fri,240,3,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,no
+37,admin.,married,university.degree,no,yes,no,cellular,jul,fri,1005,5,4,2,success,-1.7,94.215,-40.3,0.896,4991.6,yes
+34,self-employed,married,university.degree,no,unknown,unknown,cellular,jul,fri,156,3,999,2,failure,-1.7,94.215,-40.3,0.896,4991.6,no
+40,management,married,university.degree,no,yes,no,cellular,jul,fri,955,1,9,1,success,-1.7,94.215,-40.3,0.896,4991.6,yes
+63,retired,married,basic.4y,no,no,no,cellular,jul,fri,273,1,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,no
+55,services,divorced,high.school,no,yes,no,cellular,jul,fri,160,3,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,no
+46,admin.,married,high.school,no,no,no,cellular,aug,mon,428,2,999,3,failure,-1.7,94.027,-38.3,0.898,4991.6,no
+33,services,single,high.school,no,yes,no,cellular,aug,mon,132,2,999,1,failure,-1.7,94.027,-38.3,0.898,4991.6,no
+25,student,single,high.school,no,no,no,cellular,aug,mon,159,2,10,4,failure,-1.7,94.027,-38.3,0.898,4991.6,no
+33,admin.,single,university.degree,no,no,yes,cellular,aug,mon,87,3,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no
+31,student,single,unknown,no,no,no,cellular,aug,mon,397,2,999,1,failure,-1.7,94.027,-38.3,0.898,4991.6,no
+42,admin.,single,university.degree,no,no,no,cellular,aug,mon,1013,3,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no
+67,retired,married,basic.4y,no,no,no,cellular,aug,mon,300,3,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no
+31,technician,single,unknown,no,no,no,cellular,aug,mon,155,2,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no
+53,services,married,basic.9y,no,yes,no,cellular,aug,mon,196,2,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,yes
+31,student,single,unknown,no,yes,no,cellular,aug,mon,868,3,18,3,failure,-1.7,94.027,-38.3,0.898,4991.6,yes
+36,admin.,single,professional.course,no,yes,no,telephone,aug,mon,25,1,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no
+81,retired,married,basic.4y,no,yes,no,cellular,aug,mon,90,4,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no
+25,student,single,high.school,no,yes,no,cellular,aug,mon,100,8,4,1,success,-1.7,94.027,-38.3,0.898,4991.6,no
+42,admin.,single,university.degree,no,yes,no,cellular,aug,mon,245,2,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no
+31,self-employed,single,university.degree,no,no,no,cellular,aug,mon,209,1,999,2,failure,-1.7,94.027,-38.3,0.898,4991.6,no
+62,retired,married,basic.4y,no,no,no,cellular,aug,mon,317,1,9,2,failure,-1.7,94.027,-38.3,0.898,4991.6,yes
+67,retired,married,basic.4y,no,no,no,cellular,aug,mon,341,2,13,1,success,-1.7,94.027,-38.3,0.898,4991.6,yes
+33,services,single,high.school,no,yes,no,cellular,aug,mon,486,1,999,2,failure,-1.7,94.027,-38.3,0.898,4991.6,no
+38,technician,single,university.degree,no,no,no,cellular,aug,mon,135,7,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no
+31,technician,single,unknown,no,no,no,cellular,aug,mon,308,1,999,2,failure,-1.7,94.027,-38.3,0.898,4991.6,no
+33,admin.,single,university.degree,no,yes,yes,telephone,aug,mon,109,1,999,2,failure,-1.7,94.027,-38.3,0.898,4991.6,no
+53,services,married,basic.9y,no,yes,no,telephone,aug,mon,141,2,999,1,failure,-1.7,94.027,-38.3,0.898,4991.6,no
+31,technician,single,unknown,no,yes,no,cellular,aug,mon,428,2,9,3,success,-1.7,94.027,-38.3,0.898,4991.6,yes
+28,admin.,married,university.degree,no,yes,no,cellular,aug,mon,226,3,999,1,failure,-1.7,94.027,-38.3,0.898,4991.6,no
+77,retired,divorced,professional.course,no,no,no,cellular,aug,mon,258,1,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no
+27,admin.,single,university.degree,no,no,no,cellular,aug,tue,249,1,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,yes
+31,student,single,university.degree,no,no,no,cellular,aug,tue,224,1,9,2,failure,-1.7,94.027,-38.3,0.899,4991.6,no
+64,retired,married,professional.course,no,no,no,cellular,aug,tue,482,1,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,yes
+37,technician,single,university.degree,no,yes,no,cellular,aug,tue,481,2,999,4,failure,-1.7,94.027,-38.3,0.899,4991.6,yes
+28,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,187,2,6,2,success,-1.7,94.027,-38.3,0.899,4991.6,yes
+28,unemployed,single,basic.9y,no,no,yes,cellular,aug,tue,261,1,999,1,failure,-1.7,94.027,-38.3,0.899,4991.6,yes
+31,student,single,university.degree,no,no,no,cellular,aug,tue,279,4,6,2,success,-1.7,94.027,-38.3,0.899,4991.6,yes
+47,services,divorced,unknown,no,yes,no,cellular,aug,tue,113,2,999,1,failure,-1.7,94.027,-38.3,0.899,4991.6,yes
+21,student,single,high.school,no,yes,no,cellular,aug,tue,326,2,999,1,failure,-1.7,94.027,-38.3,0.899,4991.6,no
+31,admin.,single,university.degree,no,no,no,cellular,aug,tue,172,3,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,no
+40,admin.,married,high.school,no,no,yes,cellular,aug,tue,654,2,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,yes
+75,retired,married,unknown,no,no,no,telephone,aug,tue,676,2,999,4,failure,-1.7,94.027,-38.3,0.899,4991.6,yes
+30,student,single,high.school,no,no,no,cellular,aug,tue,592,3,999,1,failure,-1.7,94.027,-38.3,0.899,4991.6,yes
+21,student,single,high.school,no,yes,no,cellular,aug,tue,263,3,9,2,success,-1.7,94.027,-38.3,0.899,4991.6,yes
+58,blue-collar,married,basic.4y,no,yes,no,cellular,aug,wed,771,1,3,1,success,-1.7,94.027,-38.3,0.9,4991.6,yes
+48,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,288,1,0,3,success,-1.7,94.027,-38.3,0.9,4991.6,yes
+28,student,single,unknown,unknown,yes,no,cellular,aug,wed,453,1,999,1,failure,-1.7,94.027,-38.3,0.9,4991.6,no
+35,technician,married,university.degree,no,yes,no,cellular,aug,wed,182,1,6,3,failure,-1.7,94.027,-38.3,0.9,4991.6,yes
+35,technician,married,university.degree,no,yes,no,cellular,aug,wed,560,1,999,0,nonexistent,-1.7,94.027,-38.3,0.9,4991.6,yes
+27,student,single,university.degree,no,yes,no,cellular,aug,wed,651,1,0,3,success,-1.7,94.027,-38.3,0.9,4991.6,yes
+28,student,single,basic.9y,no,yes,no,cellular,aug,wed,178,1,0,1,success,-1.7,94.027,-38.3,0.9,4991.6,yes
+61,retired,married,university.degree,no,no,no,telephone,aug,wed,250,2,7,1,success,-1.7,94.027,-38.3,0.9,4991.6,yes
+47,admin.,married,university.degree,no,unknown,unknown,cellular,aug,wed,288,1,10,2,failure,-1.7,94.027,-38.3,0.9,4991.6,yes
+27,student,single,university.degree,no,no,no,cellular,aug,wed,180,1,3,3,success,-1.7,94.027,-38.3,0.9,4991.6,yes
+30,admin.,single,university.degree,no,no,no,telephone,aug,wed,156,1,999,1,failure,-1.7,94.027,-38.3,0.9,4991.6,no
+59,unknown,married,unknown,no,no,no,cellular,aug,wed,198,1,6,1,success,-1.7,94.027,-38.3,0.9,4991.6,yes
+28,student,single,basic.9y,no,no,yes,cellular,aug,wed,139,1,6,3,failure,-1.7,94.027,-38.3,0.9,4991.6,yes
+28,student,single,basic.9y,no,no,no,telephone,aug,wed,199,2,6,2,success,-1.7,94.027,-38.3,0.9,4991.6,no
+18,student,single,unknown,no,yes,no,cellular,aug,wed,253,2,6,1,success,-1.7,94.027,-38.3,0.9,4991.6,yes
+52,admin.,married,university.degree,no,yes,no,cellular,aug,wed,261,1,999,0,nonexistent,-1.7,94.027,-38.3,0.9,4991.6,no
+48,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,296,1,16,3,failure,-1.7,94.027,-38.3,0.9,4991.6,yes
+27,student,single,university.degree,no,yes,no,telephone,aug,wed,153,1,0,5,success,-1.7,94.027,-38.3,0.9,4991.6,no
+34,admin.,married,university.degree,no,yes,no,cellular,aug,wed,250,1,10,2,failure,-1.7,94.027,-38.3,0.9,4991.6,yes
+27,student,single,basic.9y,no,yes,no,cellular,aug,wed,111,1,999,0,nonexistent,-1.7,94.027,-38.3,0.9,4991.6,no
+18,student,single,unknown,no,yes,no,cellular,aug,wed,561,1,17,2,failure,-1.7,94.027,-38.3,0.9,4991.6,yes
+48,admin.,single,university.degree,no,yes,no,cellular,aug,wed,118,1,0,2,success,-1.7,94.027,-38.3,0.9,4991.6,yes
+47,admin.,married,university.degree,no,no,no,cellular,aug,wed,470,1,4,2,success,-1.7,94.027,-38.3,0.9,4991.6,yes
+30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,191,1,0,2,success,-1.7,94.027,-38.3,0.9,4991.6,yes
+18,student,single,unknown,no,yes,yes,telephone,aug,wed,297,1,999,0,nonexistent,-1.7,94.027,-38.3,0.9,4991.6,no
+44,services,divorced,basic.6y,no,yes,no,cellular,aug,wed,153,3,0,1,success,-1.7,94.027,-38.3,0.9,4991.6,yes
+30,blue-collar,single,professional.course,no,no,no,cellular,aug,wed,293,1,9,1,success,-1.7,94.027,-38.3,0.9,4991.6,yes
+46,admin.,single,high.school,no,no,no,cellular,aug,thu,510,2,17,1,success,-1.7,94.027,-38.3,0.904,4991.6,no
+41,admin.,divorced,high.school,no,yes,yes,cellular,aug,thu,231,2,0,2,success,-1.7,94.027,-38.3,0.904,4991.6,yes
+46,admin.,single,high.school,no,no,no,cellular,aug,thu,329,2,9,4,failure,-1.7,94.027,-38.3,0.904,4991.6,no
+26,unemployed,single,university.degree,no,yes,no,cellular,aug,thu,508,3,6,2,success,-1.7,94.027,-38.3,0.904,4991.6,yes
+46,technician,married,professional.course,no,no,no,cellular,aug,thu,382,1,999,1,failure,-1.7,94.027,-38.3,0.904,4991.6,no
+26,unemployed,single,university.degree,no,yes,no,cellular,aug,thu,203,1,3,3,success,-1.7,94.027,-38.3,0.904,4991.6,yes
+48,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,544,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes
+71,blue-collar,divorced,basic.4y,unknown,no,no,cellular,aug,thu,224,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no
+41,admin.,divorced,high.school,no,unknown,unknown,cellular,aug,thu,272,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes
+48,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,172,3,3,6,success,-1.7,94.027,-38.3,0.904,4991.6,yes
+44,admin.,single,university.degree,no,no,no,cellular,aug,thu,492,1,999,2,failure,-1.7,94.027,-38.3,0.904,4991.6,no
+27,technician,single,university.degree,no,yes,no,cellular,aug,thu,250,3,999,5,failure,-1.7,94.027,-38.3,0.904,4991.6,no
+47,admin.,married,high.school,no,no,no,cellular,aug,thu,374,2,16,1,success,-1.7,94.027,-38.3,0.904,4991.6,yes
+31,student,single,unknown,no,yes,no,cellular,aug,thu,306,2,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes
+77,retired,married,basic.4y,no,no,no,cellular,aug,thu,318,1,9,4,failure,-1.7,94.027,-38.3,0.904,4991.6,yes
+31,student,single,unknown,no,yes,no,cellular,aug,thu,375,2,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes
+41,entrepreneur,married,university.degree,no,yes,no,cellular,aug,thu,324,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes
+30,student,single,high.school,no,no,no,cellular,aug,thu,200,1,999,1,failure,-1.7,94.027,-38.3,0.904,4991.6,no
+41,entrepreneur,married,university.degree,no,yes,no,cellular,aug,thu,736,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes
+71,retired,married,university.degree,no,yes,no,cellular,aug,thu,134,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no
+37,management,married,high.school,no,yes,no,cellular,aug,thu,633,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes
+46,technician,married,professional.course,no,yes,no,cellular,aug,thu,245,2,999,4,failure,-1.7,94.027,-38.3,0.904,4991.6,yes
+63,retired,married,basic.4y,no,no,no,cellular,aug,thu,163,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no
+41,admin.,divorced,high.school,no,yes,yes,cellular,aug,thu,98,3,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no
+25,admin.,single,university.degree,no,no,no,cellular,aug,thu,215,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes
+45,admin.,married,university.degree,no,no,no,cellular,aug,thu,323,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes
+60,housemaid,married,basic.4y,no,no,no,cellular,aug,fri,270,4,6,4,failure,-1.7,94.027,-38.3,0.905,4991.6,no
+59,retired,married,professional.course,no,yes,no,cellular,aug,fri,303,2,3,2,success,-1.7,94.027,-38.3,0.905,4991.6,yes
+72,housemaid,married,basic.6y,unknown,yes,no,cellular,aug,fri,137,1,999,0,nonexistent,-1.7,94.027,-38.3,0.905,4991.6,no
+32,entrepreneur,single,professional.course,no,yes,no,telephone,aug,fri,47,1,999,0,nonexistent,-1.7,94.027,-38.3,0.905,4991.6,no
+41,admin.,divorced,high.school,no,yes,no,cellular,aug,fri,258,2,6,3,success,-1.7,94.027,-38.3,0.905,4991.6,yes
+27,admin.,single,university.degree,no,no,no,cellular,aug,fri,562,2,3,3,success,-1.7,94.027,-38.3,0.905,4991.6,yes
+59,retired,married,professional.course,no,no,no,cellular,aug,fri,218,3,3,1,success,-1.7,94.027,-38.3,0.905,4991.6,yes
+41,admin.,divorced,high.school,no,yes,no,cellular,aug,fri,178,1,6,2,success,-1.7,94.027,-38.3,0.905,4991.6,yes
+41,admin.,divorced,high.school,no,yes,no,cellular,aug,fri,174,1,4,3,failure,-1.7,94.027,-38.3,0.905,4991.6,yes
+77,management,married,unknown,no,yes,no,cellular,aug,fri,160,1,3,6,success,-1.7,94.027,-38.3,0.905,4991.6,yes
+41,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,252,1,999,1,failure,-1.7,94.027,-38.3,0.905,4991.6,no
+41,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,366,2,6,3,success,-1.7,94.027,-38.3,0.905,4991.6,yes
+27,admin.,single,university.degree,no,yes,no,cellular,aug,fri,177,2,999,0,nonexistent,-1.7,94.027,-38.3,0.905,4991.6,yes
+24,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,101,5,6,2,success,-1.7,94.027,-38.3,0.905,4991.6,no
+24,admin.,single,university.degree,no,no,no,cellular,aug,fri,744,1,999,2,failure,-1.7,94.027,-38.3,0.905,4991.6,yes
+64,retired,married,basic.4y,no,unknown,unknown,telephone,aug,fri,245,3,999,0,nonexistent,-1.7,94.027,-38.3,0.905,4991.6,yes
+64,unknown,married,unknown,no,yes,no,telephone,aug,fri,239,4,999,0,nonexistent,-1.7,94.027,-38.3,0.905,4991.6,yes
+30,technician,single,professional.course,no,no,no,telephone,aug,mon,6,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no
+30,self-employed,single,university.degree,no,unknown,unknown,cellular,aug,mon,148,2,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no
+26,services,single,high.school,no,no,no,telephone,aug,mon,6,1,999,3,failure,-1.7,94.027,-38.3,0.904,4991.6,no
+30,self-employed,single,university.degree,no,no,no,cellular,aug,mon,370,2,999,1,failure,-1.7,94.027,-38.3,0.904,4991.6,no
+26,admin.,single,university.degree,no,no,no,telephone,aug,mon,440,5,999,2,failure,-1.7,94.027,-38.3,0.904,4991.6,no
+47,management,married,university.degree,no,yes,no,cellular,aug,mon,145,3,3,2,success,-1.7,94.027,-38.3,0.904,4991.6,no
+35,unemployed,married,high.school,no,yes,no,cellular,aug,mon,362,1,6,1,success,-1.7,94.027,-38.3,0.904,4991.6,yes
+47,management,married,university.degree,no,yes,no,cellular,aug,mon,182,2,999,6,failure,-1.7,94.027,-38.3,0.904,4991.6,no
+73,retired,divorced,basic.4y,unknown,yes,no,telephone,aug,mon,195,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no
+56,blue-collar,divorced,basic.4y,no,yes,no,telephone,aug,mon,361,1,12,4,failure,-1.7,94.027,-38.3,0.904,4991.6,no
+29,services,single,university.degree,no,no,no,cellular,aug,mon,265,1,6,1,success,-1.7,94.027,-38.3,0.904,4991.6,yes
+58,technician,married,basic.9y,no,yes,no,cellular,aug,mon,324,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes
+26,admin.,single,university.degree,no,no,no,telephone,aug,mon,1087,1,3,1,success,-1.7,94.027,-38.3,0.904,4991.6,yes
+26,admin.,single,university.degree,no,no,no,cellular,aug,mon,242,1,6,5,success,-1.7,94.027,-38.3,0.904,4991.6,yes
+53,management,married,university.degree,no,yes,no,telephone,aug,tue,97,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes
+55,housemaid,single,university.degree,no,yes,no,telephone,aug,tue,11,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no
+73,retired,divorced,basic.4y,unknown,yes,no,cellular,aug,tue,273,2,999,1,failure,-1.7,94.027,-38.3,0.904,4991.6,no
+55,admin.,divorced,high.school,no,no,no,cellular,aug,tue,245,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes
+25,unemployed,single,high.school,no,no,no,cellular,aug,tue,188,1,3,3,success,-1.7,94.027,-38.3,0.904,4991.6,no
+58,management,married,university.degree,no,no,no,cellular,aug,tue,412,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes
+34,blue-collar,married,basic.9y,no,no,yes,cellular,aug,tue,447,1,999,1,failure,-1.7,94.027,-38.3,0.904,4991.6,yes
+92,retired,married,unknown,no,no,yes,cellular,aug,tue,1064,1,3,1,success,-1.7,94.027,-38.3,0.904,4991.6,yes
+19,student,single,unknown,no,no,no,cellular,aug,tue,192,1,999,1,failure,-1.7,94.027,-38.3,0.904,4991.6,no
+50,admin.,single,university.degree,no,no,no,cellular,aug,tue,372,1,6,2,success,-1.7,94.027,-38.3,0.904,4991.6,yes
+22,technician,single,professional.course,no,yes,no,cellular,aug,tue,122,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no
+65,retired,married,professional.course,no,yes,no,cellular,aug,tue,261,1,6,3,success,-1.7,94.027,-38.3,0.904,4991.6,yes
+34,admin.,single,high.school,no,yes,no,cellular,aug,tue,168,2,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no
+37,management,married,university.degree,no,yes,yes,telephone,aug,tue,365,2,6,1,success,-1.7,94.027,-38.3,0.904,4991.6,no
+31,admin.,married,university.degree,no,no,no,cellular,aug,tue,164,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes
+70,retired,married,basic.4y,no,yes,no,cellular,aug,tue,356,3,6,1,success,-1.7,94.027,-38.3,0.904,4991.6,yes
+25,technician,single,university.degree,no,yes,no,telephone,aug,tue,6,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no
+31,admin.,married,university.degree,no,no,no,cellular,aug,tue,317,2,999,1,failure,-1.7,94.027,-38.3,0.904,4991.6,yes
+55,admin.,divorced,high.school,no,yes,no,cellular,aug,tue,244,2,6,3,success,-1.7,94.027,-38.3,0.904,4991.6,yes
+65,retired,married,professional.course,no,yes,no,cellular,aug,tue,170,2,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no
+43,technician,married,high.school,no,yes,no,cellular,aug,wed,1363,1,999,0,nonexistent,-1.7,94.027,-38.3,0.903,4991.6,yes
+31,services,single,high.school,no,yes,no,telephone,aug,wed,61,1,999,0,nonexistent,-1.7,94.027,-38.3,0.903,4991.6,no
+61,admin.,married,university.degree,no,yes,yes,telephone,aug,wed,425,1,6,2,success,-1.7,94.027,-38.3,0.903,4991.6,yes
+26,student,single,high.school,no,yes,no,cellular,aug,wed,233,1,14,1,success,-1.7,94.027,-38.3,0.903,4991.6,yes
+51,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,237,1,6,4,success,-1.7,94.027,-38.3,0.903,4991.6,yes
+77,retired,married,unknown,no,no,no,cellular,aug,wed,144,8,999,2,failure,-1.7,94.027,-38.3,0.903,4991.6,no
+92,retired,married,unknown,no,no,yes,cellular,aug,wed,370,1,3,4,success,-1.7,94.027,-38.3,0.903,4991.6,yes
+75,retired,married,basic.4y,no,no,no,cellular,aug,wed,248,2,6,3,success,-1.7,94.027,-38.3,0.903,4991.6,yes
+59,admin.,married,university.degree,no,yes,no,cellular,aug,wed,443,3,999,0,nonexistent,-1.7,94.027,-38.3,0.903,4991.6,no
+35,admin.,married,university.degree,no,yes,no,cellular,aug,wed,765,2,6,3,success,-1.7,94.027,-38.3,0.903,4991.6,yes
+66,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,222,3,6,2,success,-1.7,94.027,-38.3,0.903,4991.6,yes
+35,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,176,1,999,2,failure,-1.7,94.027,-38.3,0.899,4991.6,no
+41,admin.,married,university.degree,no,yes,no,telephone,aug,thu,345,1,9,3,failure,-1.7,94.027,-38.3,0.899,4991.6,yes
+42,technician,married,professional.course,no,no,no,cellular,aug,thu,295,1,6,2,success,-1.7,94.027,-38.3,0.899,4991.6,yes
+71,admin.,married,basic.4y,no,yes,no,cellular,aug,thu,192,1,999,2,failure,-1.7,94.027,-38.3,0.899,4991.6,no
+67,housemaid,divorced,professional.course,no,no,no,cellular,aug,thu,350,1,6,2,success,-1.7,94.027,-38.3,0.899,4991.6,yes
+60,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,176,1,999,1,failure,-1.7,94.027,-38.3,0.899,4991.6,no
+52,management,married,university.degree,no,yes,no,cellular,aug,thu,175,3,1,3,success,-1.7,94.027,-38.3,0.899,4991.6,yes
+70,technician,married,unknown,no,no,no,cellular,aug,thu,411,1,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,yes
+33,admin.,married,university.degree,no,no,no,cellular,aug,thu,361,1,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,yes
+51,technician,married,professional.course,no,yes,no,cellular,aug,thu,1226,3,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,yes
+76,retired,married,university.degree,no,yes,no,cellular,aug,thu,504,2,6,3,success,-1.7,94.027,-38.3,0.899,4991.6,yes
+27,admin.,married,university.degree,no,no,no,cellular,aug,thu,312,3,6,1,success,-1.7,94.027,-38.3,0.899,4991.6,yes
+60,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,187,2,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,no
+33,admin.,married,university.degree,no,yes,no,cellular,aug,thu,265,1,3,3,success,-1.7,94.027,-38.3,0.899,4991.6,yes
+76,retired,married,university.degree,no,no,no,cellular,aug,thu,126,1,999,1,failure,-1.7,94.027,-38.3,0.899,4991.6,no
+30,admin.,single,high.school,no,no,no,telephone,aug,thu,18,1,22,1,success,-1.7,94.027,-38.3,0.899,4991.6,no
+33,management,married,university.degree,no,no,no,telephone,aug,thu,201,1,6,2,success,-1.7,94.027,-38.3,0.899,4991.6,yes
+52,management,married,university.degree,no,unknown,unknown,cellular,aug,thu,157,2,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,no
+42,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,261,1,6,1,success,-1.7,94.027,-38.3,0.898,4991.6,yes
+25,student,single,high.school,no,yes,yes,telephone,aug,fri,461,1,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,yes
+48,self-employed,divorced,university.degree,no,no,no,cellular,aug,fri,222,4,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,yes
+38,entrepreneur,married,university.degree,no,yes,no,cellular,aug,fri,633,1,16,1,success,-1.7,94.027,-38.3,0.898,4991.6,yes
+39,services,single,high.school,no,yes,no,cellular,aug,fri,308,6,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,yes
+40,management,divorced,university.degree,no,no,no,cellular,aug,fri,183,1,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no
+36,services,single,university.degree,no,no,no,cellular,aug,fri,394,6,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,yes
+30,admin.,single,university.degree,no,no,no,cellular,aug,fri,177,6,6,3,success,-1.7,94.027,-38.3,0.898,4991.6,yes
+32,admin.,married,university.degree,no,no,no,telephone,aug,fri,75,1,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no
+48,self-employed,divorced,university.degree,no,no,no,cellular,aug,fri,166,1,999,1,failure,-1.7,94.027,-38.3,0.898,4991.6,no
+28,admin.,married,university.degree,no,no,no,cellular,aug,fri,161,4,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no
+39,blue-collar,single,basic.4y,no,yes,yes,telephone,aug,fri,9,1,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no
+42,technician,married,university.degree,no,no,no,cellular,aug,fri,211,3,6,2,success,-1.7,94.027,-38.3,0.898,4991.6,yes
+35,management,married,university.degree,no,no,no,telephone,aug,fri,12,1,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no
+31,admin.,married,professional.course,no,no,no,cellular,aug,mon,318,2,999,0,nonexistent,-1.7,94.027,-38.3,0.896,4991.6,yes
+60,retired,married,basic.4y,no,no,no,cellular,aug,mon,143,2,15,2,failure,-1.7,94.027,-38.3,0.896,4991.6,no
+34,technician,single,basic.9y,no,yes,no,cellular,aug,mon,140,3,999,0,nonexistent,-1.7,94.027,-38.3,0.896,4991.6,no
+31,admin.,single,university.degree,no,yes,no,cellular,aug,mon,239,3,999,0,nonexistent,-1.7,94.027,-38.3,0.896,4991.6,yes
+34,technician,single,basic.9y,no,no,no,cellular,aug,mon,205,3,6,3,success,-1.7,94.027,-38.3,0.896,4991.6,yes
+45,technician,married,university.degree,no,no,no,cellular,aug,mon,111,2,999,1,failure,-1.7,94.027,-38.3,0.896,4991.6,no
+34,technician,single,basic.9y,no,no,no,cellular,aug,mon,200,2,999,0,nonexistent,-1.7,94.027,-38.3,0.896,4991.6,no
+44,retired,single,high.school,no,no,no,cellular,aug,mon,2035,4,999,0,nonexistent,-1.7,94.027,-38.3,0.896,4991.6,yes
+33,student,married,professional.course,no,yes,no,cellular,aug,mon,265,3,3,4,success,-1.7,94.027,-38.3,0.896,4991.6,yes
+45,admin.,divorced,basic.9y,no,yes,yes,telephone,aug,tue,8,1,999,0,nonexistent,-1.7,94.027,-38.3,0.895,4991.6,no
+34,entrepreneur,married,professional.course,no,no,no,telephone,aug,tue,6,1,999,0,nonexistent,-1.7,94.027,-38.3,0.895,4991.6,no
+58,self-employed,married,university.degree,no,no,no,cellular,aug,tue,326,4,6,3,success,-1.7,94.027,-38.3,0.895,4991.6,yes
+26,student,single,high.school,no,no,no,cellular,aug,wed,95,3,999,3,failure,-1.7,94.027,-38.3,0.894,4991.6,no
+54,management,married,high.school,no,no,no,cellular,aug,wed,171,3,999,1,failure,-1.7,94.027,-38.3,0.894,4991.6,no
+36,admin.,married,university.degree,no,no,no,cellular,aug,wed,212,7,6,1,success,-1.7,94.027,-38.3,0.894,4991.6,no
+40,admin.,married,high.school,no,yes,no,telephone,aug,thu,173,6,999,1,failure,-1.7,94.027,-38.3,0.891,4991.6,no
+39,admin.,single,university.degree,no,yes,yes,telephone,aug,fri,45,1,999,0,nonexistent,-1.7,94.027,-38.3,0.89,4991.6,no
+33,admin.,divorced,high.school,no,no,no,telephone,aug,fri,107,1,999,0,nonexistent,-1.7,94.027,-38.3,0.89,4991.6,no
+34,admin.,single,high.school,no,unknown,unknown,telephone,aug,fri,22,1,999,0,nonexistent,-1.7,94.027,-38.3,0.89,4991.6,no
+29,services,single,university.degree,no,yes,no,telephone,aug,fri,6,1,999,0,nonexistent,-1.7,94.027,-38.3,0.89,4991.6,no
+49,admin.,married,university.degree,no,yes,no,telephone,aug,fri,4,1,999,0,nonexistent,-1.7,94.027,-38.3,0.89,4991.6,no
+45,self-employed,divorced,professional.course,no,yes,no,telephone,aug,mon,5,1,999,1,failure,-1.7,94.027,-38.3,0.891,4991.6,no
+30,admin.,single,professional.course,no,no,no,telephone,aug,mon,10,1,999,0,nonexistent,-1.7,94.027,-38.3,0.891,4991.6,no
+72,retired,divorced,university.degree,no,no,no,cellular,aug,mon,220,16,999,1,failure,-1.7,94.027,-38.3,0.891,4991.6,no
+26,blue-collar,married,professional.course,no,unknown,unknown,telephone,aug,tue,11,1,999,0,nonexistent,-1.7,94.027,-38.3,0.889,4991.6,no
+33,unemployed,single,basic.9y,no,yes,no,telephone,aug,tue,5,1,999,0,nonexistent,-1.7,94.027,-38.3,0.889,4991.6,no
+22,student,single,basic.9y,no,no,no,telephone,aug,tue,26,1,999,0,nonexistent,-1.7,94.027,-38.3,0.889,4991.6,no
+28,student,single,university.degree,no,yes,no,telephone,aug,wed,6,1,999,0,nonexistent,-1.7,94.027,-38.3,0.89,4991.6,no
+30,technician,married,professional.course,no,no,no,telephone,aug,wed,5,1,0,4,success,-1.7,94.027,-38.3,0.89,4991.6,no
+35,entrepreneur,married,basic.9y,no,yes,no,telephone,aug,wed,17,1,999,0,nonexistent,-1.7,94.027,-38.3,0.89,4991.6,no
+58,blue-collar,married,high.school,no,yes,no,telephone,aug,fri,4,1,999,0,nonexistent,-1.7,94.027,-38.3,0.888,4991.6,no
+27,admin.,single,high.school,no,no,no,telephone,aug,fri,3785,1,999,0,nonexistent,-1.7,94.027,-38.3,0.888,4991.6,no
+49,management,divorced,university.degree,no,yes,no,telephone,aug,mon,26,1,999,0,nonexistent,-1.7,94.027,-38.3,0.888,4991.6,no
+21,services,single,unknown,no,yes,no,telephone,aug,mon,28,1,999,0,nonexistent,-1.7,94.027,-38.3,0.888,4991.6,no
+27,admin.,married,high.school,no,yes,no,telephone,aug,mon,36,1,999,0,nonexistent,-1.7,94.027,-38.3,0.888,4991.6,no
+30,admin.,single,university.degree,no,yes,no,cellular,aug,tue,193,1,999,0,nonexistent,-1.7,94.027,-38.3,0.886,4991.6,no
+30,admin.,single,university.degree,no,no,no,cellular,aug,tue,343,1,999,0,nonexistent,-1.7,94.027,-38.3,0.886,4991.6,yes
+19,student,single,high.school,no,unknown,unknown,cellular,aug,tue,1120,1,999,0,nonexistent,-1.7,94.027,-38.3,0.886,4991.6,yes
+33,blue-collar,married,professional.course,no,yes,no,cellular,aug,tue,253,4,999,0,nonexistent,-1.7,94.027,-38.3,0.886,4991.6,yes
+31,admin.,single,high.school,no,no,no,cellular,aug,tue,241,1,999,1,failure,-1.7,94.027,-38.3,0.886,4991.6,no
+76,retired,divorced,basic.4y,no,no,no,cellular,aug,tue,185,1,999,1,failure,-1.7,94.027,-38.3,0.886,4991.6,yes
+60,retired,married,high.school,no,yes,no,cellular,aug,tue,443,2,999,2,failure,-1.7,94.027,-38.3,0.886,4991.6,yes
+56,retired,married,university.degree,no,no,no,cellular,aug,tue,634,3,999,1,failure,-1.7,94.027,-38.3,0.886,4991.6,yes
+58,retired,divorced,basic.4y,no,no,no,telephone,aug,tue,34,1,999,0,nonexistent,-1.7,94.027,-38.3,0.886,4991.6,no
+34,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,298,2,999,0,nonexistent,-1.7,94.027,-38.3,0.886,4991.6,no
+44,admin.,single,high.school,no,yes,no,telephone,aug,tue,27,1,999,0,nonexistent,-1.7,94.027,-38.3,0.886,4991.6,no
+27,admin.,married,university.degree,no,yes,no,cellular,aug,tue,415,5,12,1,success,-1.7,94.027,-38.3,0.886,4991.6,yes
+64,retired,married,professional.course,no,yes,no,cellular,sep,wed,222,2,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,yes
+72,retired,married,professional.course,no,no,no,cellular,sep,wed,1,1,999,1,failure,-1.1,94.199,-37.5,0.886,4963.6,no
+34,admin.,married,university.degree,no,yes,no,cellular,sep,wed,161,1,18,2,failure,-1.1,94.199,-37.5,0.886,4963.6,no
+69,retired,married,high.school,no,yes,yes,cellular,sep,wed,840,1,6,2,success,-1.1,94.199,-37.5,0.886,4963.6,yes
+33,technician,married,professional.course,no,yes,no,cellular,sep,wed,269,1,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,yes
+37,admin.,married,university.degree,no,yes,no,cellular,sep,wed,729,1,999,1,failure,-1.1,94.199,-37.5,0.886,4963.6,yes
+24,student,single,unknown,no,yes,no,cellular,sep,wed,300,1,5,1,success,-1.1,94.199,-37.5,0.886,4963.6,yes
+24,student,single,unknown,no,yes,no,cellular,sep,wed,222,1,17,4,failure,-1.1,94.199,-37.5,0.886,4963.6,no
+60,admin.,divorced,professional.course,no,yes,no,cellular,sep,wed,481,1,999,1,failure,-1.1,94.199,-37.5,0.886,4963.6,yes
+71,retired,married,high.school,no,no,no,cellular,sep,wed,222,1,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no
+59,admin.,married,university.degree,no,no,yes,cellular,sep,wed,193,1,3,1,success,-1.1,94.199,-37.5,0.886,4963.6,yes
+45,blue-collar,single,high.school,no,yes,yes,cellular,sep,wed,327,1,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,yes
+24,student,single,unknown,no,yes,no,cellular,sep,wed,191,2,999,3,failure,-1.1,94.199,-37.5,0.886,4963.6,no
+24,student,single,unknown,no,yes,yes,telephone,sep,wed,663,1,10,1,success,-1.1,94.199,-37.5,0.886,4963.6,no
+37,admin.,married,university.degree,no,no,no,cellular,sep,wed,265,2,6,2,success,-1.1,94.199,-37.5,0.886,4963.6,yes
+70,retired,divorced,professional.course,no,yes,no,telephone,sep,wed,380,4,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no
+34,admin.,married,university.degree,no,yes,no,cellular,sep,wed,691,2,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no
+29,self-employed,single,university.degree,no,yes,yes,cellular,sep,wed,95,2,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no
+24,student,single,unknown,no,yes,no,cellular,sep,wed,367,1,999,2,failure,-1.1,94.199,-37.5,0.886,4963.6,no
+37,admin.,married,university.degree,no,no,no,telephone,sep,wed,150,1,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no
+22,student,single,high.school,no,no,no,cellular,sep,wed,369,3,5,1,success,-1.1,94.199,-37.5,0.886,4963.6,yes
+45,management,married,university.degree,no,no,no,cellular,sep,wed,293,2,3,2,success,-1.1,94.199,-37.5,0.886,4963.6,yes
+81,retired,divorced,basic.4y,no,no,no,cellular,sep,wed,532,2,7,1,success,-1.1,94.199,-37.5,0.886,4963.6,yes
+33,technician,single,professional.course,no,no,no,cellular,sep,wed,425,1,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no
+71,retired,married,high.school,no,yes,no,telephone,sep,wed,232,1,999,2,failure,-1.1,94.199,-37.5,0.886,4963.6,no
+30,management,married,university.degree,no,yes,no,telephone,sep,wed,20,1,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no
+35,services,married,university.degree,no,yes,no,telephone,sep,thu,8,1,999,0,nonexistent,-1.1,94.199,-37.5,0.884,4963.6,no
+58,retired,married,basic.4y,no,yes,no,telephone,sep,thu,7,1,999,0,nonexistent,-1.1,94.199,-37.5,0.884,4963.6,no
+44,blue-collar,married,basic.6y,no,yes,no,telephone,sep,thu,10,1,999,0,nonexistent,-1.1,94.199,-37.5,0.884,4963.6,no
+26,admin.,single,university.degree,no,yes,no,telephone,sep,thu,4,1,999,0,nonexistent,-1.1,94.199,-37.5,0.884,4963.6,no
+47,management,married,university.degree,no,yes,no,cellular,sep,thu,281,2,999,1,failure,-1.1,94.199,-37.5,0.884,4963.6,no
+55,management,divorced,university.degree,no,yes,no,cellular,sep,thu,1440,1,999,1,failure,-1.1,94.199,-37.5,0.884,4963.6,yes
+39,management,married,university.degree,no,yes,no,cellular,sep,thu,291,3,999,0,nonexistent,-1.1,94.199,-37.5,0.884,4963.6,yes
+60,retired,married,university.degree,no,no,no,cellular,sep,thu,529,2,6,1,success,-1.1,94.199,-37.5,0.884,4963.6,yes
+32,services,single,university.degree,no,no,no,cellular,sep,thu,128,3,999,2,failure,-1.1,94.199,-37.5,0.884,4963.6,no
+38,technician,married,university.degree,no,yes,no,telephone,sep,thu,173,1,999,3,failure,-1.1,94.199,-37.5,0.884,4963.6,no
+47,management,married,university.degree,no,no,no,cellular,sep,thu,362,1,17,2,success,-1.1,94.199,-37.5,0.884,4963.6,yes
+57,admin.,married,basic.9y,no,no,no,cellular,sep,thu,114,2,999,1,failure,-1.1,94.199,-37.5,0.884,4963.6,no
+51,technician,married,university.degree,no,yes,no,cellular,sep,thu,97,6,6,4,failure,-1.1,94.199,-37.5,0.884,4963.6,no
+78,retired,divorced,high.school,no,no,no,cellular,sep,thu,238,1,999,2,failure,-1.1,94.199,-37.5,0.884,4963.6,no
+32,admin.,single,university.degree,no,no,no,cellular,sep,thu,154,1,999,0,nonexistent,-1.1,94.199,-37.5,0.884,4963.6,no
+60,retired,married,university.degree,no,no,no,cellular,sep,thu,799,2,999,0,nonexistent,-1.1,94.199,-37.5,0.884,4963.6,yes
+32,services,single,university.degree,no,yes,no,cellular,sep,thu,404,1,6,3,success,-1.1,94.199,-37.5,0.884,4963.6,yes
+32,admin.,single,university.degree,no,yes,no,cellular,sep,thu,150,2,10,3,success,-1.1,94.199,-37.5,0.884,4963.6,yes
+39,management,married,university.degree,no,yes,yes,cellular,sep,thu,206,7,999,1,failure,-1.1,94.199,-37.5,0.884,4963.6,no
+43,unemployed,married,basic.9y,no,no,no,cellular,sep,fri,270,2,9,1,success,-1.1,94.199,-37.5,0.883,4963.6,yes
+67,retired,married,professional.course,no,no,no,cellular,sep,fri,116,2,999,0,nonexistent,-1.1,94.199,-37.5,0.883,4963.6,no
+49,admin.,married,university.degree,no,no,no,cellular,sep,fri,110,6,999,3,failure,-1.1,94.199,-37.5,0.883,4963.6,no
+57,management,married,university.degree,no,no,no,cellular,sep,fri,277,2,6,2,success,-1.1,94.199,-37.5,0.883,4963.6,yes
+59,services,married,professional.course,no,yes,no,cellular,sep,fri,251,3,2,4,success,-1.1,94.199,-37.5,0.883,4963.6,no
+51,unemployed,married,high.school,no,yes,yes,cellular,sep,fri,240,3,999,0,nonexistent,-1.1,94.199,-37.5,0.883,4963.6,no
+31,admin.,single,high.school,no,no,no,cellular,sep,fri,252,2,3,2,success,-1.1,94.199,-37.5,0.883,4963.6,yes
+34,technician,married,professional.course,no,yes,yes,cellular,sep,fri,120,1,6,3,success,-1.1,94.199,-37.5,0.883,4963.6,no
+30,technician,single,professional.course,no,yes,no,cellular,sep,fri,789,2,999,0,nonexistent,-1.1,94.199,-37.5,0.883,4963.6,no
+34,technician,married,professional.course,no,unknown,unknown,cellular,sep,fri,126,1,6,4,success,-1.1,94.199,-37.5,0.883,4963.6,no
+51,unemployed,married,high.school,no,unknown,unknown,telephone,sep,fri,228,1,999,2,failure,-1.1,94.199,-37.5,0.883,4963.6,no
+46,admin.,married,basic.9y,no,unknown,unknown,cellular,sep,fri,490,3,999,4,failure,-1.1,94.199,-37.5,0.883,4963.6,no
+30,admin.,single,high.school,no,no,no,cellular,sep,fri,219,3,6,1,success,-1.1,94.199,-37.5,0.883,4963.6,yes
+75,retired,married,basic.9y,no,no,no,telephone,sep,fri,543,9,999,1,failure,-1.1,94.199,-37.5,0.883,4963.6,no
+51,technician,married,professional.course,no,yes,no,cellular,sep,mon,841,2,999,2,failure,-1.1,94.199,-37.5,0.882,4963.6,yes
+28,admin.,single,university.degree,no,yes,no,cellular,sep,mon,387,2,6,3,success,-1.1,94.199,-37.5,0.882,4963.6,no
+25,student,single,university.degree,no,yes,yes,telephone,sep,mon,131,1,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no
+34,unemployed,married,university.degree,no,no,no,cellular,sep,mon,109,3,999,1,failure,-1.1,94.199,-37.5,0.882,4963.6,no
+22,admin.,single,university.degree,no,yes,no,cellular,sep,mon,194,2,999,3,failure,-1.1,94.199,-37.5,0.882,4963.6,yes
+33,admin.,married,university.degree,no,no,no,cellular,sep,mon,369,3,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,yes
+20,blue-collar,single,basic.4y,no,no,no,telephone,sep,mon,36,1,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no
+43,entrepreneur,married,university.degree,no,no,no,cellular,sep,mon,255,1,3,1,success,-1.1,94.199,-37.5,0.882,4963.6,yes
+58,entrepreneur,married,high.school,no,no,no,cellular,sep,mon,145,1,999,2,failure,-1.1,94.199,-37.5,0.882,4963.6,no
+88,retired,married,basic.4y,no,no,no,cellular,sep,mon,127,2,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no
+58,entrepreneur,married,high.school,no,yes,no,cellular,sep,mon,198,1,999,1,failure,-1.1,94.199,-37.5,0.882,4963.6,no
+34,services,divorced,high.school,no,yes,no,telephone,sep,mon,11,1,999,1,failure,-1.1,94.199,-37.5,0.882,4963.6,no
+76,retired,married,basic.4y,no,yes,no,cellular,sep,mon,136,1,999,2,failure,-1.1,94.199,-37.5,0.882,4963.6,no
+34,unemployed,married,university.degree,no,yes,no,telephone,sep,mon,113,5,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no
+35,admin.,married,high.school,no,no,no,cellular,sep,mon,415,1,999,2,failure,-1.1,94.199,-37.5,0.882,4963.6,yes
+32,admin.,married,high.school,no,unknown,unknown,cellular,sep,mon,908,1,6,4,success,-1.1,94.199,-37.5,0.882,4963.6,yes
+34,admin.,married,university.degree,no,no,yes,cellular,sep,mon,250,3,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,yes
+27,services,single,high.school,no,no,yes,telephone,sep,mon,35,1,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no
+34,admin.,married,university.degree,no,yes,no,cellular,sep,mon,125,2,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no
+88,retired,married,basic.4y,no,yes,no,cellular,sep,mon,213,7,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no
+30,services,single,university.degree,no,yes,no,telephone,sep,mon,8,1,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no
+47,technician,married,basic.6y,no,no,no,cellular,sep,mon,164,2,6,3,success,-1.1,94.199,-37.5,0.882,4963.6,no
+24,blue-collar,single,high.school,no,yes,no,cellular,sep,mon,202,1,999,3,failure,-1.1,94.199,-37.5,0.882,4963.6,no
+39,blue-collar,married,basic.9y,no,yes,no,cellular,sep,mon,791,3,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no
+88,retired,married,basic.4y,no,no,no,cellular,sep,mon,272,1,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no
+66,retired,married,unknown,no,no,no,cellular,sep,tue,667,1,999,1,failure,-1.1,94.199,-37.5,0.881,4963.6,no
+85,retired,married,basic.4y,no,no,no,cellular,sep,tue,728,1,3,2,success,-1.1,94.199,-37.5,0.881,4963.6,yes
+89,retired,divorced,basic.4y,no,yes,no,cellular,sep,tue,314,1,999,0,nonexistent,-1.1,94.199,-37.5,0.881,4963.6,yes
+48,services,married,high.school,no,no,no,telephone,sep,tue,11,1,999,0,nonexistent,-1.1,94.199,-37.5,0.881,4963.6,no
+36,admin.,married,university.degree,no,yes,no,cellular,sep,tue,127,1,999,2,failure,-1.1,94.199,-37.5,0.881,4963.6,no
+66,retired,married,unknown,no,yes,no,cellular,sep,tue,1394,2,6,1,success,-1.1,94.199,-37.5,0.881,4963.6,yes
+26,admin.,single,university.degree,no,yes,no,cellular,sep,tue,386,3,6,3,success,-1.1,94.199,-37.5,0.881,4963.6,yes
+36,management,divorced,university.degree,no,no,no,cellular,sep,tue,190,3,6,1,success,-1.1,94.199,-37.5,0.881,4963.6,yes
+36,management,divorced,university.degree,no,yes,no,cellular,sep,tue,337,1,6,1,success,-1.1,94.199,-37.5,0.881,4963.6,yes
+35,self-employed,single,university.degree,no,yes,yes,cellular,sep,tue,179,1,999,1,failure,-1.1,94.199,-37.5,0.881,4963.6,no
+26,admin.,single,university.degree,no,yes,no,cellular,sep,tue,355,1,999,1,failure,-1.1,94.199,-37.5,0.881,4963.6,no
+26,admin.,single,university.degree,no,yes,no,cellular,sep,tue,201,1,999,0,nonexistent,-1.1,94.199,-37.5,0.881,4963.6,yes
+39,entrepreneur,married,university.degree,no,yes,no,cellular,sep,tue,120,3,999,0,nonexistent,-1.1,94.199,-37.5,0.881,4963.6,no
+66,retired,married,unknown,no,no,no,cellular,sep,tue,332,5,999,0,nonexistent,-1.1,94.199,-37.5,0.881,4963.6,no
+86,retired,married,basic.4y,no,yes,no,cellular,sep,tue,288,3,999,0,nonexistent,-1.1,94.199,-37.5,0.881,4963.6,yes
+42,admin.,single,high.school,no,no,no,cellular,sep,wed,638,1,14,1,success,-1.1,94.199,-37.5,0.88,4963.6,yes
+44,management,married,university.degree,no,no,no,cellular,sep,wed,210,1,3,3,success,-1.1,94.199,-37.5,0.88,4963.6,yes
+45,unemployed,married,high.school,no,no,no,cellular,sep,wed,213,4,6,2,success,-1.1,94.199,-37.5,0.88,4963.6,no
+38,management,married,university.degree,no,no,no,cellular,sep,wed,149,2,999,1,failure,-1.1,94.199,-37.5,0.88,4963.6,no
+67,unknown,divorced,unknown,unknown,yes,no,cellular,sep,wed,220,2,6,2,success,-1.1,94.199,-37.5,0.88,4963.6,yes
+44,management,married,university.degree,no,no,yes,cellular,sep,wed,127,1,999,2,failure,-1.1,94.199,-37.5,0.88,4963.6,no
+30,management,married,university.degree,no,unknown,unknown,cellular,sep,wed,210,1,999,1,failure,-1.1,94.199,-37.5,0.88,4963.6,no
+46,services,married,university.degree,no,yes,no,cellular,sep,wed,630,1,999,0,nonexistent,-1.1,94.199,-37.5,0.88,4963.6,yes
+32,blue-collar,married,basic.4y,no,no,no,cellular,sep,wed,830,2,999,0,nonexistent,-1.1,94.199,-37.5,0.88,4963.6,yes
+31,student,single,unknown,no,unknown,unknown,cellular,sep,wed,708,2,6,2,success,-1.1,94.199,-37.5,0.88,4963.6,yes
+27,student,divorced,unknown,no,no,no,telephone,sep,wed,9,1,999,0,nonexistent,-1.1,94.199,-37.5,0.88,4963.6,no
+28,management,single,university.degree,no,yes,no,cellular,sep,wed,358,3,6,1,success,-1.1,94.199,-37.5,0.88,4963.6,yes
+32,blue-collar,married,basic.4y,no,no,no,telephone,sep,wed,606,3,3,4,success,-1.1,94.199,-37.5,0.88,4963.6,yes
+45,unemployed,married,high.school,no,no,no,cellular,sep,wed,1081,2,999,0,nonexistent,-1.1,94.199,-37.5,0.88,4963.6,yes
+26,admin.,single,university.degree,no,yes,no,telephone,sep,wed,9,1,999,0,nonexistent,-1.1,94.199,-37.5,0.88,4963.6,no
+80,retired,divorced,basic.4y,no,yes,no,telephone,sep,thu,378,4,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+38,technician,single,professional.course,no,yes,no,cellular,sep,thu,284,3,22,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+83,retired,divorced,basic.4y,no,yes,no,cellular,sep,thu,405,3,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+29,admin.,single,high.school,no,yes,no,cellular,sep,thu,216,1,6,2,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+60,admin.,married,professional.course,no,yes,yes,cellular,sep,thu,261,1,6,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+45,unemployed,married,professional.course,unknown,no,no,telephone,sep,thu,1405,1,6,2,failure,-1.1,94.199,-37.5,0.879,4963.6,yes
+45,unemployed,married,professional.course,unknown,no,no,cellular,sep,thu,679,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+27,technician,single,university.degree,no,yes,no,cellular,sep,thu,404,1,6,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+27,technician,single,university.degree,no,yes,no,cellular,sep,thu,530,1,3,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+38,technician,single,professional.course,no,no,no,cellular,sep,thu,430,4,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+33,admin.,married,high.school,no,yes,no,cellular,sep,thu,202,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+58,technician,married,professional.course,no,yes,no,cellular,sep,thu,156,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+37,admin.,single,university.degree,no,no,no,cellular,sep,thu,209,1,3,4,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+33,admin.,single,university.degree,no,yes,no,cellular,sep,thu,761,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+65,technician,married,professional.course,no,no,no,cellular,sep,thu,263,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+26,technician,single,basic.9y,no,yes,no,cellular,sep,thu,305,1,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes
+34,admin.,single,high.school,no,no,no,cellular,sep,thu,204,1,12,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+27,admin.,single,university.degree,no,no,no,cellular,sep,thu,167,3,3,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+38,technician,single,professional.course,no,yes,no,cellular,sep,thu,386,2,6,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+83,retired,divorced,basic.4y,no,no,no,cellular,sep,thu,268,1,9,3,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+38,services,single,high.school,no,yes,no,telephone,sep,thu,1,1,9,3,success,-1.1,94.199,-37.5,0.879,4963.6,no
+24,technician,single,professional.course,no,yes,no,cellular,sep,fri,1042,5,999,3,failure,-1.1,94.199,-37.5,0.878,4963.6,yes
+29,admin.,single,university.degree,no,no,no,cellular,sep,fri,110,4,6,1,success,-1.1,94.199,-37.5,0.878,4963.6,no
+64,retired,divorced,basic.4y,no,yes,yes,telephone,sep,fri,211,2,6,2,success,-1.1,94.199,-37.5,0.878,4963.6,yes
+29,technician,single,professional.course,no,unknown,unknown,cellular,sep,fri,255,1,3,2,success,-1.1,94.199,-37.5,0.878,4963.6,yes
+38,services,single,high.school,no,no,no,cellular,sep,fri,256,2,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,yes
+28,services,single,high.school,no,yes,yes,telephone,sep,fri,5,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no
+31,student,single,unknown,no,yes,no,telephone,sep,mon,69,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+32,technician,married,university.degree,no,no,no,cellular,sep,mon,175,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+27,management,single,university.degree,no,no,no,cellular,sep,mon,303,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+69,retired,married,basic.4y,no,no,no,cellular,sep,mon,258,3,6,1,success,-1.1,94.199,-37.5,0.879,4963.6,no
+29,technician,single,professional.course,no,yes,no,cellular,sep,mon,157,7,3,5,success,-1.1,94.199,-37.5,0.879,4963.6,no
+23,student,single,basic.9y,no,yes,yes,cellular,sep,mon,218,3,6,2,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+23,student,single,basic.9y,no,yes,no,cellular,sep,mon,502,1,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,no
+29,technician,single,professional.course,no,no,no,cellular,sep,mon,273,3,999,2,failure,-1.1,94.199,-37.5,0.879,4963.6,yes
+82,retired,married,university.degree,unknown,no,no,cellular,sep,mon,81,3,3,4,success,-1.1,94.199,-37.5,0.879,4963.6,no
+71,retired,married,high.school,no,no,no,cellular,sep,mon,363,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+33,services,married,professional.course,no,no,no,telephone,sep,mon,5,1,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,no
+31,blue-collar,single,basic.9y,no,yes,no,telephone,sep,mon,5,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+31,services,single,high.school,no,no,no,telephone,sep,mon,10,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+27,admin.,single,university.degree,no,yes,no,telephone,sep,mon,13,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+50,housemaid,divorced,basic.4y,no,no,no,telephone,sep,tue,57,1,999,0,nonexistent,-1.1,94.199,-37.5,0.877,4963.6,no
+57,admin.,divorced,high.school,no,no,no,cellular,sep,tue,473,1,3,5,success,-1.1,94.199,-37.5,0.877,4963.6,yes
+30,technician,single,professional.course,no,no,no,cellular,sep,tue,275,1,999,5,failure,-1.1,94.199,-37.5,0.877,4963.6,no
+21,student,single,unknown,no,no,no,telephone,sep,tue,9,1,999,0,nonexistent,-1.1,94.199,-37.5,0.877,4963.6,no
+25,management,single,university.degree,no,no,no,telephone,sep,tue,5,1,999,0,nonexistent,-1.1,94.199,-37.5,0.877,4963.6,no
+30,technician,single,professional.course,no,no,no,cellular,sep,tue,706,1,6,1,success,-1.1,94.199,-37.5,0.877,4963.6,no
+84,retired,divorced,unknown,unknown,no,no,cellular,sep,tue,333,1,3,2,success,-1.1,94.199,-37.5,0.877,4963.6,yes
+39,management,married,university.degree,no,yes,yes,cellular,sep,tue,358,2,999,0,nonexistent,-1.1,94.199,-37.5,0.877,4963.6,yes
+82,housemaid,married,basic.4y,no,no,no,telephone,sep,tue,279,3,3,2,success,-1.1,94.199,-37.5,0.877,4963.6,yes
+30,technician,single,professional.course,no,no,no,cellular,sep,tue,221,2,999,1,failure,-1.1,94.199,-37.5,0.877,4963.6,yes
+86,retired,married,unknown,unknown,yes,yes,cellular,sep,tue,211,1,7,4,success,-1.1,94.199,-37.5,0.877,4963.6,yes
+32,unemployed,married,high.school,no,no,no,telephone,sep,tue,6,1,999,1,failure,-1.1,94.199,-37.5,0.877,4963.6,no
+34,admin.,married,professional.course,no,yes,yes,cellular,sep,tue,409,1,999,1,failure,-1.1,94.199,-37.5,0.877,4963.6,yes
+34,admin.,married,professional.course,no,no,no,cellular,sep,tue,230,1,3,3,success,-1.1,94.199,-37.5,0.877,4963.6,yes
+31,admin.,single,university.degree,no,yes,yes,cellular,sep,tue,194,1,999,0,nonexistent,-1.1,94.199,-37.5,0.877,4963.6,yes
+53,management,divorced,university.degree,no,no,no,cellular,sep,tue,404,2,3,2,success,-1.1,94.199,-37.5,0.877,4963.6,yes
+61,management,married,professional.course,no,no,no,cellular,sep,tue,380,1,999,0,nonexistent,-1.1,94.199,-37.5,0.877,4963.6,no
+30,technician,single,professional.course,no,unknown,unknown,telephone,sep,tue,808,1,12,2,failure,-1.1,94.199,-37.5,0.877,4963.6,yes
+32,student,single,high.school,no,no,no,cellular,sep,tue,407,2,3,1,success,-1.1,94.199,-37.5,0.877,4963.6,no
+86,retired,married,unknown,unknown,yes,no,cellular,sep,tue,340,1,999,0,nonexistent,-1.1,94.199,-37.5,0.877,4963.6,yes
+24,student,single,high.school,no,yes,yes,cellular,sep,wed,251,2,6,2,success,-1.1,94.199,-37.5,0.876,4963.6,yes
+52,admin.,married,professional.course,no,no,yes,cellular,sep,wed,506,3,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,yes
+60,retired,married,high.school,no,no,no,cellular,sep,wed,1640,1,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,yes
+19,student,single,basic.4y,no,yes,no,cellular,sep,wed,396,2,6,3,success,-1.1,94.199,-37.5,0.876,4963.6,yes
+36,management,married,university.degree,no,unknown,unknown,cellular,sep,wed,331,1,6,4,failure,-1.1,94.199,-37.5,0.876,4963.6,yes
+33,technician,married,university.degree,no,yes,no,telephone,sep,wed,161,1,999,1,failure,-1.1,94.199,-37.5,0.876,4963.6,no
+23,student,single,professional.course,no,yes,no,cellular,sep,wed,316,1,8,2,success,-1.1,94.199,-37.5,0.876,4963.6,yes
+60,retired,married,high.school,no,no,no,cellular,sep,wed,200,1,6,1,success,-1.1,94.199,-37.5,0.876,4963.6,yes
+52,admin.,married,professional.course,no,no,no,cellular,sep,wed,953,2,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,yes
+45,admin.,divorced,university.degree,no,no,yes,telephone,sep,wed,173,1,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,no
+39,entrepreneur,married,professional.course,no,no,no,telephone,sep,wed,511,3,6,1,success,-1.1,94.199,-37.5,0.876,4963.6,yes
+33,technician,married,university.degree,no,yes,no,cellular,sep,wed,110,1,999,1,failure,-1.1,94.199,-37.5,0.876,4963.6,no
+33,technician,married,university.degree,no,no,no,cellular,sep,wed,216,1,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,yes
+23,student,single,professional.course,no,no,no,cellular,sep,wed,213,2,15,1,success,-1.1,94.199,-37.5,0.876,4963.6,yes
+34,admin.,married,high.school,no,no,yes,cellular,sep,wed,214,2,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,no
+35,admin.,married,university.degree,no,yes,no,telephone,sep,wed,7,1,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,no
+19,student,single,basic.6y,no,yes,no,cellular,sep,thu,161,2,6,4,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+29,technician,single,professional.course,no,no,yes,telephone,sep,thu,251,2,18,1,success,-1.1,94.199,-37.5,0.879,4963.6,no
+37,admin.,married,university.degree,no,no,yes,cellular,sep,thu,173,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+36,unemployed,single,high.school,no,yes,no,cellular,sep,thu,225,1,3,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+82,retired,divorced,basic.4y,no,yes,no,cellular,sep,thu,143,2,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes
+25,student,single,high.school,no,yes,no,cellular,sep,thu,574,3,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+41,admin.,married,unknown,no,yes,no,cellular,sep,thu,228,1,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,no
+31,admin.,married,university.degree,no,yes,no,cellular,sep,thu,193,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+33,technician,single,university.degree,no,yes,no,cellular,sep,thu,463,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+23,admin.,single,university.degree,no,no,no,cellular,sep,thu,270,3,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes
+24,admin.,single,university.degree,no,no,no,cellular,sep,thu,303,1,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes
+56,admin.,married,basic.9y,no,yes,yes,cellular,sep,thu,319,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+77,retired,married,basic.4y,no,yes,no,cellular,sep,thu,190,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+33,admin.,married,university.degree,no,yes,no,cellular,sep,thu,234,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+33,technician,married,unknown,no,yes,yes,cellular,sep,thu,414,1,9,3,failure,-1.1,94.199,-37.5,0.879,4963.6,yes
+19,student,single,basic.6y,no,yes,yes,cellular,sep,thu,452,5,13,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+38,admin.,married,university.degree,no,no,no,cellular,sep,thu,79,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+29,admin.,married,high.school,no,yes,no,cellular,sep,thu,147,3,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+23,student,single,basic.9y,no,yes,no,cellular,sep,thu,954,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+30,technician,single,university.degree,no,no,no,cellular,sep,thu,327,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+36,technician,married,university.degree,no,unknown,unknown,cellular,sep,thu,1334,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+34,technician,single,university.degree,no,no,no,cellular,sep,fri,152,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+34,technician,single,university.degree,no,yes,no,cellular,sep,fri,294,4,10,3,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+34,technician,single,university.degree,no,no,no,cellular,sep,fri,285,3,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes
+26,technician,single,university.degree,no,no,no,cellular,sep,fri,374,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+41,management,divorced,university.degree,no,no,no,cellular,sep,fri,164,5,3,3,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+36,technician,married,university.degree,no,yes,no,cellular,sep,fri,328,1,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes
+26,technician,single,university.degree,no,yes,no,cellular,sep,fri,284,3,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes
+34,technician,single,university.degree,no,no,no,cellular,sep,fri,155,4,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,no
+34,technician,single,university.degree,no,no,yes,telephone,sep,fri,231,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+31,services,single,high.school,no,yes,no,cellular,sep,fri,336,2,6,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+25,student,single,high.school,no,no,no,telephone,sep,mon,185,1,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,yes
+48,housemaid,married,basic.4y,no,yes,no,telephone,sep,mon,9,1,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,no
+55,unemployed,married,basic.4y,no,yes,no,telephone,sep,tue,6,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+50,management,married,university.degree,no,no,no,telephone,sep,tue,84,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+38,blue-collar,single,high.school,no,yes,no,cellular,sep,wed,263,1,6,3,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+41,unemployed,married,high.school,no,yes,yes,cellular,sep,wed,175,1,6,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+33,admin.,married,university.degree,no,no,no,cellular,sep,wed,208,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+33,admin.,married,university.degree,no,no,yes,cellular,sep,wed,397,1,999,2,failure,-1.1,94.199,-37.5,0.879,4963.6,yes
+33,technician,married,professional.course,no,no,no,cellular,sep,wed,569,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+32,technician,married,basic.9y,no,yes,no,cellular,sep,wed,155,1,6,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+32,technician,married,basic.9y,no,no,no,cellular,sep,wed,183,1,6,5,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+41,unemployed,married,high.school,no,no,no,cellular,sep,wed,182,1,6,3,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+33,admin.,married,university.degree,no,yes,yes,telephone,sep,wed,396,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+50,management,married,university.degree,no,no,no,cellular,sep,thu,718,4,999,3,failure,-1.1,94.199,-37.5,0.878,4963.6,no
+28,blue-collar,single,university.degree,no,yes,no,cellular,sep,thu,62,2,999,1,failure,-1.1,94.199,-37.5,0.878,4963.6,no
+37,admin.,married,high.school,no,yes,no,cellular,sep,thu,155,1,999,1,failure,-1.1,94.199,-37.5,0.878,4963.6,no
+26,self-employed,single,university.degree,no,yes,no,cellular,sep,thu,318,1,6,4,success,-1.1,94.199,-37.5,0.878,4963.6,no
+28,blue-collar,single,university.degree,no,unknown,unknown,cellular,sep,thu,744,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,yes
+31,technician,married,university.degree,no,no,no,cellular,sep,thu,261,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no
+29,admin.,single,university.degree,no,yes,no,cellular,sep,thu,180,2,8,2,success,-1.1,94.199,-37.5,0.878,4963.6,no
+26,self-employed,single,university.degree,no,yes,no,cellular,sep,thu,333,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no
+22,services,single,professional.course,no,yes,no,cellular,sep,thu,84,1,999,2,failure,-1.1,94.199,-37.5,0.878,4963.6,no
+58,admin.,married,high.school,no,no,no,cellular,sep,thu,337,1,6,1,success,-1.1,94.199,-37.5,0.878,4963.6,yes
+42,admin.,single,high.school,no,no,no,cellular,sep,thu,209,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,yes
+23,student,single,high.school,no,no,yes,cellular,sep,thu,409,2,3,2,success,-1.1,94.199,-37.5,0.878,4963.6,yes
+21,student,single,unknown,no,no,no,cellular,sep,thu,145,1,999,1,failure,-1.1,94.199,-37.5,0.878,4963.6,no
+53,technician,married,university.degree,no,no,no,cellular,sep,thu,156,2,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,yes
+30,housemaid,single,university.degree,no,no,no,cellular,sep,thu,103,2,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no
+31,technician,married,university.degree,no,no,no,cellular,sep,thu,244,1,3,1,success,-1.1,94.199,-37.5,0.878,4963.6,yes
+35,technician,married,professional.course,no,yes,no,cellular,sep,thu,317,1,999,2,failure,-1.1,94.199,-37.5,0.878,4963.6,no
+33,admin.,married,university.degree,no,yes,no,cellular,sep,thu,272,2,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,yes
+35,technician,married,professional.course,no,yes,no,cellular,sep,thu,447,1,999,2,failure,-1.1,94.199,-37.5,0.878,4963.6,no
+54,admin.,divorced,university.degree,no,yes,no,cellular,sep,thu,112,1,999,2,failure,-1.1,94.199,-37.5,0.878,4963.6,no
+35,technician,married,professional.course,no,yes,no,cellular,sep,thu,390,2,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no
+33,admin.,married,university.degree,no,yes,no,telephone,sep,thu,217,2,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no
+30,services,single,high.school,no,yes,no,cellular,sep,thu,405,1,999,3,failure,-1.1,94.199,-37.5,0.878,4963.6,no
+21,student,single,unknown,no,no,no,cellular,sep,thu,150,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no
+32,technician,married,high.school,no,no,no,cellular,sep,thu,245,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no
+58,admin.,married,university.degree,no,no,no,cellular,sep,thu,272,4,6,1,success,-1.1,94.199,-37.5,0.878,4963.6,yes
+29,admin.,single,high.school,no,no,no,cellular,sep,thu,134,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no
+28,management,single,university.degree,no,no,no,cellular,sep,fri,133,4,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,no
+30,technician,single,university.degree,no,yes,no,cellular,sep,fri,173,2,15,4,failure,-1.1,94.199,-37.5,0.879,4963.6,yes
+36,admin.,divorced,university.degree,no,yes,yes,cellular,sep,fri,157,3,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+23,student,single,university.degree,no,yes,no,cellular,sep,fri,349,2,999,4,failure,-1.1,94.199,-37.5,0.879,4963.6,no
+31,admin.,married,university.degree,no,yes,no,cellular,sep,fri,232,2,13,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+33,unemployed,single,unknown,no,yes,no,cellular,sep,fri,224,2,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes
+33,technician,single,professional.course,no,yes,no,cellular,sep,fri,246,9,999,2,failure,-1.1,94.199,-37.5,0.879,4963.6,no
+26,technician,single,professional.course,no,yes,no,cellular,sep,fri,249,1,3,3,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+33,technician,single,professional.course,no,yes,no,cellular,sep,fri,395,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+25,student,single,unknown,no,no,no,cellular,sep,fri,732,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+60,retired,married,professional.course,no,no,no,telephone,sep,fri,618,1,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,no
+51,admin.,divorced,high.school,no,yes,no,telephone,sep,fri,19,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+27,admin.,single,high.school,no,no,no,telephone,sep,mon,6,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+31,admin.,single,high.school,no,no,no,cellular,sep,mon,262,5,6,3,success,-1.1,94.199,-37.5,0.879,4963.6,yes
+34,technician,married,professional.course,no,yes,no,telephone,sep,mon,157,5,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+48,services,married,basic.6y,no,no,no,cellular,sep,mon,188,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+32,admin.,married,high.school,no,no,no,cellular,sep,mon,169,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+30,student,single,professional.course,no,unknown,unknown,cellular,sep,mon,132,4,6,3,success,-1.1,94.199,-37.5,0.879,4963.6,no
+32,admin.,single,university.degree,no,yes,no,cellular,sep,mon,290,4,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+32,admin.,married,high.school,no,yes,no,cellular,sep,mon,156,2,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,no
+30,student,single,professional.course,no,yes,no,telephone,sep,mon,379,3,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+30,student,single,professional.course,no,yes,no,cellular,sep,mon,1616,4,19,1,success,-1.1,94.199,-37.5,0.879,4963.6,no
+30,student,single,professional.course,no,no,no,cellular,sep,mon,162,2,9,2,failure,-1.1,94.199,-37.5,0.879,4963.6,no
+32,admin.,married,high.school,no,yes,no,cellular,sep,mon,1298,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+48,unemployed,married,professional.course,no,yes,no,cellular,sep,mon,315,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes
+32,admin.,single,university.degree,no,yes,no,cellular,sep,mon,990,4,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no
+32,admin.,single,university.degree,no,yes,no,telephone,sep,tue,6,1,999,0,nonexistent,-1.1,94.199,-37.5,0.88,4963.6,no
+30,student,single,professional.course,no,no,no,cellular,sep,tue,104,1,999,2,failure,-1.1,94.199,-37.5,0.88,4963.6,no
+30,student,single,professional.course,no,no,no,telephone,sep,tue,237,2,999,0,nonexistent,-1.1,94.199,-37.5,0.88,4963.6,no
+30,student,single,professional.course,no,yes,no,cellular,sep,tue,282,2,6,1,success,-1.1,94.199,-37.5,0.88,4963.6,yes
+29,admin.,single,university.degree,no,no,no,cellular,sep,tue,600,2,3,3,success,-1.1,94.199,-37.5,0.88,4963.6,yes
+22,student,single,high.school,no,no,no,telephone,sep,wed,13,1,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no
+40,admin.,divorced,high.school,no,yes,yes,telephone,sep,wed,21,1,999,1,failure,-1.1,94.199,-37.5,0.886,4963.6,no
+35,admin.,married,university.degree,no,no,yes,cellular,sep,wed,242,2,999,1,failure,-1.1,94.199,-37.5,0.886,4963.6,no
+35,admin.,married,university.degree,no,yes,no,cellular,sep,wed,110,2,18,2,failure,-1.1,94.199,-37.5,0.886,4963.6,no
+30,student,single,high.school,no,yes,no,cellular,sep,wed,201,2,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no
+42,management,married,university.degree,no,yes,no,cellular,sep,wed,232,1,3,2,success,-1.1,94.199,-37.5,0.886,4963.6,yes
+34,admin.,married,university.degree,no,no,yes,cellular,sep,wed,245,3,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,yes
+42,admin.,divorced,university.degree,no,yes,no,cellular,sep,wed,211,1,999,1,failure,-1.1,94.199,-37.5,0.886,4963.6,no
+42,admin.,divorced,university.degree,no,no,no,cellular,sep,wed,678,1,16,1,success,-1.1,94.199,-37.5,0.886,4963.6,yes
+41,admin.,married,unknown,no,no,no,cellular,sep,wed,845,1,7,3,success,-1.1,94.199,-37.5,0.886,4963.6,yes
+50,management,married,university.degree,no,yes,no,cellular,oct,fri,197,2,999,0,nonexistent,-1.1,94.601,-49.5,0.942,4963.6,no
+30,technician,unknown,university.degree,no,no,no,cellular,oct,fri,131,2,16,1,success,-1.1,94.601,-49.5,0.942,4963.6,no
+59,unemployed,married,basic.9y,no,yes,yes,cellular,oct,fri,142,1,999,0,nonexistent,-1.1,94.601,-49.5,0.942,4963.6,no
+32,admin.,single,university.degree,no,no,no,cellular,oct,fri,143,1,999,2,failure,-1.1,94.601,-49.5,0.942,4963.6,no
+32,admin.,single,university.degree,no,yes,no,cellular,oct,fri,164,1,999,3,failure,-1.1,94.601,-49.5,0.942,4963.6,no
+41,retired,single,basic.4y,no,yes,no,cellular,oct,fri,278,1,999,0,nonexistent,-1.1,94.601,-49.5,0.942,4963.6,no
+27,student,single,university.degree,no,yes,no,cellular,oct,fri,161,1,999,3,failure,-1.1,94.601,-49.5,0.942,4963.6,no
+30,self-employed,single,basic.9y,no,no,yes,telephone,oct,mon,5,1,999,0,nonexistent,-1.1,94.601,-49.5,0.953,4963.6,no
+58,admin.,married,university.degree,no,yes,no,telephone,oct,mon,9,1,999,0,nonexistent,-1.1,94.601,-49.5,0.953,4963.6,no
+40,technician,married,professional.course,no,yes,no,telephone,oct,tue,10,1,999,0,nonexistent,-1.1,94.601,-49.5,0.956,4963.6,no
+32,technician,married,professional.course,no,no,no,cellular,oct,wed,311,1,3,1,success,-1.1,94.601,-49.5,0.959,4963.6,yes
+32,technician,married,professional.course,no,no,no,cellular,oct,wed,486,1,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,yes
+26,technician,single,university.degree,no,no,no,cellular,oct,wed,649,1,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,yes
+26,blue-collar,single,basic.6y,no,no,no,cellular,oct,wed,808,1,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,yes
+35,technician,married,professional.course,no,yes,yes,cellular,oct,wed,608,1,9,2,failure,-1.1,94.601,-49.5,0.959,4963.6,yes
+26,admin.,single,university.degree,no,yes,yes,cellular,oct,wed,261,1,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,no
+32,technician,married,professional.course,no,yes,no,cellular,oct,wed,275,2,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,yes
+32,admin.,married,high.school,no,yes,no,telephone,oct,wed,48,1,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,no
+41,technician,married,professional.course,no,no,no,cellular,oct,wed,391,2,27,1,success,-1.1,94.601,-49.5,0.959,4963.6,yes
+57,admin.,married,university.degree,no,unknown,unknown,cellular,oct,wed,229,2,3,2,success,-1.1,94.601,-49.5,0.959,4963.6,yes
+26,admin.,single,university.degree,no,no,no,telephone,oct,wed,541,1,999,2,failure,-1.1,94.601,-49.5,0.959,4963.6,no
+22,self-employed,single,professional.course,no,yes,no,cellular,oct,wed,218,1,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,yes
+32,technician,married,professional.course,no,no,no,cellular,oct,wed,691,2,14,4,failure,-1.1,94.601,-49.5,0.959,4963.6,no
+75,retired,married,basic.4y,no,yes,no,cellular,oct,wed,1020,3,999,3,failure,-1.1,94.601,-49.5,0.959,4963.6,no
+28,admin.,single,high.school,no,no,no,cellular,oct,wed,1246,2,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,yes
+64,unemployed,divorced,basic.9y,no,yes,no,cellular,oct,wed,604,2,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,no
+36,admin.,single,university.degree,no,no,no,cellular,oct,thu,197,2,999,0,nonexistent,-1.1,94.601,-49.5,0.965,4963.6,no
+65,retired,married,basic.4y,no,yes,no,telephone,oct,thu,138,4,999,0,nonexistent,-1.1,94.601,-49.5,0.965,4963.6,no
+51,admin.,married,university.degree,no,yes,yes,cellular,oct,thu,236,3,3,1,success,-1.1,94.601,-49.5,0.965,4963.6,yes
+28,admin.,single,university.degree,no,no,no,cellular,oct,thu,116,1,17,1,success,-1.1,94.601,-49.5,0.965,4963.6,no
+70,retired,married,basic.4y,unknown,no,no,cellular,oct,thu,122,1,14,3,failure,-1.1,94.601,-49.5,0.965,4963.6,no
+31,admin.,single,university.degree,no,yes,no,telephone,oct,fri,118,1,999,0,nonexistent,-1.1,94.601,-49.5,0.972,4963.6,no
+62,blue-collar,married,unknown,no,no,no,cellular,oct,fri,73,3,999,0,nonexistent,-1.1,94.601,-49.5,0.972,4963.6,no
+61,retired,married,basic.4y,no,no,no,telephone,oct,fri,194,1,999,0,nonexistent,-1.1,94.601,-49.5,0.972,4963.6,yes
+33,blue-collar,single,basic.4y,no,yes,no,cellular,oct,fri,146,1,999,1,failure,-1.1,94.601,-49.5,0.972,4963.6,no
+29,technician,married,professional.course,no,yes,no,cellular,oct,fri,319,1,5,2,success,-1.1,94.601,-49.5,0.972,4963.6,yes
+47,admin.,married,high.school,no,yes,no,cellular,oct,fri,437,1,999,1,failure,-1.1,94.601,-49.5,0.972,4963.6,yes
+27,student,single,unknown,no,yes,no,cellular,oct,fri,512,1,20,4,failure,-1.1,94.601,-49.5,0.972,4963.6,no
+39,housemaid,married,basic.4y,no,no,no,cellular,oct,fri,282,1,999,0,nonexistent,-1.1,94.601,-49.5,0.972,4963.6,no
+60,retired,married,basic.4y,no,unknown,unknown,cellular,oct,fri,272,1,10,3,failure,-1.1,94.601,-49.5,0.972,4963.6,no
+27,student,single,unknown,no,yes,no,cellular,oct,fri,309,2,999,1,failure,-1.1,94.601,-49.5,0.972,4963.6,no
+32,services,single,university.degree,no,yes,no,cellular,oct,fri,375,2,999,2,failure,-1.1,94.601,-49.5,0.972,4963.6,no
+49,technician,divorced,professional.course,no,yes,no,cellular,oct,fri,251,2,3,1,success,-1.1,94.601,-49.5,0.972,4963.6,yes
+39,housemaid,married,basic.4y,no,yes,no,cellular,oct,fri,135,2,999,2,failure,-1.1,94.601,-49.5,0.972,4963.6,no
+66,retired,married,basic.4y,no,yes,no,telephone,oct,fri,369,2,999,1,failure,-1.1,94.601,-49.5,0.972,4963.6,yes
+56,unemployed,divorced,basic.4y,no,no,yes,cellular,oct,fri,363,2,5,3,success,-1.1,94.601,-49.5,0.972,4963.6,yes
+24,admin.,single,high.school,no,yes,no,cellular,oct,fri,133,2,999,1,failure,-1.1,94.601,-49.5,0.972,4963.6,no
+31,technician,single,professional.course,no,yes,no,cellular,oct,fri,401,2,999,0,nonexistent,-1.1,94.601,-49.5,0.972,4963.6,yes
+55,admin.,married,high.school,no,no,no,telephone,oct,mon,317,2,10,3,success,-1.1,94.601,-49.5,0.977,4963.6,no
+59,services,married,university.degree,no,yes,no,cellular,oct,mon,162,1,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,no
+33,services,married,professional.course,no,no,no,cellular,oct,mon,291,1,999,3,failure,-1.1,94.601,-49.5,0.977,4963.6,no
+48,technician,married,professional.course,no,yes,yes,cellular,oct,mon,450,1,8,1,success,-1.1,94.601,-49.5,0.977,4963.6,yes
+30,technician,single,unknown,no,yes,yes,cellular,oct,mon,195,1,999,3,failure,-1.1,94.601,-49.5,0.977,4963.6,no
+27,admin.,single,university.degree,no,no,no,cellular,oct,mon,278,1,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,yes
+29,admin.,single,university.degree,no,no,no,cellular,oct,mon,123,2,12,2,failure,-1.1,94.601,-49.5,0.977,4963.6,no
+33,services,single,university.degree,no,no,no,cellular,oct,mon,110,2,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,no
+33,services,single,university.degree,no,yes,no,cellular,oct,mon,252,2,3,2,success,-1.1,94.601,-49.5,0.977,4963.6,yes
+65,retired,married,basic.4y,no,yes,yes,cellular,oct,mon,165,1,3,1,success,-1.1,94.601,-49.5,0.977,4963.6,yes
+24,blue-collar,single,basic.9y,no,no,no,cellular,oct,mon,485,1,6,1,success,-1.1,94.601,-49.5,0.977,4963.6,no
+74,retired,married,university.degree,no,no,no,telephone,oct,mon,160,1,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,no
+25,services,single,high.school,no,no,no,cellular,oct,mon,251,1,999,1,failure,-1.1,94.601,-49.5,0.977,4963.6,no
+25,services,single,high.school,no,no,no,cellular,oct,mon,79,1,999,2,failure,-1.1,94.601,-49.5,0.977,4963.6,no
+26,technician,single,professional.course,no,no,no,telephone,oct,mon,4,1,16,1,success,-1.1,94.601,-49.5,0.977,4963.6,no
+22,unemployed,single,university.degree,no,no,yes,telephone,oct,mon,34,2,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,no
+59,services,married,university.degree,no,yes,no,cellular,oct,mon,383,2,999,2,failure,-1.1,94.601,-49.5,0.977,4963.6,yes
+71,retired,married,professional.course,no,yes,no,cellular,oct,mon,185,2,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,no
+61,admin.,married,high.school,no,yes,no,cellular,oct,mon,146,4,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,no
+20,student,single,unknown,no,no,no,cellular,oct,mon,137,3,999,3,failure,-1.1,94.601,-49.5,0.977,4963.6,no
+28,blue-collar,single,basic.9y,no,yes,no,telephone,oct,mon,4,1,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,no
+31,technician,single,professional.course,no,yes,no,telephone,oct,tue,54,1,999,1,failure,-1.1,94.601,-49.5,0.982,4963.6,no
+31,blue-collar,single,basic.9y,no,no,no,telephone,oct,tue,114,1,999,0,nonexistent,-1.1,94.601,-49.5,0.982,4963.6,no
+31,technician,married,university.degree,no,yes,yes,cellular,oct,tue,203,4,6,2,success,-1.1,94.601,-49.5,0.982,4963.6,yes
+21,student,single,high.school,no,no,no,cellular,oct,tue,362,1,999,0,nonexistent,-1.1,94.601,-49.5,0.982,4963.6,yes
+20,student,single,unknown,no,yes,yes,cellular,oct,tue,187,1,3,4,success,-1.1,94.601,-49.5,0.982,4963.6,yes
+22,student,single,university.degree,no,yes,no,cellular,oct,tue,166,1,999,0,nonexistent,-1.1,94.601,-49.5,0.982,4963.6,no
+27,admin.,single,university.degree,no,yes,yes,cellular,oct,tue,242,1,3,2,success,-1.1,94.601,-49.5,0.982,4963.6,no
+27,blue-collar,single,high.school,no,no,no,cellular,oct,tue,253,1,999,2,failure,-1.1,94.601,-49.5,0.982,4963.6,yes
+71,retired,married,professional.course,no,no,no,cellular,oct,tue,323,1,999,0,nonexistent,-1.1,94.601,-49.5,0.982,4963.6,yes
+27,admin.,single,university.degree,no,no,no,cellular,oct,tue,143,1,999,0,nonexistent,-1.1,94.601,-49.5,0.982,4963.6,no
+20,student,single,unknown,no,no,no,telephone,oct,tue,250,1,999,1,failure,-1.1,94.601,-49.5,0.982,4963.6,no
+31,technician,married,university.degree,no,no,no,cellular,oct,tue,146,2,12,3,failure,-1.1,94.601,-49.5,0.982,4963.6,no
+27,blue-collar,single,high.school,no,yes,no,cellular,oct,tue,209,3,999,1,failure,-1.1,94.601,-49.5,0.982,4963.6,yes
+51,housemaid,married,basic.4y,no,no,no,cellular,oct,tue,130,2,999,2,failure,-1.1,94.601,-49.5,0.982,4963.6,no
+27,student,single,high.school,no,no,no,telephone,oct,tue,5,1,999,0,nonexistent,-1.1,94.601,-49.5,0.982,4963.6,no
+49,admin.,married,high.school,unknown,no,no,cellular,oct,wed,169,1,6,3,success,-1.1,94.601,-49.5,0.985,4963.6,yes
+66,retired,married,basic.4y,unknown,unknown,unknown,cellular,oct,wed,216,1,6,3,success,-1.1,94.601,-49.5,0.985,4963.6,yes
+65,retired,married,basic.4y,no,yes,yes,cellular,oct,wed,190,1,3,3,success,-1.1,94.601,-49.5,0.985,4963.6,yes
+35,admin.,married,university.degree,no,no,no,cellular,oct,wed,194,1,3,2,success,-1.1,94.601,-49.5,0.985,4963.6,yes
+52,technician,married,university.degree,no,yes,no,telephone,oct,wed,6,1,999,1,failure,-1.1,94.601,-49.5,0.985,4963.6,no
+54,admin.,married,high.school,no,no,no,cellular,oct,wed,252,2,6,2,success,-1.1,94.601,-49.5,0.985,4963.6,yes
+60,retired,married,basic.4y,no,yes,no,cellular,oct,wed,357,2,999,1,failure,-1.1,94.601,-49.5,0.985,4963.6,no
+63,admin.,married,university.degree,no,yes,yes,cellular,oct,thu,133,2,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,no
+33,management,single,university.degree,no,no,no,cellular,oct,thu,119,3,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,no
+54,self-employed,married,university.degree,no,no,no,cellular,oct,thu,99,3,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,no
+81,retired,divorced,basic.4y,no,yes,no,cellular,oct,thu,192,2,3,2,success,-1.1,94.601,-49.5,0.987,4963.6,no
+70,retired,married,professional.course,no,no,no,cellular,oct,thu,585,1,6,3,success,-1.1,94.601,-49.5,0.987,4963.6,yes
+50,admin.,married,high.school,no,yes,no,cellular,oct,thu,326,1,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,yes
+48,technician,married,professional.course,no,yes,no,cellular,oct,thu,235,1,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,no
+48,technician,married,professional.course,no,no,no,cellular,oct,thu,491,1,6,3,success,-1.1,94.601,-49.5,0.987,4963.6,yes
+61,blue-collar,married,professional.course,no,yes,no,cellular,oct,thu,246,2,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,yes
+54,self-employed,married,university.degree,no,yes,no,cellular,oct,thu,317,6,6,1,success,-1.1,94.601,-49.5,0.987,4963.6,no
+37,admin.,single,high.school,no,no,no,telephone,oct,thu,301,1,3,1,success,-1.1,94.601,-49.5,0.987,4963.6,yes
+63,admin.,married,university.degree,no,yes,no,cellular,oct,thu,174,2,6,1,success,-1.1,94.601,-49.5,0.987,4963.6,no
+37,admin.,single,high.school,no,no,no,cellular,oct,thu,322,1,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,no
+37,admin.,single,high.school,no,no,no,cellular,oct,thu,509,1,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,yes
+54,self-employed,married,university.degree,no,no,no,cellular,oct,thu,219,3,999,1,failure,-1.1,94.601,-49.5,0.987,4963.6,no
+41,admin.,single,high.school,no,no,no,cellular,oct,thu,786,2,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,no
+54,self-employed,married,university.degree,no,yes,no,cellular,oct,thu,72,4,999,1,failure,-1.1,94.601,-49.5,0.987,4963.6,no
+51,admin.,married,high.school,no,no,yes,cellular,oct,thu,181,2,999,1,failure,-1.1,94.601,-49.5,0.987,4963.6,no
+81,retired,divorced,basic.4y,no,yes,no,cellular,oct,thu,158,1,999,1,failure,-1.1,94.601,-49.5,0.987,4963.6,no
+74,retired,married,university.degree,no,yes,no,cellular,oct,fri,212,2,3,2,success,-1.1,94.601,-49.5,0.993,4963.6,no
+34,student,single,professional.course,no,yes,no,telephone,oct,fri,6,1,999,0,nonexistent,-1.1,94.601,-49.5,0.993,4963.6,no
+65,retired,married,basic.4y,no,no,no,cellular,oct,fri,187,2,7,3,success,-1.1,94.601,-49.5,0.993,4963.6,yes
+84,retired,divorced,basic.4y,unknown,yes,no,cellular,oct,fri,106,4,999,0,nonexistent,-1.1,94.601,-49.5,0.993,4963.6,no
+24,admin.,single,university.degree,no,yes,no,cellular,oct,fri,1176,3,3,2,success,-1.1,94.601,-49.5,0.993,4963.6,yes
+68,retired,divorced,high.school,no,yes,no,cellular,oct,mon,130,4,999,2,failure,-1.1,94.601,-49.5,1,4963.6,no
+26,student,single,high.school,no,yes,no,telephone,oct,mon,209,1,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,no
+68,retired,divorced,high.school,no,yes,yes,cellular,oct,mon,567,1,3,1,success,-1.1,94.601,-49.5,1,4963.6,yes
+47,admin.,single,university.degree,no,yes,no,cellular,oct,mon,333,1,999,1,failure,-1.1,94.601,-49.5,1,4963.6,no
+44,technician,married,high.school,no,yes,yes,cellular,oct,mon,310,1,999,1,failure,-1.1,94.601,-49.5,1,4963.6,yes
+56,technician,divorced,professional.course,no,no,no,cellular,oct,mon,464,1,3,2,success,-1.1,94.601,-49.5,1,4963.6,yes
+42,technician,married,professional.course,no,yes,yes,cellular,oct,mon,509,1,6,1,success,-1.1,94.601,-49.5,1,4963.6,yes
+44,admin.,married,university.degree,no,yes,no,cellular,oct,mon,252,1,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,yes
+56,technician,divorced,professional.course,no,yes,yes,cellular,oct,mon,170,5,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,no
+29,admin.,single,university.degree,no,yes,no,cellular,oct,mon,526,1,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,yes
+68,retired,divorced,high.school,no,yes,no,cellular,oct,mon,222,1,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,yes
+74,retired,divorced,basic.4y,no,yes,no,cellular,oct,mon,180,2,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,no
+74,retired,divorced,basic.4y,no,yes,no,cellular,oct,mon,102,3,3,2,success,-1.1,94.601,-49.5,1,4963.6,no
+44,services,married,high.school,no,no,no,cellular,oct,mon,95,3,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,no
+47,admin.,single,university.degree,no,no,no,cellular,oct,mon,767,3,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,yes
+84,retired,divorced,basic.4y,unknown,yes,yes,cellular,oct,mon,138,4,3,1,success,-1.1,94.601,-49.5,1,4963.6,no
+60,retired,married,university.degree,no,yes,no,cellular,oct,mon,338,2,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,no
+44,technician,married,high.school,no,yes,yes,cellular,oct,mon,159,2,999,1,failure,-1.1,94.601,-49.5,1,4963.6,no
+24,student,single,professional.course,no,no,yes,cellular,oct,tue,133,3,999,2,failure,-1.1,94.601,-49.5,1.008,4963.6,no
+31,admin.,single,university.degree,no,unknown,unknown,cellular,oct,tue,192,1,3,1,success,-1.1,94.601,-49.5,1.008,4963.6,yes
+67,retired,divorced,basic.4y,no,yes,no,cellular,oct,tue,218,1,999,1,failure,-1.1,94.601,-49.5,1.008,4963.6,no
+48,technician,married,university.degree,no,yes,yes,cellular,oct,tue,337,2,999,0,nonexistent,-1.1,94.601,-49.5,1.008,4963.6,yes
+50,entrepreneur,divorced,university.degree,no,yes,no,telephone,oct,tue,898,7,11,2,success,-1.1,94.601,-49.5,1.008,4963.6,yes
+54,services,divorced,high.school,no,yes,yes,cellular,oct,wed,178,4,3,1,success,-1.1,94.601,-49.5,1.016,4963.6,yes
+54,services,divorced,high.school,no,no,no,cellular,oct,wed,268,1,999,1,failure,-1.1,94.601,-49.5,1.016,4963.6,no
+81,retired,married,basic.4y,no,yes,no,cellular,oct,wed,621,1,999,2,failure,-1.1,94.601,-49.5,1.016,4963.6,yes
+25,student,married,high.school,no,yes,no,telephone,oct,wed,7,1,999,0,nonexistent,-1.1,94.601,-49.5,1.016,4963.6,no
+34,technician,married,university.degree,no,yes,no,telephone,oct,wed,5,1,999,0,nonexistent,-1.1,94.601,-49.5,1.016,4963.6,no
+61,housemaid,married,basic.4y,no,yes,no,telephone,oct,wed,238,2,999,2,failure,-1.1,94.601,-49.5,1.016,4963.6,no
+54,services,divorced,high.school,no,yes,no,cellular,oct,wed,487,3,999,2,failure,-1.1,94.601,-49.5,1.016,4963.6,yes
+38,admin.,divorced,basic.9y,no,no,no,cellular,oct,wed,139,2,999,3,failure,-1.1,94.601,-49.5,1.016,4963.6,no
+45,student,single,unknown,no,yes,no,cellular,oct,wed,316,2,999,2,failure,-1.1,94.601,-49.5,1.016,4963.6,no
+37,management,married,university.degree,no,yes,no,cellular,oct,thu,150,3,5,5,success,-1.1,94.601,-49.5,1.025,4963.6,yes
+80,retired,married,professional.course,no,yes,no,cellular,oct,thu,411,1,999,1,failure,-1.1,94.601,-49.5,1.025,4963.6,yes
+63,unknown,married,professional.course,no,no,no,cellular,oct,thu,235,1,6,1,success,-1.1,94.601,-49.5,1.025,4963.6,no
+37,housemaid,married,university.degree,no,no,no,cellular,oct,thu,453,1,6,2,success,-1.1,94.601,-49.5,1.025,4963.6,yes
+37,housemaid,married,university.degree,no,no,no,cellular,oct,thu,178,2,13,2,success,-1.1,94.601,-49.5,1.025,4963.6,yes
+23,student,single,high.school,no,yes,no,cellular,oct,thu,262,3,999,0,nonexistent,-1.1,94.601,-49.5,1.025,4963.6,no
+24,blue-collar,single,high.school,no,no,no,cellular,oct,thu,1032,1,3,1,success,-1.1,94.601,-49.5,1.025,4963.6,yes
+33,admin.,single,university.degree,no,yes,no,cellular,oct,thu,759,1,3,3,success,-1.1,94.601,-49.5,1.025,4963.6,yes
+37,housemaid,married,university.degree,no,no,no,cellular,oct,thu,549,2,11,4,success,-1.1,94.601,-49.5,1.025,4963.6,yes
+65,retired,married,high.school,no,yes,no,cellular,oct,thu,201,5,3,1,success,-1.1,94.601,-49.5,1.025,4963.6,no
+29,admin.,single,high.school,no,no,no,telephone,oct,thu,330,2,6,1,success,-1.1,94.601,-49.5,1.025,4963.6,yes
+31,technician,single,professional.course,no,unknown,unknown,cellular,oct,thu,212,2,999,0,nonexistent,-1.1,94.601,-49.5,1.025,4963.6,yes
+34,admin.,divorced,university.degree,no,unknown,unknown,cellular,oct,thu,256,2,999,1,failure,-1.1,94.601,-49.5,1.025,4963.6,no
+37,management,married,university.degree,no,yes,no,cellular,oct,thu,339,3,3,3,success,-1.1,94.601,-49.5,1.025,4963.6,yes
+45,admin.,married,high.school,no,yes,no,cellular,oct,fri,738,3,6,1,success,-1.1,94.601,-49.5,1.029,4963.6,yes
+26,unemployed,single,high.school,no,yes,no,cellular,oct,fri,394,3,14,1,success,-1.1,94.601,-49.5,1.029,4963.6,yes
+31,student,single,high.school,no,yes,no,cellular,oct,fri,716,3,999,0,nonexistent,-1.1,94.601,-49.5,1.029,4963.6,yes
+25,student,single,high.school,no,yes,no,cellular,oct,fri,234,1,3,1,success,-1.1,94.601,-49.5,1.029,4963.6,yes
+29,unemployed,single,high.school,no,yes,no,cellular,oct,fri,168,2,999,0,nonexistent,-1.1,94.601,-49.5,1.029,4963.6,no
+23,student,single,high.school,no,no,yes,cellular,oct,fri,380,1,3,1,success,-1.1,94.601,-49.5,1.029,4963.6,yes
+27,self-employed,single,university.degree,no,no,no,telephone,oct,fri,84,3,999,0,nonexistent,-1.1,94.601,-49.5,1.029,4963.6,no
+37,unemployed,single,professional.course,no,no,no,cellular,oct,fri,142,4,6,1,success,-1.1,94.601,-49.5,1.029,4963.6,no
+25,student,single,high.school,no,no,no,cellular,oct,fri,554,3,999,0,nonexistent,-1.1,94.601,-49.5,1.029,4963.6,yes
+65,retired,married,high.school,no,yes,yes,cellular,oct,fri,344,2,12,1,success,-1.1,94.601,-49.5,1.029,4963.6,yes
+37,services,married,high.school,no,yes,yes,cellular,oct,fri,608,2,12,2,failure,-1.1,94.601,-49.5,1.029,4963.6,yes
+28,admin.,single,university.degree,no,yes,no,cellular,oct,mon,92,4,17,3,failure,-1.1,94.601,-49.5,1.032,4963.6,no
+46,management,married,university.degree,no,unknown,unknown,cellular,oct,mon,83,2,12,2,failure,-1.1,94.601,-49.5,1.032,4963.6,no
+28,admin.,single,university.degree,no,no,no,cellular,oct,mon,225,1,3,3,success,-1.1,94.601,-49.5,1.032,4963.6,yes
+25,student,single,high.school,no,yes,no,cellular,oct,mon,189,1,6,4,success,-1.1,94.601,-49.5,1.032,4963.6,no
+36,unemployed,married,high.school,no,yes,no,cellular,oct,mon,304,1,3,1,success,-1.1,94.601,-49.5,1.032,4963.6,yes
+33,admin.,single,university.degree,no,yes,no,cellular,oct,mon,400,1,5,2,success,-1.1,94.601,-49.5,1.032,4963.6,yes
+33,services,single,high.school,no,yes,no,cellular,oct,mon,182,1,6,1,success,-1.1,94.601,-49.5,1.032,4963.6,yes
+30,technician,married,professional.course,no,yes,no,cellular,oct,mon,253,1,9,2,success,-1.1,94.601,-49.5,1.032,4963.6,yes
+38,technician,single,university.degree,no,yes,no,telephone,oct,mon,254,1,9,3,failure,-1.1,94.601,-49.5,1.032,4963.6,no
+28,admin.,single,university.degree,no,yes,no,cellular,oct,mon,324,1,6,2,success,-1.1,94.601,-49.5,1.032,4963.6,no
+23,student,single,high.school,no,yes,no,cellular,oct,mon,226,2,999,1,failure,-1.1,94.601,-49.5,1.032,4963.6,yes
+33,admin.,single,university.degree,no,yes,no,cellular,oct,mon,297,5,999,0,nonexistent,-1.1,94.601,-49.5,1.032,4963.6,yes
+30,technician,married,professional.course,no,yes,no,cellular,oct,mon,215,1,6,1,success,-1.1,94.601,-49.5,1.032,4963.6,yes
+35,admin.,single,university.degree,no,yes,no,cellular,oct,mon,129,1,999,0,nonexistent,-1.1,94.601,-49.5,1.032,4963.6,no
+25,student,single,high.school,no,yes,no,cellular,oct,mon,211,2,6,3,success,-1.1,94.601,-49.5,1.032,4963.6,yes
+38,admin.,divorced,university.degree,no,yes,no,telephone,oct,mon,293,3,999,0,nonexistent,-1.1,94.601,-49.5,1.032,4963.6,no
+62,admin.,married,high.school,no,no,no,cellular,oct,tue,318,1,4,3,success,-1.1,94.601,-49.5,1.037,4963.6,yes
+30,student,single,high.school,no,yes,no,cellular,oct,tue,196,1,17,2,failure,-1.1,94.601,-49.5,1.037,4963.6,no
+60,admin.,married,high.school,no,no,no,cellular,oct,tue,604,1,999,1,failure,-1.1,94.601,-49.5,1.037,4963.6,yes
+62,admin.,married,high.school,no,no,no,cellular,oct,tue,238,4,18,2,failure,-1.1,94.601,-49.5,1.037,4963.6,yes
+25,student,single,high.school,no,yes,no,telephone,oct,tue,17,1,999,0,nonexistent,-1.1,94.601,-49.5,1.037,4963.6,no
+21,student,single,high.school,no,no,no,cellular,oct,tue,701,2,999,0,nonexistent,-1.1,94.601,-49.5,1.037,4963.6,yes
+30,management,married,university.degree,no,no,no,cellular,oct,wed,711,1,999,0,nonexistent,-1.1,94.601,-49.5,1.043,4963.6,yes
+27,technician,single,university.degree,no,no,no,cellular,oct,wed,223,2,999,0,nonexistent,-1.1,94.601,-49.5,1.043,4963.6,no
+65,retired,married,basic.4y,no,no,no,cellular,oct,wed,882,1,999,0,nonexistent,-1.1,94.601,-49.5,1.043,4963.6,yes
+23,student,single,high.school,no,no,no,cellular,oct,wed,409,1,3,1,success,-1.1,94.601,-49.5,1.043,4963.6,no
+31,student,single,university.degree,no,no,no,cellular,oct,wed,508,1,999,0,nonexistent,-1.1,94.601,-49.5,1.043,4963.6,yes
+27,technician,single,university.degree,no,yes,no,cellular,oct,wed,184,1,999,1,failure,-1.1,94.601,-49.5,1.043,4963.6,yes
+60,retired,married,professional.course,no,no,yes,cellular,oct,wed,170,2,999,1,failure,-1.1,94.601,-49.5,1.043,4963.6,no
+30,management,married,university.degree,no,no,yes,cellular,oct,wed,255,1,6,1,success,-1.1,94.601,-49.5,1.043,4963.6,yes
+65,retired,married,basic.4y,no,yes,no,cellular,oct,wed,258,1,3,3,success,-1.1,94.601,-49.5,1.043,4963.6,yes
+42,services,married,basic.9y,no,no,no,telephone,oct,thu,71,1,999,0,nonexistent,-1.1,94.601,-49.5,1.045,4963.6,no
+46,admin.,married,basic.9y,no,yes,no,telephone,nov,tue,18,1,999,1,failure,-1.1,94.767,-50.8,1.047,4963.6,no
+31,management,married,university.degree,no,yes,no,cellular,nov,mon,188,1,999,0,nonexistent,-1.1,94.767,-50.8,1.05,4963.6,yes
+51,services,married,high.school,no,yes,no,cellular,nov,mon,176,1,999,1,failure,-1.1,94.767,-50.8,1.05,4963.6,no
+48,admin.,married,university.degree,no,yes,no,cellular,nov,mon,159,1,6,3,success,-1.1,94.767,-50.8,1.05,4963.6,yes
+29,technician,single,university.degree,no,no,no,cellular,nov,mon,240,1,4,1,success,-1.1,94.767,-50.8,1.05,4963.6,no
+29,technician,single,university.degree,no,no,no,telephone,nov,mon,360,1,3,2,success,-1.1,94.767,-50.8,1.05,4963.6,yes
+37,technician,married,university.degree,no,no,no,cellular,nov,mon,119,1,999,3,failure,-1.1,94.767,-50.8,1.05,4963.6,no
+34,admin.,married,university.degree,no,no,no,cellular,nov,mon,230,1,999,1,failure,-1.1,94.767,-50.8,1.05,4963.6,no
+29,admin.,single,high.school,no,yes,no,telephone,nov,mon,207,1,6,1,success,-1.1,94.767,-50.8,1.05,4963.6,no
+51,services,married,high.school,no,no,yes,cellular,nov,mon,120,2,3,4,success,-1.1,94.767,-50.8,1.05,4963.6,no
+37,admin.,married,university.degree,no,no,no,cellular,nov,mon,137,1,999,1,failure,-1.1,94.767,-50.8,1.05,4963.6,no
+61,retired,married,university.degree,no,no,no,cellular,nov,mon,507,1,999,0,nonexistent,-1.1,94.767,-50.8,1.05,4963.6,no
+24,student,single,high.school,no,yes,yes,cellular,nov,mon,106,1,999,0,nonexistent,-1.1,94.767,-50.8,1.05,4963.6,no
+39,admin.,married,high.school,no,no,no,cellular,nov,mon,148,1,999,1,failure,-1.1,94.767,-50.8,1.05,4963.6,no
+35,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,212,1,999,2,failure,-1.1,94.767,-50.8,1.05,4963.6,no
+34,admin.,married,university.degree,no,no,no,cellular,nov,mon,141,2,999,0,nonexistent,-1.1,94.767,-50.8,1.05,4963.6,no
+50,blue-collar,divorced,professional.course,no,yes,no,cellular,nov,mon,742,1,999,0,nonexistent,-1.1,94.767,-50.8,1.05,4963.6,yes
+45,blue-collar,married,high.school,no,yes,yes,cellular,nov,mon,449,2,5,3,success,-1.1,94.767,-50.8,1.05,4963.6,yes
+37,admin.,married,university.degree,no,no,no,cellular,nov,mon,282,2,6,1,success,-1.1,94.767,-50.8,1.05,4963.6,yes
+51,services,married,high.school,no,yes,no,cellular,nov,mon,354,3,6,3,success,-1.1,94.767,-50.8,1.05,4963.6,no
+27,student,single,high.school,no,no,yes,cellular,nov,tue,326,1,999,0,nonexistent,-1.1,94.767,-50.8,1.049,4963.6,no
+51,admin.,divorced,high.school,no,yes,no,cellular,nov,tue,283,1,3,7,success,-1.1,94.767,-50.8,1.049,4963.6,no
+48,admin.,married,high.school,no,no,no,telephone,nov,tue,301,1,999,2,failure,-1.1,94.767,-50.8,1.049,4963.6,no
+24,technician,single,university.degree,no,yes,yes,cellular,nov,tue,467,3,6,3,failure,-1.1,94.767,-50.8,1.049,4963.6,yes
+18,student,single,unknown,no,yes,no,cellular,nov,tue,600,2,999,3,failure,-1.1,94.767,-50.8,1.049,4963.6,no
+51,admin.,divorced,high.school,no,yes,yes,cellular,nov,tue,334,2,6,4,failure,-1.1,94.767,-50.8,1.049,4963.6,yes
+50,blue-collar,divorced,professional.course,no,yes,no,cellular,nov,tue,137,2,9,3,success,-1.1,94.767,-50.8,1.049,4963.6,no
+30,blue-collar,single,professional.course,no,yes,no,cellular,nov,tue,111,2,999,0,nonexistent,-1.1,94.767,-50.8,1.049,4963.6,no
+18,student,single,basic.4y,no,yes,no,telephone,nov,tue,394,1,13,2,success,-1.1,94.767,-50.8,1.049,4963.6,yes
+50,blue-collar,divorced,professional.course,no,yes,no,telephone,nov,tue,301,2,7,2,success,-1.1,94.767,-50.8,1.049,4963.6,yes
+31,admin.,single,university.degree,no,no,yes,cellular,nov,wed,212,2,3,6,success,-1.1,94.767,-50.8,1.048,4963.6,no
+31,admin.,single,university.degree,no,yes,no,cellular,nov,wed,228,1,999,0,nonexistent,-1.1,94.767,-50.8,1.048,4963.6,no
+31,admin.,single,university.degree,no,yes,no,cellular,nov,wed,404,1,2,5,success,-1.1,94.767,-50.8,1.048,4963.6,yes
+52,technician,married,university.degree,no,no,no,cellular,nov,wed,164,1,999,1,failure,-1.1,94.767,-50.8,1.048,4963.6,no
+19,student,single,basic.9y,no,yes,no,cellular,nov,wed,182,1,999,1,failure,-1.1,94.767,-50.8,1.048,4963.6,no
+31,admin.,single,university.degree,no,yes,no,telephone,nov,wed,98,2,999,0,nonexistent,-1.1,94.767,-50.8,1.048,4963.6,no
+28,services,married,high.school,no,yes,no,cellular,nov,wed,223,3,999,2,failure,-1.1,94.767,-50.8,1.048,4963.6,no
+34,admin.,married,university.degree,no,no,no,cellular,nov,wed,134,1,3,3,success,-1.1,94.767,-50.8,1.048,4963.6,no
+29,student,single,high.school,no,yes,yes,cellular,nov,thu,289,1,3,3,success,-1.1,94.767,-50.8,1.05,4963.6,yes
+59,admin.,divorced,high.school,no,no,no,cellular,nov,thu,357,3,3,2,success,-1.1,94.767,-50.8,1.05,4963.6,yes
+33,admin.,married,university.degree,no,yes,no,cellular,nov,fri,482,1,12,1,success,-1.1,94.767,-50.8,1.049,4963.6,yes
+63,retired,married,basic.4y,no,yes,no,cellular,nov,fri,413,1,3,2,success,-1.1,94.767,-50.8,1.049,4963.6,yes
+45,admin.,married,university.degree,no,no,no,cellular,nov,fri,319,1,999,3,failure,-1.1,94.767,-50.8,1.049,4963.6,no
+40,technician,married,basic.9y,no,yes,no,cellular,nov,mon,414,2,999,3,failure,-1.1,94.767,-50.8,1.048,4963.6,no
+46,admin.,single,high.school,no,yes,no,cellular,nov,mon,199,2,999,2,failure,-1.1,94.767,-50.8,1.048,4963.6,no
+32,admin.,single,high.school,no,no,no,cellular,nov,mon,191,2,19,2,failure,-1.1,94.767,-50.8,1.048,4963.6,no
+32,admin.,single,high.school,no,no,no,cellular,nov,mon,74,2,999,2,failure,-1.1,94.767,-50.8,1.048,4963.6,no
+32,admin.,single,high.school,no,yes,no,cellular,nov,mon,128,2,999,1,failure,-1.1,94.767,-50.8,1.048,4963.6,no
+64,unknown,married,unknown,no,no,no,cellular,nov,mon,78,1,3,3,success,-1.1,94.767,-50.8,1.048,4963.6,no
+34,technician,married,unknown,no,yes,no,cellular,nov,tue,138,1,1,4,success,-1.1,94.767,-50.8,1.046,4963.6,no
+34,technician,married,unknown,no,yes,no,cellular,nov,tue,200,1,3,1,success,-1.1,94.767,-50.8,1.046,4963.6,yes
+46,admin.,single,university.degree,no,no,yes,cellular,nov,tue,173,1,999,1,failure,-1.1,94.767,-50.8,1.046,4963.6,no
+58,admin.,married,high.school,no,yes,no,cellular,nov,tue,173,1,999,2,failure,-1.1,94.767,-50.8,1.046,4963.6,no
+34,technician,married,unknown,no,no,no,cellular,nov,tue,206,1,6,2,success,-1.1,94.767,-50.8,1.046,4963.6,yes
+60,admin.,married,unknown,no,no,no,cellular,nov,tue,787,1,7,2,success,-1.1,94.767,-50.8,1.046,4963.6,yes
+42,services,divorced,university.degree,no,unknown,unknown,cellular,nov,tue,262,1,999,1,failure,-1.1,94.767,-50.8,1.046,4963.6,yes
+36,blue-collar,single,basic.6y,no,no,no,cellular,nov,tue,238,1,999,0,nonexistent,-1.1,94.767,-50.8,1.046,4963.6,yes
+29,technician,single,professional.course,no,no,no,cellular,nov,tue,449,2,1,1,success,-1.1,94.767,-50.8,1.046,4963.6,yes
+34,technician,married,unknown,no,yes,no,cellular,nov,tue,162,2,999,2,failure,-1.1,94.767,-50.8,1.046,4963.6,no
+36,blue-collar,single,basic.6y,no,yes,no,cellular,nov,tue,330,1,999,0,nonexistent,-1.1,94.767,-50.8,1.046,4963.6,yes
+60,admin.,married,unknown,no,no,no,cellular,nov,tue,333,2,999,0,nonexistent,-1.1,94.767,-50.8,1.046,4963.6,no
+46,admin.,single,university.degree,no,yes,no,cellular,nov,tue,1166,3,999,1,failure,-1.1,94.767,-50.8,1.046,4963.6,no
+34,technician,married,unknown,no,no,no,cellular,nov,tue,985,3,999,0,nonexistent,-1.1,94.767,-50.8,1.046,4963.6,yes
+36,blue-collar,single,basic.6y,no,no,no,cellular,nov,tue,1556,4,999,0,nonexistent,-1.1,94.767,-50.8,1.046,4963.6,yes
+37,technician,single,professional.course,no,yes,no,cellular,nov,wed,226,1,6,4,success,-1.1,94.767,-50.8,1.044,4963.6,yes
+37,technician,single,professional.course,no,yes,no,cellular,nov,wed,224,1,999,0,nonexistent,-1.1,94.767,-50.8,1.044,4963.6,yes
+61,admin.,married,high.school,no,yes,no,cellular,nov,wed,300,1,21,5,failure,-1.1,94.767,-50.8,1.044,4963.6,yes
+61,admin.,married,high.school,no,yes,yes,cellular,nov,wed,386,2,999,0,nonexistent,-1.1,94.767,-50.8,1.044,4963.6,yes
+31,admin.,single,high.school,no,yes,no,cellular,nov,wed,456,2,999,0,nonexistent,-1.1,94.767,-50.8,1.044,4963.6,yes
+61,admin.,married,high.school,no,no,no,telephone,nov,wed,508,4,999,0,nonexistent,-1.1,94.767,-50.8,1.044,4963.6,no
+31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,260,1,999,0,nonexistent,-1.1,94.767,-50.8,1.041,4963.6,yes
+58,management,married,university.degree,no,yes,no,cellular,nov,thu,193,1,999,0,nonexistent,-1.1,94.767,-50.8,1.041,4963.6,no
+41,unemployed,married,basic.9y,no,no,no,cellular,nov,thu,597,2,3,2,success,-1.1,94.767,-50.8,1.041,4963.6,yes
+28,self-employed,single,university.degree,no,yes,no,cellular,nov,thu,97,2,6,3,success,-1.1,94.767,-50.8,1.041,4963.6,no
+25,student,single,high.school,no,no,no,cellular,nov,thu,244,1,999,0,nonexistent,-1.1,94.767,-50.8,1.041,4963.6,yes
+54,technician,married,unknown,no,yes,no,cellular,nov,thu,222,1,999,1,failure,-1.1,94.767,-50.8,1.041,4963.6,no
+54,unemployed,married,professional.course,no,yes,no,telephone,nov,thu,200,2,10,4,failure,-1.1,94.767,-50.8,1.041,4963.6,no
+42,admin.,married,university.degree,no,yes,no,cellular,nov,thu,419,3,999,1,failure,-1.1,94.767,-50.8,1.041,4963.6,no
+58,unemployed,married,university.degree,no,yes,no,cellular,nov,thu,344,2,999,0,nonexistent,-1.1,94.767,-50.8,1.041,4963.6,yes
+31,services,married,high.school,no,yes,no,cellular,nov,fri,202,3,999,0,nonexistent,-1.1,94.767,-50.8,1.04,4963.6,no
+33,management,married,university.degree,no,yes,no,cellular,nov,fri,237,2,999,0,nonexistent,-1.1,94.767,-50.8,1.04,4963.6,yes
+37,admin.,married,university.degree,no,yes,no,cellular,nov,fri,315,1,999,0,nonexistent,-1.1,94.767,-50.8,1.04,4963.6,yes
+43,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,741,4,999,2,failure,-1.1,94.767,-50.8,1.04,4963.6,yes
+29,technician,single,professional.course,no,no,yes,cellular,nov,fri,127,1,6,2,success,-1.1,94.767,-50.8,1.04,4963.6,no
+35,admin.,single,professional.course,no,yes,no,cellular,nov,fri,92,3,999,4,failure,-1.1,94.767,-50.8,1.04,4963.6,no
+26,admin.,single,university.degree,no,no,no,cellular,nov,fri,528,3,999,0,nonexistent,-1.1,94.767,-50.8,1.04,4963.6,yes
+41,admin.,married,university.degree,no,yes,no,cellular,nov,fri,252,4,999,0,nonexistent,-1.1,94.767,-50.8,1.04,4963.6,yes
+25,technician,single,professional.course,no,yes,no,cellular,nov,fri,712,2,19,1,success,-1.1,94.767,-50.8,1.04,4963.6,yes
+35,admin.,single,professional.course,no,yes,no,cellular,nov,fri,397,3,999,0,nonexistent,-1.1,94.767,-50.8,1.04,4963.6,yes
+30,admin.,single,university.degree,no,yes,no,cellular,nov,mon,324,2,999,0,nonexistent,-1.1,94.767,-50.8,1.039,4963.6,no
+41,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,371,2,999,1,failure,-1.1,94.767,-50.8,1.039,4963.6,no
+41,technician,married,professional.course,no,no,no,cellular,nov,mon,526,2,6,1,success,-1.1,94.767,-50.8,1.039,4963.6,yes
+26,management,single,university.degree,no,yes,no,cellular,nov,mon,112,5,999,0,nonexistent,-1.1,94.767,-50.8,1.039,4963.6,no
+67,housemaid,divorced,professional.course,no,yes,no,cellular,nov,mon,655,2,5,5,success,-1.1,94.767,-50.8,1.039,4963.6,yes
+41,technician,married,professional.course,no,yes,no,cellular,nov,mon,185,2,999,0,nonexistent,-1.1,94.767,-50.8,1.039,4963.6,no
+31,housemaid,single,university.degree,no,no,no,telephone,nov,mon,152,5,999,0,nonexistent,-1.1,94.767,-50.8,1.039,4963.6,no
+41,technician,married,professional.course,no,yes,no,cellular,nov,mon,545,2,999,0,nonexistent,-1.1,94.767,-50.8,1.039,4963.6,yes
+31,housemaid,single,university.degree,no,no,no,cellular,nov,mon,159,4,999,0,nonexistent,-1.1,94.767,-50.8,1.039,4963.6,no
+35,technician,divorced,basic.4y,no,no,no,cellular,nov,tue,363,1,999,0,nonexistent,-1.1,94.767,-50.8,1.035,4963.6,yes
+35,technician,divorced,basic.4y,no,yes,no,cellular,nov,tue,514,1,9,4,success,-1.1,94.767,-50.8,1.035,4963.6,yes
+33,admin.,married,university.degree,no,no,no,cellular,nov,tue,843,1,999,0,nonexistent,-1.1,94.767,-50.8,1.035,4963.6,yes
+33,admin.,married,university.degree,no,yes,no,cellular,nov,tue,510,1,999,1,failure,-1.1,94.767,-50.8,1.035,4963.6,no
+60,blue-collar,married,basic.4y,no,yes,no,cellular,nov,tue,347,2,4,1,success,-1.1,94.767,-50.8,1.035,4963.6,no
+35,technician,divorced,basic.4y,no,yes,no,cellular,nov,tue,385,3,4,2,success,-1.1,94.767,-50.8,1.035,4963.6,yes
+54,admin.,married,professional.course,no,no,no,cellular,nov,tue,1868,2,10,1,success,-1.1,94.767,-50.8,1.035,4963.6,yes
+38,housemaid,divorced,university.degree,no,no,no,cellular,nov,wed,403,2,999,0,nonexistent,-1.1,94.767,-50.8,1.03,4963.6,yes
+32,admin.,married,university.degree,no,no,no,telephone,nov,wed,651,1,999,1,failure,-1.1,94.767,-50.8,1.03,4963.6,yes
+32,admin.,married,university.degree,no,yes,no,cellular,nov,wed,236,3,999,0,nonexistent,-1.1,94.767,-50.8,1.03,4963.6,no
+38,entrepreneur,married,university.degree,no,no,no,cellular,nov,wed,144,2,999,0,nonexistent,-1.1,94.767,-50.8,1.03,4963.6,no
+62,services,married,high.school,no,yes,no,cellular,nov,wed,154,5,999,0,nonexistent,-1.1,94.767,-50.8,1.03,4963.6,no
+40,management,divorced,university.degree,no,yes,no,cellular,nov,wed,293,2,999,4,failure,-1.1,94.767,-50.8,1.03,4963.6,no
+33,student,married,professional.course,no,yes,no,telephone,nov,thu,112,1,999,0,nonexistent,-1.1,94.767,-50.8,1.031,4963.6,yes
+31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,353,1,999,0,nonexistent,-1.1,94.767,-50.8,1.031,4963.6,yes
+62,retired,married,university.degree,no,yes,no,cellular,nov,thu,329,1,999,2,failure,-1.1,94.767,-50.8,1.031,4963.6,yes
+62,retired,married,university.degree,no,yes,no,cellular,nov,thu,208,1,1,6,success,-1.1,94.767,-50.8,1.031,4963.6,yes
+34,student,single,unknown,no,yes,no,cellular,nov,thu,180,1,999,2,failure,-1.1,94.767,-50.8,1.031,4963.6,no
+38,housemaid,divorced,high.school,no,yes,yes,cellular,nov,thu,360,1,999,0,nonexistent,-1.1,94.767,-50.8,1.031,4963.6,no
+57,retired,married,professional.course,no,yes,no,cellular,nov,thu,124,6,999,0,nonexistent,-1.1,94.767,-50.8,1.031,4963.6,no
+62,retired,married,university.degree,no,no,no,cellular,nov,thu,483,2,6,3,success,-1.1,94.767,-50.8,1.031,4963.6,yes
+64,retired,divorced,professional.course,no,yes,no,cellular,nov,fri,151,3,999,0,nonexistent,-1.1,94.767,-50.8,1.028,4963.6,no
+36,admin.,married,university.degree,no,no,no,cellular,nov,fri,254,2,999,0,nonexistent,-1.1,94.767,-50.8,1.028,4963.6,no
+37,admin.,married,university.degree,no,yes,no,cellular,nov,fri,281,1,999,0,nonexistent,-1.1,94.767,-50.8,1.028,4963.6,yes
+29,unemployed,single,basic.4y,no,yes,no,cellular,nov,fri,112,1,9,1,success,-1.1,94.767,-50.8,1.028,4963.6,no
+73,retired,married,professional.course,no,yes,no,cellular,nov,fri,334,1,999,0,nonexistent,-1.1,94.767,-50.8,1.028,4963.6,yes
+46,blue-collar,married,professional.course,no,no,no,cellular,nov,fri,383,1,999,0,nonexistent,-1.1,94.767,-50.8,1.028,4963.6,no
+56,retired,married,university.degree,no,yes,no,cellular,nov,fri,189,2,999,0,nonexistent,-1.1,94.767,-50.8,1.028,4963.6,no
+44,technician,married,professional.course,no,no,no,cellular,nov,fri,442,1,999,0,nonexistent,-1.1,94.767,-50.8,1.028,4963.6,yes
+74,retired,married,professional.course,no,yes,no,cellular,nov,fri,239,3,999,1,failure,-1.1,94.767,-50.8,1.028,4963.6,no
From 3cfa68f0cb0bf591fe63f5db56ee5bab24ff701f Mon Sep 17 00:00:00 2001
From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com>
Date: Tue, 9 Jul 2024 01:21:53 +0530
Subject: [PATCH 5/8] Create README.md
---
Term Deposit Prediction/Models/README.md | 45 ++++++++++++++++++++++++
1 file changed, 45 insertions(+)
create mode 100644 Term Deposit Prediction/Models/README.md
diff --git a/Term Deposit Prediction/Models/README.md b/Term Deposit Prediction/Models/README.md
new file mode 100644
index 000000000..59f5bad39
--- /dev/null
+++ b/Term Deposit Prediction/Models/README.md
@@ -0,0 +1,45 @@
+## Term Deposit Campaign Analysis and Classification - Models
+
+----
+
+## Overview
+
+This folder contains the Jupyter Notebook (`Notebook.ipynb`) which includes the implementation of various ML models used to analyze and predict the success of a bank marketing campaign. The notebook covers Data Cleaning, EDA, Feature Engineering, Model Training, Evaluation, and Performance Comparison.
+
+## Contents
+
+- `Notebook.ipynb`: A Jupyter Notebook containing the complete analysis and modeling process.
+
+
+## Usage
+
+1. **Clone the repository**:
+ ```bash
+ git clone https://github.com/abhisheks008/ML-Crate.git
+ cd Term-Deposit-Prediction
+ ```
+
+2. **Install the required libraries**:
+ You can install the required libraries using pip:
+ ```bash
+ pip install numpy pandas seaborn matplotlib plotly scikit-learn xgboost
+ ```
+
+ or alternatively you can use:
+
+ ```bash
+ pip install -r requirements.txt
+ ```
+
+3. **Open the Jupyter Notebook**:
+ Start Jupyter Notebook from the command line:
+
+ ```bash
+ jupyter notebook
+ ```
+ Navigate to the `Models` folder and open `Notebook.ipynb`.
+
+4. **Run the Notebook**:
+ Follow the cells sequentially to reproduce the analysis and modeling process. The notebook includes the following steps:
+ Data Cleaning, EDA, Feature Engineering, Model Training, Model Evaluation, and Performance Comparison ...
+
From 9d567a00d5c64a4184eb4c0ef13c3aa30c198ce7 Mon Sep 17 00:00:00 2001
From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com>
Date: Tue, 9 Jul 2024 01:23:20 +0530
Subject: [PATCH 6/8] Add files via upload
---
Term Deposit Prediction/Models/Notebook.ipynb | 736221 +++++++++++++++
1 file changed, 736221 insertions(+)
create mode 100644 Term Deposit Prediction/Models/Notebook.ipynb
diff --git a/Term Deposit Prediction/Models/Notebook.ipynb b/Term Deposit Prediction/Models/Notebook.ipynb
new file mode 100644
index 000000000..d45235928
--- /dev/null
+++ b/Term Deposit Prediction/Models/Notebook.ipynb
@@ -0,0 +1,736221 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "id": "4c3c49be",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Import necessary libraries for data manipulation, visualization, and modeling\n",
+ "import numpy as np\n",
+ "import pandas as pd\n",
+ "import seaborn as sns\n",
+ "import matplotlib.pyplot as plt\n",
+ "import plotly.express as px\n",
+ "import plotly.graph_objs as go"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "id": "b5cf52a4",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " age \n",
+ " job \n",
+ " marital \n",
+ " education \n",
+ " default \n",
+ " housing \n",
+ " loan \n",
+ " contact \n",
+ " month \n",
+ " day_of_week \n",
+ " ... \n",
+ " campaign \n",
+ " pdays \n",
+ " previous \n",
+ " poutcome \n",
+ " emp.var.rate \n",
+ " cons.price.idx \n",
+ " cons.conf.idx \n",
+ " euribor3m \n",
+ " nr.employed \n",
+ " y \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " 56 \n",
+ " housemaid \n",
+ " married \n",
+ " basic.4y \n",
+ " no \n",
+ " no \n",
+ " no \n",
+ " telephone \n",
+ " may \n",
+ " mon \n",
+ " ... \n",
+ " 1 \n",
+ " 999 \n",
+ " 0 \n",
+ " nonexistent \n",
+ " 1.1 \n",
+ " 93.994 \n",
+ " -36.4 \n",
+ " 4.857 \n",
+ " 5191.0 \n",
+ " no \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " 57 \n",
+ " services \n",
+ " married \n",
+ " high.school \n",
+ " unknown \n",
+ " no \n",
+ " no \n",
+ " telephone \n",
+ " may \n",
+ " mon \n",
+ " ... \n",
+ " 1 \n",
+ " 999 \n",
+ " 0 \n",
+ " nonexistent \n",
+ " 1.1 \n",
+ " 93.994 \n",
+ " -36.4 \n",
+ " 4.857 \n",
+ " 5191.0 \n",
+ " no \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " 37 \n",
+ " services \n",
+ " married \n",
+ " high.school \n",
+ " no \n",
+ " yes \n",
+ " no \n",
+ " telephone \n",
+ " may \n",
+ " mon \n",
+ " ... \n",
+ " 1 \n",
+ " 999 \n",
+ " 0 \n",
+ " nonexistent \n",
+ " 1.1 \n",
+ " 93.994 \n",
+ " -36.4 \n",
+ " 4.857 \n",
+ " 5191.0 \n",
+ " no \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " 40 \n",
+ " admin. \n",
+ " married \n",
+ " basic.6y \n",
+ " no \n",
+ " no \n",
+ " no \n",
+ " telephone \n",
+ " may \n",
+ " mon \n",
+ " ... \n",
+ " 1 \n",
+ " 999 \n",
+ " 0 \n",
+ " nonexistent \n",
+ " 1.1 \n",
+ " 93.994 \n",
+ " -36.4 \n",
+ " 4.857 \n",
+ " 5191.0 \n",
+ " no \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " 56 \n",
+ " services \n",
+ " married \n",
+ " high.school \n",
+ " no \n",
+ " no \n",
+ " yes \n",
+ " telephone \n",
+ " may \n",
+ " mon \n",
+ " ... \n",
+ " 1 \n",
+ " 999 \n",
+ " 0 \n",
+ " nonexistent \n",
+ " 1.1 \n",
+ " 93.994 \n",
+ " -36.4 \n",
+ " 4.857 \n",
+ " 5191.0 \n",
+ " no \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
5 rows ร 21 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " age job marital education default housing loan contact \\\n",
+ "0 56 housemaid married basic.4y no no no telephone \n",
+ "1 57 services married high.school unknown no no telephone \n",
+ "2 37 services married high.school no yes no telephone \n",
+ "3 40 admin. married basic.6y no no no telephone \n",
+ "4 56 services married high.school no no yes telephone \n",
+ "\n",
+ " month day_of_week ... campaign pdays previous poutcome emp.var.rate \\\n",
+ "0 may mon ... 1 999 0 nonexistent 1.1 \n",
+ "1 may mon ... 1 999 0 nonexistent 1.1 \n",
+ "2 may mon ... 1 999 0 nonexistent 1.1 \n",
+ "3 may mon ... 1 999 0 nonexistent 1.1 \n",
+ "4 may mon ... 1 999 0 nonexistent 1.1 \n",
+ "\n",
+ " cons.price.idx cons.conf.idx euribor3m nr.employed y \n",
+ "0 93.994 -36.4 4.857 5191.0 no \n",
+ "1 93.994 -36.4 4.857 5191.0 no \n",
+ "2 93.994 -36.4 4.857 5191.0 no \n",
+ "3 93.994 -36.4 4.857 5191.0 no \n",
+ "4 93.994 -36.4 4.857 5191.0 no \n",
+ "\n",
+ "[5 rows x 21 columns]"
+ ]
+ },
+ "execution_count": 2,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# Load the dataset\n",
+ "df=pd.read_csv('dataset.csv')\n",
+ "df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "id": "d3b65139",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "(41188, 21)"
+ ]
+ },
+ "execution_count": 3,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df.shape"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "id": "7b6e7b89",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Index(['age', 'job', 'marital', 'education', 'default', 'housing', 'loan',\n",
+ " 'contact', 'month', 'day_of_week', 'duration', 'campaign', 'pdays',\n",
+ " 'previous', 'poutcome', 'emp.var.rate', 'cons.price.idx',\n",
+ " 'cons.conf.idx', 'euribor3m', 'nr.employed', 'y'],\n",
+ " dtype='object')"
+ ]
+ },
+ "execution_count": 4,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df.columns"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "id": "f2adce6a",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Counts for job:\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " job \n",
+ " Count \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " admin. \n",
+ " 10422 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " blue-collar \n",
+ " 9254 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " technician \n",
+ " 6743 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " services \n",
+ " 3969 \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " management \n",
+ " 2924 \n",
+ " \n",
+ " \n",
+ " 5 \n",
+ " retired \n",
+ " 1720 \n",
+ " \n",
+ " \n",
+ " 6 \n",
+ " entrepreneur \n",
+ " 1456 \n",
+ " \n",
+ " \n",
+ " 7 \n",
+ " self-employed \n",
+ " 1421 \n",
+ " \n",
+ " \n",
+ " 8 \n",
+ " housemaid \n",
+ " 1060 \n",
+ " \n",
+ " \n",
+ " 9 \n",
+ " unemployed \n",
+ " 1014 \n",
+ " \n",
+ " \n",
+ " 10 \n",
+ " student \n",
+ " 875 \n",
+ " \n",
+ " \n",
+ " 11 \n",
+ " unknown \n",
+ " 330 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " job Count\n",
+ "0 admin. 10422\n",
+ "1 blue-collar 9254\n",
+ "2 technician 6743\n",
+ "3 services 3969\n",
+ "4 management 2924\n",
+ "5 retired 1720\n",
+ "6 entrepreneur 1456\n",
+ "7 self-employed 1421\n",
+ "8 housemaid 1060\n",
+ "9 unemployed 1014\n",
+ "10 student 875\n",
+ "11 unknown 330"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ "Counts for marital:\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " marital \n",
+ " Count \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " married \n",
+ " 24928 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " single \n",
+ " 11568 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " divorced \n",
+ " 4612 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " unknown \n",
+ " 80 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " marital Count\n",
+ "0 married 24928\n",
+ "1 single 11568\n",
+ "2 divorced 4612\n",
+ "3 unknown 80"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ "Counts for education:\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " education \n",
+ " Count \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " university.degree \n",
+ " 12168 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " high.school \n",
+ " 9515 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " basic.9y \n",
+ " 6045 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " professional.course \n",
+ " 5243 \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " basic.4y \n",
+ " 4176 \n",
+ " \n",
+ " \n",
+ " 5 \n",
+ " basic.6y \n",
+ " 2292 \n",
+ " \n",
+ " \n",
+ " 6 \n",
+ " unknown \n",
+ " 1731 \n",
+ " \n",
+ " \n",
+ " 7 \n",
+ " illiterate \n",
+ " 18 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " education Count\n",
+ "0 university.degree 12168\n",
+ "1 high.school 9515\n",
+ "2 basic.9y 6045\n",
+ "3 professional.course 5243\n",
+ "4 basic.4y 4176\n",
+ "5 basic.6y 2292\n",
+ "6 unknown 1731\n",
+ "7 illiterate 18"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ "Counts for default:\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " default \n",
+ " Count \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " no \n",
+ " 32588 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " unknown \n",
+ " 8597 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " yes \n",
+ " 3 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " default Count\n",
+ "0 no 32588\n",
+ "1 unknown 8597\n",
+ "2 yes 3"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ "Counts for housing:\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " housing \n",
+ " Count \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " yes \n",
+ " 21576 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " no \n",
+ " 18622 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " unknown \n",
+ " 990 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " housing Count\n",
+ "0 yes 21576\n",
+ "1 no 18622\n",
+ "2 unknown 990"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ "Counts for loan:\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " loan \n",
+ " Count \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " no \n",
+ " 33950 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " yes \n",
+ " 6248 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " unknown \n",
+ " 990 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " loan Count\n",
+ "0 no 33950\n",
+ "1 yes 6248\n",
+ "2 unknown 990"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ "Counts for contact:\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " contact \n",
+ " Count \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " cellular \n",
+ " 26144 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " telephone \n",
+ " 15044 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " contact Count\n",
+ "0 cellular 26144\n",
+ "1 telephone 15044"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ "Counts for month:\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " month \n",
+ " Count \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " may \n",
+ " 13769 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " jul \n",
+ " 7174 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " aug \n",
+ " 6178 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " jun \n",
+ " 5318 \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " nov \n",
+ " 4101 \n",
+ " \n",
+ " \n",
+ " 5 \n",
+ " apr \n",
+ " 2632 \n",
+ " \n",
+ " \n",
+ " 6 \n",
+ " oct \n",
+ " 718 \n",
+ " \n",
+ " \n",
+ " 7 \n",
+ " sep \n",
+ " 570 \n",
+ " \n",
+ " \n",
+ " 8 \n",
+ " mar \n",
+ " 546 \n",
+ " \n",
+ " \n",
+ " 9 \n",
+ " dec \n",
+ " 182 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " month Count\n",
+ "0 may 13769\n",
+ "1 jul 7174\n",
+ "2 aug 6178\n",
+ "3 jun 5318\n",
+ "4 nov 4101\n",
+ "5 apr 2632\n",
+ "6 oct 718\n",
+ "7 sep 570\n",
+ "8 mar 546\n",
+ "9 dec 182"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ "Counts for day_of_week:\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " day_of_week \n",
+ " Count \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " thu \n",
+ " 8623 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " mon \n",
+ " 8514 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " wed \n",
+ " 8134 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " tue \n",
+ " 8090 \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " fri \n",
+ " 7827 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " day_of_week Count\n",
+ "0 thu 8623\n",
+ "1 mon 8514\n",
+ "2 wed 8134\n",
+ "3 tue 8090\n",
+ "4 fri 7827"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ "Counts for poutcome:\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " poutcome \n",
+ " Count \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " nonexistent \n",
+ " 35563 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " failure \n",
+ " 4252 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " success \n",
+ " 1373 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " poutcome Count\n",
+ "0 nonexistent 35563\n",
+ "1 failure 4252\n",
+ "2 success 1373"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ "Counts for y:\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " y \n",
+ " Count \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " no \n",
+ " 36548 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " yes \n",
+ " 4640 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " y Count\n",
+ "0 no 36548\n",
+ "1 yes 4640"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "import pandas as pd\n",
+ "\n",
+ "categorical_cols = df.select_dtypes(include=['object', 'category']).columns\n",
+ "\n",
+ "# Get the count of all categorical features column values\n",
+ "categorical_counts = {col: df[col].value_counts() for col in categorical_cols}\n",
+ "\n",
+ "# Print the counts in a more readable format\n",
+ "for col, counts in categorical_counts.items():\n",
+ " print(f\"Counts for {col}:\\n\")\n",
+ " display(pd.DataFrame(counts).reset_index().rename(columns={'index': col, col: 'Count'}))\n",
+ " print(\"\\n\")\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "id": "dca4827b",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " age \n",
+ " job \n",
+ " marital \n",
+ " education \n",
+ " default \n",
+ " housing \n",
+ " loan \n",
+ " contact \n",
+ " month \n",
+ " day_of_week \n",
+ " ... \n",
+ " campaign \n",
+ " pdays \n",
+ " previous \n",
+ " poutcome \n",
+ " emp.var.rate \n",
+ " cons.price.idx \n",
+ " cons.conf.idx \n",
+ " euribor3m \n",
+ " nr.employed \n",
+ " y \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " 56 \n",
+ " housemaid \n",
+ " married \n",
+ " basic.4y \n",
+ " no \n",
+ " no \n",
+ " no \n",
+ " telephone \n",
+ " may \n",
+ " mon \n",
+ " ... \n",
+ " 1 \n",
+ " 999 \n",
+ " 0 \n",
+ " nonexistent \n",
+ " 1.1 \n",
+ " 93.994 \n",
+ " -36.4 \n",
+ " 4.857 \n",
+ " 5191.0 \n",
+ " no \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " 57 \n",
+ " services \n",
+ " married \n",
+ " high.school \n",
+ " NaN \n",
+ " no \n",
+ " no \n",
+ " telephone \n",
+ " may \n",
+ " mon \n",
+ " ... \n",
+ " 1 \n",
+ " 999 \n",
+ " 0 \n",
+ " nonexistent \n",
+ " 1.1 \n",
+ " 93.994 \n",
+ " -36.4 \n",
+ " 4.857 \n",
+ " 5191.0 \n",
+ " no \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " 37 \n",
+ " services \n",
+ " married \n",
+ " high.school \n",
+ " no \n",
+ " yes \n",
+ " no \n",
+ " telephone \n",
+ " may \n",
+ " mon \n",
+ " ... \n",
+ " 1 \n",
+ " 999 \n",
+ " 0 \n",
+ " nonexistent \n",
+ " 1.1 \n",
+ " 93.994 \n",
+ " -36.4 \n",
+ " 4.857 \n",
+ " 5191.0 \n",
+ " no \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " 40 \n",
+ " admin. \n",
+ " married \n",
+ " basic.6y \n",
+ " no \n",
+ " no \n",
+ " no \n",
+ " telephone \n",
+ " may \n",
+ " mon \n",
+ " ... \n",
+ " 1 \n",
+ " 999 \n",
+ " 0 \n",
+ " nonexistent \n",
+ " 1.1 \n",
+ " 93.994 \n",
+ " -36.4 \n",
+ " 4.857 \n",
+ " 5191.0 \n",
+ " no \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " 56 \n",
+ " services \n",
+ " married \n",
+ " high.school \n",
+ " no \n",
+ " no \n",
+ " yes \n",
+ " telephone \n",
+ " may \n",
+ " mon \n",
+ " ... \n",
+ " 1 \n",
+ " 999 \n",
+ " 0 \n",
+ " nonexistent \n",
+ " 1.1 \n",
+ " 93.994 \n",
+ " -36.4 \n",
+ " 4.857 \n",
+ " 5191.0 \n",
+ " no \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
5 rows ร 21 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " age job marital education default housing loan contact month \\\n",
+ "0 56 housemaid married basic.4y no no no telephone may \n",
+ "1 57 services married high.school NaN no no telephone may \n",
+ "2 37 services married high.school no yes no telephone may \n",
+ "3 40 admin. married basic.6y no no no telephone may \n",
+ "4 56 services married high.school no no yes telephone may \n",
+ "\n",
+ " day_of_week ... campaign pdays previous poutcome emp.var.rate \\\n",
+ "0 mon ... 1 999 0 nonexistent 1.1 \n",
+ "1 mon ... 1 999 0 nonexistent 1.1 \n",
+ "2 mon ... 1 999 0 nonexistent 1.1 \n",
+ "3 mon ... 1 999 0 nonexistent 1.1 \n",
+ "4 mon ... 1 999 0 nonexistent 1.1 \n",
+ "\n",
+ " cons.price.idx cons.conf.idx euribor3m nr.employed y \n",
+ "0 93.994 -36.4 4.857 5191.0 no \n",
+ "1 93.994 -36.4 4.857 5191.0 no \n",
+ "2 93.994 -36.4 4.857 5191.0 no \n",
+ "3 93.994 -36.4 4.857 5191.0 no \n",
+ "4 93.994 -36.4 4.857 5191.0 no \n",
+ "\n",
+ "[5 rows x 21 columns]"
+ ]
+ },
+ "execution_count": 6,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# Replace 'unknown' values with NaN\n",
+ "df1= df.replace('unknown', np.nan)\n",
+ "df1.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "id": "8e345d80",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "(30488, 21)"
+ ]
+ },
+ "execution_count": 7,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df1=df1.dropna()\n",
+ "df1.shape"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "id": "f9efb93d",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ " \n",
+ " \n",
+ " \n",
+ " count \n",
+ " mean \n",
+ " std \n",
+ " min \n",
+ " 25% \n",
+ " 50% \n",
+ " 75% \n",
+ " max \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " age \n",
+ " 30488.000000 \n",
+ " 39.030012 \n",
+ " 10.333529 \n",
+ " 17.000000 \n",
+ " 31.000000 \n",
+ " 37.000000 \n",
+ " 45.000000 \n",
+ " 95.000000 \n",
+ " \n",
+ " \n",
+ " duration \n",
+ " 30488.000000 \n",
+ " 259.484092 \n",
+ " 261.714262 \n",
+ " 0.000000 \n",
+ " 103.000000 \n",
+ " 181.000000 \n",
+ " 321.000000 \n",
+ " 4918.000000 \n",
+ " \n",
+ " \n",
+ " campaign \n",
+ " 30488.000000 \n",
+ " 2.521451 \n",
+ " 2.720150 \n",
+ " 1.000000 \n",
+ " 1.000000 \n",
+ " 2.000000 \n",
+ " 3.000000 \n",
+ " 43.000000 \n",
+ " \n",
+ " \n",
+ " pdays \n",
+ " 30488.000000 \n",
+ " 956.332295 \n",
+ " 201.373292 \n",
+ " 0.000000 \n",
+ " 999.000000 \n",
+ " 999.000000 \n",
+ " 999.000000 \n",
+ " 999.000000 \n",
+ " \n",
+ " \n",
+ " previous \n",
+ " 30488.000000 \n",
+ " 0.194273 \n",
+ " 0.522788 \n",
+ " 0.000000 \n",
+ " 0.000000 \n",
+ " 0.000000 \n",
+ " 0.000000 \n",
+ " 7.000000 \n",
+ " \n",
+ " \n",
+ " emp.var.rate \n",
+ " 30488.000000 \n",
+ " -0.071510 \n",
+ " 1.610399 \n",
+ " -3.400000 \n",
+ " -1.800000 \n",
+ " 1.100000 \n",
+ " 1.400000 \n",
+ " 1.400000 \n",
+ " \n",
+ " \n",
+ " cons.price.idx \n",
+ " 30488.000000 \n",
+ " 93.523311 \n",
+ " 0.585374 \n",
+ " 92.201000 \n",
+ " 93.075000 \n",
+ " 93.444000 \n",
+ " 93.994000 \n",
+ " 94.767000 \n",
+ " \n",
+ " \n",
+ " cons.conf.idx \n",
+ " 30488.000000 \n",
+ " -40.602263 \n",
+ " 4.789249 \n",
+ " -50.800000 \n",
+ " -42.700000 \n",
+ " -41.800000 \n",
+ " -36.400000 \n",
+ " -26.900000 \n",
+ " \n",
+ " \n",
+ " euribor3m \n",
+ " 30488.000000 \n",
+ " 3.459938 \n",
+ " 1.777231 \n",
+ " 0.634000 \n",
+ " 1.313000 \n",
+ " 4.856000 \n",
+ " 4.961000 \n",
+ " 5.045000 \n",
+ " \n",
+ " \n",
+ " nr.employed \n",
+ " 30488.000000 \n",
+ " 5160.813409 \n",
+ " 75.158065 \n",
+ " 4963.600000 \n",
+ " 5099.100000 \n",
+ " 5191.000000 \n",
+ " 5228.100000 \n",
+ " 5228.100000 \n",
+ " \n",
+ " \n",
+ "
\n"
+ ],
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 8,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df1.describe().T.style.background_gradient(cmap='Blues')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 31,
+ "id": "fb8f152e",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "(0, 10] 0\n",
+ "(10, 20] 85\n",
+ "(20, 30] 6090\n",
+ "(30, 40] 12958\n",
+ "(40, 50] 6778\n",
+ "(50, 60] 3851\n",
+ "(60, 70] 390\n",
+ "(70, 80] 249\n",
+ "(80, 90] 83\n",
+ "Name: age, dtype: int64\n"
+ ]
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "domain": {
+ "x": [
+ 0,
+ 1
+ ],
+ "y": [
+ 0,
+ 1
+ ]
+ },
+ "hole": 0.4,
+ "hovertemplate": "label=%{label} value=%{value} ",
+ "labels": [
+ "(0, 10]",
+ "(10, 20]",
+ "(20, 30]",
+ "(30, 40]",
+ "(40, 50]",
+ "(50, 60]",
+ "(60, 70]",
+ "(70, 80]",
+ "(80, 90]"
+ ],
+ "legendgroup": "",
+ "name": "",
+ "showlegend": true,
+ "type": "pie",
+ "values": [
+ 0,
+ 85,
+ 6090,
+ 12958,
+ 6778,
+ 3851,
+ 390,
+ 249,
+ 83
+ ]
+ }
+ ],
+ "layout": {
+ "legend": {
+ "tracegroupgap": 0
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "title": {
+ "text": "Distribution of Age"
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Create age intervals and count the number of records in each interval\n",
+ "age_intervals = pd.cut(df1['age'], bins=range(0, df1['age'].max()+5, 10), right=True)\n",
+ "age_counts = age_intervals.value_counts(sort=False).sort_index()\n",
+ "print(age_counts)\n",
+ "fig = px.pie(names=age_counts.index.astype(str), values=age_counts.values,title='Distribution of Age',hole=0.4)\n",
+ "fig.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "id": "41300609",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ " job count\n",
+ "0 housemaid 690\n",
+ "1 services 2857\n",
+ "2 admin. 8737\n",
+ "3 technician 5473\n",
+ "4 blue-collar 5675\n",
+ "5 unemployed 738\n",
+ "6 retired 1216\n",
+ "7 entrepreneur 1089\n",
+ "8 management 2311\n",
+ "9 student 610\n",
+ "10 self-employed 1092\n"
+ ]
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Job=%{x} Count=%{text} ",
+ "legendgroup": "housemaid",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "housemaid",
+ "offsetgroup": "housemaid",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 690
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "housemaid"
+ ],
+ "xaxis": "x",
+ "y": [
+ 690
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Job=%{x} Count=%{text} ",
+ "legendgroup": "services",
+ "marker": {
+ "color": "#EF553B",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "services",
+ "offsetgroup": "services",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 2857
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "services"
+ ],
+ "xaxis": "x",
+ "y": [
+ 2857
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Job=%{x} Count=%{text} ",
+ "legendgroup": "admin.",
+ "marker": {
+ "color": "#00cc96",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "admin.",
+ "offsetgroup": "admin.",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 8737
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "admin."
+ ],
+ "xaxis": "x",
+ "y": [
+ 8737
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Job=%{x} Count=%{text} ",
+ "legendgroup": "technician",
+ "marker": {
+ "color": "#ab63fa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "technician",
+ "offsetgroup": "technician",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 5473
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "technician"
+ ],
+ "xaxis": "x",
+ "y": [
+ 5473
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Job=%{x} Count=%{text} ",
+ "legendgroup": "blue-collar",
+ "marker": {
+ "color": "#FFA15A",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "blue-collar",
+ "offsetgroup": "blue-collar",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 5675
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "blue-collar"
+ ],
+ "xaxis": "x",
+ "y": [
+ 5675
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Job=%{x} Count=%{text} ",
+ "legendgroup": "unemployed",
+ "marker": {
+ "color": "#19d3f3",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "unemployed",
+ "offsetgroup": "unemployed",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 738
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "unemployed"
+ ],
+ "xaxis": "x",
+ "y": [
+ 738
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Job=%{x} Count=%{text} ",
+ "legendgroup": "retired",
+ "marker": {
+ "color": "#FF6692",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "retired",
+ "offsetgroup": "retired",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 1216
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "retired"
+ ],
+ "xaxis": "x",
+ "y": [
+ 1216
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Job=%{x} Count=%{text} ",
+ "legendgroup": "entrepreneur",
+ "marker": {
+ "color": "#B6E880",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "entrepreneur",
+ "offsetgroup": "entrepreneur",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 1089
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "entrepreneur"
+ ],
+ "xaxis": "x",
+ "y": [
+ 1089
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Job=%{x} Count=%{text} ",
+ "legendgroup": "management",
+ "marker": {
+ "color": "#FF97FF",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "management",
+ "offsetgroup": "management",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 2311
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "management"
+ ],
+ "xaxis": "x",
+ "y": [
+ 2311
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Job=%{x} Count=%{text} ",
+ "legendgroup": "student",
+ "marker": {
+ "color": "#FECB52",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "student",
+ "offsetgroup": "student",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 610
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "student"
+ ],
+ "xaxis": "x",
+ "y": [
+ 610
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Job=%{x} Count=%{text} ",
+ "legendgroup": "self-employed",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "self-employed",
+ "offsetgroup": "self-employed",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 1092
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "self-employed"
+ ],
+ "xaxis": "x",
+ "y": [
+ 1092
+ ],
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "Job"
+ },
+ "tracegroupgap": 0
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "title": {
+ "text": "Job Distribution"
+ },
+ "xaxis": {
+ "anchor": "y",
+ "categoryarray": [
+ "housemaid",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "retired",
+ "entrepreneur",
+ "management",
+ "student",
+ "self-employed"
+ ],
+ "categoryorder": "array",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "Job Title"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "Count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Count the number of records for each job and plot as a bar chart\n",
+ "\n",
+ "job_counts = df1['job'].value_counts(sort=False).reset_index()\n",
+ "job_counts.columns = ['job', 'count']\n",
+ "print(job_counts)\n",
+ "fig = px.bar(job_counts, x='job', y='count', title='Job Distribution',labels={'job': 'Job', 'count': 'Count'}, text='count',\n",
+ " color='job')\n",
+ "\n",
+ "fig.update_traces(texttemplate='%{text}', textposition='outside')\n",
+ "fig.update_layout(xaxis_title='Job Title', yaxis_title='Count')\n",
+ "\n",
+ "fig.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "id": "44ec4952",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ " education count\n",
+ "0 basic.4y 2380\n",
+ "1 high.school 7699\n",
+ "2 basic.6y 1389\n",
+ "3 professional.course 4321\n",
+ "4 basic.9y 4276\n",
+ "5 university.degree 10412\n",
+ "6 illiterate 11\n"
+ ]
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Education=%{x} Count=%{text} ",
+ "legendgroup": "basic.4y",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "basic.4y",
+ "offsetgroup": "basic.4y",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 2380
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "basic.4y"
+ ],
+ "xaxis": "x",
+ "y": [
+ 2380
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Education=%{x} Count=%{text} ",
+ "legendgroup": "high.school",
+ "marker": {
+ "color": "#EF553B",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "high.school",
+ "offsetgroup": "high.school",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 7699
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "high.school"
+ ],
+ "xaxis": "x",
+ "y": [
+ 7699
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Education=%{x} Count=%{text} ",
+ "legendgroup": "basic.6y",
+ "marker": {
+ "color": "#00cc96",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "basic.6y",
+ "offsetgroup": "basic.6y",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 1389
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "basic.6y"
+ ],
+ "xaxis": "x",
+ "y": [
+ 1389
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Education=%{x} Count=%{text} ",
+ "legendgroup": "professional.course",
+ "marker": {
+ "color": "#ab63fa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "professional.course",
+ "offsetgroup": "professional.course",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 4321
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "professional.course"
+ ],
+ "xaxis": "x",
+ "y": [
+ 4321
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Education=%{x} Count=%{text} ",
+ "legendgroup": "basic.9y",
+ "marker": {
+ "color": "#FFA15A",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "basic.9y",
+ "offsetgroup": "basic.9y",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 4276
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "basic.9y"
+ ],
+ "xaxis": "x",
+ "y": [
+ 4276
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Education=%{x} Count=%{text} ",
+ "legendgroup": "university.degree",
+ "marker": {
+ "color": "#19d3f3",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "university.degree",
+ "offsetgroup": "university.degree",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 10412
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "university.degree"
+ ],
+ "xaxis": "x",
+ "y": [
+ 10412
+ ],
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "hovertemplate": "Education=%{x} Count=%{text} ",
+ "legendgroup": "illiterate",
+ "marker": {
+ "color": "#FF6692",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "illiterate",
+ "offsetgroup": "illiterate",
+ "orientation": "v",
+ "showlegend": true,
+ "text": [
+ 11
+ ],
+ "textposition": "outside",
+ "texttemplate": "%{text}",
+ "type": "bar",
+ "x": [
+ "illiterate"
+ ],
+ "xaxis": "x",
+ "y": [
+ 11
+ ],
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "Education"
+ },
+ "tracegroupgap": 0
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "title": {
+ "text": "Highest Education Qualification Distribution"
+ },
+ "xaxis": {
+ "anchor": "y",
+ "categoryarray": [
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "illiterate"
+ ],
+ "categoryorder": "array",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "Education Level"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "Count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Count the number of records for each education level and plot as a bar chart\n",
+ "\n",
+ "edu = df1['education'].value_counts(sort=False).reset_index()\n",
+ "edu.columns = ['education', 'count']\n",
+ "print(edu)\n",
+ "fig = px.bar(edu, x='education', y='count', title='Highest Education Qualification Distribution',\n",
+ " labels={'education': 'Education', 'count': 'Count'}, text='count',color='education')\n",
+ "fig.update_traces(texttemplate='%{text}', textposition='outside')\n",
+ "fig.update_layout( xaxis_title='Education Level', yaxis_title='Count')\n",
+ "\n",
+ "fig.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 32,
+ "id": "92f2a70f",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "All 3 loans 'yes': 0\n",
+ "2 Loans 'yes': 2844\n",
+ "1 Loan 'yes': 15604\n",
+ "0 Loans 'yes': 12040\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Calculate the number of records where all three loans are 'yes'\n",
+ "\n",
+ "all_yes = df1[(df1['loan'] == 'yes') & (df1['housing'] == 'yes') & (df1['default'] == 'yes')].shape[0]\n",
+ "print(\"All 3 loans 'yes':\", all_yes)\n",
+ "\n",
+ "# Calculate the number of records where two loans are 'yes'\n",
+ "\n",
+ "two_loans_yes = (\n",
+ " df1[(df1['default'] == 'no') & (df1['housing'] == 'yes') & (df1['loan'] == 'yes')].shape[0] +\n",
+ " df1[(df1['default'] == 'yes') & (df1['housing'] == 'no') & (df1['loan'] == 'yes')].shape[0] +\n",
+ " df1[(df1['default'] == 'yes') & (df1['housing'] == 'yes') & (df1['loan'] == 'no')].shape[0]\n",
+ ")\n",
+ "print(\"2 Loans 'yes':\", two_loans_yes)\n",
+ "\n",
+ "# Calculate the number of records where one loan is 'yes'\n",
+ "\n",
+ "one_loan_yes = (\n",
+ " df1[(df1['default'] == 'no') & (df1['housing'] == 'no') & (df1['loan'] == 'yes')].shape[0] +\n",
+ " df1[(df1['default'] == 'yes') & (df1['housing'] == 'no') & (df1['loan'] == 'no')].shape[0] +\n",
+ " df1[(df1['default'] == 'no') & (df1['housing'] == 'yes') & (df1['loan'] == 'no')].shape[0]\n",
+ ")\n",
+ "print(\"1 Loan 'yes':\", one_loan_yes)\n",
+ "\n",
+ "# Calculate the number of records where no loans are 'yes'\n",
+ "\n",
+ "all_no = df1[(df1['loan'] == 'no') & (df1['housing'] == 'no') & (df1['default'] == 'no')].shape[0]\n",
+ "print(\"0 Loans 'yes':\", all_no)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 33,
+ "id": "fac9d1dd",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ " Category Count\n",
+ "0 3 Loans 0\n",
+ "1 2 Loans 2844\n",
+ "2 1 Loan 15604\n",
+ "3 0 Loans 12040\n"
+ ]
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "customdata": [
+ [
+ "3 Loans"
+ ],
+ [
+ "2 Loans"
+ ],
+ [
+ "1 Loan"
+ ],
+ [
+ "0 Loans"
+ ]
+ ],
+ "domain": {
+ "x": [
+ 0,
+ 1
+ ],
+ "y": [
+ 0,
+ 1
+ ]
+ },
+ "hole": 0.5,
+ "hovertemplate": "Category=%{customdata[0]} Count=%{value} ",
+ "labels": [
+ "3 Loans",
+ "2 Loans",
+ "1 Loan",
+ "0 Loans"
+ ],
+ "legendgroup": "",
+ "marker": {
+ "colors": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa"
+ ]
+ },
+ "name": "",
+ "showlegend": true,
+ "textinfo": "percent+label+value",
+ "type": "pie",
+ "values": [
+ 0,
+ 2844,
+ 15604,
+ 12040
+ ]
+ }
+ ],
+ "layout": {
+ "legend": {
+ "tracegroupgap": 0
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "title": {
+ "text": "Credit, Housing, and Loan Status Distribution"
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Create a DataFrame with the loan categories and their counts\n",
+ "\n",
+ "d={\"3 Loans\":all_yes,\"2 Loans\":two_loans_yes,\"1 Loan\":one_loan_yes,\"0 Loans\":all_no}\n",
+ "loan_counts=pd.DataFrame(data=list(d.items()),columns=[\"Category\",\"Count\"])\n",
+ "print(loan_counts)\n",
+ "\n",
+ "# Plot the loan categories distribution as a pie chart\n",
+ "\n",
+ "fig = px.pie(loan_counts, values='Count', names='Category', title='Credit, Housing, and Loan Status Distribution',\n",
+ " labels={'category': 'Category', 'count': 'Count'}, hole=0.5, color='Category')\n",
+ "\n",
+ "fig.update_traces(textinfo='percent+label+value')\n",
+ "fig.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 34,
+ "id": "308ba5d9",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ " marital count\n",
+ "0 married 17492\n",
+ "1 single 9443\n",
+ "2 divorced 3553\n"
+ ]
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "customdata": [
+ [
+ "married"
+ ],
+ [
+ "single"
+ ],
+ [
+ "divorced"
+ ]
+ ],
+ "domain": {
+ "x": [
+ 0,
+ 1
+ ],
+ "y": [
+ 0,
+ 1
+ ]
+ },
+ "hole": 0.5,
+ "hovertemplate": "marital=%{customdata[0]} count=%{value} ",
+ "labels": [
+ "married",
+ "single",
+ "divorced"
+ ],
+ "legendgroup": "",
+ "marker": {
+ "colors": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96"
+ ]
+ },
+ "name": "",
+ "showlegend": true,
+ "textinfo": "percent+label+value",
+ "type": "pie",
+ "values": [
+ 17492,
+ 9443,
+ 3553
+ ]
+ }
+ ],
+ "layout": {
+ "legend": {
+ "tracegroupgap": 0
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "title": {
+ "text": "Marital Status Distribution"
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Count the number of records for each marital status and plot as a pie chart\n",
+ "\n",
+ "marital_counts = df1['marital'].value_counts(sort=False).reset_index()\n",
+ "marital_counts.columns = ['marital', 'count']\n",
+ "print(marital_counts)\n",
+ "fig = px.pie(marital_counts, values='count', names='marital', title='Marital Status Distribution',\n",
+ " labels={'category': 'marital', 'count': 'count'}, hole=0.5, color='marital')\n",
+ "\n",
+ "fig.update_traces(textinfo='percent+label+value')\n",
+ "fig.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 35,
+ "id": "76d008e6",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "contact=%{x} count=%{y} ",
+ "legendgroup": "telephone",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "telephone",
+ "offsetgroup": "telephone",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "contact=%{x} count=%{y} ",
+ "legendgroup": "cellular",
+ "marker": {
+ "color": "#EF553B",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "cellular",
+ "offsetgroup": "cellular",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "contact"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "categoryarray": [
+ "telephone",
+ "cellular"
+ ],
+ "categoryorder": "array",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "contact"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Plot the distribution of contact types as a histogram\n",
+ "\n",
+ "fig = px.histogram(df1, x='contact',color='contact')\n",
+ "fig.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 16,
+ "id": "780f06a3",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ " month duration\n",
+ "0 apr 173.064444\n",
+ "1 aug 301.935556\n",
+ "2 dec 14.672222\n",
+ "3 jul 393.085833\n",
+ "4 jun 247.478056\n",
+ "5 mar 32.635000\n",
+ "6 may 703.774444\n",
+ "7 nov 238.808333\n",
+ "8 oct 52.211667\n",
+ "9 sep 39.876389\n"
+ ]
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "hovertemplate": "month=%{x} duration=%{y} ",
+ "legendgroup": "",
+ "line": {
+ "color": "#636efa",
+ "dash": "solid"
+ },
+ "marker": {
+ "symbol": "circle"
+ },
+ "mode": "lines",
+ "name": "",
+ "orientation": "v",
+ "showlegend": false,
+ "type": "scatter",
+ "x": [
+ "apr",
+ "aug",
+ "dec",
+ "jul",
+ "jun",
+ "mar",
+ "may",
+ "nov",
+ "oct",
+ "sep"
+ ],
+ "xaxis": "x",
+ "y": [
+ 173.06444444444443,
+ 301.93555555555554,
+ 14.672222222222222,
+ 393.0858333333333,
+ 247.47805555555556,
+ 32.635,
+ 703.7744444444445,
+ 238.80833333333334,
+ 52.211666666666666,
+ 39.87638888888889
+ ],
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "legend": {
+ "tracegroupgap": 0
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "title": {
+ "text": "Call Duration Distribution by Month in hrs"
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "Month"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "Call Duration in hrs"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Calculate the total call duration by month and plot as a line chart\n",
+ "\n",
+ "call_duration_by_mnth=pd.DataFrame(df1.groupby('month')['duration'].sum()/3600).reset_index()\n",
+ "print(call_duration_by_mnth)\n",
+ "fig=px.line(call_duration_by_mnth, x='month', y='duration', title='Call Duration Distribution by Month in hrs')\n",
+ "fig.update_layout(xaxis_title='Month', yaxis_title='Call Duration in hrs')\n",
+ "fig.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "id": "a3c75457",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ " day_of_week duration\n",
+ "0 fri 402.101389\n",
+ "1 mon 430.461111\n",
+ "2 thu 478.085000\n",
+ "3 tue 430.377222\n",
+ "4 wed 456.517222\n"
+ ]
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "hovertemplate": "day_of_week=%{x} duration=%{y} ",
+ "legendgroup": "",
+ "line": {
+ "color": "#636efa",
+ "dash": "solid"
+ },
+ "marker": {
+ "symbol": "circle"
+ },
+ "mode": "lines",
+ "name": "",
+ "orientation": "v",
+ "showlegend": false,
+ "type": "scatter",
+ "x": [
+ "fri",
+ "mon",
+ "thu",
+ "tue",
+ "wed"
+ ],
+ "xaxis": "x",
+ "y": [
+ 402.1013888888889,
+ 430.4611111111111,
+ 478.085,
+ 430.3772222222222,
+ 456.51722222222224
+ ],
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "legend": {
+ "tracegroupgap": 0
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "title": {
+ "text": "Call Duration Distribution by Day in hrs"
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "Day of Week"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "Call Duration in hrs"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Calculate the total call duration by day of the week and plot as a line chart\n",
+ "\n",
+ "call_duration_by_day=pd.DataFrame(df1.groupby('day_of_week')['duration'].sum()/3600).reset_index()\n",
+ "print(call_duration_by_day)\n",
+ "fig=px.line(call_duration_by_day, x='day_of_week', y='duration', title='Call Duration Distribution by Day in hrs')\n",
+ "fig.update_layout(xaxis_title='Day of Week', yaxis_title='Call Duration in hrs')\n",
+ "fig.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 18,
+ "id": "e37366ec",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Index(['age', 'duration', 'campaign', 'pdays', 'previous', 'emp.var.rate',\n",
+ " 'cons.price.idx', 'cons.conf.idx', 'euribor3m', 'nr.employed'],\n",
+ " dtype='object')"
+ ]
+ },
+ "execution_count": 18,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "numerical_cols = df1.select_dtypes(include=['number']).columns\n",
+ "numerical_cols"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 19,
+ "id": "e5794007",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAA40AAAHiCAYAAABMaSmfAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8qNh9FAAAACXBIWXMAAAsTAAALEwEAmpwYAADqH0lEQVR4nOzdd3gcxfnA8e97qqd26sWWLLn3LjcwNgZML6G3hBBCSQIEEnoJBEwJJQmm94QfxfQOAQO2wTbuvXfJalbvOkmnu/n9cWdJJ51sg1XN+3kePb7dnd2bGW+bfWfnxBiDUkoppZRSSinli6WrM6CUUkoppZRSqvvSRqNSSimllFJKqTZpo1EppZRSSimlVJu00aiUUkoppZRSqk3aaFRKKaWUUkop1SZtNCqllFJKKaWUapM2GpVSSnU4EblcRBYdxvr/E5HftmeelFJKKXVotNGolFK/ECJyiYisFJEqEcnzNMSmdnW+WhKRv4vIG83nGWNOMca81gHf9V8ReaDFvDQRMSLi3w7bXyAiVx7udpRSSqmupI1GpZT6BRCRvwJPAA8BCUAf4FngrJ+xrVaNqfZoYCmllFKqe9JGo1JKHeFExAbcD1xrjPnQGFNtjHEYYz4zxtziSRMkIk+ISK7n7wkRCfIsO1ZEskXkNhHZB/zHEw18X0TeEJEK4HIRsYnIK54oZo6IPCAifm3kabaIZIlIhYisEpFjPPNPBu4ELvRERNd55jdG7ETEIiJ3i0imiBSIyP95ytg8SvhbEdkrIkUictdh1l+QiDzu2V6+iDwvIlbPsigR+VxECkWk1PM52bPsQeAY4GlPWZ72zDci8icR2SEilSIyS0T6i8iPnvp4V0QCD7b9ZvXysIgs96z7iYhEH055lVJKqZa00aiUUke+KUAw8NEB0twFTAbGAKOBicDdzZYnAtFAKnC1Z95ZwPtAJPAm8F+gARgAjAVOBNrqmrnC813RwFvAeyISbIz5Cnc09B1jTJgxZrSPdS/3/M0A+gFhwNMt0kwFBgPHA/eIyNADlP1g/gEM8uR3ANAbuMezzAL8B3e99AHs+/NijLkLWAhc5ynLdc22eRIwHned3wq8CPwaSAFGABcfbPvNXAZcASThrv8nD6OsSimlVCvaaFRKqSNfDFBkjGk4QJpLgfuNMQXGmELgPuA3zZa7gHuNMXXGGLtn3hJjzMfGGBcQAZwK3OiJZBYA/wYu8vVlxpg3jDHFxpgGY8w/gSDcjbxDcSnwL2PMbmNMFXAHcFGLLrL3GWPsxph1wDrcDeG23CwiZfv/gPX7F4iI4G4k/8UYU2KMqcTdqL3IU45iY8wHxpgaz7IHgemHUIZHjTEVxphNwEZgrqc85cD/cDe6D3X7rxtjNhpjqoG/ARe0FeFVSimlfg59B0UppY58xUCsiPgfoOHYC8hsNp3pmbdfoTGmtsU6Wc0+pwIBQJ67nQW4H0xm4YOI3Az83vMdBnejM/bgRWkzr/6439Xcb1+zzzW4o5FtedwY0xhVFZE0YI9nMg4IAVY1K5cAfp60IbgbxycDUZ7l4SLiZ4xxHuA785t9tvuYTvwJ229ex5m4/x9iW2xTKaWU+tk00qiUUke+JUAd8KsDpMnF3fDbr49n3n7GxzrN52V5viPWGBPp+YswxgxvuZLn/cVbgQuAKGNMJFCOuzHW1ncdLK8NdEwjqQh3I254s3LZjDH7G6E34Y6QTjLGRADTPPMPtSwHc7Dtg7tL6359AIcn30oppVS70EajUkod4TxdHu8BnhGRX4lIiIgEiMgpIvKoJ9kc4G4RiRORWE/6N9rapo/vyAPmAv8UkQjPYDX9RcRXV81w3I28QsBfRO7BHWncLx9IE5G2rlFzgL+ISF8RCaPpHcgDdb/9WTxdb18C/i0i8QAi0ltETmpWFjtQ5hmA5t4Wm8jH/d7lz3Ww7QP8WkSGeaKS9wPvHyTKqZRSSv0k2mhUSqlfAM97g3/FPbhNIe7I4HXAx54kDwArcb/PtwFY7Zn3U1wGBAKbgVLcg+Qk+Uj3NfAVsB13d8pavLtYvuf5t1hEVvtY/1XgdeAH3N1Ia4Hrf2Jef4rbgJ3AUs9Isd/S9P7lE4AVd2RvKe5yNTcbOM8z8unPGaDmYNsHd138F3eX3GDgzz/je5RSSqk2iTGH23NGKaWUUl1BRBYAbxhjXu7qvCillDpyaaRRKaWUUkoppVSbtNGolFJKKaWUUt2IiLwqIgUisrGN5SIiT4rIThFZLyLjmi37rYjs8Pz9tl3yo91TlVJKKaWUUqr7EJFpQBXwf8aYET6Wn4r7ff5TgUnAbGPMJM+gaSuBdNwjeK8CxhtjSg8nPxppVEoppZRSSqluxBjzA1BygCRn4W5QGmPMUiBSRJKAk4BvjDElnobiN7h/6/ewaKNRKaWUUkoppXqW3niPPJ7tmdfW/MPif7gbUN6sY6/T/r5t+N3f/tTVWejW/EQOnugXyhqoz7cOpKTK0dVZ6LaiwwK6OgvdltPV1Tno3rJLaro6C91WcnRIV2ehWwvy0+t5Wx46dVCPq5yOuLevXfvMNcDVzWa9aIx5sb2/pz1po1EppZRSSimlOomngXi4jcQcIKXZdLJnXg5wbIv5Cw7zu7R7qlJKKaWUUkr5JJb2/2sfnwKXeUZRnQyUG2PygK+BE0UkSkSigBM98w6LRhqVUkoppZRSypcuen1IRObgjhjGikg2cC8QAGCMeR74EvfIqTuBGuB3nmUlIjILWOHZ1P3GmAMNqHNItNGolFJKKaWUUt2IMebigyw3wLVtLHsVeLU986ONRqWUUkoppZTypf26k/ZoWgtKKaWUUkoppdqkkUallFJKKaWU8kV/Eg3QRqNSSimllFJK+abdUwHtnqqUUkoppZRS6gA00qiUUkoppZRSvmj3VEAjjUoppZRSSimlDkAjjUoppZRSSinli77TCGikUSmllFJKKaXUAWikUSmllFJKKaV80XcaAW00KqWUUkoppZRv2j0V0O6pSimllFJKKaUOQCONR6Dn772UU6aNoLCkkvTzH+rq7HSYYQmhnD8qERHhx4xS5m4v9lrubxF+m96LlEgr1fVOXlmeTUmNA4CTBsUwJS0KYwzvrtvHloJq4sMC+f3E5Mb1Y0MD+HxzIfN3ldDbFsTFY5II8rdQUuPgPytyqG1wdWp5f45zRyUwPCGMeqeLN1blkV1e2ypNSmQwvx6XRICfhU35VXywPh+AkAALv5vYm+iQQEpq6nl1eQ52h4v05AhOGBSDALUNLt5du4+cirrG7Qlwy4y+lNc6eGFJdieV9OczxrDho5co2LISv8Agxl58I5HJ/VulK8vayeo5s3E56ogfms7Is69CRNj61VtkLp1LYJgNgGGn/oaEYenUV1ew4r+PUJq1gz4TjmPUuX/o7KK1i+GJYVw8NgmLwMLdpfxva5HXcn+L8PtJyaRGBVNV7+SFH7Mo9hxnANEhAdx/8gA+3VTA3G3uY/T4gTFM6x8FuLf5bYtjtyfqqP2op/vV8HiGJoRS7zS8vTaPnPK6VmmSbUFcNCaJAD9hS341H28qAODkwTEMTwzHGENVvZO31+RRUecEoH+MlbOGx+NnEarrnTz7Y1anlqs9je4VzuUTk7GIMG9HMZ9szPdaPjQhlN9OSKZPlJXZP2SwLLMMcF+jbp7RDxHwswhfbSk8Io4l0P3mQIwxrPvoRfZtWYVfQBDpF99AVMqAVulKs3aycs4TOB31JA4dz+izr0Y83Sx3/vAZuxZ/gYiFpGETGHnm76guyWfuP/5EeFxvAKJTBzPugms7tWzdlnZPBbTReER6/bOlPP/O97w867KuzkqHEeDC0Uk8uSiTMruD22b0Y31eJfsq6xvTHJUWSU29k7/P3cn45AjOHhHPK8tzSAwPZHyyjQe+3YUt2J8/T03l73N3UlBVz8Pzdjdu/6FTB7EutxKAX4/rxYcb8tlRVMOU1EhOGBTD55sLu6Dkh25YQijxoYHc/80u0qKCuXBMIv/8PqNVugtHJzJnTR4ZpbX8cUoKwxJC2ZxfzcxBsWwvrOGb7VnMHBTDzEExfLqpkOIaB7MXZmJ3uBiWEMpFY5O8tnvsgGjyK+sIDugZHRkKtqyiuiiX4+98gdLMbax7/zmm3/h4q3Tr3n+OMRdcS1TqYJa+dB8FW1eTMHQ8AP2nn8WAGWd7pbf4BzLklEup2JdJZV5mp5SlvYnApeN78a8Feyi1N3D3zH6sza0kr9lDgqn9oqiud3LnlzuYkGLjvNGJvLCk6UbsgjGJbNxX1TjdyxbEtP5RPPjNLhpchhunpbE+t5KCqnp6so7aj3qyIfGhxIYF8PC8PfSJDObckQk8uWhvq3Tnjkzg3XX72FtWy5WTejMkPpStBdXM31XKV54HDVP7RjJzUCwfbMgn2N/COSMTeGlZNmX2BsIC/Tq7aO1GBK6YnMKDc3dSXOPg4dMGszKrnJxmD/iKqhw8uziTM4YneK1bam/g7i+30+AyBPlbePysIazKKqfU3tDZxWhXut8c2L4tq6gqzOWkO1+gJHMba95/juP+8s9W6da8/yzjLriO6NTBLH7x7+RvXUXi0HQKdqwnd+MyTrjlKfz8A6itLGtcJywmkRNuebITS6N6kp5xV9eORORjEVklIptE5GrPvN+LyHYRWS4iL4nI0575cSLygYis8Pwd3bW5PzSLV++ipLymq7PRodKirRRW11Nc48BpYFV2OaOTwr3SjEoKZ+necgDW5FQwOC4UgNFJ4azKLqfBZSiucVBYXU9atNVr3SHxoRRV11Nid0dM4sMC2VHkrtOtBVWM7RXR0UU8bCOTwlme5S5/Rmkt1gALEUHez4kigvwJDrCQUeq+QVmeVc5ITz2OTApjWaZ7/WWZ5YzyzN9TYsfucDV+jrQ2bTMy2J/hCWEsySjr0LK1p7yNy0hJn4GIEJ02BIe9mtqKEq80tRUlNNTVEJ02BBEhJX0GeRuWHnC7/kHBxPQbhp9/YEdmv0P1jbZSUFlHUbUDp8uwfG85Y3p7H2djeoXzY0Yp4D4OhySENi3rHU5RdT25zaIESeFB7C62U+80uAxsL6xmXHL3P54OpqP2o55sRGIYq7IqANhbVos1wI/wIO8b9fAgP4IDLOwtc5+DVmVVMCIxDIC6Zr05Av2ablfG9Y5gQ14VZZ7GUVW9s0PL0ZEGxIaQX1FHQVU9Tpfhxz2lTEixeaUprK5nb2ktLmO85jtdhgaXe16An2DhyIiG6H5zYHkbl5I64ThEhBjPucZe7n2usZeX4KitIcZzrkmdcBy5nnPN7sVfMvj48/DzDwAgODyys4vQ84il/f96oF9ipPEKY0yJiFiBFSLyBfA3YBxQCcwD1nnSzgb+bYxZJCJ9gK+BoV2RaeUtMtifUntTF7hSe0Orhl/zNC4DdoeL0EA/bNYAMkrsjenK7A4ig70PhfHJEaz0NLgA8irqGJ0Uzrq8Ssb2jiDK2v0PnUirdx2V2RuwWf2pqGt6Cm2z+jdeQN1pHI2NwPCgprQVdQ2EB7Uu85TUSDbnVzdOnzMqgU82FRDk33NOiLUVxVgj4xqnrZEx2MuLCY6IbpxnLy8m2BbbLE0stRVN3cB2L/qCrJXziEwZwPAzf09gSFjnZL6DRVkDvI+zmgb6xXgfZ1EhAZTWeB9nYYF+OFyGU4bE8a/vMzhpcFPd5ZbXcfaoBEID/XA4XYxMCiej1E5Pp/tRa7Zgf8pqm84v5XYHtmB/Kuuc3mman4NqG7A1Ox+fMiSW9OQI7A4Xz3ki2HFhAfiJ8McpKQT5W1i4p5RV2RWdUKL2Fx0SSHF1U5S9uKaeAXGhB1jDW0xIALcd35/EiCDeWJnT46OMoPvNwdjLi7FGNj+PxFBbXozV1nSucU83S2OLxV7uPtdUFeZSvHsTm758Hb+AAEaeeQXRfQYBUF2Sz7eP30BAsJXhp/yG2P7DO6lU3Zx2TwV+gZFG4M8isg5YCqQAvwG+N8aUGGMcwHvN0p4APC0ia4FPgQgR6dlXcXVQfuKOUq7OabqYvL4ql2n9orh9Rl+C/S2NT3d/yQbGhjAlLZJPPO+RDE8Mo6rOSVZZ6/cmj2RpR5/CzLte4NibZhMUEc2mT1/p6ix1C2cOj+eb7UVeT/0B8irr+GpLEX+dnsaN09LIKrO3iqD8Eul+5Nv/thYx69vdrM6pYGpaJAAWEZIjg3lleTYvLctm5sAYYkMDujajXaS4xsGtn23lhg83MX1AtFfD6ZdM95u2GZeT+poqZtz4OCPPuIJlrz2CMYbgiGhOuedVTrh5NqPOupLlbzyOo/bI7rWmfppf1NlFRI7F3RCcYoypEZEFwFbajh5agMnGmAPeBXu6uV4N4J98LP6x+mSmo5XVNhBlbTrZR1n9KW8WEWmepszegEXAGmChut5Jud3hFSmMtAZ4PdUcnhhGVlmt11PN/Kp6nlrsfqciPiyQEYneXfS6i2P6RnGU5wK5t8zuqSN3FCfS6k95i6fQ5fYG7+6lnvoCqKxrIMITbYwI8qeyWYSyV0QQF49N4rklWdR4uvj0i7YyIimMYQn9CfCzEOxv4bLxvfi/VbkdWOKfZ/eiL8hcOheAqJSB2Mua3k+1lxVjtcV4pbfaYqgtL2qWpojgCHea4PCoxvlpk09k6cuzOjLrnarU7vA+zkK8o9cApTUOd7Sx2XFWVe+kb4yV8SkRnDc6kZAAP4wxOJyG+TtLWLSnlEV73F1azx6Z0GqbPYXuR60dnRbJpD7u7pVZZbVevThs1gDKa1ucg2obWnVxb5kGYHVOBVdOTObr7cWU1zZQU1BNvdNQ73Syu6SGXhFBFFX3vP2opKaemNCmLuwxIYGU/oxylNobyCqtZUhCWONAOT2J7jcHtmvRF+xZ8jUAUX0GYi9rfh4pJrjFuSbYFoO9+bmmvKjxfGSNjKXXqCnurvSpgxCxUF9dQVCYrbHLalTKAEJjEqkqyCGqz8COLl7310O7k7a3X1ot2IBST4NxCDAZCAWmi0iUiPgD5zZLPxe4fv+EiIzxtVFjzIvGmHRjTLo2GDtHZqmd+LBAYkIC8BMYn2xjfV6VV5r1eZVM9lyExvaOYFthtWd+FeOTbfhbhJiQAOLDAr26q6Yn21iRXe61rTDP+xQCnDI4loWeG97uZuGeUh6Zv4dH5u9hfW4VEz3vxqRFBVPrcHl1TQV3t9Nah4u0qGAAJqbY2JDnHvxnw74qJqW615+UamODp36jrP5cOSmZ11flUths8JLPNhdyz1c7+fvcXfxnRQ7bi6q7ZYMRoN/U05hx82xm3DybxJGTyFo5H2MMJRlbCQgO8epSCBAcEY1/UAglGVsxxpC1cj5JIyYBeL23lrdhKRGJqZ1alo6UUWInITyI2NAA/CzCxD421uVUeqVZl1vJUWnuBs/4ZBtbPd2VH523h9s/387tn2/n2+3FfLGlkPk73XW1//2k6JAAxiVH9MibXND9yJfFGWX864dM/vVDJhv3VTE+xf2+ap/IYGodTq+HcQCVdU5qHS76RLrPQeNTIhoHTmoeBRqRENY4WNLGfVX0jbZiEfe7fH0irT12IKVdRTUkRgQRFxaIn0U4qm8UK1tcf9oSHRJAgJ+721xooB+D40PJ9TFCdk+g+82B9Z96Gifc8iQn3PIkvUZMJnPFPIwxFGdsJcAa4tU1FcBqiyYgOIRiz7kmc8U8kkZMBqDXiMkU7lwPQGVBDi5nA4GhEdRVlWNc7nquKtpHVVEuoTGJnVtQ1a39oiKNwFfAH0RkC7ANdxfVHOAhYDlQgjvyuP+M/WfgGRFZj7uufgC6/bj5rz18OceMH0hsZBg7v5rFrOe/5LWPl3R1ttqVy8A7a/dx3dF9sIiwJLOMvMo6Th8aR2aZnQ15VfyYUcbl6b35+4kDqPH85Aa4u8etzqngbyf0x2UMb6/dx/7OcYF+wpD4UN5ak+f1fROSbUzr574xXptbyZIecJO7Kb+KYYmh3DOzPw6nizdWN5Xpthl9eWT+HgDeWbePX49PIsBiYUt+VeM7it9sL+aKCb2ZnBpJaY2DVz31d/KQOEID/bhgtPti4jKGxxZkdG7h2lHC0HTyt6zi24euwS8giLEX/7lx2fzHb2DGzbMBGHXeH1gzZzZORz0JQ8YR7xnxctNn/6U8Zw8iEBKdwOjz/9S4/txZV9JQW4PL2UDexmVMueY+IhL7dG4BD4PLwFurc7lxehoWERbvLiW3oo6zRsSTUWJnXW4lC3eXcuXkZB46dSDV9U6vkVPb8sej+xAW6IfTGN5clds4sFJP1pH7UU+1paCaofGh3HFcXxyen07Y76/TUvnXD+5RhT/YkN/40wlbC6rZWuA+B502NI640EAM7oj2+xvcP0VRUFXP1sJqbpqehjGwbG+518jZPYnLwKvLsrnzhP5YLMKCHcVkl9Vy/phEdhfXsCqrgv4xIdw0oy+hgX6MT7Zx/phEbv5kK71twfwmvXfjtj7fVHBEvB6g+82BJQ5LZ9+WlXz94NX4BQaRftENjcu+fezPjaOfjj33j40/uZEwdDyJnnNN2qQTWPn2k3zzyLVY/PxJv+RGRISiXRvZ9L83sfj5IyKMPe9aAkO7Z6+qTqeRRgDE6LskiEiYMabKE2n8CHjVGPPRz9mWdex1WqFt+N3fev5NUEfy0xet22QN1BP2gZRUdf/uVV0lOuyX987SoXL2/LZ6h8ou0fe52pIcHdLVWejWgvz0et6Wh04d1OMqxzpjVrvf29vn/63H1YPeibn93TPYzUZgD/Bxl+ZGKaWUUkoppbqJX1r3VJ+MMTd3dR6UUkoppZRS3Yx2TwU00qiUUkoppZRS6gA00qiUUkoppZRSvuiYE4A2GpVSSimllFLKN+2eCmj3VKWUUkoppZRSB6CRRqWUUkoppZTyRbunAhppVEoppZRSSil1ABppVEoppZRSSilf9J1GQCONSimllFJKKaUOQCONSimllFJKKeWLvtMIaKNRKaWUUkoppXzT7qmAdk9VSimllFJKKXUAGmlUSimllFJKKV+0eyqgkUallFJKKaWUUgegkUallFJKKaWU8kXfaQS00aiUUkoppZRSvmn3VEAbje3ud3/7U1dnodv6z6xnuzoL3dpfHvxzV2eh23K4TFdnoVsL8NenoG2pb9B9py31TldXZ6FbS7BZuzoL3ZYxelwdiEMPLXUE0kajUkoppZRSSvmi3VMBHQhHKaWUUkoppdQBaKRRKaWUUkoppXzRSCOgjUallFJKKaWU8k0HwgG0e6pSSimllFJKqQPQSKNSSimllFJK+aLdUwGNNCqllFJKKaWUOgBtNCqllFJKKaWULyLt/3dIXysni8g2EdkpIrf7WP5vEVnr+dsuImXNljmbLfu0PapBu6cqpZRSSimlVDchIn7AM8BMIBtYISKfGmM2709jjPlLs/TXA2ObbcJujBnTnnnSSKNSSimllFJK+SKW9v87uInATmPMbmNMPfA2cNYB0l8MzGmH0rZJG41KKaWUUkop5UsHdE8VkatFZGWzv6tbfGtvIKvZdLZnno/sSSrQF5jXbHawZ7tLReRX7VEN2j1VKaWUUkoppTqJMeZF4MV22txFwPvGGGezeanGmBwR6QfME5ENxphdh/Ml2mhUSimllFJKKR/kEAeuaWc5QEqz6WTPPF8uAq5tPsMYk+P5d7eILMD9vuNhNRq1e6pSSimllFJKdR8rgIEi0ldEAnE3DFuNgioiQ4AoYEmzeVEiEuT5HAscDWxuue5PpZFGpZRSSimllPKhKyKNxpgGEbkO+BrwA141xmwSkfuBlcaY/Q3Ii4C3jTGm2epDgRdExIU7QPiP5qOu/lzaaFRKKaWUUkopX7qkdyoYY74Evmwx754W03/3sd6PwMj2zk+3bjSKyN+BKmPM44e5nUjgEmPMs57pXsCTxpjzDjuTHWxYQijnj0pERPgxo5S524u9lvtbhN+m9yIl0kp1vZNXlmdTUuMA4KRBMUxJi8IYw7vr9rGloJr4sEB+PzG5cf3Y0AA+31zI/F0l9LYFcfGYJIL8LZTUOPjPihxqG1ydWt7O8Py9l3LKtBEUllSSfv5DXZ2dTmGMYd1HL7Jvyyr8AoJIv/gGolIGtEpXmrWTlXOewOmoJ3HoeEaffXXjE7adP3zGrsVfIGIhadgERp75O1zOBla9/RRlObswTid9JhzHkBPO7+ziHRZjDBs/fon8LSvxCwxi7EU3Epncv1W6sqydrHl7Nk5HHQlD0xnxq6u8nj7uXPARmz/7Dyfd9wZBYREAFO3cwMZPXsY4GwgMjeDoax/utHK1l2EJoVww2n0OWryn7XNQnyj3OejlZe5zUGigH1dNSiY12srSzDLeWbuvcZ3xyRGcPCQWi8CGvCo+3ljQ2cVqN+eMjGdofBgOp4u31uSRXV7XKk2yLYhLxiURYLGwpaCKDze4y3vmsDiGJ4bhdBmKahzMWZ2HvcFFn8hgLhyT2Lj+V9uK2JBX1Wllai8/9/q1f9/pE+Xed95d17TvXHt0H2xB/lgssKuohrfX7sO0/OJu7NyR8QxLCKPe6eLN1b73lxRbEJeOSyLAz8Lm/Co+8OwvIQEWLp/Qm+iQgMZrtN3hwhpg4ZKxScSGBtDgMry1Oo+8ynoA7j2xP3UOJy7A5TI8/n1mZxb3Zzt7RDxDPfU0Z00eOW0cVxePddfTlvwqPvKcR84YFsewhDCcxlBc7WDOmjxqG1z4CZw/OpGUyGCMgY82FrCruKazi9auOvL6pVRLR8w7jSJyoAZwJPCn/RPGmNye0GAU4MLRSTy9eC+zvtlJerKNxPBArzRHpUVSU+/k73N3Mm9nMWePiAcgMTyQ8ck2Hvh2F08v3stFY5IQoKCqnofn7ebhebv5x7zd1DsN63IrAfj1uF58sqmAB7/bzdrcSk4YFNPJJe4cr3+2lLOufaars9Gp9m1ZRVVhLifd+QLjLriWNe8/5zPdmvefZdwF13HSnS9QVZhL/tZVABTsWE/uxmWccMtTnHj7swyccTYA2WsX4XI6mHnr0xx307/Z8+NXVJfkd1q52kPB1lVUF+Vy/B0vMPr8a1n/ge+6Wf/Bc4y+4FqOv+MFqotyKdi6unGZvbSQwm1rsUbFNc5z2KtY/+HzTLzibmbc+gzpl93W4WVpbwJcNMZ9Drp/7k4mpLRxDnI4uffrnczb0XQOcjhdfLa5gA/Xe+8PoYF+nDMygdk/ZDLrm93Ygv0ZHBfaWUVqV0PjQ4kLDeTB73bzzrp9nD860We680cn8s7afTz43W7iQgMZGu8u77bCah6Zv4dHF2RQWFXfeM7Nq6zjn99n8NiCDF5YksUFoxOxdNGT7p/rcK5f+/edjza0Ppe8siybh+bt5oFvdxMW5M+45J5zgzssIZS4sEBmfbubd9bu44I29pcLxiTy9tp9zPp2N3FhTfvLCYNi2F5YzQPf7mZ7YTUzB7r3lxMHxZBTXssj8zN4fVUe54xK8NreU4uzeHR+Ro9pMA6NDyU2NJCHvtvNe+v2cd4o3/V03qhE3l23j4e+201saCBDmh1Xjy3Yw+P7jytPPU1OjQTgsQUZPL8kizOHx3dVAKnddNT1S3kT909ktOtfT9TtGo0icpeIbBeRRcBgz7wFIpLu+RwrIhmez5eLyKciMg/4TkTCROQ7EVktIhtEZP+PYP4D6C8ia0XkMRFJE5GNnm0Ei8h/POnXiMiMZtv+UES+EpEdIvJoJ1cFadFWCqvrKa5x4DSwKruc0UnhXmlGJYWzdG85AGtyKhpvvkYnhbMqu5wGl6G4xkFhdT1p0VavdYfEh1JUXU+J3R2ZjA8LZEeR+6nb1oIqxvbqORfjn2Lx6l2UlPfsp4s/Vd7GpaROOA4RISZtCA57NfbyEq809vISHLU1xKQNQURInXAcuRuWArB78ZcMPv48/PwDAAgOjwTcJ9KGulpcTidORz0Wf38CgkI6tWyHa9/GZSSPn4GIEJ3qrpvaCu+6qa0ooaG2huhUd90kj5/Bvo1LG5dv/PQVhp1xOc37sGSv/oGkkVMI8VyIgzx11pPsPwcVVbvPQSuzyxndy/scNLpXOEsz3eeg1TkVjTdu9U7DrmI7Dpd3b4XY0AAKquqpqnePDL6loJqxvb232VOMTApjRZa77JmltVgDLEQE+XmliQjyI9jfQmZpLQArssoZmRQGwLbCGlyeMFlGqR1bsPvZp8NpGuf7+1noUaE0j8O5fjXuO87WPV32936xiDtS2ZPqZmRiGMs95c04yP6S4dlflu8tZ5Rnf2m+/vK9TftRYngQ2z3X7oKqemJCAghvsd2eZERiGCuzvY+rluUJD/IjqNlxtTK7nJGJ7vrY3uy4yiy1Y7O6j6uE8KDGe5yqeid2h5OUyODOKFKH6ajrl1K+dKvuqSIyHvcLnWNw5201sOogq40DRhljSjzRxrONMRWe0YKWisinwO3ACGPMGM/3pDVb/1rAGGNGekYgmisigzzLxuAeorYO2CYiTxljmv/QZoeKDPan1NOgAyi1N7Rq+DVP4zJgd7gIDfTDZg0go8TemK7M7iAy2Pu/e3xyBCs9NzwAeRV1jE4KZ11eJWN7RxBl7Va7hzoM9vJirJGxjdPWyBhqy4ux2qIb57mnm6WxxWIvd3cnqyrMpXj3JjZ9+Tp+AQGMPPMKovsMovfoo8nduIwv7r0Mp6OOUWddSWBoz2oA1JYXY41sesJqtbnrJjjCu26CveovllpP3eRtXEqwLQZbr75e260uzMHldLL42TtpqLPT75gzSEk/roNL074irf6U1nifg/oe4jmout6JL4VV9SSEBRIdEkCZ3cGYXuH49bQwmoctOIBSe0PjdJm9AZs1gIq6prLbrAGU1bZIExzQaluT+kSyJqeicTo1KpiLxiQRHRLAG6tzG2+Ce4rDuX61te/sd93RfUiLsrIpv4rVzeqsu7NZAyhrvr/UtrG/+EgDEB7s35i2os5JuOeanlNey+ikcHYX2+kTGUyUNYDIYH8q65xgDH86yj1q/+I9pfyY2XTN764iglvUgeeYqWxeT8EBlLc4riJ8HFcT+0SyNte9j+RW1DI8MYw1ORVEWgNIiQwm0hrA3rLaDixNx+qo65fy1lMjg+2tu7UKjgE+MsbUAHgafAfzjTFm/2MVAR4SkWmAC+gNJLS5pttU4CkAY8xWEckE9jcavzPGlHvyshlIBTqt0diR/MT9lPeTTU3vEr2+KpcLRidyypBY1udV0tDT7lJUhzEuJ/U1Vcy48XFK9+5g2WuPcPLdL1OSuR0RC6fd9xr1NVV8/9TtxA8aQ1is7+5ER5qG+jp2fPc+U66+r9Uyl8tJefZOpvzhAZyOehY9dQtRqYMJi+vdBTntPmocLuaszePKSckYY9hdbCc2rPXN3i/JzEExuIxhVXZTAyiztJZH5u8hISyQS8YlsSW/Ws/JHk8v3ou/RfjdhN4Mjg9la0F1V2epa3h2h293lHDOyHhunZFGXkUd2eW17I/RPrFwL+W1DYQF+nHt0SnkV9Wzq9je5iaPJCcM9D6ulu8tJyEsiL9MS6O0xkFGiR2X+eUeUwe6filv2mh0626NxrY00NSVtmVfguZXi0uBOGC8Mcbh6cZ6OH0Pmr957aSN+hKRq4GrAaZfcy/DTrzgML6ySVltA1HWppupKKs/5c2e3DZPU2ZvwCJgDbBQXe+k3O7wihRGtnjaPTwxjKyyWq8nd/lV9Ty1eC/g7qo6IrFnRYyUt12LvmDPkq8BiOozEHtZUeMye1kxwTbvd1aDbTHYy5ulKS/C6kljjYyl16gpni4wgxCxUF9dQdbq70kYMg6Lnz/B4ZHE9B1KWdaObt9o3LPoCzKXzQUgMmUg9rLCxmX2ct91U+tVf0UE22KoKc6jpiSfBf+8AYDa8iJ++PeNHHPDP7HaYgkMicA/KBj/oGBi+g2nIndPj2o0ltkbiArxPgeVHeI56EA25FU1DuwytW9kj7pxm9o3kimed6P2ltYSZfVnj2dZpI9zdHmLXh6RVn/Ka5vSTEyxMTwhjGd+3Ovz+/Kr6qlrcJEUEURWD4qIHM7161A0uAzr8yoZlRTerRuNx/SNZEpaJODeXyKbX5eD29hf2khTWdtARJAfFXVOIoL8qKxzX9NrG1y8taZpsKB7T+xPcbV7nf3RuKp6J+vzqkiNsnbLRuPRaZGN7xxmlbWopxbHDEB5raOxO/f+NBXN0kxIsTEsIYznljQdVy6D14Py66f2obCqvr2L0uE64/oVHBHVCSVRPU13e6fxB+BXImIVkXDgDM/8DGC85/OBBrCxAQWeBuMM3JFBgEqgrRbQQtyNTTzdUvsA235Kpo0xLxpj0o0x6e3VYAR3X/z4sEBiQgLwExifbGN9ixH01udVMrmPDYCxvSPYVljtmV/F+GQb/hYhJiSA+LBAr+6q6ck2VmR7d1MJ87wzIMApg2NZuKe03cqiOl//qadxwi1PcsItT9JrxGQyV8zDGENxxlYCrCFeXVMBrLZoAoJDKM7YijGGzBXzSBoxGYBeIyZTuHM9AJUFObg8o4GGRMU1zm+oq6UkcxvhCcl0d32nnsaxN83m2JtmkzRiEtmr5mOMoSRzKwHBIV5dewCCI6LxDw6hJNNdN9mr5pM4YhIRSWmcfN/rzLz7ZWbe/TLBtlim/eUJgiOiSBwxiZI9m3E5nTTU11G6dzth8SldVOKfp+U5KD3ZxvrcFueg3Eomp7rPQeOanYMOZP/7SSEBFqb1i2ZxRlm7572jLNpTxmML3IPUbNhXyYQUd9lTo4KxO1xeXQ3B3Y2wtsFFapT7+eWEFFtjg3lIfCjHDYzmpWXZOJxNDefokIDGgW+irP4khAc2jordUxzO9astQX5ChKehYBH3u2/5la1H1exOFu4p49H5GTw6P4P1eZVM9JQ3LSqY2oa295c0z/4ysY+NDfvc9bZxX1Xj+s3nWwMs+Hn2lympNnYV1VDb4CLQTwjyd9/mBfoJQ+JCyKvonvW1OKOMf36fwT+/z2BDXiXpyU3HVa3D5fWAG6Cyzklds+MqPdnGRk99DIkLZcaAaF5Z7n1cBfgJgZ6KGhQXgsu4H8r0NJ1x/VLedCAct24VaTTGrBaRd4B1QAGwwrPoceBdT0TviwNs4k3gMxHZAKwEtnq2Wywiiz2D3/wPaD505rPAc551GoDLjTF13eE/1GXgnbX7uO7oPlhEWJJZRl5lHacPjSOzzM6GvCp+zCjj8vTe/P3EAdR4hiwH9+h7q3Mq+NsJ/XEZ4zUseaCfMCQ+lLfW5Hl934RkG9P6uU8Wa3MrWZJZ1oml7TyvPXw5x4wfSGxkGDu/msWs57/ktY+XdHW2OlTisHT2bVnJ1w9ejV9gEOkX3dC47NvH/swJtzwJwNhz/9j4kxsJQ8eTONT9rCZt0gmsfPtJvnnkWix+/qRfciMiQv+pp7Fyzmzm/sM9OHHqxBN63LsR8UPTyd+yiu8evga/gCDGXvTnxmUL/nkDx940G4BR5/7BM2R5PfFDxhE/ZHxbmwQgPCGF+CHjWPDPPyMi9Jk0k4ik1AOu0924DLy9dh/XT3Wfg37M8JyDhsWxt9TO+rwqFmeUcfmE3tx3kvc5COCBkwcQHOCHn0UYnRTOk4sy2VdZz/mjE0m2uW/2vtxSSEEPvHED2JxfzdCEMO4+oZ/npwGaoj23HJvGYwsyAHh/fT6XjE0iwE/Ykl/NFk9k7NyRCfj7SeM7Zxkldt5bn0+/aCvHD0zGZdwD4ry/Lv+QI3DdxeFcvwBmndRs3+kVzlOLMqmud/LHKSn4WwQBthfV9KiHm5vzqxmeEMY9M/tR3+DizWb7y60z0nh0fgYA767L59JxSQT6CZvzq9mc795fvtlezO8m9mZyaiSlnp/cAEgIC+TX43thjGFfZX3jtT08yJ8rJ7l7NlhEWJVd0bjvdWdbCtzH1Z3H98PR4ri6aXoa//w+A3AfVxd7jqutBU3H1TmjEvCzCH+Y4j6uMkvtvL8+n7BAf66Zkowx7gjsW6tzO71s7a2jrl9K+SKmB3UL6gn+9OFmrdA2/GfWs12dhW7tLw/++eCJfqEc+i7XAVXV9awGRWfaH2lRrdX7GJ1UNfG36L7TFj2sDqynDu7VGR47fXCPqxzbJa+3+01I+Vu/6XH1oIe9UkoppZRSSqk2davuqUoppZRSSinVXXSHV9a6A200KqWUUkoppZQP2mh00+6pSimllFJKKaXapJFGpZRSSimllPJBI41uGmlUSimllFJKKdUmjTQqpZRSSimllA8aaXTTRqNSSimllFJK+aJtRkC7pyqllFJKKaWUOgCNNCqllFJKKaWUD9o91U0jjUoppZRSSiml2qSRRqWUUkoppZTyQSONbtpoVEoppZRSSikftNHopt1TlVJKKaWUUkq1SSONSimllFJKKeWLBhoBjTQqpZRSSimllDoAjTQqpZRSSimllA/6TqObRhqVUkoppZRSSrVJI43tzE+fRrTpLw/+uauz0K39+64nuzoL3dalt/+hq7PQrSXZgro6C93WppyKrs5CtxXgr8+NDyTBZu3qLHRbe4trujoLSnUajTS6aaNRKaWUUkoppXzQRqObPmZUSimllFJKKdUmjTQqpZRSSimllA8aaXTTSKNSSimllFJKqTZppFEppZRSSimlfNFAI6CNRqWUUkoppZTySbunumn3VKWUUkoppZRSbdJIo1JKKaWUUkr5oJFGN400KqWUUkoppZRqk0YalVJKKaWUUsoHjTS6aaNRKaWUUkoppXzRNiOg3VOVUkoppZRSSh2ARhqVUkoppZRSygftnuqmkUallFJKKaWUUm3SSKNSSimllFJK+aCRRjeNNCqllFJKKaWUatMvMtIoImcCw4wx/+jqvByKc0clMDwhjHqnizdW5ZFdXtsqTUpkML8el0SAn4VN+VV8sD4fgJAAC7+b2JvokEBKaup5dXkOdoeL9OQIThgUgwC1DS7eXbuPnIq6xu0JcMuMvpTXOnhhSXYnlfTnM8aw7qMX2bdlFX4BQaRffANRKQNapSvN2snKOU/gdNSTOHQ8o8++uvEJ0s4fPmPX4i8QsZA0bAIjz/wdLmcDq95+irKcXRinkz4TjmPICed3dvE6zfP3Xsop00ZQWFJJ+vkPdXV2OsXwxDAuHpuERWDh7lL+t7XIa7m/Rfj9pGRSo4Kpqnfywo9ZFNc4iAkJYNYpA9lX6T5udhfbeWNVrte6103tQ1xYIPd+tbPTytPejDGs+fBF9m1eiV9AEBMvvdHnsVWStZMVb/7bfWwNS2fsOe5jqzR7N6vefQZXQz1i8WPc+X8kJnUwFflZrHjrCUqzdjHi9MsYctw5XVC69jO2dwRXTE7BYoFvtxXxkeccvN+wxDCumJRCarSVf83fzZKMssZlsaEB/OmYNGJDAzAGHpi7k8Kq+k4uQcca3SucyycmYxFh3o5iPtnoXT9DE0L57YRk+kRZmf1DBssyywB33dw8ox8i4GcRvtpSyLfbi7ugBO3v3JHxDPNc299cnUd2eV2rNCm2IC71XNs351fxwYYCAMb0CueUIbEkhAfyz+8zySpz3xcMjgvhzOHx+Ak4DXy8sYAdRTWdWq72NKZ3BL+blIxF4LvtxXy8oeV+E8bvJiWTGmXl3wv2sNSz3+xnDbDwxNnDWL63jFeWdv97mZ/qcOrnnd+OZW+pHYCi6noe+W53Z2a9R9FIo9svMtJojPm0pzQYhyWEEh8ayP3f7OLtNXlcOCbRZ7oLRycyZ00e93+zi/jQQIYlhAIwc1As2wtrmPXNLrYX1jBzUAwAxTUOZi/M5OF5e/h6WxEXjU3y2t6xA6LJr2x9Aeuu9m1ZRVVhLifd+QLjLriWNe8/5zPdmvefZdwF13HSnS9QVZhL/tZVABTsWE/uxmWccMtTnHj7swyccTYA2WsX4XI6mHnr0xx307/Z8+NXVJfk+9z2keD1z5Zy1rXPdHU2Oo0IXDq+F0/8kMHfvtrJxFQbSRFBXmmm9ouiut7JnV/u4JttxZw3uukYLKyu5/65u7h/7q5WDcZxvSOoa3B1Sjk60r7NK6kqzOWUu18k/aLrWPXesz7TrX73GdIvup5T7n6RqsJc9m1xH1vrP/0Pw0++mBNvfYoRp1zK+k//A0BgSDhjz7mGwT28sQhgEbjqqD48MHcHN3ywmWP6RZMcGeyVprCqnqd+yGDhrpJW6/95el8+Wb+PP3+wmds+3Uq53dFZWe8UInDF5BQe/nYXf/1kC0f3jaK3zbt+iqocPLs4k8V7Sr3ml9obuPvL7dz22Tbu+mI7Z41MIMra8593D0sIJS4skFnf7uadtfu4YLTva/sFYxJ5e+0+Zn27m7iwQIbGu6/teRV1vLI8h13Fdq/01fVOXliazT/mZ/DGqlx+Mz7J12Z7BIvAlZNTeHDuTv7y0Ram9osiueV+U13PMwszWbS79XEFcNG4XmzeV9UZ2e10h1s/9U4Xt3y6lVs+3aoNxoMQkXb/O8TvPVlEtonIThG53cfyy0WkUETWev6ubLbstyKyw/P32/aohy5pNIrIZSKyXkTWicjrInKGiCwTkTUi8q2IJHjS/V1EXhORhSKSKSLniMijIrJBRL4SkQBPuoxm85eLyADP/La2e7mIPO353F9ElnrWfUBEqjzzjxWRBSLyvohsFZE3pQseNYxMCmd5VjkAGaW1WAMsRAR5XzAjgvwJDrCQUep+0rg8q5yRSeGe9cNYlulef1lmOaM88/eU2LE7XI2fI5tdhCOD/RmeEOb1JLy7y9u4lNQJxyEixKQNwWGvxl7ufZK0l5fgqK0hJm0IIkLqhOPI3bAUgN2Lv2Tw8efh5x8AQHB4JOA+UTTU1eJyOnE66rH4+xMQFNKpZetMi1fvoqS85z6V/qn6RlspqKyjqNqB02VYvrecMb3DvdKM6RXOjxnuG9lV2eUM8TyQOZAgfwszB8fw+ebCDsl3Z8rZuIy0Qzq27I3HVtqE48jxHFsIOGrd+5SjtgZrhPvBVXB4JNGpgxA/v04tT0cYEBdKXkUt+ZX1NLgMi3aXMrFPpFeawqp6MkvtuIzxmp8cGYyfCOtyKwF3z496p3eanm5AbAj5FXUUVNXjdBl+3FPKhBSbV5rC6nr2lta2qh+ny9Dgcs8L8BMsR8gPpo1MDGP53pbXdu9jISLIj2D/Ztf2veWMSgoDIL+qngIf0ejs8joqahsAyKusJ8DPgr+lZ9bZgNhQ9lW695sGl2Hx7lIm9Gmx3zQeV63X7xdjJTLYn3W5FZ2U4851uPWjujcR8QOeAU4BhgEXi8gwH0nfMcaM8fy97Fk3GrgXmARMBO4VkajDzVOnNxpFZDhwN3CcMWY0cAOwCJhsjBkLvA3c2myV/sBxwJnAG8B8Y8xIwA6c1ixduWf+08ATnnkH2u5+s4HZnnVb9l0YC9yI+z+rH3D0zyjyYYm0+lPa7Klzmb0BW4unrDarP2X2hmZpHI2NwPAgfyrq3Msq6hoID2r9hHZKaiSb86sbp88ZlcAnmwroSTESe3kx1sjYxmlrZAy15d5dmGrLi7HamqWxxWL3pKkqzKV49ybm/fsmvn/6dkr2bgeg9+ij8Q8K5ot7L+N/91/BwGPPJjDUu1Gheq4oa4DX8VVa00CUNcA7TUgApTXuNC4DdoeLsED3zV1saCD3nNifW2b0ZWBs08OEX42IZ+62IuqPgEijvazFsWWLaTxuGtOUF2ONjGlKExmDvcydZuzZV7P+k//w2b2Xs+6TVxh5Rrs88OxWYkICKK5u2o+Ka+qJDg04wBpNetmCqK5v4Nbj+/H4r4Zy2YTe9NB7/DZFhwRSXN3UwCmuqSfqEOsH3PX76BlDePa8EXyyMZ/SZte7nspmDfC+btc2YGtx7jmUNAcyplc42WW1jY3uniY6JIAir/3GccjHlQC/nZDMaytyOih3Xe9w6gcg0M/CI2cM5qHTBrdqbKoWpAP+Dm4isNMYs9sYU4+7HXPWIeb4JOAbY0yJMaYU+AY4+RDXbVNXRBqPA94zxhQBGGNKgGTgaxHZANwCDG+W/n/GGAewAfADvvLM3wCkNUs3p9m/UzyfD7Td/aYA73k+v9Vi2XJjTLYxxgWsbfF9R4SBsSFMSYvkk03u9ySGJ4ZRVedsfD/il8K4nNTXVDHjxscZecYVLHvtEYwxlGRuR8TCafe9xsl3v8yOBR9TVbSvq7OruoHy2gZu/Wwb98/dxbtr87hqSgrB/hZSIoOJCwtkTU5lV2exW9i5+EvGnH0lZ9z3X8acfRUr5szu6ix1K34iDE0M57Xl2dz6yRYSwoOYMTDm4Cv+ghTXOLj1s63c8OEmpg+Ixhbc87undrTE8EDOHB7HO2t/mderk4bGsTq7gpKaI6urd3v643sbue2zbTzx/R5+NzGZhPDArs6S8tYbyGo2ne2Z19K5nt6b74tIyk9c9yfpLmfep4B/GWM+FZFjgb83W1YHYIxxiYjDmMa+Ky688298fD7Qdg9F85f6nLRRXyJyNXA1wLF/+DsjTrzgJ36Nt2P6RnFUWiQAe8vsnsiH+72FSKs/5S2espbbG7y7lzZ7OllZ10CEJ9oYEeRPZV3Tur0igrh4bBLPLcmipt4JQL9oKyOSwhiW0J8APwvB/hYuG9+L/2vxvlZ3sGvRF+xZ8jUAUX0GYi9rGsDEXlZMsM37xivYFoO9vFma8iKsnjTWyFh6jZqCiLi7zImF+uoKslZ/T8KQcVj8/AkOjySm71DKsnYQFuv7/RPVs5TaHV6RxagQ78g+QGmNwx1ttDdgEffAClWe46XB829maS2FVfUkhAfSNzqEtGgr/zh9EBYRIoL8uGVGXx6bv6fzCnaYdiz8vO1jq7y48bjZz2priizC/uikO03m8u8Ye87VACSPmcqKOU92dPY7XXGNg5hmT/hjQgIpqT60m9XiagcZxTXkV7ojBsv3ljEoLpTvODIGewEoqaknJrTphjQmJJDSQ6yf5krtDWSV1jIkIaxxoJye5Ji+kUzZf20vrW31WkjLd1nLm/UaaiuNL5HB/lw5KZnXV+VR1IMbTSU1DmK99puAQz6uBseFMiQhjJOGxBIc4Ie/Rah1uHizG97L/FyHUz/71wcoqKpn074q+kaHNJ6HlLeOeDutedvB40VjzIs/cTOfAXOMMXUicg3wGu7gXIfoikbjPOAjEfmXMabY0+/WBuzvQ/Bz+y5dCPzD8+8Sz7xD2e5S4FzgHeCin/PFnv/kFwGu/2jLYfcDWbinlIWewQCGJ4QxrV8Uq7IrSIsKptbhauxuul9FXQO1DhdpUcFklNYyMcXG956Xnjfsq2JSqo1vthczKdXGhjz3C+FR1v0XlVyvUfo+21zIZ573sAbEhnD8wOhu2WAE6D/1NPpPdfdQztu0gl2LPid57DRKMrcRYA3Baov2Sm+1RRMQHEJxxlaiUweTuWIe/Y85A4BeIyZTuHM98QNHUVmQg8vZQGBoBCFRcRTuXE/qhONoqKulJHMbA6ef2ellVR0jo8ROQngQsaHuRuHEPjZeajFa8LrcSo5Ki2J3sZ3xyTa2erpyhwX5UV3vxBj3CI/xYYEUVTvILC1hgWewk5iQAP48LbVHNRgBBh5zOgOPOR2A3E0r2Lnwc1LGeY6t4LaOLWvjsZWxYl7j+sG2aAp3biB+4CgKtq8jPK5Xp5eno+0srCYpIpj4sEBKahxM7RfFvxcc2v/5zqJqQgP9iAj2p6K2gZFJ4ezswaNd+rKrqIbEiCDiPPVzVN8onlyYcUjrRocEUFnXgMNpCA30Y3B8KF9sLujYDHeQhXvKWLinDHAPhDOtXxSrcyrd1/YGFxV1Tq/0FXVOahuaXdv72Phhd6mPLTexBli4Zkoyn24qYE+J/YBpu7udRdUkRQQ1HldH94viie8zDmnd2T80pTt2QDT9Y0OOqAYjHF79hAb6UdfgosFlCA/yY0hCKJ9sOHIH+TtcHdFobN52aEMOkNJsOpmmNs3+bTR/uvgy8GizdY9tse6Cn5nVRp3eaDTGbBKRB4HvRcQJrMEdAXxPREpxNyr7/oxNR4nIetzRwYs98w5luzcCb4jIXbi7vpb/jO/uMJvyqxiWGMo9M/vjcLp4Y3Ve47LbZvTlEc/N6Dvr9vHr8UkEWCxsya9qfEfxm+3FXDGhN5NTIymtcfDqcvcN8clD4ggN9Gscsc1lDI8tyOjcwrWjxGHp7Nuykq8fvBq/wCDSL7qhcdm3j/2ZE25xRzfGnvvHxp/cSBg6nsSh4wFIm3QCK99+km8euRaLnz/pl9yIiNB/6mmsnDObuf/4EwCpE0/A1uvn7J49w2sPX84x4wcSGxnGzq9mMev5L3nt4yUHX7GHchl4a3UuN05PwyLC4t2l5FbUcdaIeDJK7KzLrWTh7lKunJzMQ6cOdI9MuMTd42NQXChnjYjH6TIY4I1VuVTXOw/8hT1Q0rB08jav5MtZV+EfGMSES25sXDb30es58danABh3/p9Y7vnJjaRh40kclg5A+oXXs/bDF3G5nPgFBDL+ousBsFeU8u3jN+KorUEsFnYs+IST73yOgOCeN9CUy8DLS/Zyz8kDsYjw3fYisspquWhcEruKalixt5wBsSHcdkJ/QgP9mNAnkgvH9eLGDzfjMvDa8mz+fspABGFXUTXfbis6+Jf2IC4Dry7L5s4T+mOxCAt2FJNdVsv5YxLZXVzDqqwK+seEcNOMvoQG+jE+2cb5YxK5+ZOt9LYF85v0pl5Vn28qOCJen9icX83whDDumdmP+gYXb65p6kZ664w0Hp2fAcC76/K5dFwSgX7C5vzqxmv7qKQwzhuVQFigH9dMTianvJbnlmRzTN8oYkMDOXlILCcPcb+L/OzirMbeET2Jy8DLS7O4+8QBjT/Vkl1Wy4Vj3cfVyqxy+seGcOtx/QgN9CM9xcaFY5P4y8dbujrrneJw6ic5Mpirj+qDMQYR4aP1+T5/zk11qRXAQBHpi7sReBFwSfMEIpJkjNnfMDgT2L/zfw081GzwmxOBOw43Q2JMz3xBujkRyQDS978n+RPXDQHsxhgjIhcBFxtjDvVF01baI9J4pAoP6vmjJHakf9915HXbay+X3v6Hrs5Ct5ZkCzp4ol+oTTlH5siJ7SHA/xf5q1uHLMFm7eosdFu5pUdWNFx1nvd/N67HDfU14Ob/tfu9/c7HTzloPYjIqbgH9/QDXjXGPCgi9wMrPa/ePYy7sdgAlAB/NMZs9ax7BXCnZ1MPGmP+c7h57i7vNHal8cDTnp/TKAOu6NrsKKWUUkoppX7JjDFfAl+2mHdPs8930EYE0RjzKvBqe+bniGg0GmPSDmPdhcDo9suNUkoppZRS6kjQBT/T3i0dEY1GpZRSSimllGpv2mZ00xcalFJKKaWUUkq1SSONSimllFJKKeWDdk9100ijUkoppZRSSqk2aaRRKaWUUkoppXzQQKObRhqVUkoppZRSSrVJI41KKaWUUkop5YPFoqFG0EajUkoppZRSSvmk3VPdtHuqUkoppZRSSqk2aaRRKaWUUkoppXzQn9xw00ijUkoppZRSSqk2aaRRKaWUUkoppXzQQKObNhqVUkoppZRSygftnuqm3VOVUkoppZRSSrVJI41KKaWUUkop5YNGGt200djOrIEavG2Lw2W6Ogvd2qW3/6Grs9BtvfmP57s6C93akk8e7uosdFsLtxZ2dRa6rb6J4V2dhW4tNlRvkdqyZldNV2ehW6upcXR1FpRqd3pGVEoppZRSSikfNNDopo1GpZRSSimllPJBu6e6aV9KpZRSSimllFJt0kijUkoppZRSSvmggUY3jTQqpZRSSimllGqTRhqVUkoppZRSygd9p9FNI41KKaWUUkoppdqkkUallFJKKaWU8kEDjW7aaFRKKaWUUkopH7R7qpt2T1VKKaWUUkop1SaNNCqllFJKKaWUDxpodNNIo1JKKaWUUkqpNmmkUSmllFJKKaV80Hca3bTRqJRSSimllFI+aJvRTbunKqWUUkoppZRqk0YalVJKKaWUUsoH7Z7q9otoNIrIscDNxpjTuzgrh8UYw4aPXqJgy0r8AoMYe/GNRCb3b5WuLGsnq+fMxuWoI35oOiPPvgoRYetXb5G5dC6BYTYAhp36GxKGpVNfXcGK/z5CadYO+kw4jlHn/qGzi3bYjDFs/Pgl8vfXzUVt182at2fjdNSRMDSdEb+6yutksHPBR2z+7D+cdN8bBIVFAFC0cwMbP3kZ42wgMDSCo699uNPK1V6GJ4Zx8dgkLAILd5fyv61FXsv9LcLvJyWTGhVMVb2TF37MorjGQUxIALNOGci+yjoAdhfbeWNVrte6103tQ1xYIPd+tbPTytNVnr/3Uk6ZNoLCkkrSz3+oq7PT6Ywx/PfZx1mzfDFBQcH88Za/02/gkFbp7rvpakpLiggMDAbgrn88jS0qmsL8PJ5//H4qyksJC4/guttnEROX0NnF6BATUyO5bnpf/CzwxcYC3lqZ47X8/LFJnDYiAafLUGZ38Og3u8ivrGNMcgTXTe/bmK5PlJX7/7edRbtKOrsI7W5EYhiXjOuFReCH3aV8uaXQa7m/RbhqcjKpUVaq6p089+NeiqsdACTbgvnthN5YAywYA/fN3UmDyzCpj43Th8VjMJTZG3hxSRZV9c6uKF6HMMaw6v0XyNm0Ev/AIKb85i9EpwxolW7tp6+xZ/k86muquPBfH3RBTrvGxLRIbpjRD4sIn2/M583l2V7LzxqVyNljknAZg93h5LG5O8kosXdRbjvelP7R3HzSQPwEPl6Tx39/3Ou1/NxxvbhgQm+cLoO93skDX2xjT1ENp4xI4DdTUhrTDUwI49KXVrI9v6qzi6B6kF9Eo/FIUbBlFdVFuRx/5wuUZm5j3fvPMf3Gx1ulW/f+c4y54FqiUgez9KX7KNi6moSh4wHoP/0sBsw42yu9xT+QIadcSsW+TCrzMjulLO2tYKunbu54gdK921j/wXNMu6F13az/4DlGX3AtUX0Gs+xl77qxlxZSuG0t1qi4xvQOexXrP3yeyVf9nZCoOOoqyzqrSO1GBC4d34t/LdhDqb2Bu2f2Y21uJXkVdY1ppvaLorreyZ1f7mBCio3zRifywpIsAAqr67l/7i6f2x7XO4K6BlenlKM7eP2zpTz/zve8POuyrs5Kl1i7fDH7crKY/d+P2LFlI688+TAPPvWaz7TX3/4A/QcP85r3+gtPMG3maUw/8XQ2rlnBnFee5rrbZ3VG1juUReCGGf24+cNNFFbV8/zFo1i8u4TMZjerOwqruWbOeuoaXJw5KoFrjknl/i+3sza7givfXAdAeJA/b/5uLCsyy7qoJO1HBH6T3ovH5++hxN7APTP7szangtxm551jPOed27/YzsQ+Ni4YnchzP2ZhEbh6SjIvLc0mq6yW0EA/nMZgEbhkXC/u+nI7VfVOzh+dyPGDYvhkY0EXlrR95W5eSUVhLmfe+xLFGdtY/vYznHzLv1ulSx45icHTz+DT+67qglx2DYvAX4/vz1/e30hhZT0vXTqGxTuLvRqF32wt5JP1+wA4un801x3rPi6PRBaB208exJ/eXEt+RR2vX5nO99uL2FNU05jmq435fLDa/aB32qAY/jpzANfPWc//Nubzv435AAyID+Wf54/UBuMBaKDRrce/0ygiaSKyVUTeFJEtIvK+iISIyMme+auBc5qlnygiS0RkjYj8KCKDPfN/EJExzdItEpHRIjJdRNZ6/taISHjnl9Itb+MyUtJnICJEpw3BYa+mtsL7aXRtRQkNdTVEpw1BREhJn0HehqUH3K5/UDAx/Ybh5x/YkdnvUPs2LiN5vKduUg9QN7U1RKe66yZ5/Az2bWyqm42fvsKwMy4Hms4O2at/IGnkFEI8Dcmg8MhOKE376httpaCyjqJqB06XYfnecsb09t6Nx/QK58eMUgBWZZczJCH0oNsN8rcwc3AMn28uPGjaI8Xi1bsoKa85eMIj1Iol3zPthFMREQYNG0l1VSWlxUUHX9EjZ+8eho9JB2D4mHRWLvmho7LaqYYkhpFTbievoo4Gl2He9iKO7h/tlWZtdkXjA5bNeVXEhbU+304fGMOyjLIj4kFMv+gQCirrKWx23hnbO8IrzbjeESzeUwbAyqxyhiaEATAiMZzsslqyymoBqK53Yoz7zCy4zz0A1gALZXZHZxWpU2SvX0q/icchIsT2HUK9vRp7eeuoc2zfIVht0T62cOQamhhOTlkteeXu4+y7bYVMHRDjlaamWdQ5OMCCwXR2NjvN8F4RZJXaySmrpcFlmLspn2MHx3qlqW5WH9YAP5+1cdLwBL7enN/Bue3ZRKTd/3qiIyXSOBj4vTFmsYi8CvwVuAY4DtgJvNMs7VbgGGNMg4icADwEnAu8AlwO3Cgig4BgY8w6EfkMuNaz7TCgttNK1UJtRTHWyKYomDUyBnt5McERTRcOe3kxwbbYZmliqa0obpzevegLslbOIzJlAMPP/D2BIWGdk/kOVlveom5sMdS2qJva8mKCI1vUTbm7bvI2LiXYFoOtV1M3MYDqwhxcTieLn72Thjo7/Y45g5T04zq4NO0ryhpAabMbq9KaBvrFWL3ThARQWuNO4zJgd7gIC/QDIDY0kHtO7I/d4eLjDfns8DzF/NWIeOZuK6L+CLjBVYemtKiQmPjExumY2ARKigqIioltlfa5x+/DYvFj0jHHcc6lv0dESO03kOWL5nPqORezfNF87DXVVFaUER4R2YmlaH9xoUEUVtY3ThdW1jMsse1z62nD41meUdZq/nGDY3lvdW7rFXqgKKs/JTVN550Su4P+0SFeaSKtAZTUuOvNfd5xEhboR0J4IAa4aXoa4UH+LNtbxv+2FuE08H8rc5h1ykDqGlzkV9bz+qojo772qykrbnxICRASGUtNWfEvroHoS1xYIAWVTZHqwso6hia1fo5/9pgkLhzfC38/Cze+u6Ezs9ip4iOCyK9ouiXNr6hjRIsHMwDnp/fm15NS8PcT/vDG2lbLTxwWz1+P4HpS7afHRxo9sowxiz2f3wDSgT3GmB3GGOOZt58NeE9ENgL/BoZ75r8HnC4iAcAVwH898xcD/xKRPwORxpiGji1Kx0k7+hRm3vUCx940m6CIaDZ9+kpXZ6lbaKivY8d37zPkpEtaLXO5nJRn72TS7+9h8lX3sf2bd6gqzPGxlSNTeW0Dt362jfvn7uLdtXlcNSWFYH8LKZHBxIUFsiansquzqLqh6+94gMdfeof7/v0SWzes4YdvvwDg11ffyOb1q7ntD5ewZf1qomPjsVj8uji3nWvmkFgGJ4Tx9irv80h0SAD9YkJYfgR0TT1cfiIMjA3lhSVZPPTdLsYl2xiaEIqfwIyBMdz79U7+8slWsstqOX1o3ME3qH5RPlqbx0WvrOL5HzK4bHLKwVc4wr23MoeznlnKU/N2ceXUVK9lI3pFUNvgZFdhdRflrmcQaf+/nuhIiTS2jLjbDpB2FjDfGHO2iKQBCwCMMTUi8g1wFnABMN4z/x8i8gVwKrBYRE4yxmxtvkERuRq4GuDE6+5j9MkXHn6JPHYv+oLMpXMBiEoZiL2sqSugvawYq827a4Y7wlbULE0RwRHuNMHhUY3z0yafyNKXe/a7RHsWfUHmMnfdRLasm/JiglvUTbAthtqyFnVji6GmOI+aknwW/PMGAGrLi/jh3zdyzA3/xGqLJTAkAv+gYE833uFU5O4hLK53J5SwfZTaHURZAxqno0L8vSKPAKU1Dne00d6ARdzdvvYPLtHg+TeztJbCqnoSwgPpGx1CWrSVf5w+CIsIEUF+3DKjL4/N39N5BVOd4utP3uW7Lz8GoP/gYRQX7GtcVlyUT3RsfKt19s+zhoRy9HEns2vrJqbPPJ3o2Dhu/vtjANTaa1i2aB6hYV3W47/dFFbXERfe1N00LjyQwur6VunGp9j49cRkbnhvEw6n92VrxqBYFu4qxuk6MrrTldobiA5pOu9Et+jxAFBmdxAdEtjsvONHVb2TEruD7YXVjeeg9XmVpEZZqXW4ezUUVrnrdnlWGacNjQd6dhf5bd9/zq4fvwIgOnUQNaVN5akpKyIkMqatVX9RCqvqiQ8PapyOCw+iqKr1cbbfd1sLuemE/sCOTshd5yuoqCMhIrhxOiEiiMJmkdiWvt5YwB2nDMbd4c7txOHxfHUEvROsOtaREmnsIyJTPJ8vAb4F0kRk//CZFzdLawP2P+K9vMV2XgaeBFYYY0oBRKS/MWaDMeYRYAXQaqhAY8yLxph0Y0x6ezYYAfpNPY0ZN89mxs2zSRw5iayV8zHGUJKxlYDgEK/ulwDBEdH4B4VQkrEVYwxZK+eTNGISgNc7fnkblhKR6P3EqafpO/U0jr1pNsfeNJukEZPIXuWpm8wD1E1wCCWZ7rrJXjWfxBGTiEhK4+T7Xmfm3S8z8+6XCbbFMu0vTxAcEUXiiEmU7NmMy+mkob6O0r3bCYvvWU8uM0rsJIQHERsagJ9FmNjHxroWEcJ1uZUcleZ+qDA+2cbWfPdTx7Agv8YnYrGhAcSHBVJU7WDBrhJu/nQbt3++nUe+201+Vb02GI9QJ511AY++8BaPvvAWE44+lh++/RJjDNs3byAkNKxV11Sns4GK8jIAGhoaWL1sISlp7lNxRXkZLpf7xv/jOf9hxklndmpZOsq2fVUkR1pJjAjC3yIcNyiWH1uMfjogLpS/Ht+fOz/d6vM9vOMHx/LdtkN/P7S721NSQ3yL886anAqvNGtyKji6byQA6Sk2tngG4tiYV0myLZhAP8EiMDgulNzyOkprHPSKCCI8yB2dHp4YTm5Fl70x0m4GTz+dU+94mlPveJqUUZPZvXwexhiK9mwl0BqqXVM9tu6rJDnSSpLnODt+cFyrUYaTI5saUVP6RZNdeuSOnLo5t5KUaCu9IoPxtwgnDk/g++3e55CU6KZXUaYOjGFvSdM7+QLMHBbP3E36PuPB6DuNbkdKpHEbcK3nfcbNwJ+BVcAXIlIDLAT2P85+FHhNRO4Gvmi+EWPMKhGpAP7TbPaNIjIDcAGbgP91aEkOIGFoOvlbVvHtQ9fgFxDE2Iv/3Lhs/uM3MOPm2QCMOu8PrJkzG6ejnoQh44j3jA666bP/Up6zBxEIiU5g9Pl/alx/7qwraaitweVsIG/jMqZccx8RiX06t4CHId5TN9897Kmbi5rqZsE/b+DYmzx1c+4fPD+5UU/8kHHEDxl/wO2GJ6QQP2QcC/75Z0SEPpNmEpHUsxrbLgNvrc7lxulpWERYvLuU3Io6zhoRT0aJnXW5lSzcXcqVk5N56NSBVNc7G0dOHRQXylkj4nG63MMJvLEq1+vF+l+a1x6+nGPGDyQ2MoydX81i1vNf8trHS7o6W51m7MSjWbNsMTf89lcEBgXzx5vvbVx26zWX8OgLb+God/DQHdfhbGjA5XIxcuxEjj/VPWLz5nUrmfPKM4gIQ0aO5ffX39ZVRWlXTgOz5+/msbOHYRHhf5vyySix87vJKWwrqOLH3aX88ZhUrAEW7jttMOB+/+iuz9xP/BMjgogLD2RddsWBvqZHcRl4c1UuN03vi8Xi/qmf3Io6fuU576zNreSH3aVcPTmFf5w2iOp6J897fi6gxuHi621F3HPiAIxxRxrX57kfdH2ysYDbj+uH0xiKqx28vCz7QNnocXoNn0DOppV8et+V+AUEMeXXf2lc9uXD13HqHU8DsPrjV8lYuYAGRx0f3n0ZA6acxKjTLu2qbHcKp4F/z9vFP88dgcUCX2zMJ6O4ht8f1Yet+VUs3lXCOWN7kd7HRoPLUFnbwINfHZlRRgCnMTz61XaevmQ0fiJ8si6P3YU1/GF6XzbnVfDD9mIuTO/NxH7RNDhdVNY2cO+nWxrXH5caSX5FLTllPf/Bi+oc4n7lr+fydDH93Bgzoh221Qt3d9UhxpifNbrHrV9s69kV2oF6+K7W4Uqrj6xRANvTm/94vquz0K0t+aTn/XZoZ7nxQx3goS19E3t+1+CO1LfFgGGqyTfr9x080S9YTY1ez9uy6m8zelyYbdq/Frf7HewPfz26x9XDkdI99bCJyGXAMuCun9tgVEoppZRSSh05dCActx7fPdUYkwEcdpTRGPN/wP8ddoaUUkoppZRS6gjS4xuNSimllFJKKdUReurANe1Nu6cqpZRSSimlVDciIieLyDYR2Skit/tY/lcR2Swi60XkOxFJbbbMKSJrPX+ftkd+NNKolFJKKaWUUj50RaBRRPyAZ4CZQDawQkQ+NcZsbpZsDZDu+a35P+L+hYj9v/1nN8aMac88aaRRKaWUUkoppXzoot9pnAjsNMbsNsbUA28DZzVPYIyZb4zZ/+ObS4Hkdi14C9poVEoppZRSSqnuozeQ1Ww62zOvLb/H+7fkg0VkpYgsFZFftUeGtHuqUkoppZRSSvnQEd1TReRq4Opms140xrz4M7f1ayAdmN5sdqoxJkdE+gHzRGSDMWbXz8+xNhqVUkoppZRSqtN4GogHaiTmACnNppM987yIyAnAXcB0Y0xds+3neP7dLSILgLHAYTUatXuqUkoppZRSSvlgEWn3v0OwAhgoIn1FJBC4CPAaBVVExgIvAGcaYwqazY8SkSDP51jgaKD5ADo/i0YalVJKKaWUUsqHrhg91RjTICLXAV8DfsCrxphNInI/sNIY8ynwGBAGvOcZXGevMeZMYCjwgoi4cAcI/9Fi1NWfRRuNSimllFJKKdWNGGO+BL5sMe+eZp9PaGO9H4GR7Z0fbTQqpZRSSimllA+H+BMZRzx9p1EppZRSSimlVJs00qiUUkoppZRSPlg00Ahoo1EppZRSSimlfNLuqW7aPVUppZRSSimlVJs00qiUUkoppZRSPmig0U0bje2spMrR1VnotgL8NbB9IEm2oK7OQre15JOHuzoL3dqUs+7o6ix0Wx+9cW9XZ6Hb2lpS1dVZ6Nb2ltZ1dRa6rftOG9rVWejWgvz0fkcdebTRqJRSSimllFI+CBpqBH2nUSmllFJKKaXUAWikUSmllFJKKaV80J/ccNNGo1JKKaWUUkr5oD+54abdU5VSSimllFJKtUkjjUoppZRSSinlgwYa3TTSqJRSSimllFKqTRppVEoppZRSSikfLBpqBLTRqJRSSimllFI+aZvRTbunKqWUUkoppZRqk0YalVJKKaWUUsoH/ckNN400KqWUUkoppZRqk0YalVJKKaWUUsoHDTS6aaNRKaWUUkoppXzQ0VPdtHuqUkoppZRSSqk2aaRRKaWUUkoppXzQOKPbL6LRKCJfApcYY8q6Oi+HY3hiGBePTcIisHB3Kf/bWuS13N8i/H5SMqlRwVTVO3nhxyyKaxyNy6NDArj/5AF8uqmAuduKATh+YAzT+kcB7m1+u7248wrUjoYlhHLB6EREhMV7Spnbohz+FuG36b3oE2Wlut7Jy8uyKalxEBrox1WTkkmNtrI0s4x31u5rXGd8cgQnD4nFIrAhr4qPNxZ0drHajTGGNR++yL7NK/ELCGLipTcSlTKgVbqSrJ2sePPfOB31JA5LZ+w5VyMilGbvZtW7z+BqqEcsfow7/4/EpA6mIj+LFW89QWnWLkacfhlDjjunC0rXfowx/PfZx1mzfDFBQcH88Za/02/gkFbp7rvpakpLiggMDAbgrn88jS0qmsL8PJ5//H4qyksJC4/guttnEROX0NnF6BLP33spp0wbQWFJJennP9TV2elSxhg+fGU2m1cvISAomEuvu5OU/oPbTP/SQ7dRlJ/LHbNf78Rcdi5jDIvnPEfmhhX4BwZx3BU3EZc6sFW6ZR/+l21LvqWupoqrnvm4cX5lcQHzXn2c+ppqXC4nk8+9gtRREzuxBO3v7BHxDE0Io97pYs6aPHLK61qlSbYFcfHYJAL8LGzJr+Ijz3XojGFxDEsIw2kMxdUO5qzJo7bBhUXgwjFJJNuCsIiwMquc73aWdHbR2pUxhndf+jebVi0hMCiYy264mz4HOJ6efeBWivJzuOepN73mf/vxW3zwn6d57PUvCYuI7OBcdw5jDG+9+C82rFxCYFAQv7/xb6QOaH3N2u/J+2+mcF8us559C4C9u3fw+jOPUFtrJzY+katvuR9rSGhnZV/1MD2ue6qI+P3UdYwxp/b0BqMIXDq+F0/8kMHfvtrJxFQbSRFBXmmm9ouiut7JnV/u4JttxZw3OtFr+QVjEtm4r6pxupctiGn9o3jwm13c9/VORiWFEx8W2CnlaU8CXDQmiacX7+X+uTuZkGIjMdy7HEelRVLjcHLv1zuZt6OYs0fEA+BwuvhscwEfrs/3Sh8a6Mc5IxOY/UMms77ZjS3Yn8FxPfdEum/zSqoKcznl7hdJv+g6Vr33rM90q999hvSLrueUu1+kqjCXfVtWAbD+0/8w/OSLOfHWpxhxyqWs//Q/AASGhDP2nGsY3MMbi/utXb6YfTlZzP7vR1x141288uTDbaa9/vYHePSFt3j0hbewRUUD8PoLTzBt5mk89uLbnPvrq5jzytOdlfUu9/pnSznr2me6OhvdwubVSynMy+LuZ97moj/cwnsvPt5m2nVLvyfQau3E3HWNvRtWUFaQyyUPvcr0y27ghzd8Hxupoydx7l2zW81f9cUc+qdP4/x7n2HmNXew8M2efWwNjQ8lNjSQh77bzXvr9nHeqESf6c4blci76/bx0He7iQ0NZEi8+zq0rbCaxxbs4fEFGRRW1XPCwBgAxvSKwN8iPLYgg3/9kMGUtCiirAGdVq6OsGnVEgrysrnv+Xe55NrbmPPcY22mXbNkAUE+jqeSwnw2r1lO9BH2EG/DyiXk52bx8Ivv8dvr7uD/nn20zbSrfpxPkDXEa95/n3qI8y7/E7OeeZNxU47lfx+80dFZ7pFEpN3/eqJu1WgUkTQR2Soib4rIFhF5X0RCRCRDRB4RkdXA+SJyoogsEZHVIvKeiISJyMki8l6zbR0rIp97PmeISKzn819FZKPn78Zm37ux2bo3i8jfPZ//LCKbRWS9iLzdidXhpW+0lYLKOoqqHThdhuV7yxnTO9wrzZhe4fyYUQrAquxyhiQ0NXLG9A6nqLqe3GZPMpPCg9hdbKfeaXAZ2F5YzbjkiM4pUDtKi7ZSWF3vrhsDK7PLGd3Lu25G9wpnaWY5AKtzKhovvPVOw65iOw6Xyyt9bGgABVX1VNU7AdhSUM3YFvXdk+RsXEbahOMQEWLShuCwV2Mv9376bC8vwVFrJyZtCCJC2oTjyNmw1L1QwFFbA7j/tUa4b1CCwyOJTh2E+P3kZznd0ool3zPthFMREQYNG0l1VSWlxUUHX9EjZ+8eho9JB2D4mHRWLvmho7La7SxevYuS8pquzka3sHH5QiYce7L7OBo8Ant1FeUlrfejOnsN8z99m5PO+20X5LJzZaxdwuApxyMiJPYfSl1NFdVlrXu2JPYfSmhkTKv5QtM5qN5eTYiPND3JiMQwVma7r0mZpbVYAyyEB3mfR8OD/Ajyt5BZWgu4r20jE8MA2F5Yg8vgWd+OzeruOGYwBPpZsAgEWIQGl6GuwdlJpeoY65YvZPIM9/HUb/AIato4nmrtNXz3yducev7lrZa9/8pszrn82iNuGMw1y37gqOPc16z+Q9x1U9ZG3Xz98RxOv/B3XvPzc/YyaMRYAIaPnciqH+d3Sr5Vz9StGo0eg4FnjTFDgQrgT575xcaYccC3wN3ACZ7plcBfPfMnicj+ltKFgFcjT0TGA78DJgGTgatEZOxB8nM7MNYYMwr4w+EW7ueKsgZQam/qalpa09Dq6WFUSAClnu6oLgN2h4uwQPdF55QhcXy2qdArfW55HQPjQggN9CPQTxiZFE5USM97Ihlp9W8sN0CpvYHIFnUTGezfWH/76yY0sO2GTmFVPQlhgUSHBGARd4O8J9bNfvayYqyRsY3TVlsM9nLvGzZ7eTHWZjdi1sgY7J6burFnX836T/7DZ/dezrpPXmHkGUfmTW5pUSEx8U1P/GNiEygp8t0t+bnH7+PWay7hgzdexhj33Vtqv4EsX+S+6C5fNB97TTWVFWUdnm/VvZSVFBEZG984bYuJ93mT+8Wcl5lx5kUEBAV3Zva6RHVZMWHRcY3TYVFxPhuNbUk/89dsXzqP/7vl13wx+x6OufhPB1+pG4sIDqDM3tA4XWZvwBbsfY2xBQdQXuudJiK49XVoYp9IthZUA7Aut5J6p4u/nziAv80cwIJdxdQ4XK3W6UnKiguJim2KEEbFxlFWXNgq3WdvvsQJZ11MYIvjad2yH4iMiSO5b+vu0D1daXEh0c3ONdEx8ZT6qJuP3niRk351CUFB3j3UevXpx5ql7oebKxZ91+b17pfOIu3/1xN1x0ZjljFmsefzG8BUz+d3PP9OBoYBi0VkLfBbINUY0wB8BZwhIv7AacAnLbY9FfjIGFNtjKkCPgSOOUh+1gNvisivgYaDpO2Wzhwezzfbi6hr8L5w5FXW8dWWIv46PY0bp6WRVWbH5bn5/aWrcbiYszaPKyclc9P0NIqrHb/outm5+EvGnH0lZ9z3X8acfRUr5rTuPvZLcv0dD/D4S+9w379fYuuGNfzw7RcA/PrqG9m8fjW3/eEStqxfTXRsPBbLkRGFVe0re88OivflMHry9K7OSo+wc/kCBh81k8see4PTbrif7155DOPq2Y2h9nDCwBhcxrAquwKAPlFWXMbw97k7efDbXRzbP5roHvzA81Bl7d5O4b4cxkzxPp7q62r56r3/44xLruqinHW9vbu3U5iXzfijjm217Iob7mL+lx9w3w2/pdZeg7//L2Kok59Mu6e6dce9o+Wd+f7pas+/AnxjjLnYx7pvA9cBJcBKY0zlIX5nA94N6OaPqU4DpgFnAHeJyEhPA7WRiFwNXA1w9JX3MOSE8w/xaw9dqd3hFVmMCvH3ijwClNY43NFGewMWAWuAhap6J31jrIxPieC80YmEBPhhjMHhNMzfWcKiPaUs2uPu0nr2yIRW2+wJyuwNXlHAKKs/ZS3KUVbrjsyWNaub6voDd9nZkFfFhjz3O6BT+0b2uEbjjoWfs2fJ1wBE9RmIvawp0mEvL8Zq8+7eZbU1RRZhf3TSnSZz+XeMPedqAJLHTGXFnCc7Ovud5utP3uW7Lz8GoP/gYRQXNA2GVFyU7/UUd7/986whoRx93Mns2rqJ6TNPJzo2jpv/7n7fptZew7JF8wgN67ndmtWhW/i/D1jyzWcA9BkwlLJmT+zLiwuwRcd6pc/YtpG9u7Zy3zXn4XQ6qaoo5am/Xcf1s3r2u3rNbZz3KZsXfgVAfNogqkqaIiBVpYU+u6G2Zcuirzn9xgcBSOw/jAZHPfaqCkJ60IAmR6dFMjk1EoCssloirU23YJFWf8prva9b5bUObMHeaSqapZmQYmNYQhjPLdnbOG9c7wi2FlTjMlBV72RPiZ2UyGBKanrWtX3BFx+w+JtPAUgdMITSoqZxB0qLComMifNKv3vbRvbu3MpdV52Dy+mksryUf911LRde9VeKCnJ54MbLACgrKuShv/yO2x5/GVtUz+zi/N3n7/PD1+6YSN+BQ72igyXFBUS1qJtdWzewZ+dWbrniV7icTirKS3nk9j9y2z+eIykljZtmua/n+3L2sn7Fj51XENXjdMdGYx8RmWKMWQJcAiwCmnchXQo8IyIDjDE7Pd1RextjtgPfA68CV9Gia6rHQuC/IvIP3I3Ps4HfAPlAvIjEAFXA6cBXImIBUowx80VkEXAREAaUNd+oMeZF4EWAK9/Z2CEti4wSOwnhQcSGuhuFE/vYeGlJtleadbmVHJUWxe5iO+OTbWzNd7ezH523pzHNmcPjqW1wMt8zmlp4kB+VdU6iQwIYlxzBQ9/u6ojsd6jMUjvxYYHEhARQZneQnmzj1eU5XmnW51YyOdXGnhI743pHsK2wuo2tNdlfNyEBFqb1i+blZdkHXac7GXjM6Qw85nQAcjetYOfCz0kZN42SzG0EBIdgtUV7pbfaogkItlKcsZXo1MFkrJjXuH6wLZrCnRuIHziKgu3rCI/r1enl6SgnnXUBJ511AQCrly3i60/e5agZJ7Fjy0ZCQsOIivG+2Xc6G6iuqiLCFklDQwOrly1k5Fj3KI4V5WWEhUdgsVj4eM5/mHHSmZ1eHtU1jjnlXI455VwANq38kYX/+4BxU08gc/smgkPCWjUap558NlNPPhuA4oI8Xnzw1iOqwQgw4rgzGXGc+xjIXL+MDfM+Y8DEY8nfvZUga+hPajSGRceTvWUNQ44+kdLcvTgd9VjDbR2V9Q6xOKOMxRllgHsgnKl9o1iTU0lqVDC1DheVdd4PMivrnNQ1uEiNCiaztJb0ZFvjQ94hcaHMGBDNM4v34nA23XaU2R0MjA1hVXYFgX5CapSVH3aXdloZ28uxp53Lsae5j6cNKxez4IsPSD9mJnu2b8IaGtrqeJp+yjlMP8U9IFtxfh7PPHAzf33QPTDXY//3ZWO6u646hzv++WqPHj31+NPP4/jTzwNg3YrFfPf5e0yaNpPd2zYREhJGZIu6mXHqucw41V2XRfm5zL7vZm77x3MAVJSVEBEZjcvl4rO3/8Oxp5zduYXpIXpoYLDddcdG4zbgWhF5FdgMPAdcv3+hMaZQRC4H5ojI/s7ZdwPbjTFOz+A3l+PuturFGLNaRP4LLPfMetkYswZARO73zM8BtnqW+wFviIgNdyPzya4ahdVl4K3Vudw4PQ2LCIt3l5JbUcdZI+LJKLGzLreShbtLuXJyMg+dOpDqeicvLMk66Hb/eHQfwgL9cBrDm6tysffAdx9cBt5eu4/rp/bBIsKPGWXkVdZx+rA49pbaWZ9XxeKMMi6f0Jv7ThpATb2TV5Y3NQAfOHkAwQF++FmE0UnhPLkok32V9Zw/OpFkmzvo/OWWQgqq6ruqiIctaVg6eZtX8uWsq/APDGLCJTc2Lpv76PWceOtTAIw7/08s9/zkRtKw8SQOcw/qkn7h9az98EVcLid+AYGMv8h9SNorSvn28Rtx1NYgFgs7FnzCyXc+R0BwSKs89ARjJx7NmmWLueG3vyIwKJg/3nxv47Jbr7mER194C0e9g4fuuA5nQwMul4uRYydy/KnuC+3mdSuZ88oziAhDRo7l99ff1lVF6XSvPXw5x4wfSGxkGDu/msWs57/ktY+XdHW2usSw8VPYvHoJs/50IYFBwVxy3Z2Nyx796+Xc+q//dl3mukifkRPJ3LCCt+68Av/AIGb87q+Ny969709ccK97ROcl773MjuULaKiv4/9u+TVDp57EhLN+w1EXXMX3r81m/TcfgQjHXXFTj+3iBe7B1YYmhHHn8f1wOF3MWdPUw+Gm6Wn88/sMAN5fn+/5yQ1ha0E1WzzvLp4zKgE/i/CHKSmA++Hp++vzWbSnlIvGJnHrsX1BYMXecvIqWv+UR08yYvxRbFy5hHv+cL77Jzeuv6tx2YM3/pa7nnitC3PXtUalH8X6lT9y+1XnERgUzBU33t247N7rf8N9Tx34Z3yWff8N8754H4BxRx3L1Jmnd2h+Vc8mpht1uRORNOBzY8yIrs7Lz9VRkcYjQYB/d3yFtvuIDT3y3zv5uc4d5ns4euU25aw7ujoL3dZHb9x78ES/UFtLqg6e6Bdsb2nPbmx1pNMHxR080S9YkJ/e77Tl6IFRPe5pz2VvrW/3e/v/u2RUj6uH7hhpVEoppZRSSqku11NHO21v3arRaIzJAHpslFEppZRSSimljjTdqtGolFJKKaWUUt1FT35/uj1pp2ullFJKKaWUUm3SSKNSSimllFJK+aBxRjdtNCqllFJKKaWUDxbtngpo91SllFJKKaWUUgegkUallFJKKaWU8kEDjW4aaVRKKaWUUkop1SaNNCqllFJKKaWUD/qTG24aaVRKKaWUUkop1SaNNCqllFJKKaWUDxpodNNGo1JKKaWUUkr5oD+54abdU5VSSimllFJKtUkbjUoppZRSSinlg0j7/x3a98rJIrJNRHaKyO0+lgeJyDue5ctEJK3Zsjs887eJyEntUQ/aaFRKKaWUUkqpbkJE/IBngFOAYcDFIjKsRbLfA6XGmAHAv4FHPOsOAy4ChgMnA896tndYtNGolFJKKaWUUj6ISLv/HYKJwE5jzG5jTD3wNnBWizRnAa95Pr8PHC/ujZ8FvG2MqTPG7AF2erZ3WHQgnHYWHRbQ1VnotuobTFdnoVvblFPR1VnothZuLezqLHRrH71xb1dnods6+9f3dXUWuq8+I7s6B93aKWemd3UWuq3T7n+hq7PQvVnDuzoH3ZZ94f1dnYWfrCMibCJyNXB1s1kvGmNebDbdG8hqNp0NTGqxmcY0xpgGESkHYjzzl7ZYt/fh5lkbjUoppZRSSinVSTwNxBcPmrAb0UajUkoppZRSSvlwiN1J21sOkNJsOtkzz1eabBHxB2xA8SGu+5PpO41KKaWUUkop1X2sAAaKSF8RCcQ9sM2nLdJ8CvzW8/k8YJ4xxnjmX+QZXbUvMBBYfrgZ0kijUkoppZRSSvlg6YJAo+cdxeuArwE/4FVjzCYRuR9YaYz5FHgFeF1EdgIluBuWeNK9C2wGGoBrjTHOw82TNhqVUkoppZRSyoeuaDQCGGO+BL5sMe+eZp9rgfPbWPdB4MH2zI92T1VKKaWUUkop1SaNNCqllFJKKaWUD100EE63o5FGpZRSSimllFJt0kijUkoppZRSSvnQVe80djcaaVRKKaWUUkop1SaNNCqllFJKKaWUD/pKo5s2GpVSSimllFLKB4u2GgHtnqqUUkoppZRS6gA00qiUUkoppZRSPmiEzU3rQSmllFJKKaVUmzTSqJRSSimllFI+6CuNbtpo9BCRSOASY8yzXZ2XQ2GMYcNHL1GwZSV+gUGMvfhGIpP7t0pXlrWT1XNm43LUET80nZFnX4WIsPWrt8hcOpfAMBsAw079DQnD0ju7GO3qnJHxDI0Pw+F08daaPLLL61qlSbYFccm4JAIsFrYUVPHhhgIAzhwWx/DEMJwuQ1GNgzmr87A3uOgTGcyFYxIb1/9qWxEb8qo6rUwdYWzvCK6YnILFAt9uK+Kj9fley4clhnHFpBRSo638a/5ulmSUNS6LDQ3gT8ekERsagDHwwNydFFbVd3IJOs7E1Eium94XPwt8sbGAt1bmeC0/f2wSp41IwOkylNkdPPrNLvIr6xiTHMF10/s2pusTZeX+/21n0a6Szi5CpzHG8OErs9m8egkBQcFcet2dpPQf3Gb6lx66jaL8XO6Y/Xon5rL7eP7eSzll2ggKSypJP/+hrs5Op5s5NoXHrzoKP4vw32+28vgHa72WP/r7KUwb0QuAkCB/4mxWki79L9NG9uLRK6Y0phucHMllj3/HZ8syOjH3HUvPyW2bOWUIj998tnu/+XgZj7/2ndfyPolRPH/PRcRGhVFaUcMVf3uDnIJypo0fwKN//VVjusFp8Vx25//x2fcbO7kEnWfmxAE8fsOp7rr6fDWPv7nQa3mfBBvP33E2sZEhlFbYuWLWB+QUVnRRbnsWHQjH7YhsNIqInzHG6WO+vzGmoY3VIoE/AT2i0ViwZRXVRbkcf+cLlGZuY937zzH9xsdbpVv3/nOMueBaolIHs/Sl+yjYupqEoeMB6D/9LAbMOLuzs94hhsaHEhcayIPf7SY1KpjzRyfy7x8yW6U7f3Qi76zdR2ZpLddMTmZofChbCqrZVljN51sKcRk4Y1gcJwyK4bPNheRV1vHP7zNwGYgI8uOWGX3ZtG8nLtMFhWwHFoGrjurDfV9tp7jawaNnDmHF3nKyy2ob0xRW1fPUDxmcNTKh1fp/nt6XD9bmsS63kmB/Cy7TQyvCB4vADTP6cfOHmyisquf5i0exeHcJmSX2xjQ7Cqu5Zs566hpcnDkqgWuOSeX+L7ezNruCK99cB0B4kD9v/m4sKzLLuqgknWPz6qUU5mVx9zNvk7l9E++9+Dh/feQln2nXLf2eQKu1k3PYvbz+2VKef+d7Xp51WVdnpdNZLMIT1xzNafd+QU5xNYseP4fPl2ewNausMc2tryxp/PzH04Yzul8sAD9syGXyXz4AICosiI3PX8S3a7I7Nf8dSc/JbbNYhCduO5fTrn2enPwyFv3fX/j8h41s3dPUqH74xjN584uVvPnFCqanD+D+607n9/e8yQ+rdjL5Uvc9UVRECBs/upNvl27rqqJ0OItFeOKvp3PaX14jp7CCRS9dw+eLt7I1o7AxzcPXnsSbX63lza/WMn1cX+6/5gR+/8CHXZhr1dP87HcaReTXIrJcRNaKyAsi4iciVSLymIhsEpFvRWSiiCwQkd0icqZnvctF5BPP/B0icq+PbZ8sIu81mz5WRD73fH5ORFZ6vuO+ZmkyROQREVkNnN9s/uUi8qmIzAO+E5EwEflORFaLyAYROcuT9B9Af095HvOse4uIrBCR9c2/qzvI27iMlPQZiAjRaUNw2KuprfCOatRWlNBQV0N02hBEhJT0GeRtWNpFOe5YI5PCWJFVDkBmaS3WAAsRQX5eaSKC/Aj2t5BZ6r4Yr8gqZ2RSGADbCmsaG4IZpXZswe7nKQ6naZzv72eBHn49HhAXSl5FLfmV9TS4DIt2lzKxT6RXmsKqejJL7a1uPpIjg/ETYV1uJQC1DS7qnT28QpoZkhhGTrmdvIo6GlyGeduLOLp/tFeatdkV1DW4ANicV0VcWGCr7UwfGMOyjLLGdEeqjcsXMuHYkxER0gaPwF5dRXlJUat0dfYa5n/6Nied99suyGX3sXj1LkrKa7o6G11iwsB4du2rICO/EkeDi/cW7uT0iWltpr9g2gDe/WFnq/lnH9WPuauzsNe39ey359FzctsmDO/DrqwiMnKKcTQ4eW/uGk6fPsIrzZC+iXy/cgcA36/cyenTRrTaztnHj2buj1ux1zk6Jd9dYcLQZHbllJCRV+quq+82cPrUIV5phqTF8/3q3QB8v3pPq+WqbSLt/9cT/axGo4gMBS4EjjbGjAGcwKVAKDDPGDMcqAQeAGYCZwP3N9vEROBcYBRwvoi07Bf5LTBJREI90xcCb3s+32WMSfesO11ERjVbr9gYM84Y8zbexgHnGWOmA7XA2caYccAM4J8iIsDtwC5jzBhjzC0iciIw0JPXMcB4EZn2kyqqA9VWFGONjGuctkbGYC8v9kpjLy8m2BbbLE0stRVNaXYv+oL5j13PmrdnU1/Ts7tc2oIDKLU33UiU2RuwWQO801gDKKttkSbYOw3ApD6RbCmobpxOjQrmthl9uW1GX95dv6/HRhkBYkICKK5uunAW19QTHdq6DnzpZQuiur6BW4/vx+O/GsplE3pj6aEnPl/iQoMorGzq1lVYWU9caOtG4X6nDY9nebNuYvsdNziWedtaN56ONGUlRUTGxjdO22LifTYav5jzMjPOvIiAoODOzJ7qRnrFhJBd1HSNySmupndMqM+0feLCSI0PZ8GG3FbLzj+mv8/GZE+m5+S29YqPJDu/rHE6p6Cc3vE2rzQbduRw1gz3beBZM0YSERZMtC3EK835J47l3a9Xd3h+u1KvuHCyC8obp3MKK+gdG+GVZsPOfZw1bRgAZ00bSkRoMNERv+weIOqn+bmRxuOB8cAKEVnrme4H1ANfedJsAL43xjg8n9Oarf+NMabYGGMHPgSmNt+4pwvpV8AZIuIPnAZ84ll8gSeauAYYDgxrtuo7beT3G2PM/jCcAA+JyHrcjdPeQOs+H3Ci528NsBoYgrsReURIO/oUZt71AsfeNJugiGg2ffpKV2epW5g5KAaXMazKburnn1layyPz9/Cv7zM4YWAM/kfSVfkn8BNhaGI4ry3P5tZPtpAQHsSMgTFdna0uMXNILIMTwnh7lfc7j9EhAfSLCWH5Ed419VBl79lB8b4cRk+e3tVZUT3E+cf05+Mf9+Bq8XQuMSqE4anRfHMEdU09XHpOhjue+JRjxvVnyZs3ccy4AeTkl+F0NvXySIyJYPiAJL5ZsrULc9k93PHM1xwzJo0lr/yRY8akkVNQjrMnPwXvRBZp/7+e6Oe+0yjAa8aYO7xmitxsTGP/CRdQB2CMcXkaf/u13Et97bVvA9cBJcBKY0yliPQFbgYmGGNKReS/QPPH19WtN9Nq/qVAHDDeGOMQkYwW22hexoeNMS+0sc2mhCJXA1cDnHjdfYw++cKDrfKz7F70BZlL5wIQlTIQe1lTX3V7WTFWm/fFwmqLoba8qFmaIoIj3GmCw6Ma56dNPpGlL8/qkDx3pKl9I5mSGgnA3tJaoqz+7PEsi7T6U2737opSbncQGdy0G0Za/SmvbUozMcXG8IQwnvlxr8/vy6+qp67BRVJEEFnN3jfpSYprHMQ0e4odExJISfWhddkprnaQUVxDvicat3xvGYPiQvmO4oOs2TMUVtcRF94UWYwLD6SwuvWAEuNTbPx6YjI3vLcJR4uuYDMGxbJwV/EReyFe+L8PWPLNZwD0GTCUsqKCxmXlxQXYomO90mds28jeXVu575rzcDqdVFWU8tTfruP6WU93ar5V18otriE5NqxxundMKDnFvi/X5x0zgL+8sKjV/HOP7senSzNocB5Z3b71nNy23IIykhMiG6d7x9vIaRZNA8grquCiW/8DQKg1kF8dN4ryqqbr87kzx/Dp/A1H3H7TUm5hJcnNorC94yLIKfIe5CavuJKL7nZ3xAu1BvKr6cO86kq1TQfCcfu5kcbvgPNEJB5ARKJFJPUnrD/Ts44V+BWw2Eea73F3K72Kpq6pEbgbgOUikgCc8jPybgMKPA3GGcD+fFcC4c3SfQ1cISJhACLSe395WzLGvGiMSTfGpHdUgxGg39TTmHHzbGbcPJvEkZPIWjkfYwwlGVsJCA4hOML7/avgiGj8g0IoydiKMYas/2/vruPrqNIGjv+eG3e3NlJ3F9pCWygUW9xZYKH4LuyLw8LisMCyOCxu7QKLL1q8UHejQt3SpG3cPbnn/WOmyb3JTVpo7Ibn28/99N6ZMzNnTsbOPOfMLP+JpCHjANz6P+5du5jwxF/z5+sc5u8o5LHZO3ls9k7W7ithbIp1wEyLCqSixklxlfuzkIqr6qisdZIWZd0jGJsSUf8k1AHxIRzdN5pXl2S4VQSig/3q7whFBfmSEOZPfrn39ovYmlNGUngg8aH++DqEib2iWJZeeHDT5pYR4u9DuF3xHpoU5rWVZ0827SslOTKIxPAAfB3C0f1iWdjo6ad94kK46Zje/P3zjRRWNN0Ojukfy6wu3DR10olncduT07ntyekMPWwSy2Z/gzGGnZvWERgc2qTSOPGEM3jw9c+49+WPuP7hF4hLStEK4+/Q8i3Z9EmKIC0+DD9fB+dM6sPMpU0fVNaveyRRIQEs3pjVZNy5k/vwwbyu1TQV9JjckuW/7KZPShxp3aLx8/XhnONGMnPuerc0MREhiH1Bf+ulU5nx+RK38ece3/WbpgIs35hJn+Ro0pIirbI6Zigz57tHV2MighvK6qJJzPhqVUdkVXmx3xRpNMb8IiJ3Ad+JiAOoAa79FbNYCnwMJANvG2OWA4jIV8AVxpg9xpg6++E304BL7OX+LCKrgI3AbjxXNrEfujPGGHOPh9HvAF+IyFpguT0vjDF5IrJARNYBX9v9GgcCi+ydrBS4CMj2MM92lzBwDFkbVvDDw1fj4xfAyD9eVz/up8evZ8otzwAw7Ow/s+rdZ6irqSZhwCji7Senrv9iOkWZOxCB4OgEhp9zTYesR2v5JauMgQmh3DW1F9V1Tt5dta9+3K1H9eCx2TsB+GhNFheMTMLPR9iQVVbfd/GsoQn4+gjXHJ4CwM78Cj5ck0Wv6CCO6ZuM01gPxPno5yzKqps8mNdrOA28tiide07oi0OEWZtz2V1YyfmjktiWW86y9CL6xAbzt6m9CfH3YWxqJOeN6sYN//sFp4EZSzO478S+CMK23DJ+6EIVpDoDz/y0ncfOGIRDhK/XZ7Ezv4JLx6ewKbuUhdsL+MukNIL8HNx/kvVqiaziKu78wjoxJ4YHEBfmz88Zv49HmA8aPYFfVi7iwWvOwz8gkAv++vf6cf+6aRq3PTm94zLXCc14ZBqTRvclNjKUrd88yIMvfcWMTxcdeMIuoM5puPGV+Xxxn/U6gBmzNrFhdwF3XzCGlVtz6iuQ50zqzYfzm1YMU+NDSY4NZd66pv0cvZ0ek5tXV+fkxsc+5ovnrsbHx8GMz5ewYfs+7r76BFZu2M3MueuZPKYPD1x7EsYY5q/azg2PflQ/fWpSFMkJkcxbua0D16J91NU5ufGpmXzxxMX4OBzMmLmSDTtzuPvyo1m5MZOZCzYxeWQPHrjqWAyG+T/v4oYnv+zobHsNDTRaxLTz45lFZBpWhe6v7brgdnLbzE1ds11aK6iu1aJpSXpuc62rVX5J03duqga3H9tlulu3ujMu6lQPvu5cUod2dA46tRNP9e53F7elr198u6Oz0LkFhR04ze9UxbwHvK4K9uAPW1v9AvbuqX28rhy65HsalVJKKaWUUupQeeuDa1pbu1cajTHTgentvVyllFJKKaWUUr+eRhqVUkoppZRSygNBQ42glUallFJKKaWU8kibp1p+6ys3lFJKKaWUUkr9DmikUSmllFJKKaU80EijRSONSimllFJKKaWapZFGpZRSSimllPJAREONoJVGpZRSSimllPJIm6datHmqUkoppZRSSqlmaaRRKaWUUkoppTzQ1qkWjTQqpZRSSimllGqWRhqVUkoppZRSygOHhhoBrTQqpZRSSimllEf6IByLNk9VSimllFJKKdUsjTQqpZRSSimllAfaOtWikUallFJKKaWUUs3SSKNSSimllFJKeeBAQ42glcZWV+fs6Bx0XtVaOC3y89XAf3N6JoZ1dBY6tY35pR2dhc4rdWhH56DzSl/b0Tno1OIiJnZ0FjqtwAFjOjoLnVp0QnRHZ0GpVqeVRqWUUkoppZTyQPs0WrTSqJRSSimllFIe6Cs3LNoeTimllFJKKaVUszTSqJRSSimllFIeOLR9KqCRRqWUUkoppZRSLdBIo1JKKaWUUkp5oIFGi0YalVJKKaWUUsoDh0irfw6ViESLyPcissX+P8pDmhEiskhE1ovIGhE5z2XcdBHZISKr7c+IA5bDIedaKaWUUkoppVR7uR2YZYzpC8yyfzdWDlxsjBkMnAA8LSKRLuNvNcaMsD+rD7RArTQqpZRSSimllAcirf9pBacBM+zvM4DTGycwxmw2xmyxv+8BsoG437pArTQqpZRSSimllPdIMMbstb/vAxJaSiwihwH+wDaXwQ/ZzVafEpGAAy1QH4SjlFJKKaWUUh60RYRNRK4CrnIZ9Iox5pVGaX4AEj1MfqfrD2OMERHTwrKSgLeAS4wxTnvwHViVTX/gFeBvwAMt5VkrjUoppZRSSinlgbTB41PtCuIrB0gztYU8ZYlIkjFmr10pzG4mXTgwE7jTGLPYZd77o5RVIvImcMuB8qzNU5VSSimllFLKe3wOXGJ/vwT4rHECEfEHPgH+Y4z5qNG4JPt/weoPue5AC9RKo1JKKaWUUkp5IG3waQX/BI4VkS3AVPs3IjJGRF6z05wLTAameXi1xjsishZYC8QC/zjQArV5qlJKKaWUUkp5CWNMHnCMh+HLgSvs728Dbzcz/dG/dplaaVRKKaWUUkopDxxt0KfRG3ldpVFExmC9qPK6Q5zPn4FyY8x/Gg3vAXxpjBlyKPNvK6cPjmdgQgjVdYb3Vu8ls6iqSZrkiADOH5GEn4+wIauMT9dbfWNP6B/D4MQwjDGUVtfx3qq9FFfVAdA7JojTBsfj4xDKqut4YeHudl2vQzUoIYRzhiUiIizcWcB3m/Pcxvs6hEvGdCMlMoiy6jpeX5pBfnkNIf4+XDkumdSoIBbvKuSDn/fVT3PtEalEBPjicMC23HLeW72PZh9N5UWGdwtj2mHJOET4cUsen63Lchs/MCGES8ZaZfLM3J0s2VUIQGyIH7dM6YUI+DiEbzbk8EOjcvZGQxJDuWBUNxwCc7cX8NWGHLfxvg7hyvHJpEUFUVpdx4sL08krqwEgOSKQS8Z2J8jPgTFw/3dbqXUaxqVGcPKgeAyGwopaXlm0m9Lquo5YvVZljGHBuy+ya+0yfP0DOPqym4lL69sk3ZL/TWfToh+oKi/lyuc/rR9ekpfNj288TnV5GU5nHePPuoy0YYe14xq0nWNHpvD4lYfj4xCmf7+Rxz9e7Tb+X5dPYPKQbgAEB/gSFxFE0oXTmTy0G/+6bEJ9uv7JkVz8+Cy+WLKzHXPfsV6690JOnDyEnPwSxpzzcEdnp10MTgjl3BGJOATm7yjk2025buN9HcKlY7uTGhVIWXUdry7OIK+8hoHxIZwxNAFfh1DrNHy8JotNOWUE+Dq49age9dNHBfmxJL3I7ZzmjY4ZlsQjfxqDj0N4a/ZWnv7ilyZpTh+Xyt/OHIYxhvXphVz5wgImDkzg4YtG1afpmxTB5c/P56sVGe2Z/TY3uX8sd58+EB+H8P6SDF7+cbvHdMcPTeCFaaM4/akFrM0oxs9H+MfZQxiaEoHTGB78dANLtuW3c+6Vt/GqSqOI+Nph1+WHOi9jzEutkKV2NSA+hNhQPx75cQepkYGcNTSBZ+enN0l31tAEPvh5H+mFlVwxrjsD4kPYmF3GT9sK+GaTdZE/sWckx/aL5eO1WQT6OjhzaAKvLsmgsKKWUH+f9l61QyLAecOTeHb+LgoravjblF6s2VvCvpLq+jSH94ikvLqO+77byujkcM4YEs/rSzOpqXPyxS/ZdAsPJCnc/RU1ry/JoLLWejLxleOSGZUczoqM4vZctVYnApeNT+Gh77aSV17DIyf1Z/nuIjKLKuvT5JbW8MKCXZwy2P2VPwUVtdz11WZqnYYAXwePnzaAFbuLKKiobe/VaDUi8Kcx3Xj8px3kV9Ryz7G9WZ1ZzJ7ihpsxk3pFUVZdx+0zN3NYagTnDk/kxYW7cQhcNSGZVxdnsLuwkhB/H+qMwSFwwahu3PnVZkqr6zhneCLH9Ivhs3UeH2zmVdLXLqMwew8XPPwGWds3Mvftf3PWnc80SZc2fBxDjj6F/955udvwFTPfpfeYyQyZcjL5e3bx1TN3kzbsP02m9zYOh/D01Udw0r0zycwrY/7jZ/Ll0p1s3F1Yn+a21xfVf//LSYMZ3isWgLlr9zD+xo8BiAoNYN1L5/PDqq51YXsgb32xmJfen8NrD17c0VlpFwL8cWQST8/bSUF5LXcc04s1e0rYW9Jw3DmiRyRl1XXc/c1WxiSH15+jS6vreH5BOkWVtXQLD+C6SWncPnMzVbVO/vFDQ4Xh78f0YlWmd5+vHCI8dslYzvjnj+zJL+fHB07g6xUZbNrTsF69EsK48ZTBnHD/dxSVVxNrn8fnb8hi8p1fAxAZ4s/KJ07lp7V7PS7HWzkE7jtzMJe8vJR9RZV8csPhzFqfzdasUrd0IQE+TJvUg1X2DWCA88anAPCHx+cTE+rPG1eM4fRnFmK6wp3xNqBxRstBPQhHRC62X/74s4i8JSI9RORHe9gsEUm1000XkWdFZKGIbBeRs+3hSSIy1+6AuU5EJnlYxmwRecYlzWH28PvsZS4A3hKRo0TkS3tcqIi8KSJr7bycZQ8/TkQWichKEflQREI9LO8+EbnF/j7aXrefgWtd0twoIm/Y34fa+Qr+dUXceoYkhrJit3WwTC+sJMjPh7AA9wpeWIAPgX4O0gutSsCK3cUMSbRWv6rWWZ/O36fhTz+qezhr95ZSaF/8e1tEpEd0EDll1eSV11BnYEVGEcOTwtzSDEsKY3F6EQCrMovpHxcCQHWdYVteBTV1zibz3V9hdIh117crhBn7xAaTVVxFdmk1dU7Dwh0FjE2JcEuTU1ZNekElzkZnjzqnodZpDfPzERxd4DDaKzqY7JJqcspqqHMalqYXMbJ7uFuaUd3DWbCjEIDlu4sYmGDtT0MSw8gorGS3va+VVddhTEMn9wBfax8L8nNQWFHTXqvUpnauXkT/CccgIiT2HkhVeSllhU2jzYm9BxISGdNkuAA1leUAVFeUEewhjTca2zeebfuK2ZlVQk2tkw/nbeXkw3o0m/7cyX34YO7WJsPPOLwX363cTUW1996I+S0WrNxGflF5R2ej3fSMDiK7tJrcshrqjGH57iKGd3M/Zw3vFs5i+yJ/ZWYxA+Ktc9buwkqKKq3tY09xFf4+Yp2fXMSH+hMW4MuWXO8u09G9Y9ieVcKunFJq6pz8b/Eu/jA6xS3NJVP68NoPmykqt24S5xY3bX112mGp/PDzHiq87NrmQIanRrIrr4zd+RXU1Bm+XLWXqYPjm6S78YR+vPzTdqpqGta/T0Ioi7Zax+680mqKK2sYmhzRZFplEWn9jzc6YKVRRAYDdwFHG2OGA9cDzwEzjDHDgHeAZ10mSQImAidjP8kHuAD41hgzAhgOrG5mccF2mmuAN1yGDwKmGmP+2Cj93UCRMWaonZcfRSTWzu9UY8worKjkTQdYzTeB/7PXz9UzQB8ROcNOc7UxpsOOwhGBvhRWNlxMFFXUEBHo2zSNS+SnsLLWLc2JA2K5e2ovRnUP5xu7OUxcqB/Bfg7+MiGFGyalMTrZ/aK5s4sM9KXA5aK8oKKWiCC/ZtM4DVTUOAk5iIjqX49I5V8n9aey1slKL79rCxAd7E9eWUMENq+8mqgQvxamcBcT7Me/ThnAC2cP4bN1WV4dZQSICvIlv7xh28mvqCGq8bYT5Ee+fUFibTt1hPr7kBDmjwFuPrIH9x3XhxMHWJGjOgP/WZ7Jgyf25anTBtAtPJC52wvabZ3aUllhHqHRcfW/Q6PiPFYamzPm1IvYvPhH/nPrRcx85h4m/fGatshmu+sWE0xGbsPd/cy8MrrHhHhMmxoXSlp8GLPX7mky7pxJvT1WJlXXEhnk1+icVUNkkG+jNL7kH+CcNap7OOkFlfU38/YbmxLB8oyiNsp9+0mKCiIzv+GSa09+OUlRQW5peieG0ScxnG/uOY7v7jueY4YlNZnPmePT+HjRrjbPb3tLiAhkb2FDK6F9RZUkRAS6pRncPZykyEBmN+p2sXFPCcfYXZKSo4MYkhxBUqT7tEo1djCRxqOBD40xuQDGmHxgAvBfe/xbWJXE/T41xjiNMb8A+9u3LQMuFZH7gKHGmJJmlvWuvYy5QLiIRNrDPzfGVHhIPxV4fv8PY0wBMB6rkrlARFZjvbskrbmVs5cRaS9z//rsn58TmGYPm2OMWdDcfLzF1xtzefCH7azMLGZij0jAagKSHBnI60szeHVJBsf2jSH2V1QkurJ/L0jn9q824+sQ+sd7vgj8Pckrr+G2LzZy/f/Wc2Sf6CY3LX5PfEToGxvCy4t28/CsbYxKjmBgQgg+AlP6xnDvt1u58bONZBRWcvLAuAPP8Hdg69LZ9D/8WC5+7G1Ouv4BZr3+GMbZNMrflZ0zqTefLtyBs9GFfmJUMIPTovn+d9Y0Vf02SeEBnDk0gbdXNr35MCYlnGXp3l9pPBi+Pg56JYZx8kPfc8Xz83nm8nGEBzdcvyREBjIoJZJZHm7SdHUi8PdTB/Dw5xubjPtwaQb7Civ59IbDueu0gazcWdCkdZFqICKt/vFGbfGeRte2AQL1lcDJQCYwXUSa67jQeIvd/7vsVyxfgO+NMSPszyBjzOUHnKp5fYFSoFuzCxS5SkSWi8jyNd+8fwiLauqIHpHcNDmNmyanUVxZS6TLRXpEkF99M5X9iipr3e5YRgb6NkkDVnOXoXYTzqLKWjZll1FdZyirrmN7fjndGvXv68wKK2vdokNRQb4UNWoO6JrGIVaTwbKDbKpS6zSs2VvCsEZNXr1Rfnk1MSH+9b9jgv0pKPv1TScLKmrZXVDJgIQmLb+9SkFFLdEuFxjRjSIAAIUVNUQHW2VmbTs+lFbXkV9Rw+acMkqr66ius7aRtKggUu074TmlVnRy6e5C+sR67w2HdT9+zgf3X8MH919DcEQ0pfkNd6xLC3I8NkNtzob539Jn7GQAEnsPorammopS74/g78krJzm2YV/oHhNCZp7n09bZk/rwwbym0cSzjujF54t3UuuhqbzqWgobtWiICvJzayFkpakluplzVmSQL3+ZkMKbyzLIbXT8To4IwEekvouKN9tbUEH36IYeQd2ig9lb4B4/2JNfztcrM6itM6TnlLF1Xwm9ExvO1aePS+PL5bupret6FaKsokq36GBiRCBZLs8nCAnwpV9SGP+95jDm3HkkI9Miefmy0QxNDqfOaXjo842c8uQC/vzmSsKD/NiR493NmVXbO5hK44/AOSISAyAi0cBC4Hx7/IXAvJZmICJpQJYx5lXgNWBUM0nPs9NPxGp2eqBbZd/j3gcxClgMHCEifexhISLSr7kZGGMKgUJ7mfvXZ//8IrCa3k4GYvb30fQwj1eMMWOMMWOGnXDeAbL86yzYWciTc3fx5NxdrNtXyugUq+loamQglTV1lFS5V3xKquqorHGSah9IRqeEs26f1WzKNXo4JCGUbPuidt2+UnpGB+EQq69aamRQ/ThvsKuggvhQf2KC/fARGJ0cwZq97h3B1+wtYXyq1V5/ZPdwNuW0fB8iwEcItyvoDrH6k2aVNO0r4W225ZaTGB5AXKg/Pg7h8J5RB92MKTrYDz8f6+5YiL8P/eND2FPk3RcmO/LLiQ8LIDbEDx+HcFhqRJOHR6zKLOaInpEAjEmJYIP9kIF1e0tIjgjE30dwCPSPC2FPURUF5TV0Cw+o7288ODGMPcXeW05Djj6Vc+99gXPvfYGeIyewadEsjDHs27aBgKCQX1VpDI2OJ2PDKgAK9qRTV1NNUJj396NZviWbPkkRpMWH4efr4JxJfZi5tGlzuH7dI4kKCWDxxqwm486d7LkyqbqenW7nLGFMSgQ/73VvgLVmbwnj0yIBqxnqxmzrnBXk5+CvR6TxydostuU1bYA1NiWCZbu7RpRx5fY8eieGkRoXgp+PgzPHp/H1SvdI/MwVu5k40GrUFh0aQJ/EMHZmN5z/z5rQo0s2TQVYs7uIHrEhJEcH4ecjnDwyiVnrGx64VlpZy9h7ZnHkQ3M48qE5rNpVyNVvrGBtRjGBfg6C7ObOR/SLobbONHmAjmrgaIOPNzpg2zJjzHoReQiYIyJ1wCrg/4A3ReRWIAe49ACzOQq4VURqsKJ2FwOIyGvAS/YTUQEqRWQV4AdcdhD5/wfwvIisA+qA+40x/xORacC7IrI/XHYXsFlEHgCWG2M+bzSfS4E3RMQA37kMfwp43hizWUQuB34SkbnGmA55DOKG7DIGxodwx9E9qbFfubHfTZPTeHKudWD8eG1W/Ss3NmaX1Z9sThoYR1yI1Q+roLyGj9ZaFy7ZpdVszCnj5iN7YAwsSS9ye/JoZ+c08P7qffz1iFQcIizaVcjekipOHhjHrsIK1u4tZeHOQqaN6c59x/Wh3H7lxn4PHt+HQD8ffBzC8G5hPDd/F2XVdfxlQgq+DkGAzbnlzNvh/f3SnAbeWJLB36f2xuEQZm/JI6OwknNGJLI9r5wVu4vpHRPMzVN6EuLvw+jkCM4Zkcgtn22ke0QgfxrTvX5eX67Prn8IjLdyGnhnxR5uPrInDgfM217AnuIqTh8Sz878ClbvKWHu9gKuGp/CP0/qR1l1HS8ttJ5YXF7j5NtNudxzXB+MsS7y1tgXfp+ty+b2o3tRZwx5ZTW8tqRrNDlMHXoYu9Yu479/vwxf/wCmXNrQXfyD+6/h3HtfAGDRh6+xZelsaqur+M+tFzFw4vGMPe1PHH7ulcyZ8Qxrvv8ERDj6spu9tpmOqzqn4cZX5vPFfX/AxyHMmLWJDbsLuPuCMazcmlNfgTxnUm8+nN+0YpgaH0pybCjz1v3+mtABzHhkGpNG9yU2MpSt3zzIgy99xYxPFx14Qi/lNPDe6r1cPykNhwgLdhawt7iKUwbFsaugkjV7S5i/o4DLDuvOgyf0oay6rv4YMqV3NPGh/pw0KI6TBlnN3p+Zt6v+BvLo5AieW9A1Kkl1TsNtM5bz8W1H4+MQ3pmzjY2ZRdxx1jBW78jj65WZzFqzlylDk1j06Mk4nYZ73l1FgX3TOyU2hO7RwSzwcJOmK6hzGu7/3y9Mv2osDhE+WprBlqxSbji+L2szitwqkI3FhAYw/aoxOI0Vsbz53Z/bMefepyucp1qDmE7ShllEZgO3uFQgvdLNX2zqHAXaCVXUdK0nl7W2vC4QyWwrwQG/376TB2N4d+9uJtyW7nj8uwMn+r1KX9vROejULr7zLx2dhU7rg09Xd3QWOrXohOiOzkKnte2JE72uBvbB6j2tfm1/7ohuXlcOeiWmlFJKKaWUUh54Xe2ujXSaSqMx5qiOzoNSSimllFJKKXedptKolFJKKaWUUp2J9mm0aKVRKaWUUkoppTzw1qedtjYtB6WUUkoppZRSzdJIo1JKKaWUUkp5oM1TLRppVEoppZRSSinVLI00KqWUUkoppZQHGme0aKRRKaWUUkoppVSzNNKolFJKKaWUUh5ol0aLVhqVUkoppZRSygOHNlAFtHmqUkoppZRSSqkWaKRRKaWUUkoppTzQ5qkWjTQqpZRSSimllGqWRhqVUkoppZRSygPRPo2AVhqVUkoppZRSyiNtnmrR5qlKKaWUUkoppZqlkcZWlpFf3tFZ6LQSIoI6OgudmpZP82JD9FDVkvSCqo7OQqd14qljOjoLnVZcxMSOzkKn9p+HXuzoLHRah192YUdnoVNLiQ3p6CyoVqSv3LBopFEppZRSSimlVLP09r1SSimllFJKeaB9Gi1aaVRKKaWUUkopD7TSaNHmqUoppZRSSimlmqWRRqWUUkoppZTyQN/TaNFIo1JKKaWUUkqpZmmkUSmllFJKKaU8cGigEdBKo1JKKaWUUkp5pM1TLdo8VSmllFJKKaVUszTSqJRSSimllFIe6Cs3LBppVEoppZRSSinVLI00KqWUUkoppZQH2qfRopFGpZRSSimllFLN0kijUkoppZRSSnmgr9ywaKVRKaWUUkoppTzQ5qkWbZ6qlFJKKaWUUqpZXT7SKCKTgJeAGmCCMabCHv4AMNcY80Oj9EcBtxhjTm7nrP4qw7uFMe2wZBwi/Lglj8/WZbmNH5gQwiVjk0mNCuKZuTtZsqsQgNgQP26Z0gsR8HEI32zI4YfNeR2wBq3jrKHxDEoIpbrOyTsr95JRVNUkTUpEABeOSsLPx8EvWaV8vDYbgGA/B9PGdic62I/88hreXJZJRY2TID8HF4xMIjbEj1qn4b8r97K3pBqAe4/rTVVNHU7A6TQ8PmdXe67uITmUshrRLYwTB8SSEObPE3N2sbuwEoD+ccGcOjgeH4E6A5+uy2ZLbnm7rldbMsaw4qOXyVy/HF//ACb86UaiU/o0Sbf68xnsWPoj1eWlnPfkxx2Q07Z1xpB4Btrbzrur9pLpYdtJjgjgjyOtbWdDVimfrLO2nVMGxTEoIZQ6Y8grq+HdVXuprHXiEDhvRBLJEQE4RFi+u4hZW/Pbe9Vazcju4Vw2PgWHA37YlMsna9yPyYMSQ7lsXApp0UE8+dN2Fu0srB8XG+LHNZN6EBvihzHwj++2klNa3c5r0LoGJ4Ry7ohEHALzdxTy7aZct/G+DuHSsd1JjQqkrLqOVxdnkFdew8D4EM4YmoCvQ6h1Gj5ek8WmnDICfB3celSP+umjgvxYkl7EBz/va+c1a18v3XshJ04eQk5+CWPOebijs9PuxqZGcu3kHjhE+OqXLN5bscdt/NkjkvjD4HjqnIbCiloem7WV7JKGfSfYz4c3LhrOgu0FPDdnR3tnv00MTQrlglHdcQjM3ZbPzA05buN9HcKV41PoER1EaVUdLy7cRW5ZDRPSIjlxYFx9uuTIQO77ZgvphZXcfnQvIoL8qKlzAvDYT9spqapr1/XqzPSVG5YuX2kELgQeMca87TrQGHNPB+XnkInAZeNTeOi7reSV1/DISf1ZvruIzKLK+jS5pTW8sGAXpwxOcJu2oKKWu77aTK3TEODr4PHTBrBidxEFFbXtvRqHbFBCCHGh/jz4w3Z6RAVy7vBEnpzbtBJ37ohE3lu9j50Flfx5QjID40PYkF3G1H4xbM4p44ct+UztG82xfWP4/JccjusXQ2ZRJa8vzSQ+1J9zhifw/ILd9fN7bsFuyqq962B6qGW1t7iK15dmct6IRLf0ZdV1vLw4g+LKWpLC/PnL4Snc8+229lqtNrfnl+UU5+zh1HtfJW/nJpa+9zwn3PpUk3TJQ8fR/8hT+Pz+Kzsgl21rYHwIsSH+PDxrO2lRgZw9LJFn5jXdds4elsgHP+9jV0ElV45LZkB8CBuzy9iUU8bMDTk4DZw8MI6pfWP4ckMOI7qF4+sQHpu9Ez8f4W9TerEys4SCipoOWMtD4xC48vBU7v9mM3llNfzr1AEsSy8io7DhmJxTWs1zc3dy2tCEJtNfd2RPPl69l5/3lBDo68BpTHtmv9UJ8MeRSTw9bycF5bXccUwv1uwpYW9Jw82GI3pEUlZdx93fbGVMcjhnDk3g1SUZlFbX8fyCdIoqa+kWHsB1k9K4feZmqmqd/OOH7fXT//2YXqzKLO6AtWtfb32xmJfen8NrD17c0Vlpdw6B647qyW2f/kJOaTUvnDeURdsL2FVQUZ9ma04Zf3l/LVW1Tk4ZksBVR6Txj2+21I+/dHwKazJLOiL7bUIE/jS6O4/9tIP8ihruPa4PqzKL2VPcsG9N7hVNeXUdf/tyE+NSIzhneBIvLkxn0a5CFtkBhOSIQK6blEa6yzHq5UXp7MyvaLxI1UmJSDTwPtAD2Amca4wp8JCuDlhr/0w3xpxqD+8JvAfEACuAPxljWrxb+Zuap4rIxSKyRkR+FpG3RKSHiPxoD5slIql2uuki8qyILBSR7SJytj08SUTmishqEVlnRwMbL6OPiPxgL2OliPQWy2P2NGtF5Dw77VEiMltEPhKRjSLyjp32CuBc4EEReafR/Ke75OcEe7qVwJkuaZ4RkXvs78fbee7wJr19YoPJKq4iu7SaOqdh4Y4CxqZEuKXJKasmvaCyycVHndNQ67SG+fkIDi9upz00MZSl6UUA7CyoJMjPQXiAj1ua8AAfAn0d7CywDoxL04sYlhTaZPql6UUMtYcnhgWw2Y6WZZdWExPsR1ij+XqbQy2rrNJqsj1EPjKKqiiutG447C2pxs/HgW8X6jGesWYxvQ47GhEhtucAqivKqChqGg2L7TmAoIjoDshh2xuSGMryDGvb2WVvO433h7AAHwJ8Heyyt53lGUUMTbS2nc055diHHHYVVBARZN2rNBj8fRw4BPzsqFJVrXfdjNmvT1wIe4srySqpptZpmL+9gMNSI93S5JRWs6ugoskxOTkyEB8Rft5jXdhW1jqprvPuSmPP6CCyS6vJLauhzhiW7y5ieLcwtzTDu4Wz2L6AXZlZzID4EAB2F1ZSZB9T9hRX4e8jTY4p8aH+hAX4dqlWDc1ZsHIb+UVdfz09GZAQSmZhJXuLq6h1Gn7anMvhvaLc0qzOLKaq1oqObdhXQlyIf/24vnEhRAX7sSK9sD2z3aZ6RQeTVVpNTpl1/bckvZCRyeFuaUYmhzN/h1V3WLa7iEH2sdjVuLRIlnShcmlr0gafVnA7MMsY0xeYZf/2pMIYM8L+nOoy/FHgKWNMH6AAuPxAC/zVkUYRGQzcBRxujMm1a7ozgBnGmBkichnwLHC6PUkSMBEYAHwOfARcAHxrjHlIRHyAYA+Legf4pzHmExEJxKrgngmMAIYDscAyEZlrpx8JDAb2AAuAI4wxr4nIROBLY8xHzaxPIPAqcDSwFavWvt8d9jLm2ev0B2OM8+BLq21EB/uTV9ZwAZ9XXk2fuJCDnj4m2I+/HdObxPAA3l6e6ZVRRoCIID8KXfJeWFlLRJAfxS5NKppLAxAW6FuftriqjrBAa3fILKpkeFIY2/MqSI0MJCrIj8hAX6uphjFcc3gKAAt2FLBwV1Gbr2drONSyOhgjuoWRUVhZf1OiKygvzCM4qqE5T3BkLOWFeV22guhJeGCj7aKilohAP7emSxGBfvUX+vvThAc23XYOS41k9R4rOvTznhKGJIZx33F98PNx8Nn6LMprOvzw+pvEBPuRV9YQIc0rr6bvQR6Tu0UEUFZdy23H9CI+LIA1mcW8vTwTb96NIoP83CLGBRU19IwOapTGl3w7jdNARY2TEH8ft1Yco7qHk17Q9JgyNiWi/kaG6rpiQ/zJKW2IoOWUVjMwMazZ9CcOTmCpfSNCgD9PTOOR77YyutFNdW8WZXen2a+gvIZeMe6X0FFBDWmcBiqq6wj196HUZd8alxrBM/N2uk13+bhkjIHlu4v4fH12262EF3J0zvappwFH2d9nALOBvx3MhCIiWPWeC1ymvw94saXpfkvU7GjgQ2NMLoAxJh+YAPzXHv8WViVxv0+NMU5jzC/A/nY5y4BLReQ+YKgxxq3tgIiEAd2NMZ/Yy6g0xpTb833XGFNnjMkC5gBj7cmWGmMy7Erdaqxw7cEYAOwwxmwxxhigvhmrvcwrge+BfxtjukS7u7zyGm77YiPX/289R/aJJiLw99BK+SDY1yU/bMknyM/BbVN6cGTvKDKKKtl/Kfv0vHQem72TFxfuZlKvKHrHBDU7u9+TxDB/Th0cx/uru3b/IvXbTe0bg9MYVmRYlcbUqCCcxnDfd1t56IdtHNU7mujgg79J0VX4iDAwMYwZSzO47bMNJIQFMKVvTEdnq8MlhQdw5tAE3l65p8m4MSnhLEvXSqNqMLV/LP3iQ/jA3l5OHZbI0l2F5JZ5d9/gttArJoiqOqdb3/SXFqVz99dbePiHbfSLC+HwHpEdl0F1sBKMMXvt7/toqGM1Figiy0VksYicbg+LAQqNMfvv9mYA3Q+0wPaoLbg+MUEAjDFzRWQycBIwXUSeNMb8pxWXU0frrdtQIA/o1lwCEbkKuApg9LQ76X3UWa20aM/yy6uJcWmCERPsT0HZr+8HVFBRy+6CSgYkhNY/KKezm9Qzkgn2wSy9oJLIoIY/c2SgL0WN+kMVVdQ0m6akspbwAB+Kq+oID/ChpMradyprnfx3VUPl597jetdHEfZHU0qr61izt5S0qCC25XXOPgCtWVYtiQz05Ypxyby1Yi+55d7XH62xTXO+ZNvCbwCITutHeUHDQwbKC3MJjuz6F/RH9IhkfFokYDUXdNsugnwpqmy07VTWuN18igzypdglzdiUCAYlhPLiovT6YaO6h7MxuwynsfanHfkVpEQGut1F9xZ55TXEhDRUeGOC/ck/yGNyXlkNO/PKybIf3rE0vZB+cSHMwnsfUFZYUUOUSyuFqEatGKw0tUTbwx0CQX6O+ihjZJAvf5mQwpvLMshtVI7JEQH4iLj1xVJdU25ZNXGhAfW/40L9yS1t+hCuUSkRXDCmOzf9bz01dlR6UGIoQ7uFc+rQBIL8fPD1ESpq6nhtYXqT6b1JQXmN2821qGC/Jv3ACyqsNAUVNda+1STKGNnkmm///llZ62TxrkJ6xQSzcKd7mt+ztogzutYdbK8YY15plOYHwP1hEpY7XX8YY4yINNc+Jc0YkykivYAfRWQt8Jvuuv2WSOOPwDkiEgP1HTEXAufb4y8E5rU0AxFJA7KMMa8CrwGjXMfbkceM/TViEQkQkWB7vueJiI+IxAGTgaW/YR1cbQR6iEhv+/cfG+XzZqymryeKyDhPMzDGvGKMGWOMGdPWFUaAbbnlJIYHEBfqj49DOLxn1EE31YkO9sPPx9r8Q/x96B8fwp4i7zn5zttRyL9+2sm/ftrJmr0lHJZqNTvpERVIZa3TrbklWM1OK2ud9IgKBOCw1AjW7isFYN2+0vrpXYcH+Tmwi4gJaRFsyy2nstaJv48Q4GvtMv4+woC4YPYWNz2BdRatWVbNCfJzcPWEZD5fn82OLtKBvv+RJ/OHO/7NH+74NynDxrN96Y8YY8jdsRH/oJDfRdPUBTsLeWLOTp6Ys5O1e0sYk2xtO2lRgVTWOJs8Va+kqo6qWidp9rYzJjmCdfa2MyAuhCl9onl9aQY1Ln31Citq6BtrNavy9xHSooI89pv1BltzykgKDyQ+1B9fhzCxVxTLDrK/0NbcMkL8fQi3K91Dk8Lqn07srXYWVBAf6k9MsB8+IoxJieDnve4PI1mzt6T+xsT+GwhgHVP+ekQan6zN8nhDbmxKBMt2a5Tx92BjVindIwNJDA/A1yFM6RfLwh3uz/noExvMjVN6cfeXm9xuTDzy3VYumL6SC2es4uX5u/h+Y67XVxgBduSXkxDmT2yIHz4OYVxqJKsy3B8ItTqzmIk9rb6fY1Mi2JDVcB4XrG4CS1y61jgEQv2tfuo+Yj2dP9OLrgu9lWvdwf684iHNVGPMEA+fz4AsEUkC61kxgMc2xcaYTPv/7VhNWEdiBcMiRWT/3d5kIPNAef7V0ThjzHoReQiYYz+RZxXwf8CbInIrkANceoDZHAXcKiI1QClwMYCIvAa8ZIxZDvwJeNl+NUYNcA7wCVZT2J+xGhPeZozZJyIDDibvjea/f30q7dr+TBEpx6qYhtntfV/Hev3GHhG5HCsqOtYY06F7k9PAG0sy+PvU3jgcwuwteWQUVnLOiES255WzYncxvWOCuXlKT0L8fRidHME5IxK55bONdI8I5E9jGiLQX67P9toLlF+yyhicEMo9x/aiutbJOy7Rwdum9OBfP+0E4IOfs7hwVBL+PsIvWWX8kmVdnHy/OY9LD+vO+LRICuxXbgAkhPpz0ehuGGPYV1LNf1dZ0f+wAF+uGGeVnUOEFRnFbLAvdDq7Qy2rYUmhnD0sgVB/H64en0xmUSUvLspgUs8oYkP8OWFALCcMiAXghQW73e5qerNug8eSuX45n99/BT5+AUy46Mb6cV898lf+cMe/AVj56RvsXD6b2poq/nfXxfSZcDzDTrqwo7LdqjZklzEwIZS/H9OLmjon77psOzcf2YMn5uwE4KM1WfYrN4SN2WX1+8aZwxLwcQh/nmD1Bd5VUMFHa7KYv6OA80cmcdtRPUFgWXpRp74J0xKngdcWpXPPCX1xiDBrcy67Cys5f1QS23LLWZZeRJ/YYP42tTch/j6MTY3kvFHduOF/v+A0MGNpBved2BdB2JZbxg+NXk/hbZwG3lu9l+snpeEQYcHOAvYWV3HKoDh2FVSyZm8J83cUcNlh3XnwhD6UVdfx2pIMAKb0jiY+1J+TBsVx0iCrP/Ez83bV36gYnRzBcwu851VHh2rGI9OYNLovsZGhbP3mQR586StmfLqoo7PVLpwGnpuzg0dPHYjDIXz9Sza78iuYNi6FTdmlLNpRwFUT0wjyc3DPif0AyC6p4u6Zmzo4523HaeDt5Xu45aheOATmbS9gT3EVZwxNYEd+Baszi5m7LZ+rJqTw6Mn9Kauu48UFDZXl/vEh5JdbD9LZz9ch3DKlJz4OwSHC+n2lzN7mva8/ahOdsksjnwOXAP+0//+scQIRiQLKjTFVIhILHAH8y45M/gScjfUEVY/TN5mf8fJHe3c2581YpQXajIQI7f+nfpvYEO1325LGTf9Ug5053nFjpyPERQR2dBY6tf881OIzIX7XDr+sa9wUayspsQf/cMLfm+l/HNY5q2AtWLKtqNWv7cf1jjikcrBbfH4ApAK7sF65kS8iY4A/G2OuEJHDgZcBJ1br0qeNMa/b0/fCqjBGYwUALzLGtHjnVq/ElFJKKaWUUspLGGPygGM8DF8OXGF/X4j1bBZP028HDvs1y9RKo1JKKaWUUkp50DnfuNH+OvxF9UoppZRSSimlOi+NNCqllFJKKaWUBxpotGikUSmllFJKKaVUszTSqJRSSimllFKeaKgR0EqjUkoppZRSSnkkWmsEtHmqUkoppZRSSqkWaKRRKaWUUkoppTzQV25YNNKolFJKKaWUUqpZGmlUSimllFJKKQ800GjRSqNSSimllFJKeaK1RkCbpyqllFJKKaWUaoFGGpVSSimllFLKA33lhkUjjUoppZRSSimlmqWRRqWUUkoppZTyQF+5YdFKo1JKKaWUUkp5oHVGizZPVUoppZRSSinVLI00trLk6OCOzkKnZYzp6Cx0aul55R2dhU5r1TYtm5bcf9LAjs5Cp3XSAy93dBY6rcABYzo6C53a4Zdd2NFZ6LQWvvFOR2ehcwsI6egcdFrT/ziso7Pw62moEdBIo1JKKaWUUkqpFmikUSmllFJKKaU80FduWDTSqJRSSimllFKqWRppVEoppZRSSikP9JUbFq00KqWUUkoppZQHWme0aPNUpZRSSimllFLN0kijUkoppZRSSnmioUZAI41KKaWUUkoppVqgkUallFJKKaWU8kBfuWHRSqNSSimllFJKeaBPT7Vo81SllFJKKaWUUs3SSKNSSimllFJKeaCBRotGGpVSSimllFJKNUsjjUoppZRSSinliYYaAa00KqWUUkoppZRH+vRUizZPVUoppZRSSinVLK+JNIrIqcAgY8w/RWQ68KUx5qPfOK804BOsSrMf8Jwx5qVWy2wbOn1wPAMTQqiuM7y3ei+ZRVVN0iRHBHD+iCT8fIQNWWV8uj4bgBP6xzA4MQxjDKXVdby3ai/FVXUA9I4J4rTB8fg4hLLqOl5YuLtd16s1nDEknoEJoVTXOXl3VfNl88eRSfj5ONiQVcon66yyOWVQHIMSQqkzhryyGt5dtZfKWic+AucMTyQlMhBj4JN12WzLK2/vVWtVI7qHc+m4ZBwCszbn8enaLLfxAxNCuXRcMmlRQTw1eweLdxW6jQ/yc/D0GYNYml7I64sz2jHn7e+wHpFcP6UXDhG+XJfFO0vd1/e0YYmcMSIJpzFU1NTx2Hdb2Zlf0UG5bXvGGD549SnWr1iEf0AgF19/F6m9+zeb/oV/3EZuVib3PPeO2/AfPv0vH7/5bx576ytCwyPbONft49gJA3j8ljPwcQjTP13C4zNmuY1PTYzipXvOJzYqlILici67+20ys4uYPLoP/7rp9Pp0/XvEc/Hf/8MXc9a18xq0rWOGJfHIn8bg4xDemr2Vp7/4pUma08el8rczh2GMYX16IVe+sICJAxN4+KJR9Wn6JkVw+fPz+WpF1zn2jE2N5NrJPXCI8NUvWby3Yo/b+LNHJPGHwfHUOQ2FFbU8Nmsr2SXV9eOD/Xx446LhLNhewHNzdrR39jvUS/deyImTh5CTX8KYcx7u6Oy0u2PH9+PxG0+1jjufL+Pxt2a7jU9NjOSlO88hNirEOu7c+z6ZOUX148OCA1j13s18MWc9Nz7xWftm3ovoKzcsXlFpFBFfY8znwOetMS9gLzDBGFMlIqHAOhH53Biz5wCTd6gB8SHEhvrxyI87SI0M5KyhCTw7P71JurOGJvDBz/tIL6zkinHdGRAfwsbsMn7aVsA3m/IAmNgzkmP7xfLx2iwCfR2cOTSBV5dkUFhRS6i/T3uv2iEbGB9CbIg/D8/aTlpUIGcPS+SZebuapDt7WCIf/LyPXQWVXDkuub5sNuWUMXNDDk4DJw+MY2rfGL7ckMP4tEgAHpu9k1B/H64cn8LTc3di2nn9WotD4IrxKTzw7Rbyy2v45yn9WZ5eREZRZX2a3LJqnp+3i1OHxHucx/mjuvHLvtL2ynKHcQjcdExvbvxoHTkl1bx64QgWbM1zqxR+vzGHz9bsA+CI3tH89ahe3PK/9R2V5Ta3fsUisvdmcP9LH7Bj83reffEx/vb4ax7Trlo0m4CgoCbD83Oy+GXVUqLjEto6u+3G4RCe/ttZnHTtS2RmFTL/Pzfy5dx1bNzRcEPmkRtO5Z2Zy3ln5jKOHNOHB/56Mpff8w5zV2xl/IWPAxAVHsy6T/7OD4s3ddSqtAmHCI9dMpYz/vkje/LL+fGBE/h6RQab9hTXp+mVEMaNpwzmhPu/o6i8mtjwAADmb8hi8p1fAxAZ4s/KJ07lp7V7O2Q92oJD4LqjenLbp7+QU1rNC+cNZdH2AnYVNBxntuaU8Zf311JV6+SUIQlcdUQa//hmS/34S8ensCazpCOy3+He+mIxL70/h9cevLijs9LuHA7h6VtO56TrXiMzu4j5b/6VL+f9wsad2fVpHvm/k3jn6xW889VKjhzdmweuOYHL73+/fvy9Vx/H/FXbOyL7ygu1a/NUEblIRJaKyGoReVlEfESk1GX82XYUERGZLiIvicgS4F8iMk1E/u0yu6kislxENovIyfY0gSLypoisFZFVIjLFHj5NRD4XkR+BWcaYamPM/jBUAC7lICKlIvKYiKwXkR9E5DARmS0i2+1oZ4cZkhjKit3WSTa9sJIgPx/CAtwreGEBPgT6OUgvtCoBK3YXMyQxFICqWmd9On+fhj/9qO7hrN1bSmFFLQCl1XVtuh5tYUhiKMszrLtnuwoqCfJzeCybAF8HuwqsslmeUcRQu2w255TjtGuCuwoqiAiy7qckhAWwJdeKLJZW11FRU0dKZGB7rFKb6BMbwr6SKrJLq6l1GhZsL2BsaoRbmpzSanYVVNSXh6teMUFEBvrys8vFXlc1MDGMzMJK9hZVUes0zNqUw8Q+MW5pyl32lUA/B8ZrbyccnJ+XzmP8lBMQEXr1H0J5WSlF+blN0lVWlDPrs/f4wznTmoz76PVnOHPatV3q1u3Ywals253Lzsw8amrr+PC7VZx85BC3NAN6JjJnuXWhP2f5Vk6ePKTJfM44ZjjfLdxIRVVNu+S7vYzuHcP2rBJ25ZRSU+fkf4t38YfRKW5pLpnSh9d+2ExRuRVByy1u2lLktMNS+eHnPVR44TmqOQMSQq3jTLF1nPlpcy6H94pyS7M6s7j+/L1hXwlxIf714/rGhRAV7MeK9ML2zHansWDlNvKLvLv1z281dlAK2zLy2Lkn3zrufP8zJ08e5JZmQM8E5izfBsCcFdvcxo/s35346DB+WLoF1TJpg483ardKo4gMBM4DjjDGjADqgAsPMFkycLgx5iYP43oAhwEnAS+JSCBwLWCMMUOBPwIz7OEAo4CzjTFH2vlJEZE1wG7gUZcoYwjwozFmMFAC/AM4FjgDeOBXr3grigj0pbCytv53UUUNEYG+TdNUNKQprKx1S3PigFjuntqLUd3D+WaTdbEXF+pHsJ+Dv0xI4YZJaYxODm/jNWl94YF+7utdUUtEoJ9bmohAP4oq3dOEN0oDcFhqJBuzywDYU1zJ4MRQHALRwX6kRAYSGdR0Gm8RHexHbllDs6a88hqiQw5ufQS4ZGwyM5ZltlHuOpe4UH+ySxouXHNKqogN9W+S7owRSbx3+Wj+Mrknz/zYte/YFublEBXbECGMio2jMC+nSbov3nmVqaf9Ef8A9xssPy+ZS2RMHMk9+7Z5XttTt/hIMrIK639nZhfRPd79ZszaLZmcNmUYAKdNGUp4aCDREcFuac45biQffLuyzfPb3pKigsjMb7iw35NfTlKUexS6d2IYfRLD+eae4/juvuM5ZlhSk/mcOT6Njxc1bUHizWJD/MkpdTnOlFYTGxrQbPoTByew1O4yIMCfJ6bx0vyuVSbq4HSLiyAju7D+d2Z2Ed3jGh939nDaUdYNqtOOGkx4SCDR4cGICP+8/iTueHZme2ZZebn2jDQeA4wGlonIavt3rwNM86Exprlbih8YY5zGmC3AdmAAMBF4G8AYsxHYBfSz039vjMnfP7ExZrcxZhjQB7hERPZfCVUD39jf1wJzjDE19vceB7mundbXG3N58IftrMwsZmKPSMBqOpQcGcjrSzN4dUkGx/aNIfYgKxJdzdS+MTiNYUWGFUlbml5EUUUtN07uwemD49mZX4HTdO1oUnOOHxjHyoxi8su7VhTkUH2yei/nv76Cl+bu5OLxKQeeoIvbvX0zOfsyGTHhSLfh1VWVfPPhfzjlgis7KGcd646nP2fSqN4seudmJo3qQ2ZWIXV1Da0/EmPCGdwnie8XbezAXHYcXx8HvRLDOPmh77ni+fk8c/k4woMbzkMJkYEMSolk1tpO3YukTU3tH0u/+BA+WGmVwanDElm6q9DtRqBSru54biaTRvVi0YzrmDSyF5nZRdQ5nVx91ni+XbjJrX+jaoGGGoH27dMowAxjzB1uA0VudvnZuN1fWQvza3zlfqAreY/zMsbsEZF1wCTgI6DGmPpagROostM57f6QTYjIVcBVAFOvuZ9hJ5x3gKwcvCN6RDLObj64u7CSSJeoYUSQe+QMoKiylsighjSRgb5N0gCszCzmisOS+XZzHkWVtZRnl1FdZ6iuq2N7fjndwgPILevclYMjekTW9zncXVjpvt5BvhRVuue/qNI9MhsZ5EuxS5qxKREMSgjlxUUN/USdBj5b39A/4P8mppJT6r0n6PzyGmJdmjbFBPuRf5B/5/5xIQxICOX4AbEE+vng6xAqa5y8s6JrXsTllFYTH9Zwxz8uLIDcFv72szbmcPPU3kDXauoze+bHLPje6k6e1mcABbkN/fQKcnOIjIlzS7990zrSt27kzivPxFlXR0lRAU/eeS3nXXkTudl7+McNVt+jwtwcHr7xUv72+GtERLk3+/U2e7ILSU6IrP/dPT6CzGz3i7G9ucWcf9ubAIQE+XP60cMoKm3oS3zWsSP4/Ke11LpUJLuKvQUVdI9uiKp2iw5mb4H7A6P25JezfFsutXWG9Jwytu4roXdiGKu2W/d6Tx+XxpfLd1Nb17Vu2uWWVRPnElmMC/Unt7Rp09xRKRFcMKY7N/1vPTV234FBiaEM7RbOqUMTCPLzwddHqKip47WFTZ91oLqePTlFJMdH1v/uHh/RpBK4N7eE829/C7CPO1OGUlRaybihaRwxvCdXnTWekKAA/P18KK2o4u4XvkE1pa/csLRnpXEW8JmIPGWMyRaRaCAMyLKbrm7CagJ6sL25zxGRGUBPrIjlJmAeVpPXH0WkH5BqDx/lOqGIJAN5xpgKEYnCilA+9VtXzBjzCvAKwM1fbGrVM9qCnYUs2FkIWA97OaJnJKv2lJAaGUhlTR0lVe6B2JKqOiprnKRGBpJeWMnolHDm77Cmjw3xq68IDkkIJdu+AF63r5Qzh8TjEPBxCKmRQczdXtCaq9EmGpfNxJ5RrMosIS0qkMoap8eyqap1khYVyK6CSsYkRzB/h7WeA+JCmNInmucXpFPjclHi52MdKqrrDP3ignEayPLiSuPW3DKSwgOID/Unv7yGI3pF8fScnQc17TNzG9Id1Sea3rHBXbbCCLBxXwnJkUEkhQeQU1rNMf3juP8r9weUJEcGkmH3H57QK5qMgq735NSjTjqLo046C4C1yxcwe+bHjJl0LDs2rycoJISI6Fi39EeeeCZHnngmAHlZe3n+H7dw00PPA/DYf76qT3fnlWdyxxNvdImnpy7/ZTd9UuJI6xbNnuwizjluJNPuetstTUxECPnF5RhjuPXSqcz4fInb+HOPH8nd/+6aTcVWbs+jd2IYqXEh7M2v4MzxaVz5wgK3NDNX7OasCT3479ztRIcG0CcxjJ3ZDQ/cOmtCDx54f3U757ztbcwqpXtkIInh1k2pKf1ieehb9xtPfWKDuXFKL27/bINbN4xHvtta//34AXH0SwjVCuPvyPINGfRJiSEtKYo9OcWcc+xwpt3znluamIhg8osrrOPOJVOY8cUyAC69tyHdRSeNZvSAZK0wqgNqt0qjMeYXEbkL+E5EHEANVh/E24EvgRxgORB6kLNMB5YC4cCfjTGVIvIC8KKIrAVqgWn2E1IbTzsQeEJEDFYE9HFjzNpDW8O2tyG7jIHxIdxxdE9q7Fdu7HfT5DSenGv1a/h4bVb9Kzc2ZpfV9887aWAccSH+GKCgvIaP7FctZJdWszGnjJuP7IExsCS9iH0l3lUx2pBdxsCEUP5+TC9q6py8u2pf/bibj+zBE3bF6KM1WfYrN6yy2WCXzZnDEvBxCH+eYDUv3FVQwUdrsgj19+XqCckYY0Vx/7vSuytJTgOvLd7NXcf1wSHCj1vyyCis5LyRSWzLLWf57iJ6xwZz29G9CPH3YUxKBOeNTOLGTzd0dNbbXZ2Bp37cxhNnDcHhgJnrstiZV87lh6eyMauUBdvyOXNkN8akRlDrNJRU1vLQN10rytjYkNGHs275Iu758znWKzf+7876cQ/dcAl3Pj2jA3PXcerqnNz42Md88dzV+Pg4mPH5EjZs38fdV5/Ayg27mTl3PZPH9OGBa0/CGMP8Vdu54dGGN0alJkWRnBDJvJXbOnAt2k6d03DbjOV8fNvR+DiEd+ZsY2NmEXecNYzVO/L4emUms9bsZcrQJBY9ejJOp+Ged1dRYN+gS4kNoXt0MAs2Zh1gSd7HaeC5OTt49NSBOBzC179ksyu/gmnjUtiUXcqiHQVcNTGNID8H95xo9bbJLqni7pld6wm7v9WMR6YxaXRfYiND2frNgzz40lfM+HRRR2erXdTVObnx8c/44pnL8XE4mPHlMjbsyOLuK49l5cYMZs7bwORR1hNTjTHMX72DGx77tKOz7ZW60HPbDomY32n/rLbS2pHGrkS3tZale/n7H9tSVr6WTUvuP2lgR2eh0zrpon90dBY6rcABYzo6C53aqHEHeuzC79fCN945cKLfs4CQjs5Bp1Wx+FGvq4Jtza5o9QvYPvFBXlcOXvGeRqWUUkoppZRqb15Xu2sjWmlUSimllFJKKU+01gi07ys3lFJKKaWUUkp5Ga00KqWUUkoppZQH0gb/DjlPItEi8r2IbLH/j/KQZoqIrHb5VIrI6fa46SKyw2XciAMtUyuNSimllFJKKeU9bgdmGWP6Yr3W8PbGCYwxPxljRhhjRgBHA+XAdy5Jbt0/3hiz+kAL1EqjUkoppZRSSnkg0vqfVnAasP89VzOA0w+Q/mzga2PMb34cvVYalVJKKaWUUsoDaYuPyFUistzlc9WvzFaCMWb/C9v3AQkHSH8+8G6jYQ+JyBoReUpEAg60QH16qlJKKaWUUkq1E2PMK8ArLaURkR+ARA+j7mw0LyMizb5LUkSSgKHAty6D78CqbPrb+fgb8EBL+dFKo1JKKaWUUkp50kGv3DDGTG1unIhkiUiSMWavXSnMbmFW5wKfGGNqXOa9P0pZJSJvArccKD/aPFUppZRSSimlvMfnwCX290uAz1pI+0caNU21K5qIiGD1h1x3oAVqpVEppZRSSimlPOiMr9wA/gkcKyJbgKn2b0RkjIi8Vp93kR5ACjCn0fTviMhaYC0QC/zjQAvU5qlKKaWUUkop5SWMMXnAMR6GLweucPm9E+juId3Rv3aZWmlUSimllFJKKQ9a6RUZXk8rjUoppZRSSinlgdYZLdqnUSmllFJKKaVUszTSqJRSSimllFIeaPNUi0YalVJKKaWUUko1SyONrSzAR29HNKfG2dE5UN6qvLzmwIl+xwJ89P5fs4LCOjoHnVZ0QnRHZ6FTS4kN6egsdF4BWjYtqirr6ByoVqXX9qCVRqWUUkoppZTySJunWvT2tFJKKaWUUkqpZmmkUSmllFJKKaU80ECjRSONSimllFJKKaWapZFGpZRSSimllPJA+zRatNKolFJKKaWUUh6INlAFtHmqUkoppZRSSqkWaKRRKaWUUkoppTzRQCOgkUallFJKKaWUUi3QSKNSSimllFJKeaCBRotGGpVSSimllFJKNUsjjUoppZRSSinlgb5yw6KVRqWUUkoppZTyQF+5YdHmqUoppZRSSimlmqWRRqWUUkoppZTyRAONgEYalVJKKaWUUkq1oMtEGkWkB/ClMWZIGy5jNnCLMWZ5Wy2jJcYYfv7kFfZtWIGPXwBj/ng9USl9mqQr2L2V5e8+TV1NNYkDRzP8jKsQuxfv1rlfsG3BTEQcJA0ay9BTL6UsP4vv/nkNYXHdAYhO68+oc69t13VrbcYY1n36KlkbluPjH8DI828gMrl3k3SFu7ey6r1nqKupImHgGIacfmV9WQFsnf0Jv3zxJsff/zYBoeHtuQptZkT3cC4dl4xDYNbmPD5dm+U2fmBCKJeOSyYtKoinZu9g8a7C+nHvXzKS9IIKAHLLqnl01vb2zHqbm9A7mluO74uPwKer9jJ9Ybrb+LNGdePcsd2pcxoqquv4x8xN7Mgt58QhCfxpQkp9ur4JoVz46nI2Z5W29yq0KWMM/33lSdYuX4R/QACX33A3aX0GNJv+2QduIWffHh584b8ApG/fwlvPP0plZQWx8YlcdesDBAWHtFf2282xh/Xh8ev/gI9DmP7lSh5/Z57b+NSECF664wxiI4MpKK7gsgc/JjOnuINy2z4m94/l7tMH4uMQ3l+Swcs/ej52HD80gRemjeL0pxawNqMYPx/hH2cPYWhKBE5jePDTDSzZlt/OuW99Q5NCuWBUdxwCc7flM3NDjtt4X4dw5fgUekQHUVpVx4sLd5FbVsOEtEhOHBhXny45MpD7vtlCemEltx/di4ggP2rqnAA89tN2Sqrq2nW9Wtux4/vx+I2nWvvS58t4/K3ZbuNTEyN56c5ziI0KoaC4nMvufZ/MnKL68WHBAax672a+mLOeG5/4rH0z38FeuvdCTpw8hJz8Esac83BHZ8eraaDR0i6VRhHxNcbUtseyurJ9G1ZQmrOH4//+Mvm7NrHqoxc5+sYnmqRb9dELjDr3r0Sn9WfBK/eRtXEFiQPHkL1lDXvWLWHqrc/h4+tHZUlh/TShMYlMvfXZdlybtpW9cQVluXs45o6XKUjfxJqPX2Ty9Y83Sbfm4xcZfu61RKX2Z8lr95O9cSUJA0cDUFGQQ86m1QRFxTWZzls5BK4Yn8ID324hv7yGf57Sn+XpRWQUVdanyS2r5vl5uzh1SHyT6avrnNz6+cb2zHK7cQjcfkI/rnlnNVnFVbx1xRjmbM5lR255fZpv1mXx8co9AEzuF8NNx/bh/95dw9frsvh6nVX57hMfwhPnDO1yFUaAtcsXkbVnN4+88iHbN63nPy/8i7uffMNj2hULfyIgKNht2PTnHua8y/6P/kNHMe+7L/j647c5809Xt0fW243DITx908mcdOMMMnOKmf/q1Xy5YCMbdzZUCh659nje+WY173yzmiNH9eSBq6dy+T/+14G5blsOgfvOHMwlLy9lX1Eln9xwOLPWZ7O10T4SEuDDtEk9WOVyo+q88dbNmD88Pp+YUH/euGIMpz+zEGPacw1alwj8aXR3HvtpB/kVNdx7XB9WZRazp7iqPs3kXtGUV9fxty83MS41gnOGJ/HiwnQW7SpkkV0+yRGBXDcpjfTChuP3y4vS2Zlf0d6r1CYcDuHpW07npOteIzO7iPlv/pUv5/3Cxp3Z9Wke+b+TeOfrFbzz1UqOHN2bB645gcvvf79+/L1XH8f8VV3r5ubBeuuLxbz0/hxee/Dijs6K19Onp1oOuXmqiPQQkQ0i8qqIrBeR70QkSERmi8jTIrIcuL7RNLeKyDIRWSMi97vMZ6OITBeRzSLyjohMFZEFIrJFRA6z090nIm+JyCJ7+JUe8hQoIm+KyFoRWSUiU+zhc0VkhEu6+SIyXERCROQNEVlqpz/NHh8kIu/Z6/cJEHSo5XUo9q5bTNrYoxERYnoMoKaijIoi9zuuFUX51FSWE9NjACJC2tij2bN2MQDbF3xF/2POxsfXD4DAsMj2XoV2s2/dEpJHT0FEiE6zyqqy2L2sKovzqa0sJzrNKqvk0VPYt25x/fh1n7/OoFOm0ZXuMfWJDWFfSRXZpdXUOg0LthcwNjXCLU1OaTW7CipwevFF2W8xuFs4uwsqyCyspNZp+G59Fkf1j3VLU1bdcNc+yM8HT0V0/OAEvv0ly8MY77dqyVwOP/oPiAi9BwyhvKyUwvzcJukqK8r59tN3Ofm8S92GZ2Wm02/ISAAGjzyMFQt/apd8t6exA5PZlpnPzr0F1NTW8eGstZw80T0aO6BHPHNWWheyc1buaDK+qxmeGsmuvDJ251dQU2f4ctVepg5uelPqxhP68fJP26mqadjP+iSEsmhrHgB5pdUUV9YwNDmiybTepFd0MFml1eSUVVPnNCxJL2RksntLlpHJ4czfUQDAst1FDEoMbTKfcWmRLEkvbI8sd4ixg1LYlpHHzj351r70/c+cPHmQW5oBPROYs3wbAHNWbHMbP7J/d+Kjw/hh6ZZ2zXdnsWDlNvKLyg+cUKmD1Fp9GvsCzxtjBgOFwFn2cH9jzBhjTH04TESOs9MfBowARovIZHt0H+AJYID9uQCYCNwC/N1lecOAo4EJwD0i0q1Rfq4FjDFmKPBHYIaIBAKvA9PsfPQDAo0xPwN3Aj8aYw4DpgCPiUgI8Beg3BgzELgXGP1bC6g1VBTlERTZcBEbFBlDZVGeW5rKojyCIlzSRMRSYacpzdlD3vb1/PjUzcz59+3kp2+uT1eWn8UPj1/PnH/fTu629W28Jm2vsiiPoMiGCGFQhOeyCnQrz9j6NHvXLSYwIoaIbj3bJ8PtJDrYj9yy6vrfeeU1RIf4HfT0/j4OHj2lPw+f1L9JZdPbxYcHkFXccMc+q7iKuLCAJunOGdOdz64dz3XH9Oaxb5tejBw3KJ5v12U3Gd4VFOTlEB3bcLEfHRNPQV5Ok3SfvP0Kx59+AQEB7uXXLbUXqxbPBWDZ/Fnk53a9cuoWF0ZGdkPzuMycYrrHulcI1m7dx2n2xe1pkwcSHhJIdHiH3pNsUwkRgex1iYbtK6okISLQLc3g7uEkRQYyu1EzzY17SjhmcDw+DiE5OoghyREkRbpP622igv3IL6+p/11QXkNUkPtxOCqoIY3TQEV1HaH+Pm5pxqVGuHUfALh8XDIPnNCXUz1Uyr1Nt7gIMrIL639nZhfRPc79vLN2yx5OO8rqlXTaUYPtfSkYEeGf15/EHc/ObM8sqy5K2uCfN2qtSuMOY8xq+/sKoIf9/X0PaY+zP6uAlViVw74u81lrjHEC64FZxhgDrHWZJ8BnxpgKY0wu8BNWBdTVROBtAGPMRmAX0A/4EDhZRPyAy4DpLnm6XURWA7OBQCAVmOwynzXAmoMoi07LOOuoLi9lyg2PM/SUy1gy41GMMQSGR3PiPW8w9ZZnGHbaFSx9+3FqKn+/d6dqq6vYMusjBhx/QUdnpdP5y4fr+NsXm3h6zg4uPSyZhDD/js5Su/tweSanPb+Y537cxhUT09zGDekWTmVtHdtyyjoodx0vfftmcvZmMPrwo5qMu+z6O/npq4+5//pLqKwox9e3y3Sr/1XueP5bJo3owaLX/8KkET3IzC6i7vcW2nchAn8/dQAPe2j6/uHSDPYVVvLpDYdz12kDWbmzAKc3t01tJb1igqiqc5JZ1NCk9aVF6dz99RYe/mEb/eJCOLxHZMdlsJ3c8dxMJo3qxaIZ1zFpZC97X3Jy9Vnj+XbhJrf+jUqpQ9NaZ+wql+91NDTj9HTlJMAjxpiX3QZaD7JxnY/T5bcT97w2PmMc1BnEGFMuIt8DpwHn0hA5FOAsY8ymRnk6mNkiIlcBVwGc8NcHGHnieQc13cHYNn8mOxZ9C0BUal8qChuaglUU5hEYEeOWPjAihooilzRFuQTZaYIiY+k2bILdZLMfIg6qy4oJCI2ob7IaldKHkJhESrMziUrtizfZMX8mu5Z8B0BkSl8qChvuWFcUeS6rSrfyzCUwIobyvL2U52cx+wmrVXVlUS5zn7qBSdc/QWB4VDusSdvJL68hNqShohcT7Ed+WU0LUzSdHiC7tJr1+0rpGR1MVkn1AabyDtnFVSSEN0QwEsIDyCmpajb9t+uyuePE/kDDhe5xg+P5potFGWd9+RFzv7UeINGz70C36GB+XjZRMe59frdtXMuOrRu59bLTcdbVUVxUwKO3/4W//fNFklJ6cPODVt/pfZnprFm2sP1WpJ3sySkhOb4hGtI9LpzMXPeH3OzNK+H8u94DICTIn9OPHERRaSVdVVZRpVt0MDEikCyXftQhAb70Swrjv9dY93/jwgJ4+bLRXP3GCtZmFPOQS2Xyw/8bz44c776pWVBeQ3RwQ2QxKtiPggr343BBhZWmoKIGh0CQvw+lLs3jx6VGsqRRlLGwwnp0RGWtk8W7CukVE8zCne5pvMmenCKS4yPrf3ePj2hSCdybW8L5t78F2PvSlKEUlVYybmgaRwzvyVVnjSckKAB/Px9KK6q4+4Vv2nMVVBehfRotHfHKjW+By0QkFEBEuovIr21HcZrdbzEGOApY1mj8POBCe/79sKKG+yuErwHPAsuMMQUuefo/sWuJIjLSHj4Xq4ksIjIEq1lsE8aYV+xmuGNas8II0HviSUy99Vmm3vos3YaMZ9eyHzHGkLdzI35BwQRFRLulD4qIxi8wmLydGzHGsGvZjyQNGQ9AtyHjydlqBUtLsjNx1tXiHxJOVWkRxmmdjEpz91Gau4eQmMRWXY/20HPiSRx18zMcdfMzJA0ZR8aKnzDGkL9rI36BwQSGu5dVYHg0voHB5O+yyipjxU8kDhlHeFIPTrj/LY696zWOves1AiNimXzj015fYQTYmltGUngA8aH++DqEI3pFsWz3wd2JDfH3wddhHTnDAnwYkBBCRmHXudD9ZU8JKdFBdIsMxNchHDc4gTmb3fvrpUQ3NCGc2DeG9PyGi1cBjh0Uz3fru1Z/xmNOPpv7n3uL+597i5ETjmThj19hjGHbxnUEB4cSGe3e73PKH87iqf98yWNvfMod/3qZxG6p/O2fLwJQXGj1K3Y6nXzx3pscdeIZ7b4+bW35xkz6JEeTlhSJn68P5xwzlJnz3SNoMRHB9Tclb71oEjO+WtURWW03a3YX0SM2hOToIPx8hJNHJjFrfcPNh9LKWsbeM4sjH5rDkQ/NYdWuwvoKY6CfgyC7WeYR/WKorTNNHqDjbXbkl5MQ5k9siB8+DmFcaiSrMtxvLKzOLGZiT+ucMzYlgg0u6yzAYamRLNnVcOx2CPXNV30EhncLI7PIu4/Pyzdk0CclhrSkKGtfOnY4M+dtcEvjti9dMoUZX1iXg5fe+x79Tn+EAWc8yh3PzeS/X63UCqNSh6i9np46BvizMeYKY8x3IjIQWGTv6KXARVgRyoO1BqtZaizwoDFmjx2p3O8F4EURWQvUAtOMMVUAxpgVIlIMvOmS/kHgaWCNiDiAHcDJwIvAmyKyAdiA1fS2wyQOGsO+Dcv59qGr8PEPYMz5Dc8X+uGx6+qffjryrL/Uv3IjYeBoEu2ngfYYN5Xl7z3L949ei8PHlzEX3ICIkLttHeu/fgeHjy8iwsizr8U/JKxD1rG1xA8cQ9aGFcx65Gp8/AIYef519eNmP3E9R938DADDzvqz/cqNauIHjCJ+QId2W21zTgOvLd7NXcf1wSHCj1vyyCis5LyRSWzLLWf57iJ6xwZz29G9CPH3YUxKBOeNTOLGTzeQHBnIVYenYoxBRPhkTZbbU1e9XZ0x/Oubzfz7guH4iPDZz3vZnlPOn4/syS97i5m7OY/zxnTnsF7R1NY5Kams5d7PGy5gRqVFklVcSWYXqkg3NmzM4axZvpDbrzwb/4BALrvhrvpx9/7fn7j/ubdanH7JnO/5ceZHAIw6/CgmHntym+a3I9TVObnxqZl88cTF+DgczJi5kg07c7j78qNZuTGTmQs2MXlkDx646lgMhvk/7+KGJ7/s6Gy3qTqn4f7//cL0q8biEOGjpRlsySrlhuP7sjajyK0C2VhMaADTrxqD01gRy5vf/bkdc942nAbeXr6HW47qhUNg3vYC9hRXccbQBHbkV7A6s5i52/K5akIKj57cn7LqOl5c0PD6n/7xIeSXWw/S2c/XIdwypSc+DsEhwvp9pcz28leT1NU5ufHxz/jimcutfenLZWzYkcXdVx7Lyo0ZzJy3gcmjrCemGmOYv3oHNzz2aUdnu9OY8cg0Jo3uS2xkKFu/eZAHX/qKGZ8u6uhsKS8mxsv6BojIfUCpMabp+xMObvpuWP0WB9h9J1vV37/a7F0F2o5qfsd9dg7Gjt9xP7gD2ZGh/VJa8uz5Izo6C53W1Mue6ugsdFrdDpvQ0Vno1CaN6d7RWei03n/mnY7OQudWpefz5lSs+rfXNfYsrKhr9QvYyCAfryuHjmie2mFE5GJgCXBnW1QYlVJKKaWUUqqr8bpH1xlj7juEaf8D/Kf1cqOUUkoppZTqqrz1FRmt7XcVaVRKKaWUUkop9et4XaRRKaWUUkoppdqDvnLDopVGpZRSSimllPJA64wWbZ6qlFJKKaWUUqpZGmlUSimllFJKKU801AhopFEppZRSSimlVAs00qiUUkoppZRSHugrNyxaaVRKKaWUUkopD/TpqRZtnqqUUkoppZRSqlkaaVRKKaWUUkopDzTQaNFIo1JKKaWUUkqpZmmkUSmllFJKKaU80VAjoJFGpZRSSimllPJI2uDfIedJ5BwRWS8iThEZ00K6E0Rkk4hsFZHbXYb3FJEl9vD3RcT/QMvUSqNSSimllFJKeY91wJnA3OYSiIgP8DxwIjAI+KOIDLJHPwo8ZYzpAxQAlx9ogVppVEoppZRSSikPRFr/c6iMMRuMMZsOkOwwYKsxZrsxphp4DzhNRAQ4GvjITjcDOP1Ay9RKo1JKKaWUUkp1Ld2B3S6/M+xhMUChMaa20fAW6YNwWtnDf+jXqbrLishVxphXOjofnZGWTfO0bFqm5dO8zlY2FfMe6OgsuOls5dOZaNm0rDOVz/Q/DuvoLLjpTGXT2WjZHLpA39Z/FI6IXAVc5TLolcZ/JxH5AUj0MPmdxpjPWjtPB6KRxq7vqgMn+d3Ssmmelk3LtHyap2XTMi2f5mnZtEzLp3laNs3TsumEjDGvGGPGuHyaVOyNMVONMUM8fA62wpgJpLj8TraH5QGRIuLbaHiLtNKolFJKKaWUUl3LMqCv/aRUf+B84HNjjAF+As62010CHLAiqpVGpZRSSimllPISInKGiGQAE4CZIvKtPbybiHwFYPdZ/CvwLbAB+MAYs96exd+Am0RkK1Yfx9cPtEzt09j1aTv25mnZNE/LpmVaPs3TsmmZlk/ztGxapuXTPC2b5mnZdEHGmE+ATzwM3wP8weX3V8BXHtJtx3q66kETK0KplFJKKaWUUko1pc1TlVJKKaWUUko1SyuNyiuJyH0icksrzCdSRK5x+d1NRD5qaRplEZFTReT2js5HWxORo0Tky47Oh7cRka9EJLKj8/F70Pg45u1EZIyIPNsK8/mziFzsYXgPEVl3qPPvzERkkoisF5HVIhLkMvwBEZnqIX2nPc65nmtEZLqInH2gaVqYV5qIrLTLZb2I/Ln1cuod2mP7F5HZIjKmLZeh2p/2aVRdnoj4urzAtLFI4BrgBahvC/6bT0i/J8aYz4HPOzofqu2JiI8xpu7XTGOM+cOBU6nGmivrX3Mc82b2ei4Hlh/qvIwxL7VClrzVhcAjxpi3XQcaY+7poPz8Jvb20CrnGvv1AnuBCcaYKhEJBdaJyOf2ub/DHWA/V6pDaaTRy4nIpyKywr5jdpU97HIR2SwiS0XkVRH5tz08TkQ+FpFl9ueIjs39ryMid9rrNR/obw+rv5slIrEistP+Pk1EPheRH4FZIhIqIrPsO4xrReQ0e7b/BHrbdx0fc70DJyKBIvKmnX6ViExxmff/ROQbEdkiIv9q56LAzsfFIrJGRH4WkbdE5BQRWWLn9QcRSbDT3SciM0RknojsEpEzReRf9np9IyJ+drqdLsOXikgfe3hz853msm31FpHF9rT/EJFSe/hR9t/oIxHZKCLviEirvyT3t7L/3vvztcHOZ7CInGAPXwmc6ZL+MBFZZJfFQhHZvx3OFZERLunmi8hwETnS3rZW29OEtf9atqyFMtgpIo/aZXCOiBxnr/tKEfnQ3qdOEJEPXeZVH62wp4+1v98kIuvszw0uy13nMu0tInKf/f06EfnF3r7fa4N1vsjexleLyMsi4iMipfYxYL29nR9mb7vbReRUe7ppIvKZPXyLiNzrYd4tlcmLIrLcXsb9Lmncytpl+G86jtnT3irWcX6N67JaKJPGx5MeIvKjPWyWiKTa6aaLyLP29r9d7KiPiCTZ+8Fq++88ycMyZovIMy5pDrOH32cvcwHwVqMyC5WG4/AaETnLHt5ke/SwvPoWKSIy2l63n4FrXdLcKCJv2N+H2vkK7sAy6mNvfz/b69ZbLI/Z06wVkfPstB6PryJyBXAu8KCIvNNo/tNd8tPcce4ZEbnH/n68nedDul6UZvY5l/Fni8h0lzy+JCJLgH+Jy7nGNlWs/WiziJxsT9PS+bp+HzLGVBtjquz5BOByHSwHcQw4xDLoIdYx9lV7Gd+JSJC9jKdFZDlwfaNpmuzH0nDMnm6XwTsiMlVEFoh1XGq8Xy2yh1/pIU/NlVtz57QQEXnD/luuEvsYZK/He/b6fQIENV6W6gKMMfrx4g8Qbf8fBKwDugM7gWjAD5gH/NtO819gov09FdjQ0fn/Fes5GlgLBAPhwFbgFmA2MMZOEwvstL9PAzJcyscXCHdJtxUQoAewzmU59b+Bm4E37O8DgHQg0J73diDC/r0LSGnn8hgMbAZi928HQBQND7e6AnjC/n4fMN/eHoYD5cCJ9rhPgNPt7zuBO+3vFwNf2t+bm+80l23rS+CP9vc/A6X296OAIqwXxzqARfu3wc7wsf/eBjjC/v0GcBewG+hrbyMfuJRFOOBrf58KfGx/vwR42v7eD1huf//CZd6h+6ftTJ9myuAWe3u4zWWfmQuE2L//BtyDtV+luwx/EbjIZXuKpWHfDbHLYD0wkqb73i3Affb3PUCA/T2yldd3oP138bN/v2Bv76bRfvGdyz6z2mWb34v1ePL9x9wxjebfUpnsPx75YB27hrmU1W0e8jqN33YcOw7riYmCtd99CUxuoUw8HU++AC6xf18GfGp/nw58aM93ELDVHn4zDccPHyDMw3JmA6/a3yfTcKy9D1gBBNm/j6Jhn3sUe9+yf0fRzPboYXn3AbfY39fsLwPgMZdlO+x5nYEV3Tyig8toCXCG/T0Q65x3FvC9PU0C1vaVRAvHVzsPZ3uY/3Ss1jSBNH+cC8baT6cAm4DebbTPlbqkORuY7pLHLwEfl/3g3y7jvrHXty/W/hFIy+fr+n3IHp9ibw/lwLUuww94DDjEcugB1AIj7N8fABdh7RcveEjvcT92mc9Qe/gKrOO2AKfRsB3eB/yMdayKtf/e3Ti465zmzmkP03A8i8TaJ0KAm1zmM8zO35hDLTP9dK6PRhq933Vi3TldjHUg/BMwxxiTb4ypwTpx7TcV+LeIrMZq6hEuHu7OdlKTgE+MMeXGmGIOrqnK98aYfPu7AA+LyBrgB6zKdcIBpp8IvA1gjNmIVTnsZ4+bZYwpMsZUAr8Aab9qbQ7d0cCHxphcO3/5WBcO34rIWuBWrIuc/b62t4e1WBce39jD12KdQPZ71+X/Cfb3lua73wQatrX/Nhq31BiTYYxxAqsbLa8z2G2MWWB/fxsYA+wwxmwxxhh72H4RwIdiRcieoqEsPgROFitqexnWhQ3AAuBJEbkOq/LTWZsdNS6Difb39+3/x2Nd/C6wjx+XAGn2+nwDnCJW06+TaPqC4IlY+26ZMaYU+B/W/tySNcA7InIR1sVHazoGqyK7zF6XY4BeQDXu+8Ucl32mh8v03xtj8owxFVjrMtFlHAcok3PtqM4qrG1nkMuk7+PZbzmOHWd/VgErsS4G+zYzf/B8PJlAw778VqP1/NQY4zTG/OKy/GXApWJFi4caY0qaWda79jLmYp2DIu3hn9tl2thU4Pn9P4wxBTSzPTa3cvYyIu1l7l+f/fNzYlUs3sL6my9oMgNLm5eRWC0RuhvrUfoYYyqNMeX2fN81xtQZY7KAOcBYe7LfenwdQDPHOXuZV2JVVP9tjNl2kPNsTnP7XEs+NM03if/ALtstWDdwB9Dy+dp1H8IYs9sYMwzoA1widusZDv4YcCh2GGNW299XuMzX0/7f0n68wxiz1v67r8e6JjEe8vqZMabC3m5/oukrFport+bOaccBt9t/x9lYFcxUrMrs/vmswTqGqy5G+zR6MRE5CuuEOsEYUy4is4GNWHf1PHEA4+2KTldRS0PzksBG48pcvl8IxAGjjTE1YjVjbZz+16hy+V5H59iXngOeNMZ8bm8b97mMqwLrAklEauyTC4AT97wbD99bmu/B6Ixl5co0+h3RQtoHgZ+MMWeISA+skyb2/vc91l3ec7EukDDG/FNEZmK9M2mBiBxvn5g7m8ZlsP/3/n1IsC68/uhh2vewXh6cj3U3urnKQmOu+y64748nYV2EnALcKSJDW7HCLcAMY8wdbgNFbmm0X7juM83tI55+g4cyEZGeWNHUscaYArspnus6lzWdTZPhB3scE6z+bC83M89D5bpPC1iVQBGZjPW3my4iTxpj/uNh2gNtawejpe3xt+gLlGJFYVrLoZTRb11Oax5fhwJ5tE6ZNLfP3ezys6Xzd2MHsw8ecF7GmD32DcBJwEdA43Njc8eAQ9H477W/GaenPHrcj+1zj+t8nC6/Wzqne/rtUXPnNDtPZxljNjXK08HMVnk5jTR6twigwN65B2DdfQ0BjhSRKPsgd5ZL+u+A/9v/w7W9uheYC5xut5sPw7qYBKtZ1/6DWUsPsIkAsu0LrSk03JUuAZrrZzYP6yINEemHdTdtUzNp29uPWP3MYgBEJBprHTPt8Zf8xvme5/L/Ivv7wcx3MQ3b2vm/cdkdJVVE9kdVL8CK4PQQkd72MNcLU9eymNZoPq8BzwLL7GgIItLbvhv8KFaUYUAb5L81NC6D+Y3GLwaOkIZ+riH2PgFW1GMUVmTCU//DeVj7brCIhGA1A5wHZAHxIhIjIgHA/r5JDqzm3j9hNTuMwGrW2lpmAWeLSLy9vGgR+TUtBY61pwkCTseKJjfmqUzCsS4Mi+zIxom/Ie8Hexz7Frhsf0sSEem+f32b4el4spCGfflCrL9Zs+wyzDLGvIq1L4xqJun+/ngTgSJjTFFL88WKdrn2QYyi5e2xCWNMIVBoL3P/+uyfXwTWfjsZiJHmn8zZ5mVk33DJEJHT7fQBYvWvnAecJ1Y/wDg7r0tbWtZB2Egzxzk7nzdjNSM/UUTGHeKymtvnskRkoL3Pn/Er5neOiDjsvPfCOi8f1PlaRJLtfXf/tjTRU7pO4tfux56cJla/xRis5szLGo1vqdyanNPsPP2f2LVEERlpD5+Lde5ARIZgNVFVXYxWGr3bN4CviGzAehDCYqwL2oexTigLsCpV+0/K1wFjxOpQ/QtW3zOvYIxZidV842fgaxoOfI8DfxGRVVht9pvzDta6r8XqS7HRnm8eVgRondgPkHDxAuCwp3kfmGYaOtB3KGPMeuAhYI5YzZOfxIoAfigiK4Dc3zjrKLGavl0P3GgPO5j53gDcZE/bh4ZtzhtsAq6196MorGanVwEzxWpKmO2S9l/AI/b25nbn2RizAigG3nQZfIO9ba0BarC23c6ocRm86DrSGJODVUl+116XRdgVYLsJ2ZdYlaAmj+y3993pWMekJcBrxphVdrOvB+zh32Pvk1jNp9+297tVwLP2RX+rsJsL3gV8Z6/L91j9ww7WUuBjrOZXHxvrSZ+I9YqRbvYympSJMeZnrPXZiNWk0WMzSLFeL/BAM8s+qOOYMeY7exmL7LQf0fzNseaOJ/+H1ZRyDVa3h+sPUC5HAT/b+8Z5wDP2+rwm7o/er7TTvARcfoB5AvwD67i0zs7blJa2R7FeKeHpoSWXAs+L1azONSzyFPC8MWaznZ9/erowb8cy+hNWt5M1WJXSRKz+dWuwzn8/YvV/3XeAZdXz8DfAbnHU5DhnVwZex+oLuscuk9dE5De3zGlhn7sda/9YiNVX+GClY+2HXwN/ttflYM/XA4El9t9wDvC4MWbtb1uz1ifW62ZeA/i1+3Ez1mA1S10MPGiaPiW22XJr5pz2IFY/zzUist7+DdY5I9Q+hzyA1fRWdTH7H26huhARCTXGlIoVafwEq3PyJx2dL9W5idXUbcz+Pju/ctpgoMIYY0TkfKyH4pzW2nlsbWI18/nSGDOkFebVDau56gC7n4lXaM0y6OpEZBrWPvLXjs6LNxKrC8Ut+yvaSqm2I1bf2VJjzOO/cXqvPKeptqORxq7pPvtu6jpgB/Bph+ZG/R6MBlbbd5GvwWra9Lsh1gvEl2A9GVFPrkoppbyWntOUJxppVEoppZRSSinVLI00KqWUUkoppZRqllYalVJKKaWUUko1SyuNSimllFJKKaWapZVGpZRSSimllFLN0kqjUkoppZRSSqlmaaVRKaWUUkoppVSz/h+lu77Qr+PDUwAAAABJRU5ErkJggg==\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {
+ "needs_background": "light"
+ },
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Plot a heatmap of the correlation matrix of numerical columns\n",
+ "\n",
+ "plt.figure(figsize=(16, 8))\n",
+ "sns.heatmap(df1[list(numerical_cols)].corr(), annot=True, cmap='Blues', vmin=-1, vmax=1)\n",
+ "plt.title('Correlation Heatmap')\n",
+ "plt.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 20,
+ "id": "96fd6dc3",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no job=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "housemaid",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "retired",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "services",
+ "management",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "services",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "management",
+ "services",
+ "unemployed",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "management",
+ "entrepreneur",
+ "services",
+ "management",
+ "technician",
+ "services",
+ "management",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "management",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "services",
+ "student",
+ "housemaid",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "retired",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "technician",
+ "management",
+ "services",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "services",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "management",
+ "admin.",
+ "services",
+ "technician",
+ "retired",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "services",
+ "management",
+ "admin.",
+ "technician",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "management",
+ "services",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "services",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "management",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "unemployed",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "services",
+ "retired",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "self-employed",
+ "entrepreneur",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "retired",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "management",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "services",
+ "self-employed",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "retired",
+ "housemaid",
+ "entrepreneur",
+ "self-employed",
+ "self-employed",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "retired",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "retired",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "management",
+ "management",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "technician",
+ "management",
+ "services",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "services",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "management",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "services",
+ "housemaid",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "services",
+ "management",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "management",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "management",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "management",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "self-employed",
+ "housemaid",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "services",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "unemployed",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "unemployed",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "student",
+ "student",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "student",
+ "entrepreneur",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "services",
+ "entrepreneur",
+ "unemployed",
+ "unemployed",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "unemployed",
+ "management",
+ "entrepreneur",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "housemaid",
+ "housemaid",
+ "unemployed",
+ "admin.",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "technician",
+ "management",
+ "services",
+ "entrepreneur",
+ "self-employed",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "student",
+ "management",
+ "admin.",
+ "self-employed",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "management",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "technician",
+ "retired",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "unemployed",
+ "services",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "management",
+ "housemaid",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "management",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "unemployed",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "management",
+ "management",
+ "management",
+ "services",
+ "services",
+ "technician",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "services",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "management",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "management",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "management",
+ "entrepreneur",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "retired",
+ "housemaid",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "management",
+ "admin.",
+ "unemployed",
+ "management",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "housemaid",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "management",
+ "blue-collar",
+ "management",
+ "management",
+ "services",
+ "admin.",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "management",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "housemaid",
+ "student",
+ "services",
+ "entrepreneur",
+ "housemaid",
+ "admin.",
+ "unemployed",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "entrepreneur",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "management",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "entrepreneur",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "management",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "housemaid",
+ "entrepreneur",
+ "services",
+ "management",
+ "management",
+ "services",
+ "blue-collar",
+ "technician",
+ "unemployed",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "management",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "retired",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "retired",
+ "services",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "retired",
+ "technician",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "management",
+ "services",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "housemaid",
+ "services",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "management",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "unemployed",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "management",
+ "technician",
+ "services",
+ "self-employed",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "management",
+ "admin.",
+ "retired",
+ "admin.",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "housemaid",
+ "services",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "management",
+ "services",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "management",
+ "admin.",
+ "technician",
+ "management",
+ "services",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "retired",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "admin.",
+ "management",
+ "services",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "unemployed",
+ "retired",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "management",
+ "management",
+ "management",
+ "management",
+ "student",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "admin.",
+ "unemployed",
+ "student",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "technician",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "management",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "unemployed",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "housemaid",
+ "housemaid",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "management",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "management",
+ "housemaid",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "self-employed",
+ "housemaid",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "unemployed",
+ "management",
+ "admin.",
+ "student",
+ "entrepreneur",
+ "entrepreneur",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "student",
+ "retired",
+ "services",
+ "technician",
+ "technician",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "management",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "unemployed",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "unemployed",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "retired",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "management",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "self-employed",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "services",
+ "self-employed",
+ "management",
+ "services",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "services",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "management",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "housemaid",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "services",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "blue-collar",
+ "management",
+ "management",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "management",
+ "management",
+ "admin.",
+ "services",
+ "student",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "housemaid",
+ "housemaid",
+ "self-employed",
+ "housemaid",
+ "management",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "housemaid",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "services",
+ "self-employed",
+ "retired",
+ "blue-collar",
+ "technician",
+ "technician",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "management",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "student",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "self-employed",
+ "services",
+ "management",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "management",
+ "blue-collar",
+ "student",
+ "admin.",
+ "housemaid",
+ "student",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "self-employed",
+ "housemaid",
+ "management",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "services",
+ "retired",
+ "admin.",
+ "self-employed",
+ "housemaid",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "housemaid",
+ "entrepreneur",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "student",
+ "services",
+ "unemployed",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "self-employed",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "technician",
+ "technician",
+ "services",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "management",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "services",
+ "unemployed",
+ "technician",
+ "technician",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "retired",
+ "self-employed",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "services",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "management",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "technician",
+ "unemployed",
+ "entrepreneur",
+ "blue-collar",
+ "retired",
+ "retired",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "management",
+ "blue-collar",
+ "technician",
+ "management",
+ "services",
+ "services",
+ "retired",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "student",
+ "services",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "unemployed",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "housemaid",
+ "housemaid",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "retired",
+ "services",
+ "admin.",
+ "services",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "housemaid",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "technician",
+ "self-employed",
+ "management",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "services",
+ "technician",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "unemployed",
+ "technician",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "housemaid",
+ "services",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "services",
+ "management",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "self-employed",
+ "admin.",
+ "management",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "retired",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "management",
+ "management",
+ "blue-collar",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "management",
+ "services",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "housemaid",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "services",
+ "services",
+ "housemaid",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "housemaid",
+ "technician",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "unemployed",
+ "technician",
+ "technician",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "management",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "technician",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "management",
+ "admin.",
+ "unemployed",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "services",
+ "services",
+ "management",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "housemaid",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "management",
+ "technician",
+ "services",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "housemaid",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "services",
+ "unemployed",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "management",
+ "management",
+ "unemployed",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "management",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "retired",
+ "management",
+ "technician",
+ "technician",
+ "management",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "housemaid",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "management",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "student",
+ "admin.",
+ "self-employed",
+ "management",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "self-employed",
+ "technician",
+ "management",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "management",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "technician",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "technician",
+ "services",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "services",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "technician",
+ "retired",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "self-employed",
+ "services",
+ "retired",
+ "management",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "management",
+ "unemployed",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "management",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "management",
+ "student",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "retired",
+ "blue-collar",
+ "management",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "housemaid",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "student",
+ "blue-collar",
+ "entrepreneur",
+ "housemaid",
+ "entrepreneur",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "blue-collar",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "technician",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "technician",
+ "unemployed",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "services",
+ "management",
+ "unemployed",
+ "services",
+ "technician",
+ "entrepreneur",
+ "services",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "services",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "technician",
+ "services",
+ "services",
+ "technician",
+ "management",
+ "services",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "technician",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "services",
+ "retired",
+ "admin.",
+ "services",
+ "unemployed",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "management",
+ "housemaid",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "services",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "management",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "management",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "self-employed",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "unemployed",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "housemaid",
+ "admin.",
+ "services",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "services",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "management",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "services",
+ "services",
+ "retired",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "housemaid",
+ "management",
+ "management",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "self-employed",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "management",
+ "self-employed",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "retired",
+ "management",
+ "entrepreneur",
+ "technician",
+ "management",
+ "entrepreneur",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "management",
+ "entrepreneur",
+ "retired",
+ "retired",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "retired",
+ "services",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "management",
+ "management",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "services",
+ "entrepreneur",
+ "housemaid",
+ "blue-collar",
+ "management",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "services",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "management",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "retired",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "self-employed",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "management",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "unemployed",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "student",
+ "services",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "management",
+ "services",
+ "self-employed",
+ "services",
+ "technician",
+ "technician",
+ "self-employed",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "self-employed",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "unemployed",
+ "management",
+ "self-employed",
+ "admin.",
+ "technician",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "self-employed",
+ "retired",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "management",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "retired",
+ "services",
+ "self-employed",
+ "housemaid",
+ "services",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "self-employed",
+ "unemployed",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "self-employed",
+ "services",
+ "self-employed",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "entrepreneur",
+ "services",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "services",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "self-employed",
+ "technician",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "self-employed",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "admin.",
+ "self-employed",
+ "services",
+ "technician",
+ "self-employed",
+ "technician",
+ "technician",
+ "services",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "self-employed",
+ "services",
+ "technician",
+ "unemployed",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "retired",
+ "services",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "management",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "management",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "services",
+ "services",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "self-employed",
+ "admin.",
+ "technician",
+ "management",
+ "housemaid",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "services",
+ "housemaid",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "self-employed",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "housemaid",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "services",
+ "housemaid",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "unemployed",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "unemployed",
+ "technician",
+ "blue-collar",
+ "services",
+ "self-employed",
+ "services",
+ "technician",
+ "retired",
+ "admin.",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "self-employed",
+ "services",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "services",
+ "self-employed",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "technician",
+ "services",
+ "management",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "entrepreneur",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "housemaid",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "services",
+ "admin.",
+ "services",
+ "self-employed",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "housemaid",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "retired",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "unemployed",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "entrepreneur",
+ "services",
+ "services",
+ "blue-collar",
+ "housemaid",
+ "unemployed",
+ "technician",
+ "services",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "self-employed",
+ "services",
+ "entrepreneur",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "retired",
+ "management",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "unemployed",
+ "admin.",
+ "unemployed",
+ "self-employed",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "retired",
+ "management",
+ "technician",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "student",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "management",
+ "services",
+ "technician",
+ "unemployed",
+ "self-employed",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "services",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "self-employed",
+ "technician",
+ "services",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "services",
+ "self-employed",
+ "management",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "housemaid",
+ "retired",
+ "technician",
+ "self-employed",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "services",
+ "admin.",
+ "management",
+ "blue-collar",
+ "management",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "student",
+ "services",
+ "retired",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "management",
+ "services",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "housemaid",
+ "student",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "student",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "student",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "retired",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "technician",
+ "admin.",
+ "unemployed",
+ "services",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "technician",
+ "management",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "self-employed",
+ "management",
+ "retired",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "self-employed",
+ "housemaid",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "management",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "housemaid",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "services",
+ "blue-collar",
+ "services",
+ "retired",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "entrepreneur",
+ "unemployed",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "management",
+ "services",
+ "blue-collar",
+ "housemaid",
+ "housemaid",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "services",
+ "admin.",
+ "self-employed",
+ "management",
+ "self-employed",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "retired",
+ "admin.",
+ "services",
+ "self-employed",
+ "unemployed",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "management",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "retired",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "services",
+ "retired",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "housemaid",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "unemployed",
+ "housemaid",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "self-employed",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "services",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "management",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "housemaid",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "admin.",
+ "management",
+ "services",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "retired",
+ "services",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "housemaid",
+ "self-employed",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "management",
+ "technician",
+ "entrepreneur",
+ "retired",
+ "self-employed",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "retired",
+ "technician",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "student",
+ "technician",
+ "technician",
+ "housemaid",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "unemployed",
+ "blue-collar",
+ "technician",
+ "management",
+ "unemployed",
+ "services",
+ "technician",
+ "services",
+ "unemployed",
+ "management",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "management",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "management",
+ "services",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "services",
+ "management",
+ "technician",
+ "management",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "management",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "self-employed",
+ "entrepreneur",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "retired",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "student",
+ "retired",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "student",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "student",
+ "retired",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "unemployed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "management",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "technician",
+ "technician",
+ "services",
+ "services",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "services",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "retired",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "unemployed",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "self-employed",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "technician",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "services",
+ "management",
+ "services",
+ "technician",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "student",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "retired",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "services",
+ "student",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "technician",
+ "self-employed",
+ "services",
+ "unemployed",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "management",
+ "housemaid",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "unemployed",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "management",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "unemployed",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "technician",
+ "technician",
+ "admin.",
+ "self-employed",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "technician",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "self-employed",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "unemployed",
+ "admin.",
+ "services",
+ "management",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "unemployed",
+ "student",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "management",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "housemaid",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "management",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "self-employed",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "management",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "unemployed",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "services",
+ "technician",
+ "housemaid",
+ "services",
+ "student",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "management",
+ "management",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "self-employed",
+ "technician",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "retired",
+ "services",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "management",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "services",
+ "management",
+ "blue-collar",
+ "technician",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "management",
+ "admin.",
+ "retired",
+ "technician",
+ "retired",
+ "admin.",
+ "student",
+ "admin.",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "student",
+ "technician",
+ "retired",
+ "management",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "admin.",
+ "services",
+ "retired",
+ "services",
+ "admin.",
+ "technician",
+ "unemployed",
+ "technician",
+ "management",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "services",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "technician",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "retired",
+ "unemployed",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "services",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "self-employed",
+ "management",
+ "management",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "services",
+ "management",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "retired",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "housemaid",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "services",
+ "unemployed",
+ "management",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "management",
+ "blue-collar",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "management",
+ "management",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "retired",
+ "services",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "management",
+ "services",
+ "admin.",
+ "retired",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "student",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "management",
+ "unemployed",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "unemployed",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "retired",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "housemaid",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "services",
+ "management",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "blue-collar",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "retired",
+ "retired",
+ "services",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "retired",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "retired",
+ "admin.",
+ "self-employed",
+ "management",
+ "retired",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "services",
+ "services",
+ "unemployed",
+ "services",
+ "services",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "student",
+ "services",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "retired",
+ "self-employed",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "admin.",
+ "management",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "services",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "services",
+ "management",
+ "blue-collar",
+ "admin.",
+ "services",
+ "retired",
+ "services",
+ "unemployed",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "services",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "services",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "management",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "housemaid",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "management",
+ "admin.",
+ "unemployed",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "retired",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "management",
+ "housemaid",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "self-employed",
+ "retired",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "unemployed",
+ "services",
+ "services",
+ "management",
+ "admin.",
+ "services",
+ "self-employed",
+ "services",
+ "services",
+ "management",
+ "entrepreneur",
+ "housemaid",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "retired",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "blue-collar",
+ "management",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "housemaid",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "management",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "self-employed",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "services",
+ "self-employed",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "unemployed",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "services",
+ "admin.",
+ "unemployed",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "services",
+ "housemaid",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "management",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "retired",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "services",
+ "services",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "management",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "unemployed",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "unemployed",
+ "technician",
+ "housemaid",
+ "housemaid",
+ "services",
+ "services",
+ "services",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "services",
+ "services",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "management",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "management",
+ "technician",
+ "admin.",
+ "management",
+ "management",
+ "management",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "technician",
+ "management",
+ "services",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "unemployed",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "technician",
+ "retired",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "services",
+ "management",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "housemaid",
+ "housemaid",
+ "housemaid",
+ "housemaid",
+ "housemaid",
+ "housemaid",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "management",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "management",
+ "management",
+ "management",
+ "housemaid",
+ "management",
+ "blue-collar",
+ "management",
+ "services",
+ "blue-collar",
+ "management",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "services",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "services",
+ "housemaid",
+ "management",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "entrepreneur",
+ "entrepreneur",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "self-employed",
+ "services",
+ "technician",
+ "self-employed",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "housemaid",
+ "self-employed",
+ "services",
+ "technician",
+ "housemaid",
+ "services",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "retired",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "retired",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "housemaid",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "retired",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "admin.",
+ "student",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "student",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "student",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "management",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "entrepreneur",
+ "services",
+ "self-employed",
+ "management",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "student",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "student",
+ "student",
+ "student",
+ "services",
+ "student",
+ "management",
+ "student",
+ "retired",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "housemaid",
+ "services",
+ "housemaid",
+ "management",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "retired",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "technician",
+ "management",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "unemployed",
+ "technician",
+ "technician",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "student",
+ "services",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "unemployed",
+ "housemaid",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "self-employed",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "entrepreneur",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "housemaid",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "services",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "student",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "self-employed",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "technician",
+ "services",
+ "management",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "management",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "management",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "student",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "services",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "management",
+ "housemaid",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "technician",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "unemployed",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "management",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "student",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "housemaid",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "management",
+ "management",
+ "technician",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "self-employed",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "services",
+ "unemployed",
+ "management",
+ "services",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "retired",
+ "services",
+ "services",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "housemaid",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "student",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "services",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "management",
+ "retired",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "services",
+ "self-employed",
+ "services",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "student",
+ "admin.",
+ "student",
+ "blue-collar",
+ "technician",
+ "student",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "unemployed",
+ "technician",
+ "housemaid",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "technician",
+ "unemployed",
+ "housemaid",
+ "housemaid",
+ "unemployed",
+ "management",
+ "management",
+ "entrepreneur",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "retired",
+ "retired",
+ "retired",
+ "technician",
+ "self-employed",
+ "student",
+ "student",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "student",
+ "technician",
+ "technician",
+ "self-employed",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "management",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "unemployed",
+ "housemaid",
+ "management",
+ "housemaid",
+ "services",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "self-employed",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "services",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "entrepreneur",
+ "self-employed",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "management",
+ "management",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "retired",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "management",
+ "management",
+ "entrepreneur",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "student",
+ "entrepreneur",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "retired",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "services",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "student",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "technician",
+ "management",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "student",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "management",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "housemaid",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "services",
+ "management",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "technician",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "student",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "retired",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "management",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "services",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "unemployed",
+ "unemployed",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "services",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "retired",
+ "services",
+ "retired",
+ "retired",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "self-employed",
+ "self-employed",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "retired",
+ "blue-collar",
+ "entrepreneur",
+ "unemployed",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "technician",
+ "management",
+ "entrepreneur",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "management",
+ "retired",
+ "management",
+ "management",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "technician",
+ "services",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "management",
+ "management",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "student",
+ "technician",
+ "housemaid",
+ "housemaid",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "technician",
+ "blue-collar",
+ "management",
+ "services",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "technician",
+ "services",
+ "entrepreneur",
+ "entrepreneur",
+ "entrepreneur",
+ "self-employed",
+ "retired",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "management",
+ "technician",
+ "management",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "housemaid",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "services",
+ "management",
+ "student",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "management",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "management",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "management",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "entrepreneur",
+ "services",
+ "technician",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "entrepreneur",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "technician",
+ "management",
+ "technician",
+ "self-employed",
+ "services",
+ "self-employed",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "retired",
+ "services",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "entrepreneur",
+ "housemaid",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "management",
+ "entrepreneur",
+ "services",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "admin.",
+ "self-employed",
+ "retired",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "unemployed",
+ "technician",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "unemployed",
+ "entrepreneur",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "management",
+ "entrepreneur",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "technician",
+ "unemployed",
+ "technician",
+ "retired",
+ "technician",
+ "technician",
+ "self-employed",
+ "technician",
+ "management",
+ "technician",
+ "self-employed",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "entrepreneur",
+ "services",
+ "services",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "retired",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "retired",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "retired",
+ "management",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "retired",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "services",
+ "management",
+ "admin.",
+ "unemployed",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "technician",
+ "retired",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "management",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "retired",
+ "retired",
+ "admin.",
+ "unemployed",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "self-employed",
+ "management",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "management",
+ "services",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "management",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "management",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "management",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "unemployed",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "management",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "housemaid",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "housemaid",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "services",
+ "services",
+ "technician",
+ "housemaid",
+ "admin.",
+ "services",
+ "unemployed",
+ "retired",
+ "services",
+ "blue-collar",
+ "housemaid",
+ "self-employed",
+ "blue-collar",
+ "retired",
+ "retired",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "housemaid",
+ "housemaid",
+ "services",
+ "unemployed",
+ "admin.",
+ "retired",
+ "admin.",
+ "services",
+ "self-employed",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "technician",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "retired",
+ "blue-collar",
+ "retired",
+ "self-employed",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "housemaid",
+ "entrepreneur",
+ "retired",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "entrepreneur",
+ "services",
+ "services",
+ "services",
+ "services",
+ "housemaid",
+ "blue-collar",
+ "retired",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "retired",
+ "blue-collar",
+ "services",
+ "admin.",
+ "student",
+ "blue-collar",
+ "admin.",
+ "student",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "services",
+ "services",
+ "admin.",
+ "technician",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "housemaid",
+ "housemaid",
+ "retired",
+ "retired",
+ "admin.",
+ "services",
+ "admin.",
+ "housemaid",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "retired",
+ "management",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "management",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "services",
+ "management",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "housemaid",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "services",
+ "management",
+ "self-employed",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "entrepreneur",
+ "self-employed",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "unemployed",
+ "management",
+ "unemployed",
+ "unemployed",
+ "services",
+ "admin.",
+ "management",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "services",
+ "student",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "services",
+ "technician",
+ "management",
+ "blue-collar",
+ "student",
+ "services",
+ "housemaid",
+ "blue-collar",
+ "student",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "student",
+ "technician",
+ "housemaid",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "self-employed",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "self-employed",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "unemployed",
+ "housemaid",
+ "retired",
+ "admin.",
+ "retired",
+ "unemployed",
+ "services",
+ "blue-collar",
+ "technician",
+ "management",
+ "self-employed",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "services",
+ "services",
+ "technician",
+ "management",
+ "retired",
+ "blue-collar",
+ "management",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "student",
+ "services",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "self-employed",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "management",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "retired",
+ "self-employed",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "unemployed",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "retired",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "management",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "student",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "self-employed",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "housemaid",
+ "entrepreneur",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "technician",
+ "services",
+ "management",
+ "management",
+ "admin.",
+ "technician",
+ "management",
+ "management",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "management",
+ "unemployed",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "self-employed",
+ "services",
+ "self-employed",
+ "services",
+ "self-employed",
+ "admin.",
+ "self-employed",
+ "technician",
+ "technician",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "management",
+ "services",
+ "services",
+ "housemaid",
+ "housemaid",
+ "services",
+ "management",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "services",
+ "services",
+ "management",
+ "self-employed",
+ "technician",
+ "admin.",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "management",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "self-employed",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "retired",
+ "technician",
+ "unemployed",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "student",
+ "retired",
+ "self-employed",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "housemaid",
+ "management",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "student",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "retired",
+ "technician",
+ "retired",
+ "admin.",
+ "housemaid",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "technician",
+ "housemaid",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "technician",
+ "technician",
+ "retired",
+ "admin.",
+ "technician",
+ "retired",
+ "technician",
+ "technician",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "housemaid",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "retired",
+ "unemployed",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "retired",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "housemaid",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "housemaid",
+ "technician",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "housemaid",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "management",
+ "management",
+ "technician",
+ "self-employed",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "retired",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "retired",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "admin.",
+ "management",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "retired",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "self-employed",
+ "technician",
+ "management",
+ "housemaid",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "student",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "student",
+ "self-employed",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "technician",
+ "technician",
+ "technician",
+ "housemaid",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "technician",
+ "technician",
+ "admin.",
+ "housemaid",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "management",
+ "self-employed",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "technician",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "retired",
+ "admin.",
+ "self-employed",
+ "housemaid",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "management",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "housemaid",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "unemployed",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "technician",
+ "management",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "self-employed",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "self-employed",
+ "technician",
+ "retired",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "retired",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "management",
+ "retired",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "housemaid",
+ "technician",
+ "management",
+ "technician",
+ "self-employed",
+ "admin.",
+ "housemaid",
+ "housemaid",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "retired",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "management",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "blue-collar",
+ "housemaid",
+ "management",
+ "admin.",
+ "self-employed",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "management",
+ "retired",
+ "technician",
+ "retired",
+ "management",
+ "housemaid",
+ "housemaid",
+ "housemaid",
+ "housemaid",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "unemployed",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "technician",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "unemployed",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "self-employed",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "technician",
+ "admin.",
+ "management",
+ "self-employed",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "retired",
+ "technician",
+ "technician",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "technician",
+ "housemaid",
+ "services",
+ "management",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "management",
+ "self-employed",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "retired",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "management",
+ "housemaid",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "self-employed",
+ "technician",
+ "technician",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "retired",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "technician",
+ "housemaid",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "housemaid",
+ "self-employed",
+ "technician",
+ "management",
+ "technician",
+ "management",
+ "housemaid",
+ "self-employed",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "management",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "unemployed",
+ "technician",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "self-employed",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "unemployed",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "self-employed",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "self-employed",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "unemployed",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "retired",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "unemployed",
+ "self-employed",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "self-employed",
+ "admin.",
+ "technician",
+ "housemaid",
+ "admin.",
+ "management",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "management",
+ "management",
+ "management",
+ "management",
+ "management",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "management",
+ "technician",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "unemployed",
+ "unemployed",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "blue-collar",
+ "management",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "unemployed",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "unemployed",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "technician",
+ "retired",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "technician",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "blue-collar",
+ "management",
+ "services",
+ "self-employed",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "housemaid",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "self-employed",
+ "technician",
+ "self-employed",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "self-employed",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "unemployed",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "unemployed",
+ "technician",
+ "admin.",
+ "retired",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "technician",
+ "admin.",
+ "housemaid",
+ "technician",
+ "technician",
+ "self-employed",
+ "technician",
+ "self-employed",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "self-employed",
+ "services",
+ "technician",
+ "technician",
+ "self-employed",
+ "technician",
+ "self-employed",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "housemaid",
+ "technician",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "housemaid",
+ "admin.",
+ "housemaid",
+ "housemaid",
+ "unemployed",
+ "self-employed",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "retired",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "self-employed",
+ "admin.",
+ "technician",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "housemaid",
+ "self-employed",
+ "management",
+ "technician",
+ "admin.",
+ "housemaid",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "housemaid",
+ "technician",
+ "unemployed",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "housemaid",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "housemaid",
+ "housemaid",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "technician",
+ "retired",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "self-employed",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "housemaid",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "self-employed",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "unemployed",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "technician",
+ "management",
+ "entrepreneur",
+ "self-employed",
+ "admin.",
+ "self-employed",
+ "management",
+ "technician",
+ "self-employed",
+ "technician",
+ "technician",
+ "housemaid",
+ "housemaid",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "unemployed",
+ "technician",
+ "management",
+ "self-employed",
+ "housemaid",
+ "technician",
+ "housemaid",
+ "housemaid",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "housemaid",
+ "services",
+ "admin.",
+ "technician",
+ "housemaid",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "housemaid",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "self-employed",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "retired",
+ "housemaid",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "technician",
+ "housemaid",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "management",
+ "unemployed",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "housemaid",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "housemaid",
+ "housemaid",
+ "retired",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "self-employed",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "housemaid",
+ "admin.",
+ "housemaid",
+ "technician",
+ "retired",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "housemaid",
+ "management",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "retired",
+ "technician",
+ "management",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "management",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "housemaid",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "housemaid",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "self-employed",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "self-employed",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "housemaid",
+ "self-employed",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "housemaid",
+ "technician",
+ "technician",
+ "technician",
+ "retired",
+ "admin.",
+ "unemployed",
+ "services",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "retired",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "unemployed",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "management",
+ "management",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "housemaid",
+ "retired",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "technician",
+ "management",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "retired",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "retired",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "housemaid",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "housemaid",
+ "admin.",
+ "management",
+ "retired",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "retired",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "technician",
+ "technician",
+ "unemployed",
+ "housemaid",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "unemployed",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "self-employed",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "housemaid",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "unemployed",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "self-employed",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "retired",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "self-employed",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "unemployed",
+ "unemployed",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "housemaid",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "unemployed",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "unemployed",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "retired",
+ "technician",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "technician",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "retired",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "retired",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "student",
+ "management",
+ "technician",
+ "management",
+ "services",
+ "admin.",
+ "technician",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "student",
+ "self-employed",
+ "student",
+ "self-employed",
+ "admin.",
+ "management",
+ "management",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "technician",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "management",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "retired",
+ "services",
+ "management",
+ "management",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "unemployed",
+ "unemployed",
+ "unemployed",
+ "unemployed",
+ "unemployed",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "unemployed",
+ "services",
+ "technician",
+ "admin.",
+ "management",
+ "management",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "services",
+ "blue-collar",
+ "management",
+ "admin.",
+ "self-employed",
+ "management",
+ "unemployed",
+ "management",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "management",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "management",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "unemployed",
+ "self-employed",
+ "unemployed",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "entrepreneur",
+ "management",
+ "technician",
+ "admin.",
+ "management",
+ "retired",
+ "management",
+ "admin.",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "housemaid",
+ "housemaid",
+ "unemployed",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "housemaid",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "unemployed",
+ "management",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "self-employed",
+ "services",
+ "unemployed",
+ "management",
+ "management",
+ "services",
+ "management",
+ "management",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "management",
+ "unemployed",
+ "management",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "management",
+ "management",
+ "services",
+ "management",
+ "unemployed",
+ "technician",
+ "entrepreneur",
+ "entrepreneur",
+ "management",
+ "management",
+ "management",
+ "self-employed",
+ "self-employed",
+ "management",
+ "management",
+ "retired",
+ "retired",
+ "blue-collar",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "management",
+ "admin.",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "management",
+ "management",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "management",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "technician",
+ "technician",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "self-employed",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "management",
+ "housemaid",
+ "technician",
+ "management",
+ "management",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "management",
+ "admin.",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "services",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "technician",
+ "management",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "retired",
+ "admin.",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "self-employed",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "management",
+ "management",
+ "management",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "management",
+ "blue-collar",
+ "management",
+ "management",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "services",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "self-employed",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "retired",
+ "management",
+ "retired",
+ "entrepreneur",
+ "technician",
+ "unemployed",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "management",
+ "management",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "retired",
+ "admin.",
+ "services",
+ "unemployed",
+ "self-employed",
+ "unemployed",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "management",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "services",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "self-employed",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "housemaid",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "management",
+ "management",
+ "housemaid",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "services",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "services",
+ "services",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "unemployed",
+ "unemployed",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "services",
+ "management",
+ "admin.",
+ "housemaid",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "admin.",
+ "services",
+ "blue-collar",
+ "retired",
+ "technician",
+ "retired",
+ "services",
+ "services",
+ "self-employed",
+ "admin.",
+ "unemployed",
+ "services",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "management",
+ "self-employed",
+ "entrepreneur",
+ "management",
+ "technician",
+ "management",
+ "entrepreneur",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "services",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "technician",
+ "technician",
+ "self-employed",
+ "management",
+ "management",
+ "services",
+ "management",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "management",
+ "housemaid",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "retired",
+ "services",
+ "technician",
+ "technician",
+ "self-employed",
+ "technician",
+ "management",
+ "management",
+ "management",
+ "management",
+ "admin.",
+ "services",
+ "retired",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "retired",
+ "admin.",
+ "technician",
+ "management",
+ "services",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "management",
+ "services",
+ "management",
+ "entrepreneur",
+ "services",
+ "management",
+ "management",
+ "services",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "unemployed",
+ "services",
+ "management",
+ "management",
+ "management",
+ "services",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "technician",
+ "management",
+ "services",
+ "technician",
+ "admin.",
+ "services",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "self-employed",
+ "entrepreneur",
+ "entrepreneur",
+ "technician",
+ "unemployed",
+ "entrepreneur",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "self-employed",
+ "self-employed",
+ "entrepreneur",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "services",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "management",
+ "management",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "management",
+ "blue-collar",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "self-employed",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "management",
+ "management",
+ "admin.",
+ "services",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "management",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "unemployed",
+ "management",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "unemployed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "self-employed",
+ "technician",
+ "entrepreneur",
+ "housemaid",
+ "admin.",
+ "management",
+ "self-employed",
+ "technician",
+ "management",
+ "management",
+ "services",
+ "management",
+ "blue-collar",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "management",
+ "management",
+ "unemployed",
+ "entrepreneur",
+ "management",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "management",
+ "entrepreneur",
+ "housemaid",
+ "housemaid",
+ "technician",
+ "self-employed",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "management",
+ "management",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "self-employed",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "housemaid",
+ "entrepreneur",
+ "admin.",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "admin.",
+ "housemaid",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "management",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "services",
+ "blue-collar",
+ "admin.",
+ "management",
+ "retired",
+ "management",
+ "services",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "management",
+ "management",
+ "admin.",
+ "services",
+ "unemployed",
+ "admin.",
+ "technician",
+ "unemployed",
+ "admin.",
+ "management",
+ "admin.",
+ "self-employed",
+ "unemployed",
+ "management",
+ "self-employed",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "management",
+ "management",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "housemaid",
+ "management",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "student",
+ "management",
+ "admin.",
+ "management",
+ "unemployed",
+ "management",
+ "admin.",
+ "services",
+ "unemployed",
+ "unemployed",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "unemployed",
+ "services",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "management",
+ "management",
+ "management",
+ "management",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "self-employed",
+ "management",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "services",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "self-employed",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "management",
+ "retired",
+ "housemaid",
+ "housemaid",
+ "unemployed",
+ "management",
+ "retired",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "technician",
+ "services",
+ "student",
+ "blue-collar",
+ "student",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "technician",
+ "management",
+ "admin.",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "self-employed",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "management",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "management",
+ "entrepreneur",
+ "services",
+ "entrepreneur",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "housemaid",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "management",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "management",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "management",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "technician",
+ "admin.",
+ "management",
+ "management",
+ "management",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "technician",
+ "self-employed",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "management",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "management",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "management",
+ "self-employed",
+ "entrepreneur",
+ "services",
+ "housemaid",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "self-employed",
+ "entrepreneur",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "management",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "management",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "management",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "management",
+ "admin.",
+ "management",
+ "management",
+ "housemaid",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "entrepreneur",
+ "management",
+ "services",
+ "blue-collar",
+ "management",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "management",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "entrepreneur",
+ "entrepreneur",
+ "blue-collar",
+ "housemaid",
+ "management",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "unemployed",
+ "entrepreneur",
+ "services",
+ "unemployed",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "management",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "unemployed",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "unemployed",
+ "management",
+ "management",
+ "management",
+ "management",
+ "unemployed",
+ "technician",
+ "management",
+ "blue-collar",
+ "self-employed",
+ "entrepreneur",
+ "unemployed",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "retired",
+ "management",
+ "services",
+ "entrepreneur",
+ "services",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "housemaid",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "management",
+ "management",
+ "housemaid",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "housemaid",
+ "services",
+ "technician",
+ "entrepreneur",
+ "entrepreneur",
+ "unemployed",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "management",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "retired",
+ "management",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "management",
+ "services",
+ "management",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "unemployed",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "management",
+ "unemployed",
+ "admin.",
+ "self-employed",
+ "unemployed",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "entrepreneur",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "self-employed",
+ "management",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "unemployed",
+ "management",
+ "admin.",
+ "services",
+ "student",
+ "self-employed",
+ "self-employed",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "self-employed",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "retired",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "technician",
+ "management",
+ "management",
+ "management",
+ "self-employed",
+ "management",
+ "entrepreneur",
+ "entrepreneur",
+ "management",
+ "services",
+ "entrepreneur",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "management",
+ "management",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "management",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "retired",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "unemployed",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "services",
+ "management",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "housemaid",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "technician",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "services",
+ "technician",
+ "management",
+ "services",
+ "services",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "technician",
+ "unemployed",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "management",
+ "student",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "blue-collar",
+ "retired",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "management",
+ "services",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "services",
+ "student",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "self-employed",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "self-employed",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "self-employed",
+ "entrepreneur",
+ "services",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "unemployed",
+ "self-employed",
+ "management",
+ "self-employed",
+ "technician",
+ "services",
+ "self-employed",
+ "unemployed",
+ "blue-collar",
+ "services",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "management",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "management",
+ "management",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "management",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "technician",
+ "management",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "self-employed",
+ "services",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "management",
+ "blue-collar",
+ "management",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "management",
+ "services",
+ "technician",
+ "unemployed",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "services",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "management",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "management",
+ "retired",
+ "management",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "management",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "self-employed",
+ "services",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "unemployed",
+ "technician",
+ "management",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "entrepreneur",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "self-employed",
+ "technician",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "retired",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "housemaid",
+ "technician",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "unemployed",
+ "unemployed",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "management",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "management",
+ "services",
+ "management",
+ "unemployed",
+ "admin.",
+ "services",
+ "technician",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "retired",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "management",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "student",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "management",
+ "admin.",
+ "unemployed",
+ "services",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "self-employed",
+ "technician",
+ "services",
+ "self-employed",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "management",
+ "management",
+ "self-employed",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "student",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "technician",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "student",
+ "unemployed",
+ "housemaid",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "management",
+ "management",
+ "admin.",
+ "management",
+ "technician",
+ "management",
+ "technician",
+ "management",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "management",
+ "technician",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "retired",
+ "self-employed",
+ "student",
+ "admin.",
+ "management",
+ "management",
+ "self-employed",
+ "technician",
+ "housemaid",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "retired",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "unemployed",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "unemployed",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "self-employed",
+ "entrepreneur",
+ "retired",
+ "self-employed",
+ "unemployed",
+ "self-employed",
+ "management",
+ "management",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "technician",
+ "self-employed",
+ "technician",
+ "unemployed",
+ "admin.",
+ "services",
+ "self-employed",
+ "admin.",
+ "retired",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "management",
+ "technician",
+ "self-employed",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "unemployed",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "student",
+ "student",
+ "management",
+ "student",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "student",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "management",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "retired",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "retired",
+ "management",
+ "management",
+ "management",
+ "management",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "student",
+ "management",
+ "blue-collar",
+ "student",
+ "management",
+ "self-employed",
+ "retired",
+ "self-employed",
+ "self-employed",
+ "self-employed",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "retired",
+ "self-employed",
+ "student",
+ "self-employed",
+ "self-employed",
+ "unemployed",
+ "retired",
+ "retired",
+ "technician",
+ "retired",
+ "technician",
+ "technician",
+ "retired",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "retired",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "retired",
+ "management",
+ "housemaid",
+ "technician",
+ "management",
+ "admin.",
+ "student",
+ "management",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "student",
+ "housemaid",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "admin.",
+ "management",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "housemaid",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "entrepreneur",
+ "services",
+ "services",
+ "blue-collar",
+ "retired",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "management",
+ "management",
+ "technician",
+ "technician",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "services",
+ "entrepreneur",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "management",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "retired",
+ "retired",
+ "admin.",
+ "management",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "student",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "student",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "student",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "retired",
+ "technician",
+ "blue-collar",
+ "technician",
+ "management",
+ "student",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "unemployed",
+ "retired",
+ "student",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "technician",
+ "services",
+ "services",
+ "technician",
+ "technician",
+ "housemaid",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "unemployed",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "management",
+ "housemaid",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "management",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "technician",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "management",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "technician",
+ "technician",
+ "services",
+ "retired",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "self-employed",
+ "self-employed",
+ "services",
+ "admin.",
+ "self-employed",
+ "technician",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "retired",
+ "technician",
+ "self-employed",
+ "entrepreneur",
+ "services",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "services",
+ "admin.",
+ "unemployed",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "services",
+ "services",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "student",
+ "self-employed",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "management",
+ "unemployed",
+ "self-employed",
+ "retired",
+ "management",
+ "management",
+ "management",
+ "retired",
+ "retired",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "unemployed",
+ "housemaid",
+ "retired",
+ "unemployed",
+ "technician",
+ "admin.",
+ "retired",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "student",
+ "student",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "technician",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "management",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "student",
+ "entrepreneur",
+ "student",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "student",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "admin.",
+ "management",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "entrepreneur",
+ "services",
+ "technician",
+ "management",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "student",
+ "management",
+ "entrepreneur",
+ "services",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "services",
+ "student",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "technician",
+ "blue-collar",
+ "management",
+ "services",
+ "entrepreneur",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "retired",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "management",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "management",
+ "services",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "technician",
+ "management",
+ "technician",
+ "blue-collar",
+ "technician",
+ "management",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "management",
+ "technician",
+ "technician",
+ "management",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "self-employed",
+ "admin.",
+ "management",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "student",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "housemaid",
+ "services",
+ "technician",
+ "self-employed",
+ "management",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "unemployed",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "housemaid",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "services",
+ "management",
+ "management",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "unemployed",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "student",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "management",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "self-employed",
+ "student",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "self-employed",
+ "retired",
+ "technician",
+ "blue-collar",
+ "services",
+ "self-employed",
+ "technician",
+ "retired",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "student",
+ "services",
+ "admin.",
+ "management",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "student",
+ "blue-collar",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "technician",
+ "technician",
+ "blue-collar",
+ "retired",
+ "management",
+ "management",
+ "technician",
+ "services",
+ "management",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "services",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "management",
+ "technician",
+ "management",
+ "retired",
+ "management",
+ "management",
+ "blue-collar",
+ "services",
+ "management",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "management",
+ "services",
+ "self-employed",
+ "management",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "services",
+ "retired",
+ "student",
+ "technician",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "self-employed",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "self-employed",
+ "services",
+ "services",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "services",
+ "services",
+ "entrepreneur",
+ "services",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "student",
+ "management",
+ "management",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "self-employed",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "student",
+ "services",
+ "management",
+ "technician",
+ "services",
+ "management",
+ "services",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "self-employed",
+ "retired",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "admin.",
+ "student",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "student",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "retired",
+ "retired",
+ "admin.",
+ "management",
+ "technician",
+ "retired",
+ "retired",
+ "retired",
+ "technician",
+ "self-employed",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "technician",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "retired",
+ "technician",
+ "student",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "student",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "retired",
+ "retired",
+ "retired",
+ "services",
+ "retired",
+ "management",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "self-employed",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "retired",
+ "services",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "retired",
+ "services",
+ "technician",
+ "management",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "retired",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "retired",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "housemaid",
+ "technician",
+ "housemaid",
+ "self-employed",
+ "student",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "management",
+ "retired",
+ "admin.",
+ "management",
+ "management",
+ "student",
+ "retired",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "entrepreneur",
+ "entrepreneur",
+ "entrepreneur",
+ "entrepreneur",
+ "entrepreneur",
+ "entrepreneur",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "management",
+ "management",
+ "unemployed",
+ "student",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "student",
+ "unemployed",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "student",
+ "admin.",
+ "entrepreneur",
+ "retired",
+ "management",
+ "admin.",
+ "retired",
+ "retired",
+ "admin.",
+ "retired",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "student",
+ "student",
+ "admin.",
+ "student",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "student",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "services",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "retired",
+ "technician",
+ "student",
+ "student",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "student",
+ "retired",
+ "admin.",
+ "admin.",
+ "student",
+ "unemployed",
+ "retired",
+ "retired",
+ "management",
+ "entrepreneur",
+ "retired",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "student",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "retired",
+ "student",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "management",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "management",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "services",
+ "technician",
+ "housemaid",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "retired",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "technician",
+ "blue-collar",
+ "services",
+ "student",
+ "services",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "unemployed",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "unemployed",
+ "self-employed",
+ "self-employed",
+ "management",
+ "unemployed",
+ "housemaid",
+ "admin.",
+ "technician",
+ "management",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "services",
+ "retired",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "management",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "services",
+ "blue-collar",
+ "retired",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "entrepreneur",
+ "entrepreneur",
+ "services",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "management",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "management",
+ "retired",
+ "management",
+ "blue-collar",
+ "services",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "services",
+ "management",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "entrepreneur",
+ "entrepreneur",
+ "services",
+ "management",
+ "technician",
+ "management",
+ "services",
+ "management",
+ "management",
+ "management",
+ "management",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "management",
+ "services",
+ "services",
+ "technician",
+ "management",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "services",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "student",
+ "services",
+ "technician",
+ "services",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "unemployed",
+ "technician",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "self-employed",
+ "management",
+ "housemaid",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "retired",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "student",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "management",
+ "management",
+ "technician",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "self-employed",
+ "entrepreneur",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "unemployed",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "services",
+ "technician",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "retired",
+ "retired",
+ "retired",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "management",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "management",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "self-employed",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "student",
+ "management",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "services",
+ "management",
+ "management",
+ "admin.",
+ "management",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "services",
+ "services",
+ "technician",
+ "admin.",
+ "student",
+ "management",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "management",
+ "services",
+ "technician",
+ "services",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "unemployed",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "management",
+ "management",
+ "management",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "blue-collar",
+ "management",
+ "technician",
+ "admin.",
+ "management",
+ "management",
+ "management",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "unemployed",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "management",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "student",
+ "student",
+ "services",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "management",
+ "services",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "retired",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "services",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "admin.",
+ "student",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "management",
+ "blue-collar",
+ "student",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "student",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "student",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "services",
+ "management",
+ "management",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "student",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "management",
+ "management",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "management",
+ "admin.",
+ "services",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "services",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "unemployed",
+ "blue-collar",
+ "technician",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "student",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "entrepreneur",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "management",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "unemployed",
+ "blue-collar",
+ "services",
+ "unemployed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "management",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "services",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "student",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "management",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "self-employed",
+ "management",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "management",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "housemaid",
+ "housemaid",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "services",
+ "student",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "services",
+ "self-employed",
+ "self-employed",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "housemaid",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "services",
+ "self-employed",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "student",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "retired",
+ "services",
+ "management",
+ "services",
+ "blue-collar",
+ "services",
+ "services",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "student",
+ "admin.",
+ "admin.",
+ "student",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "services",
+ "management",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "self-employed",
+ "services",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "student",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "student",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "self-employed",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "student",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "self-employed",
+ "unemployed",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "student",
+ "services",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "management",
+ "housemaid",
+ "admin.",
+ "management",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "services",
+ "admin.",
+ "management",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "services",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "student",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "student",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "services",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "management",
+ "services",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "management",
+ "management",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "services",
+ "services",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "technician",
+ "blue-collar",
+ "services",
+ "housemaid",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "retired",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "services",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "management",
+ "retired",
+ "student",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "student",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "housemaid",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "services",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "student",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "student",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "management",
+ "services",
+ "self-employed",
+ "management",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "management",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "housemaid",
+ "admin.",
+ "management",
+ "services",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "technician",
+ "services",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "services",
+ "entrepreneur",
+ "student",
+ "self-employed",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "student",
+ "services",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "services",
+ "student",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "student",
+ "services",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "management",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "student",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "student",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "student",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "student",
+ "admin.",
+ "services",
+ "blue-collar",
+ "management",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "management",
+ "self-employed",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "retired",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "student",
+ "retired",
+ "management",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "management",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "unemployed",
+ "self-employed",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "retired",
+ "management",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "unemployed",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "unemployed",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "retired",
+ "retired",
+ "services",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "self-employed",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "services",
+ "management",
+ "services",
+ "management",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "student",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "services",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "technician",
+ "services",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "services",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "services",
+ "management",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "retired",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "self-employed",
+ "management",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "student",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "self-employed",
+ "management",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "services",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "student",
+ "unemployed",
+ "housemaid",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "student",
+ "services",
+ "housemaid",
+ "services",
+ "retired",
+ "services",
+ "technician",
+ "housemaid",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "student",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "student",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "blue-collar",
+ "services",
+ "management",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "student",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "management",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "student",
+ "services",
+ "unemployed",
+ "technician",
+ "services",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "services",
+ "technician",
+ "unemployed",
+ "unemployed",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "management",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "services",
+ "management",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "unemployed",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "student",
+ "management",
+ "services",
+ "management",
+ "management",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "management",
+ "housemaid",
+ "retired",
+ "student",
+ "technician",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "student",
+ "services",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "student",
+ "self-employed",
+ "services",
+ "admin.",
+ "blue-collar",
+ "services",
+ "management",
+ "blue-collar",
+ "student",
+ "technician",
+ "management",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "unemployed",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "services",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "student",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "student",
+ "technician",
+ "admin.",
+ "unemployed",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "management",
+ "services",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "management",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "student",
+ "technician",
+ "technician",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "housemaid",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "retired",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "self-employed",
+ "unemployed",
+ "student",
+ "self-employed",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "retired",
+ "self-employed",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "retired",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "entrepreneur",
+ "technician",
+ "self-employed",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "student",
+ "admin.",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "self-employed",
+ "student",
+ "self-employed",
+ "admin.",
+ "services",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "student",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "management",
+ "student",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "student",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "student",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "retired",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "student",
+ "student",
+ "student",
+ "management",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "student",
+ "unemployed",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "student",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "services",
+ "technician",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "student",
+ "services",
+ "housemaid",
+ "technician",
+ "management",
+ "management",
+ "management",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "retired",
+ "technician",
+ "management",
+ "retired",
+ "management",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "retired",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "retired",
+ "admin.",
+ "services",
+ "admin.",
+ "management",
+ "technician",
+ "retired",
+ "unemployed",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "admin.",
+ "services",
+ "student",
+ "student",
+ "self-employed",
+ "services",
+ "services",
+ "self-employed",
+ "management",
+ "unemployed",
+ "retired",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "management",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "management",
+ "services",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "retired",
+ "technician",
+ "management",
+ "retired",
+ "technician",
+ "admin.",
+ "retired",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "student",
+ "services",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "admin.",
+ "retired",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "student",
+ "technician",
+ "technician",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "student",
+ "management",
+ "unemployed",
+ "housemaid",
+ "admin.",
+ "technician",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "student",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "student",
+ "technician",
+ "self-employed",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "student",
+ "entrepreneur",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "student",
+ "admin.",
+ "self-employed",
+ "management",
+ "management",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "services",
+ "student",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "management",
+ "services",
+ "self-employed",
+ "technician",
+ "management",
+ "self-employed",
+ "self-employed",
+ "blue-collar",
+ "retired",
+ "entrepreneur",
+ "management",
+ "admin.",
+ "admin.",
+ "retired",
+ "management",
+ "unemployed",
+ "technician",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "housemaid",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "services",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "retired",
+ "unemployed",
+ "technician",
+ "technician",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "services",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "self-employed",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "retired",
+ "management",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "technician",
+ "technician",
+ "retired",
+ "housemaid",
+ "technician",
+ "self-employed",
+ "unemployed",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "services",
+ "student",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "technician",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "student",
+ "admin.",
+ "technician",
+ "management",
+ "retired",
+ "technician",
+ "admin.",
+ "student",
+ "admin.",
+ "technician",
+ "student",
+ "admin.",
+ "student",
+ "technician",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "unemployed",
+ "admin.",
+ "services",
+ "self-employed",
+ "management",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "technician",
+ "management",
+ "student",
+ "student",
+ "retired",
+ "retired",
+ "technician",
+ "student",
+ "admin.",
+ "management",
+ "services",
+ "management",
+ "retired",
+ "unemployed",
+ "unemployed",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "management",
+ "self-employed",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "technician",
+ "retired",
+ "technician",
+ "technician",
+ "retired",
+ "retired",
+ "unemployed",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "unemployed",
+ "student",
+ "unemployed",
+ "technician",
+ "retired",
+ "admin.",
+ "retired",
+ "student",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "student",
+ "retired",
+ "admin.",
+ "student",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "admin.",
+ "student",
+ "blue-collar",
+ "student",
+ "student",
+ "technician",
+ "management",
+ "management",
+ "retired",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "technician",
+ "services",
+ "housemaid",
+ "admin.",
+ "retired",
+ "technician",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "management",
+ "unemployed",
+ "management",
+ "management",
+ "admin.",
+ "management",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "student",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "services",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "management",
+ "admin.",
+ "housemaid",
+ "retired",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "unemployed",
+ "management",
+ "admin.",
+ "student",
+ "self-employed",
+ "student",
+ "retired",
+ "technician",
+ "management",
+ "services",
+ "services",
+ "self-employed",
+ "technician",
+ "unemployed",
+ "technician",
+ "admin.",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "student",
+ "unemployed",
+ "unemployed",
+ "unemployed",
+ "unemployed",
+ "management",
+ "retired",
+ "technician",
+ "student",
+ "student",
+ "retired",
+ "technician",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "student",
+ "management",
+ "retired",
+ "retired",
+ "unemployed",
+ "management",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "unemployed",
+ "student",
+ "student",
+ "student",
+ "admin.",
+ "student",
+ "blue-collar",
+ "admin.",
+ "services",
+ "student",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "technician",
+ "retired",
+ "retired",
+ "unemployed",
+ "technician",
+ "student",
+ "management",
+ "student",
+ "retired",
+ "retired",
+ "admin.",
+ "technician",
+ "management",
+ "retired",
+ "admin.",
+ "technician",
+ "student",
+ "student",
+ "unemployed",
+ "retired",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "services",
+ "technician",
+ "student",
+ "self-employed",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "unemployed",
+ "housemaid",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "management",
+ "retired",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "retired",
+ "technician",
+ "housemaid",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "student",
+ "admin.",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "student",
+ "student",
+ "student",
+ "student",
+ "management",
+ "admin.",
+ "retired",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "retired",
+ "housemaid",
+ "retired",
+ "retired",
+ "admin.",
+ "retired",
+ "self-employed",
+ "retired",
+ "retired",
+ "technician",
+ "admin.",
+ "retired",
+ "technician",
+ "services",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "housemaid",
+ "retired",
+ "admin.",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "technician",
+ "retired",
+ "admin.",
+ "retired",
+ "retired",
+ "housemaid",
+ "retired",
+ "self-employed",
+ "retired",
+ "retired",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "services",
+ "student",
+ "student",
+ "student",
+ "technician",
+ "student",
+ "admin.",
+ "technician",
+ "student",
+ "technician",
+ "technician",
+ "technician",
+ "self-employed",
+ "technician",
+ "retired",
+ "admin.",
+ "technician",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "retired",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "student",
+ "admin.",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "management",
+ "technician",
+ "retired",
+ "admin.",
+ "technician",
+ "technician",
+ "retired",
+ "services",
+ "admin.",
+ "retired",
+ "technician",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "retired",
+ "retired",
+ "self-employed",
+ "services",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "self-employed",
+ "retired",
+ "admin.",
+ "housemaid",
+ "student",
+ "retired",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "retired",
+ "management",
+ "retired",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "admin.",
+ "retired",
+ "unemployed",
+ "self-employed",
+ "admin.",
+ "technician",
+ "unemployed",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "unemployed",
+ "unemployed",
+ "technician",
+ "retired",
+ "unemployed",
+ "technician",
+ "blue-collar",
+ "retired",
+ "self-employed",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "technician",
+ "technician",
+ "retired",
+ "retired",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "retired",
+ "management",
+ "retired",
+ "retired",
+ "retired",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "retired",
+ "services",
+ "services",
+ "unemployed",
+ "housemaid",
+ "housemaid",
+ "housemaid",
+ "technician",
+ "unemployed",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "retired",
+ "admin.",
+ "management",
+ "retired",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "unemployed",
+ "retired",
+ "unemployed",
+ "retired",
+ "blue-collar",
+ "retired",
+ "housemaid",
+ "management",
+ "management",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "unemployed",
+ "management",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "unemployed",
+ "technician",
+ "management",
+ "retired",
+ "unemployed",
+ "blue-collar",
+ "retired",
+ "technician",
+ "technician",
+ "admin.",
+ "retired",
+ "retired",
+ "retired",
+ "blue-collar",
+ "unemployed",
+ "unemployed",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "student",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "student",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "retired",
+ "entrepreneur",
+ "services",
+ "services",
+ "unemployed",
+ "student",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "housemaid",
+ "retired",
+ "housemaid",
+ "entrepreneur",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "retired",
+ "admin.",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "management",
+ "unemployed",
+ "admin.",
+ "technician",
+ "retired",
+ "blue-collar",
+ "retired",
+ "student",
+ "student",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "housemaid",
+ "blue-collar",
+ "services",
+ "management",
+ "admin.",
+ "retired",
+ "housemaid",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "retired",
+ "admin.",
+ "retired",
+ "self-employed",
+ "retired",
+ "technician",
+ "retired",
+ "technician",
+ "retired",
+ "technician",
+ "retired",
+ "admin.",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "retired",
+ "retired",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "management",
+ "student",
+ "technician",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "entrepreneur",
+ "entrepreneur",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "technician",
+ "retired",
+ "student",
+ "management",
+ "student",
+ "management",
+ "admin.",
+ "services",
+ "retired",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "student",
+ "services",
+ "admin.",
+ "technician",
+ "self-employed",
+ "retired",
+ "admin.",
+ "management",
+ "admin.",
+ "unemployed",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "student",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "housemaid",
+ "admin.",
+ "technician",
+ "student",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "student",
+ "technician",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "entrepreneur",
+ "entrepreneur",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "self-employed",
+ "services",
+ "management",
+ "technician",
+ "retired",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "unemployed",
+ "management",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "retired",
+ "management",
+ "retired",
+ "admin.",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "retired",
+ "retired",
+ "student",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "retired",
+ "admin.",
+ "management",
+ "retired",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "student",
+ "management",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "housemaid",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "unemployed",
+ "student",
+ "management",
+ "student",
+ "student",
+ "retired",
+ "unemployed",
+ "housemaid",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "technician",
+ "student",
+ "technician",
+ "retired",
+ "student",
+ "admin.",
+ "retired",
+ "housemaid",
+ "management",
+ "retired",
+ "student",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "admin.",
+ "unemployed",
+ "student",
+ "student",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "retired",
+ "self-employed",
+ "admin.",
+ "student",
+ "retired",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "admin.",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "retired",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "admin.",
+ "student",
+ "retired",
+ "retired",
+ "technician",
+ "technician",
+ "student",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "management",
+ "services",
+ "admin.",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "technician",
+ "management",
+ "unemployed",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "unemployed",
+ "technician",
+ "retired",
+ "admin.",
+ "technician",
+ "services",
+ "retired",
+ "self-employed",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "retired",
+ "technician",
+ "retired",
+ "technician",
+ "management",
+ "management",
+ "retired",
+ "management",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "entrepreneur",
+ "housemaid",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "housemaid",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "retired",
+ "admin.",
+ "retired",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "technician",
+ "blue-collar",
+ "student",
+ "student",
+ "student",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "unemployed",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "retired",
+ "student",
+ "student",
+ "housemaid",
+ "student",
+ "student",
+ "admin.",
+ "blue-collar",
+ "student",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "student",
+ "retired",
+ "retired",
+ "technician",
+ "retired",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "services",
+ "management",
+ "technician",
+ "retired",
+ "retired",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "retired",
+ "unemployed",
+ "admin.",
+ "unemployed",
+ "technician",
+ "retired",
+ "unemployed",
+ "retired",
+ "retired",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "retired",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "student",
+ "unemployed",
+ "entrepreneur",
+ "unemployed",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "student",
+ "technician",
+ "unemployed",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "technician",
+ "blue-collar",
+ "student",
+ "student",
+ "admin.",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "technician",
+ "student",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "student",
+ "management",
+ "student",
+ "retired",
+ "admin.",
+ "management",
+ "self-employed",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "technician",
+ "retired",
+ "services",
+ "management",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "housemaid",
+ "unemployed",
+ "unemployed",
+ "retired",
+ "management",
+ "services",
+ "technician",
+ "blue-collar",
+ "management",
+ "self-employed",
+ "self-employed",
+ "retired",
+ "blue-collar",
+ "unemployed",
+ "student",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "student",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "retired",
+ "retired",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "unemployed",
+ "unemployed",
+ "blue-collar",
+ "retired",
+ "technician",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "student",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "student",
+ "retired",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "student",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "retired",
+ "technician",
+ "services",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "student",
+ "retired",
+ "technician",
+ "self-employed",
+ "services",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "student",
+ "retired",
+ "retired",
+ "admin.",
+ "retired",
+ "admin.",
+ "management",
+ "admin.",
+ "unemployed",
+ "management",
+ "admin.",
+ "admin.",
+ "retired",
+ "unemployed",
+ "retired",
+ "services",
+ "admin.",
+ "services",
+ "student",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "retired",
+ "student",
+ "admin.",
+ "self-employed",
+ "services",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "retired",
+ "student",
+ "student",
+ "admin.",
+ "admin.",
+ "student",
+ "admin.",
+ "student",
+ "student",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "student",
+ "retired",
+ "retired",
+ "admin.",
+ "housemaid",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "self-employed",
+ "admin.",
+ "management",
+ "management",
+ "blue-collar",
+ "housemaid",
+ "unemployed",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "retired",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "management",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "management",
+ "retired",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "student",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "retired",
+ "unemployed",
+ "student",
+ "student",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "admin.",
+ "retired",
+ "retired",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "retired",
+ "management",
+ "services",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "management",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "management",
+ "retired",
+ "admin.",
+ "services",
+ "unemployed",
+ "technician",
+ "technician",
+ "retired",
+ "admin.",
+ "student",
+ "unemployed",
+ "blue-collar",
+ "entrepreneur",
+ "retired",
+ "entrepreneur",
+ "services",
+ "retired",
+ "unemployed",
+ "services",
+ "admin.",
+ "retired",
+ "services",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "services",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "entrepreneur",
+ "unemployed",
+ "management",
+ "management",
+ "admin.",
+ "retired",
+ "retired",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "management",
+ "retired",
+ "technician",
+ "student",
+ "services",
+ "blue-collar",
+ "services",
+ "admin.",
+ "housemaid",
+ "technician",
+ "management",
+ "technician",
+ "unemployed",
+ "management",
+ "student",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "housemaid",
+ "unemployed",
+ "management",
+ "management",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "technician",
+ "admin.",
+ "self-employed",
+ "services",
+ "housemaid",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "student",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "student",
+ "student",
+ "admin.",
+ "admin.",
+ "student",
+ "student",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "admin.",
+ "management",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "retired",
+ "student",
+ "self-employed",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "unemployed",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "retired",
+ "services",
+ "services",
+ "technician",
+ "unemployed",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "student",
+ "admin.",
+ "admin.",
+ "technician",
+ "housemaid",
+ "student",
+ "technician",
+ "retired",
+ "admin.",
+ "management",
+ "self-employed",
+ "retired",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "retired",
+ "retired",
+ "student",
+ "retired",
+ "student",
+ "admin.",
+ "technician",
+ "retired",
+ "retired",
+ "services",
+ "retired",
+ "technician",
+ "student",
+ "retired",
+ "services",
+ "student",
+ "technician",
+ "housemaid",
+ "admin.",
+ "student",
+ "retired",
+ "unemployed",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "student",
+ "technician",
+ "student",
+ "retired",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "retired",
+ "student",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "services",
+ "student",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "student",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "housemaid",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "services",
+ "management",
+ "housemaid",
+ "retired",
+ "retired",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "retired",
+ "retired"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes job=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "technician",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "technician",
+ "management",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "entrepreneur",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "management",
+ "services",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "services",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "student",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "services",
+ "technician",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "retired",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "student",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "self-employed",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "management",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "management",
+ "retired",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "services",
+ "admin.",
+ "unemployed",
+ "management",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "retired",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "management",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "housemaid",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "student",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "technician",
+ "self-employed",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "management",
+ "technician",
+ "retired",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "technician",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "services",
+ "self-employed",
+ "technician",
+ "services",
+ "blue-collar",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "services",
+ "retired",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "management",
+ "technician",
+ "management",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "services",
+ "self-employed",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "services",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "management",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "services",
+ "technician",
+ "management",
+ "services",
+ "technician",
+ "retired",
+ "self-employed",
+ "technician",
+ "entrepreneur",
+ "services",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "housemaid",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "services",
+ "blue-collar",
+ "unemployed",
+ "management",
+ "housemaid",
+ "admin.",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "entrepreneur",
+ "self-employed",
+ "self-employed",
+ "services",
+ "student",
+ "entrepreneur",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "retired",
+ "services",
+ "admin.",
+ "retired",
+ "technician",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "management",
+ "technician",
+ "retired",
+ "admin.",
+ "management",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "retired",
+ "technician",
+ "blue-collar",
+ "services",
+ "services",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "services",
+ "admin.",
+ "management",
+ "services",
+ "management",
+ "blue-collar",
+ "entrepreneur",
+ "services",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "technician",
+ "unemployed",
+ "admin.",
+ "services",
+ "blue-collar",
+ "student",
+ "technician",
+ "management",
+ "entrepreneur",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "self-employed",
+ "technician",
+ "self-employed",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "housemaid",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "services",
+ "housemaid",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "services",
+ "management",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "services",
+ "admin.",
+ "management",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "management",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "retired",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "services",
+ "student",
+ "technician",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "management",
+ "self-employed",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "unemployed",
+ "services",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "retired",
+ "entrepreneur",
+ "technician",
+ "management",
+ "entrepreneur",
+ "technician",
+ "unemployed",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "technician",
+ "self-employed",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "technician",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "housemaid",
+ "blue-collar",
+ "management",
+ "services",
+ "entrepreneur",
+ "services",
+ "self-employed",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "management",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "management",
+ "retired",
+ "blue-collar",
+ "student",
+ "technician",
+ "technician",
+ "management",
+ "entrepreneur",
+ "technician",
+ "unemployed",
+ "management",
+ "management",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "management",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "management",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "services",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "management",
+ "self-employed",
+ "admin.",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "management",
+ "retired",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "student",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "student",
+ "retired",
+ "admin.",
+ "student",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "student",
+ "student",
+ "admin.",
+ "blue-collar",
+ "student",
+ "services",
+ "services",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "management",
+ "blue-collar",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "retired",
+ "self-employed",
+ "retired",
+ "self-employed",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "student",
+ "management",
+ "retired",
+ "technician",
+ "management",
+ "student",
+ "student",
+ "self-employed",
+ "self-employed",
+ "technician",
+ "admin.",
+ "student",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "student",
+ "student",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "retired",
+ "technician",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "housemaid",
+ "technician",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "student",
+ "blue-collar",
+ "services",
+ "student",
+ "student",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "self-employed",
+ "blue-collar",
+ "self-employed",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "services",
+ "retired",
+ "services",
+ "services",
+ "admin.",
+ "self-employed",
+ "unemployed",
+ "unemployed",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "technician",
+ "admin.",
+ "retired",
+ "retired",
+ "unemployed",
+ "admin.",
+ "retired",
+ "unemployed",
+ "retired",
+ "management",
+ "student",
+ "admin.",
+ "retired",
+ "management",
+ "unemployed",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "student",
+ "admin.",
+ "retired",
+ "services",
+ "management",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "student",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "housemaid",
+ "services",
+ "services",
+ "services",
+ "self-employed",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "management",
+ "retired",
+ "admin.",
+ "entrepreneur",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "technician",
+ "retired",
+ "housemaid",
+ "retired",
+ "entrepreneur",
+ "housemaid",
+ "admin.",
+ "technician",
+ "self-employed",
+ "self-employed",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "technician",
+ "self-employed",
+ "retired",
+ "retired",
+ "technician",
+ "retired",
+ "housemaid",
+ "management",
+ "management",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "housemaid",
+ "retired",
+ "retired",
+ "services",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "retired",
+ "technician",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "student",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "admin.",
+ "management",
+ "student",
+ "technician",
+ "unemployed",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "retired",
+ "retired",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "management",
+ "technician",
+ "entrepreneur",
+ "management",
+ "student",
+ "admin.",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "technician",
+ "self-employed",
+ "services",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "management",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "student",
+ "entrepreneur",
+ "unemployed",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "retired",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "student",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "retired",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "student",
+ "unemployed",
+ "blue-collar",
+ "services",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "student",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "housemaid",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "blue-collar",
+ "management",
+ "admin.",
+ "services",
+ "management",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "management",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "retired",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "self-employed",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "student",
+ "technician",
+ "student",
+ "admin.",
+ "retired",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "entrepreneur",
+ "self-employed",
+ "technician",
+ "services",
+ "self-employed",
+ "admin.",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "technician",
+ "services",
+ "services",
+ "management",
+ "blue-collar",
+ "services",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "self-employed",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "technician",
+ "management",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "self-employed",
+ "management",
+ "management",
+ "services",
+ "technician",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "student",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "management",
+ "technician",
+ "services",
+ "technician",
+ "blue-collar",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "management",
+ "admin.",
+ "blue-collar",
+ "services",
+ "services",
+ "services",
+ "student",
+ "services",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "technician",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "student",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "services",
+ "services",
+ "services",
+ "admin.",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "unemployed",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "blue-collar",
+ "housemaid",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "blue-collar",
+ "management",
+ "management",
+ "technician",
+ "services",
+ "services",
+ "blue-collar",
+ "services",
+ "management",
+ "services",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "entrepreneur",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "entrepreneur",
+ "management",
+ "blue-collar",
+ "admin.",
+ "services",
+ "blue-collar",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "services",
+ "technician",
+ "self-employed",
+ "management",
+ "blue-collar",
+ "unemployed",
+ "blue-collar",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "management",
+ "services",
+ "unemployed",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "technician",
+ "technician",
+ "entrepreneur",
+ "student",
+ "admin.",
+ "student",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "student",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "services",
+ "technician",
+ "admin.",
+ "management",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "services",
+ "self-employed",
+ "self-employed",
+ "technician",
+ "retired",
+ "admin.",
+ "management",
+ "blue-collar",
+ "student",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "student",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "management",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "management",
+ "retired",
+ "student",
+ "services",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "unemployed",
+ "technician",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "services",
+ "services",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "management",
+ "student",
+ "admin.",
+ "admin.",
+ "management",
+ "unemployed",
+ "self-employed",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "student",
+ "retired",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "student",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "management",
+ "admin.",
+ "unemployed",
+ "blue-collar",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "services",
+ "retired",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "self-employed",
+ "student",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "self-employed",
+ "student",
+ "services",
+ "entrepreneur",
+ "services",
+ "entrepreneur",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "management",
+ "admin.",
+ "blue-collar",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "services",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "services",
+ "management",
+ "management",
+ "admin.",
+ "student",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "services",
+ "blue-collar",
+ "blue-collar",
+ "student",
+ "blue-collar",
+ "technician",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "student",
+ "self-employed",
+ "student",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "technician",
+ "technician",
+ "student",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "management",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "management",
+ "blue-collar",
+ "self-employed",
+ "services",
+ "admin.",
+ "technician",
+ "unemployed",
+ "entrepreneur",
+ "blue-collar",
+ "blue-collar",
+ "retired",
+ "self-employed",
+ "technician",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "services",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "housemaid",
+ "housemaid",
+ "unemployed",
+ "management",
+ "retired",
+ "technician",
+ "unemployed",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "technician",
+ "management",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "entrepreneur",
+ "management",
+ "housemaid",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "entrepreneur",
+ "self-employed",
+ "self-employed",
+ "admin.",
+ "housemaid",
+ "technician",
+ "admin.",
+ "retired",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "student",
+ "admin.",
+ "services",
+ "admin.",
+ "management",
+ "services",
+ "student",
+ "services",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "blue-collar",
+ "technician",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "retired",
+ "student",
+ "admin.",
+ "management",
+ "management",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "student",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "retired",
+ "technician",
+ "retired",
+ "student",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "retired",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "retired",
+ "student",
+ "services",
+ "services",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "admin.",
+ "services",
+ "services",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "management",
+ "management",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "admin.",
+ "student",
+ "student",
+ "admin.",
+ "retired",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "student",
+ "student",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "unemployed",
+ "student",
+ "admin.",
+ "blue-collar",
+ "services",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "technician",
+ "student",
+ "services",
+ "admin.",
+ "retired",
+ "services",
+ "blue-collar",
+ "admin.",
+ "management",
+ "unemployed",
+ "student",
+ "technician",
+ "technician",
+ "management",
+ "management",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "retired",
+ "retired",
+ "unemployed",
+ "technician",
+ "technician",
+ "admin.",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "blue-collar",
+ "entrepreneur",
+ "management",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "student",
+ "retired",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "blue-collar",
+ "student",
+ "technician",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "management",
+ "retired",
+ "admin.",
+ "student",
+ "technician",
+ "technician",
+ "management",
+ "retired",
+ "retired",
+ "retired",
+ "admin.",
+ "student",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "unemployed",
+ "housemaid",
+ "admin.",
+ "retired",
+ "housemaid",
+ "retired",
+ "retired",
+ "services",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "student",
+ "retired",
+ "student",
+ "student",
+ "student",
+ "admin.",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "blue-collar",
+ "retired",
+ "student",
+ "admin.",
+ "housemaid",
+ "retired",
+ "housemaid",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "technician",
+ "admin.",
+ "retired",
+ "management",
+ "self-employed",
+ "self-employed",
+ "self-employed",
+ "technician",
+ "self-employed",
+ "technician",
+ "admin.",
+ "retired",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "entrepreneur",
+ "entrepreneur",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "self-employed",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "technician",
+ "services",
+ "self-employed",
+ "technician",
+ "services",
+ "services",
+ "housemaid",
+ "retired",
+ "retired",
+ "admin.",
+ "services",
+ "management",
+ "retired",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "housemaid",
+ "admin.",
+ "self-employed",
+ "management",
+ "management",
+ "retired",
+ "management",
+ "management",
+ "management",
+ "management",
+ "technician",
+ "management",
+ "admin.",
+ "management",
+ "retired",
+ "admin.",
+ "management",
+ "student",
+ "management",
+ "retired",
+ "admin.",
+ "student",
+ "unemployed",
+ "blue-collar",
+ "student",
+ "technician",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "services",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "services",
+ "student",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "services",
+ "student",
+ "management",
+ "admin.",
+ "services",
+ "admin.",
+ "technician",
+ "housemaid",
+ "technician",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "unemployed",
+ "unemployed",
+ "technician",
+ "services",
+ "management",
+ "retired",
+ "technician",
+ "admin.",
+ "technician",
+ "services",
+ "admin.",
+ "unemployed",
+ "management",
+ "student",
+ "admin.",
+ "technician",
+ "student",
+ "admin.",
+ "student",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "unemployed",
+ "retired",
+ "technician",
+ "housemaid",
+ "retired",
+ "services",
+ "services",
+ "management",
+ "technician",
+ "management",
+ "retired",
+ "retired",
+ "student",
+ "technician",
+ "retired",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "student",
+ "retired",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "retired",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "retired",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "retired",
+ "retired",
+ "student",
+ "technician",
+ "self-employed",
+ "technician",
+ "student",
+ "retired",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "technician",
+ "blue-collar",
+ "management",
+ "retired",
+ "admin.",
+ "admin.",
+ "retired",
+ "housemaid",
+ "unemployed",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "technician",
+ "self-employed",
+ "admin.",
+ "technician",
+ "retired",
+ "technician",
+ "retired",
+ "retired",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "management",
+ "technician",
+ "retired",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "housemaid",
+ "student",
+ "management",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "housemaid",
+ "admin.",
+ "technician",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "services",
+ "retired",
+ "student",
+ "management",
+ "retired",
+ "student",
+ "student",
+ "management",
+ "retired",
+ "admin.",
+ "student",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "services",
+ "student",
+ "student",
+ "retired",
+ "management",
+ "retired",
+ "admin.",
+ "admin.",
+ "retired",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "retired",
+ "technician",
+ "self-employed",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "services",
+ "blue-collar",
+ "retired",
+ "student",
+ "technician",
+ "admin.",
+ "retired",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "retired",
+ "retired",
+ "technician",
+ "technician",
+ "retired",
+ "self-employed",
+ "management",
+ "management",
+ "retired",
+ "management",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "management",
+ "retired",
+ "technician",
+ "admin.",
+ "retired",
+ "retired",
+ "retired",
+ "management",
+ "housemaid",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "retired",
+ "retired",
+ "admin.",
+ "technician",
+ "unemployed",
+ "technician",
+ "technician",
+ "technician",
+ "retired",
+ "retired",
+ "admin.",
+ "retired",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "self-employed",
+ "admin.",
+ "retired",
+ "admin.",
+ "housemaid",
+ "retired",
+ "admin.",
+ "unemployed",
+ "housemaid",
+ "housemaid",
+ "retired",
+ "housemaid",
+ "retired",
+ "retired",
+ "retired",
+ "admin.",
+ "services",
+ "retired",
+ "retired",
+ "student",
+ "retired",
+ "student",
+ "retired",
+ "unemployed",
+ "student",
+ "technician",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "technician",
+ "student",
+ "student",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "self-employed",
+ "management",
+ "self-employed",
+ "retired",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "retired",
+ "retired",
+ "blue-collar",
+ "technician",
+ "retired",
+ "technician",
+ "student",
+ "admin.",
+ "blue-collar",
+ "services",
+ "technician",
+ "admin.",
+ "student",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "student",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "retired",
+ "entrepreneur",
+ "technician",
+ "student",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "services",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "blue-collar",
+ "unemployed",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "self-employed",
+ "student",
+ "housemaid",
+ "student",
+ "services",
+ "services",
+ "retired",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "self-employed",
+ "technician",
+ "admin.",
+ "unemployed",
+ "self-employed",
+ "unemployed",
+ "technician",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "retired",
+ "unemployed",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "housemaid",
+ "self-employed",
+ "services",
+ "management",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "technician",
+ "retired",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "management",
+ "housemaid",
+ "unemployed",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "student",
+ "student",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "retired",
+ "technician",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "housemaid",
+ "retired",
+ "retired",
+ "retired",
+ "housemaid",
+ "unemployed",
+ "housemaid",
+ "retired",
+ "retired",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "student",
+ "admin.",
+ "management",
+ "technician",
+ "technician",
+ "student",
+ "retired",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "student",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "admin.",
+ "student",
+ "technician",
+ "services",
+ "student",
+ "student",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "management",
+ "technician",
+ "student",
+ "student",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "management",
+ "unemployed",
+ "unemployed",
+ "technician",
+ "unemployed",
+ "retired",
+ "blue-collar",
+ "management",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "services",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "retired",
+ "technician",
+ "retired",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "student",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "technician",
+ "retired",
+ "services",
+ "unemployed",
+ "self-employed",
+ "student",
+ "retired",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "self-employed",
+ "unemployed",
+ "retired",
+ "unemployed",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "student",
+ "blue-collar",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "services",
+ "retired",
+ "technician",
+ "admin.",
+ "student",
+ "technician",
+ "admin.",
+ "student",
+ "services",
+ "technician",
+ "admin.",
+ "unemployed",
+ "student",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "housemaid",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "services",
+ "admin.",
+ "management",
+ "management",
+ "student",
+ "technician",
+ "retired",
+ "self-employed",
+ "student",
+ "self-employed",
+ "self-employed",
+ "technician",
+ "unemployed",
+ "admin.",
+ "student",
+ "self-employed",
+ "student",
+ "technician",
+ "admin.",
+ "management",
+ "housemaid",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "student",
+ "management",
+ "management",
+ "blue-collar",
+ "management",
+ "student",
+ "blue-collar",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "self-employed",
+ "retired",
+ "technician",
+ "student",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "blue-collar",
+ "technician",
+ "management",
+ "unemployed",
+ "retired",
+ "retired",
+ "admin.",
+ "student",
+ "entrepreneur",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "technician",
+ "services",
+ "retired",
+ "student",
+ "admin.",
+ "retired",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "housemaid",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "admin.",
+ "retired",
+ "admin.",
+ "services",
+ "admin.",
+ "admin.",
+ "self-employed",
+ "admin.",
+ "retired",
+ "unemployed",
+ "admin.",
+ "retired",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "retired",
+ "student",
+ "retired",
+ "admin.",
+ "services",
+ "retired",
+ "retired",
+ "retired",
+ "retired",
+ "unemployed",
+ "technician",
+ "technician",
+ "services",
+ "technician",
+ "admin.",
+ "blue-collar",
+ "student",
+ "technician",
+ "blue-collar",
+ "management",
+ "technician",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "management",
+ "services",
+ "services",
+ "admin.",
+ "student",
+ "retired",
+ "retired",
+ "admin.",
+ "blue-collar",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "retired",
+ "retired",
+ "retired",
+ "technician",
+ "unemployed",
+ "retired",
+ "retired",
+ "admin.",
+ "technician",
+ "technician",
+ "retired",
+ "housemaid",
+ "housemaid",
+ "retired",
+ "unemployed",
+ "technician",
+ "admin.",
+ "services",
+ "technician",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "admin.",
+ "services",
+ "student",
+ "management",
+ "student",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "technician",
+ "management",
+ "retired",
+ "retired",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "housemaid",
+ "retired",
+ "student",
+ "blue-collar",
+ "student",
+ "retired",
+ "housemaid",
+ "housemaid",
+ "technician",
+ "retired",
+ "admin.",
+ "housemaid",
+ "entrepreneur",
+ "technician",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "retired",
+ "technician",
+ "admin.",
+ "services",
+ "management",
+ "admin.",
+ "retired",
+ "management",
+ "admin.",
+ "management",
+ "services",
+ "retired",
+ "retired",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "unemployed",
+ "student",
+ "admin.",
+ "student",
+ "student",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "technician",
+ "student",
+ "student",
+ "retired",
+ "student",
+ "student",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "services",
+ "blue-collar",
+ "admin.",
+ "unemployed",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "entrepreneur",
+ "entrepreneur",
+ "management",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "services",
+ "technician",
+ "admin.",
+ "admin.",
+ "management",
+ "admin.",
+ "management",
+ "blue-collar",
+ "admin.",
+ "retired",
+ "admin.",
+ "retired",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "housemaid",
+ "management",
+ "admin.",
+ "technician",
+ "retired",
+ "admin.",
+ "admin.",
+ "management",
+ "blue-collar",
+ "student",
+ "self-employed",
+ "entrepreneur",
+ "services",
+ "services",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "student",
+ "self-employed",
+ "admin.",
+ "blue-collar",
+ "retired",
+ "retired",
+ "retired",
+ "admin.",
+ "retired",
+ "retired",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "blue-collar",
+ "admin.",
+ "student",
+ "management",
+ "retired",
+ "management",
+ "management",
+ "retired",
+ "management",
+ "retired",
+ "services",
+ "admin.",
+ "unemployed",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "entrepreneur",
+ "admin.",
+ "admin.",
+ "retired",
+ "retired",
+ "admin.",
+ "management",
+ "management",
+ "admin.",
+ "retired",
+ "admin.",
+ "management",
+ "services",
+ "blue-collar",
+ "management",
+ "blue-collar",
+ "unemployed",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "retired",
+ "technician",
+ "retired",
+ "services",
+ "student",
+ "technician",
+ "retired",
+ "admin.",
+ "management",
+ "housemaid",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "management",
+ "student",
+ "admin.",
+ "retired",
+ "student",
+ "student",
+ "retired",
+ "admin.",
+ "entrepreneur",
+ "technician",
+ "student",
+ "student",
+ "admin.",
+ "unemployed",
+ "retired",
+ "student",
+ "admin.",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "retired",
+ "student",
+ "student",
+ "technician",
+ "technician",
+ "technician",
+ "technician",
+ "management",
+ "technician",
+ "technician",
+ "technician",
+ "services",
+ "student",
+ "blue-collar",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "unemployed",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "admin.",
+ "unemployed",
+ "student",
+ "admin.",
+ "management",
+ "admin.",
+ "admin.",
+ "technician",
+ "technician",
+ "technician",
+ "blue-collar",
+ "technician",
+ "technician",
+ "technician",
+ "self-employed",
+ "admin.",
+ "admin.",
+ "retired",
+ "technician",
+ "admin.",
+ "technician",
+ "retired",
+ "unemployed",
+ "technician",
+ "technician",
+ "admin.",
+ "services",
+ "retired",
+ "services",
+ "technician",
+ "student",
+ "blue-collar",
+ "retired",
+ "blue-collar",
+ "retired",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "retired",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "retired",
+ "admin.",
+ "technician",
+ "entrepreneur",
+ "services",
+ "retired",
+ "services",
+ "management",
+ "retired",
+ "housemaid",
+ "housemaid",
+ "blue-collar",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "management",
+ "admin.",
+ "unemployed",
+ "student",
+ "student",
+ "student",
+ "student",
+ "retired",
+ "services",
+ "admin.",
+ "unemployed",
+ "admin.",
+ "services",
+ "technician",
+ "student",
+ "admin.",
+ "technician",
+ "student",
+ "admin.",
+ "admin.",
+ "admin.",
+ "student",
+ "management",
+ "retired",
+ "student",
+ "technician",
+ "management",
+ "retired",
+ "management",
+ "admin.",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "admin.",
+ "technician",
+ "admin.",
+ "student",
+ "blue-collar",
+ "admin.",
+ "student",
+ "admin.",
+ "admin.",
+ "retired",
+ "blue-collar",
+ "technician",
+ "blue-collar",
+ "blue-collar",
+ "technician",
+ "technician",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "unemployed",
+ "student",
+ "unemployed",
+ "management",
+ "admin.",
+ "admin.",
+ "admin.",
+ "admin.",
+ "technician",
+ "admin.",
+ "technician",
+ "housemaid",
+ "technician",
+ "technician",
+ "technician",
+ "admin.",
+ "technician",
+ "admin.",
+ "housemaid",
+ "admin.",
+ "student",
+ "admin.",
+ "retired",
+ "retired",
+ "retired",
+ "admin.",
+ "retired",
+ "technician"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "job"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no marital=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes marital=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "divorced",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "single",
+ "married",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "divorced",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "divorced",
+ "single",
+ "divorced",
+ "single",
+ "single",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "single",
+ "married",
+ "married",
+ "single",
+ "single",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "divorced",
+ "single",
+ "married",
+ "single",
+ "single",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "divorced",
+ "married",
+ "married",
+ "single",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married",
+ "married"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "marital"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no education=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "illiterate",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "illiterate",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "illiterate",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "professional.course",
+ "illiterate",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.6y",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "illiterate",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "illiterate",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "illiterate",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.6y",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "illiterate",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "professional.course"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes education=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "illiterate",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "illiterate",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.6y",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.6y",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "basic.9y",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "basic.9y",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.9y",
+ "professional.course",
+ "basic.4y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "basic.6y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "basic.6y",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "illiterate",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "professional.course",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "basic.4y",
+ "basic.6y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "basic.6y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "basic.9y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "basic.4y",
+ "professional.course",
+ "basic.4y",
+ "high.school",
+ "basic.9y",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "professional.course",
+ "basic.6y",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.9y",
+ "basic.4y",
+ "basic.6y",
+ "basic.9y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "basic.9y",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "basic.6y",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "basic.4y",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "professional.course",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "university.degree",
+ "high.school",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "basic.4y",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "high.school",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.4y",
+ "basic.6y",
+ "professional.course",
+ "basic.6y",
+ "basic.6y",
+ "professional.course",
+ "professional.course",
+ "high.school",
+ "high.school",
+ "high.school",
+ "university.degree",
+ "basic.9y",
+ "high.school",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "professional.course",
+ "basic.4y",
+ "basic.4y",
+ "university.degree",
+ "basic.4y",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "university.degree",
+ "professional.course",
+ "professional.course"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "education"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no default=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes default=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "default"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no housing=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes housing=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "housing"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no loan=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes loan=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "yes",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "yes",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "loan"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no contact=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes contact=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "telephone",
+ "telephone",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular",
+ "cellular"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "contact"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no month=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes month=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "dec",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "dec",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "mar",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "apr",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "may",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jun",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "jul",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "aug",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "sep",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "oct",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov",
+ "nov"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "month"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no day_of_week=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "thu",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "wed",
+ "wed",
+ "thu",
+ "fri",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "wed",
+ "thu",
+ "thu",
+ "fri",
+ "mon",
+ "wed",
+ "thu",
+ "fri",
+ "fri",
+ "mon",
+ "tue",
+ "thu",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "fri",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "mon",
+ "mon",
+ "tue",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "thu",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "fri",
+ "tue",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "tue",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "tue",
+ "tue",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "mon",
+ "tue",
+ "tue",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "tue",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes day_of_week=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "mon",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "fri",
+ "fri",
+ "mon",
+ "wed",
+ "fri",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "fri",
+ "fri",
+ "mon",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "fri",
+ "fri",
+ "mon",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "mon",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "fri",
+ "mon",
+ "mon",
+ "mon",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "tue",
+ "wed",
+ "wed",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "thu",
+ "fri",
+ "fri",
+ "fri"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "day_of_week"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no poutcome=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "failure",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "failure",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes poutcome=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "failure",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "nonexistent",
+ "success",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "failure",
+ "failure",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "success",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "success",
+ "nonexistent",
+ "success",
+ "success",
+ "nonexistent",
+ "failure",
+ "nonexistent",
+ "nonexistent",
+ "failure",
+ "success",
+ "success",
+ "nonexistent",
+ "nonexistent",
+ "nonexistent"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "poutcome"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "categoryarray": [
+ "no",
+ "yes"
+ ],
+ "categoryorder": "array",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "y"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Define a function to plot histograms of categorical features\n",
+ "\n",
+ "def plot(col):\n",
+ " fig=px.histogram(df1,x=col,color='y')\n",
+ " fig.show()\n",
+ "for col in categorical_cols :\n",
+ " plot(col)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 21,
+ "id": "c085fdc9",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no age=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 56,
+ 37,
+ 40,
+ 56,
+ 59,
+ 24,
+ 25,
+ 25,
+ 29,
+ 57,
+ 35,
+ 35,
+ 50,
+ 30,
+ 55,
+ 41,
+ 37,
+ 35,
+ 54,
+ 34,
+ 52,
+ 41,
+ 56,
+ 32,
+ 38,
+ 57,
+ 57,
+ 40,
+ 35,
+ 45,
+ 54,
+ 39,
+ 60,
+ 53,
+ 25,
+ 51,
+ 48,
+ 37,
+ 44,
+ 56,
+ 41,
+ 44,
+ 55,
+ 38,
+ 31,
+ 41,
+ 39,
+ 34,
+ 35,
+ 33,
+ 42,
+ 45,
+ 42,
+ 37,
+ 44,
+ 49,
+ 52,
+ 52,
+ 34,
+ 35,
+ 35,
+ 37,
+ 36,
+ 52,
+ 49,
+ 41,
+ 45,
+ 32,
+ 42,
+ 50,
+ 31,
+ 56,
+ 37,
+ 37,
+ 52,
+ 39,
+ 34,
+ 43,
+ 39,
+ 53,
+ 35,
+ 51,
+ 36,
+ 43,
+ 59,
+ 24,
+ 37,
+ 38,
+ 54,
+ 45,
+ 43,
+ 46,
+ 44,
+ 51,
+ 28,
+ 37,
+ 34,
+ 36,
+ 57,
+ 34,
+ 41,
+ 38,
+ 45,
+ 42,
+ 48,
+ 43,
+ 33,
+ 32,
+ 39,
+ 44,
+ 35,
+ 36,
+ 36,
+ 55,
+ 59,
+ 40,
+ 35,
+ 40,
+ 58,
+ 42,
+ 35,
+ 45,
+ 39,
+ 50,
+ 44,
+ 56,
+ 48,
+ 57,
+ 36,
+ 34,
+ 34,
+ 32,
+ 36,
+ 36,
+ 33,
+ 40,
+ 41,
+ 51,
+ 36,
+ 53,
+ 45,
+ 33,
+ 33,
+ 42,
+ 43,
+ 42,
+ 27,
+ 34,
+ 54,
+ 47,
+ 32,
+ 34,
+ 47,
+ 51,
+ 47,
+ 56,
+ 53,
+ 36,
+ 42,
+ 44,
+ 37,
+ 36,
+ 42,
+ 31,
+ 45,
+ 37,
+ 47,
+ 49,
+ 36,
+ 35,
+ 42,
+ 57,
+ 42,
+ 41,
+ 54,
+ 27,
+ 36,
+ 33,
+ 56,
+ 42,
+ 43,
+ 54,
+ 53,
+ 54,
+ 40,
+ 26,
+ 33,
+ 36,
+ 29,
+ 36,
+ 35,
+ 50,
+ 49,
+ 36,
+ 32,
+ 49,
+ 58,
+ 52,
+ 50,
+ 33,
+ 57,
+ 55,
+ 38,
+ 38,
+ 53,
+ 43,
+ 36,
+ 32,
+ 33,
+ 58,
+ 57,
+ 45,
+ 46,
+ 36,
+ 41,
+ 57,
+ 56,
+ 37,
+ 37,
+ 46,
+ 22,
+ 43,
+ 41,
+ 38,
+ 33,
+ 49,
+ 33,
+ 34,
+ 41,
+ 35,
+ 42,
+ 45,
+ 36,
+ 29,
+ 41,
+ 52,
+ 42,
+ 52,
+ 39,
+ 36,
+ 41,
+ 55,
+ 30,
+ 27,
+ 34,
+ 43,
+ 49,
+ 58,
+ 43,
+ 43,
+ 30,
+ 27,
+ 37,
+ 46,
+ 35,
+ 47,
+ 26,
+ 45,
+ 34,
+ 38,
+ 60,
+ 48,
+ 47,
+ 40,
+ 48,
+ 54,
+ 40,
+ 42,
+ 52,
+ 31,
+ 32,
+ 44,
+ 52,
+ 43,
+ 31,
+ 57,
+ 57,
+ 38,
+ 42,
+ 35,
+ 34,
+ 41,
+ 38,
+ 53,
+ 33,
+ 45,
+ 40,
+ 33,
+ 48,
+ 43,
+ 37,
+ 50,
+ 59,
+ 52,
+ 38,
+ 39,
+ 39,
+ 38,
+ 30,
+ 38,
+ 39,
+ 44,
+ 36,
+ 41,
+ 35,
+ 41,
+ 35,
+ 33,
+ 32,
+ 30,
+ 43,
+ 46,
+ 35,
+ 34,
+ 39,
+ 42,
+ 57,
+ 40,
+ 40,
+ 41,
+ 41,
+ 35,
+ 23,
+ 45,
+ 42,
+ 41,
+ 46,
+ 30,
+ 24,
+ 34,
+ 59,
+ 32,
+ 33,
+ 32,
+ 46,
+ 57,
+ 42,
+ 48,
+ 34,
+ 32,
+ 48,
+ 47,
+ 32,
+ 32,
+ 36,
+ 50,
+ 46,
+ 41,
+ 43,
+ 51,
+ 38,
+ 41,
+ 52,
+ 37,
+ 41,
+ 46,
+ 47,
+ 35,
+ 46,
+ 30,
+ 35,
+ 40,
+ 34,
+ 30,
+ 38,
+ 55,
+ 45,
+ 36,
+ 32,
+ 55,
+ 29,
+ 34,
+ 36,
+ 30,
+ 33,
+ 37,
+ 33,
+ 32,
+ 32,
+ 39,
+ 33,
+ 33,
+ 33,
+ 43,
+ 27,
+ 47,
+ 31,
+ 32,
+ 54,
+ 44,
+ 46,
+ 45,
+ 43,
+ 56,
+ 47,
+ 36,
+ 46,
+ 38,
+ 27,
+ 46,
+ 40,
+ 33,
+ 54,
+ 49,
+ 40,
+ 51,
+ 38,
+ 52,
+ 26,
+ 35,
+ 51,
+ 36,
+ 30,
+ 43,
+ 40,
+ 45,
+ 56,
+ 46,
+ 41,
+ 42,
+ 56,
+ 43,
+ 34,
+ 38,
+ 40,
+ 38,
+ 48,
+ 24,
+ 31,
+ 56,
+ 49,
+ 47,
+ 48,
+ 55,
+ 44,
+ 46,
+ 36,
+ 29,
+ 31,
+ 30,
+ 36,
+ 60,
+ 36,
+ 32,
+ 30,
+ 46,
+ 43,
+ 37,
+ 38,
+ 31,
+ 44,
+ 43,
+ 38,
+ 41,
+ 32,
+ 43,
+ 36,
+ 35,
+ 50,
+ 38,
+ 50,
+ 31,
+ 40,
+ 44,
+ 47,
+ 35,
+ 42,
+ 36,
+ 35,
+ 26,
+ 31,
+ 39,
+ 43,
+ 50,
+ 39,
+ 36,
+ 27,
+ 28,
+ 31,
+ 30,
+ 52,
+ 37,
+ 30,
+ 54,
+ 49,
+ 44,
+ 53,
+ 43,
+ 31,
+ 38,
+ 50,
+ 24,
+ 34,
+ 40,
+ 57,
+ 31,
+ 38,
+ 42,
+ 40,
+ 42,
+ 48,
+ 33,
+ 37,
+ 43,
+ 46,
+ 40,
+ 40,
+ 43,
+ 44,
+ 41,
+ 31,
+ 27,
+ 43,
+ 29,
+ 54,
+ 36,
+ 30,
+ 39,
+ 33,
+ 39,
+ 38,
+ 44,
+ 33,
+ 37,
+ 32,
+ 46,
+ 34,
+ 32,
+ 31,
+ 59,
+ 40,
+ 46,
+ 35,
+ 28,
+ 35,
+ 48,
+ 32,
+ 59,
+ 49,
+ 51,
+ 38,
+ 53,
+ 49,
+ 31,
+ 29,
+ 35,
+ 38,
+ 48,
+ 51,
+ 52,
+ 45,
+ 41,
+ 41,
+ 46,
+ 29,
+ 44,
+ 29,
+ 48,
+ 31,
+ 44,
+ 31,
+ 38,
+ 33,
+ 53,
+ 33,
+ 37,
+ 55,
+ 32,
+ 48,
+ 34,
+ 35,
+ 55,
+ 48,
+ 34,
+ 34,
+ 37,
+ 54,
+ 39,
+ 39,
+ 32,
+ 41,
+ 59,
+ 57,
+ 34,
+ 34,
+ 31,
+ 36,
+ 44,
+ 51,
+ 28,
+ 50,
+ 51,
+ 38,
+ 44,
+ 32,
+ 48,
+ 43,
+ 40,
+ 32,
+ 58,
+ 49,
+ 30,
+ 28,
+ 44,
+ 28,
+ 58,
+ 35,
+ 57,
+ 35,
+ 48,
+ 39,
+ 52,
+ 51,
+ 49,
+ 44,
+ 37,
+ 47,
+ 43,
+ 42,
+ 32,
+ 35,
+ 56,
+ 26,
+ 57,
+ 51,
+ 31,
+ 31,
+ 29,
+ 26,
+ 54,
+ 29,
+ 33,
+ 35,
+ 42,
+ 51,
+ 59,
+ 36,
+ 51,
+ 40,
+ 45,
+ 42,
+ 31,
+ 38,
+ 39,
+ 34,
+ 41,
+ 34,
+ 36,
+ 33,
+ 44,
+ 30,
+ 34,
+ 58,
+ 29,
+ 41,
+ 35,
+ 34,
+ 31,
+ 50,
+ 34,
+ 39,
+ 54,
+ 54,
+ 31,
+ 35,
+ 28,
+ 56,
+ 38,
+ 42,
+ 44,
+ 58,
+ 43,
+ 37,
+ 59,
+ 41,
+ 33,
+ 46,
+ 30,
+ 28,
+ 58,
+ 43,
+ 39,
+ 43,
+ 43,
+ 33,
+ 41,
+ 48,
+ 40,
+ 40,
+ 55,
+ 39,
+ 35,
+ 38,
+ 51,
+ 41,
+ 31,
+ 40,
+ 38,
+ 48,
+ 32,
+ 47,
+ 50,
+ 48,
+ 30,
+ 34,
+ 36,
+ 32,
+ 35,
+ 28,
+ 48,
+ 53,
+ 31,
+ 51,
+ 42,
+ 40,
+ 50,
+ 29,
+ 43,
+ 35,
+ 48,
+ 49,
+ 55,
+ 41,
+ 45,
+ 36,
+ 54,
+ 33,
+ 44,
+ 50,
+ 32,
+ 32,
+ 40,
+ 24,
+ 32,
+ 35,
+ 52,
+ 30,
+ 36,
+ 39,
+ 39,
+ 36,
+ 39,
+ 31,
+ 41,
+ 38,
+ 52,
+ 60,
+ 24,
+ 38,
+ 44,
+ 25,
+ 32,
+ 28,
+ 27,
+ 35,
+ 45,
+ 30,
+ 60,
+ 37,
+ 37,
+ 36,
+ 49,
+ 34,
+ 31,
+ 39,
+ 33,
+ 38,
+ 31,
+ 39,
+ 32,
+ 48,
+ 37,
+ 37,
+ 26,
+ 54,
+ 35,
+ 45,
+ 33,
+ 37,
+ 49,
+ 43,
+ 43,
+ 39,
+ 47,
+ 30,
+ 51,
+ 59,
+ 31,
+ 39,
+ 37,
+ 42,
+ 37,
+ 37,
+ 36,
+ 48,
+ 43,
+ 28,
+ 30,
+ 60,
+ 31,
+ 38,
+ 36,
+ 50,
+ 33,
+ 20,
+ 55,
+ 25,
+ 39,
+ 27,
+ 27,
+ 25,
+ 36,
+ 36,
+ 27,
+ 45,
+ 43,
+ 29,
+ 35,
+ 43,
+ 36,
+ 36,
+ 45,
+ 35,
+ 30,
+ 29,
+ 34,
+ 36,
+ 43,
+ 35,
+ 42,
+ 35,
+ 36,
+ 47,
+ 30,
+ 45,
+ 28,
+ 37,
+ 38,
+ 28,
+ 31,
+ 37,
+ 36,
+ 54,
+ 43,
+ 49,
+ 32,
+ 36,
+ 51,
+ 38,
+ 44,
+ 29,
+ 46,
+ 53,
+ 35,
+ 49,
+ 40,
+ 29,
+ 47,
+ 48,
+ 53,
+ 35,
+ 46,
+ 28,
+ 50,
+ 32,
+ 31,
+ 41,
+ 31,
+ 45,
+ 32,
+ 28,
+ 40,
+ 55,
+ 41,
+ 44,
+ 38,
+ 34,
+ 36,
+ 39,
+ 30,
+ 35,
+ 60,
+ 35,
+ 38,
+ 57,
+ 40,
+ 46,
+ 45,
+ 57,
+ 35,
+ 38,
+ 30,
+ 25,
+ 37,
+ 60,
+ 37,
+ 43,
+ 32,
+ 41,
+ 36,
+ 33,
+ 58,
+ 33,
+ 30,
+ 32,
+ 28,
+ 46,
+ 35,
+ 36,
+ 36,
+ 31,
+ 47,
+ 35,
+ 29,
+ 29,
+ 35,
+ 54,
+ 31,
+ 55,
+ 38,
+ 41,
+ 49,
+ 39,
+ 34,
+ 39,
+ 37,
+ 45,
+ 49,
+ 40,
+ 42,
+ 47,
+ 56,
+ 43,
+ 34,
+ 29,
+ 53,
+ 50,
+ 20,
+ 47,
+ 48,
+ 29,
+ 28,
+ 31,
+ 29,
+ 33,
+ 33,
+ 36,
+ 35,
+ 38,
+ 31,
+ 30,
+ 42,
+ 27,
+ 39,
+ 38,
+ 30,
+ 52,
+ 38,
+ 54,
+ 29,
+ 28,
+ 30,
+ 37,
+ 29,
+ 39,
+ 39,
+ 31,
+ 38,
+ 32,
+ 31,
+ 39,
+ 39,
+ 39,
+ 37,
+ 30,
+ 32,
+ 37,
+ 27,
+ 33,
+ 47,
+ 54,
+ 51,
+ 41,
+ 51,
+ 55,
+ 39,
+ 37,
+ 39,
+ 33,
+ 33,
+ 59,
+ 36,
+ 40,
+ 37,
+ 56,
+ 32,
+ 30,
+ 32,
+ 31,
+ 20,
+ 42,
+ 46,
+ 41,
+ 33,
+ 24,
+ 31,
+ 25,
+ 35,
+ 25,
+ 31,
+ 39,
+ 37,
+ 30,
+ 60,
+ 37,
+ 28,
+ 31,
+ 36,
+ 33,
+ 39,
+ 39,
+ 56,
+ 39,
+ 35,
+ 35,
+ 29,
+ 32,
+ 35,
+ 26,
+ 31,
+ 39,
+ 31,
+ 49,
+ 49,
+ 36,
+ 52,
+ 40,
+ 36,
+ 39,
+ 39,
+ 58,
+ 29,
+ 39,
+ 31,
+ 39,
+ 49,
+ 41,
+ 32,
+ 46,
+ 51,
+ 50,
+ 35,
+ 24,
+ 59,
+ 33,
+ 24,
+ 30,
+ 38,
+ 34,
+ 25,
+ 36,
+ 32,
+ 33,
+ 42,
+ 37,
+ 35,
+ 48,
+ 50,
+ 39,
+ 33,
+ 29,
+ 33,
+ 41,
+ 46,
+ 42,
+ 44,
+ 24,
+ 53,
+ 36,
+ 49,
+ 41,
+ 40,
+ 40,
+ 49,
+ 25,
+ 34,
+ 34,
+ 28,
+ 39,
+ 34,
+ 36,
+ 32,
+ 40,
+ 36,
+ 27,
+ 36,
+ 47,
+ 47,
+ 40,
+ 30,
+ 39,
+ 58,
+ 30,
+ 52,
+ 46,
+ 32,
+ 53,
+ 31,
+ 51,
+ 45,
+ 32,
+ 43,
+ 34,
+ 25,
+ 25,
+ 44,
+ 59,
+ 39,
+ 42,
+ 30,
+ 49,
+ 41,
+ 27,
+ 32,
+ 27,
+ 29,
+ 30,
+ 29,
+ 32,
+ 55,
+ 39,
+ 37,
+ 26,
+ 52,
+ 28,
+ 33,
+ 32,
+ 50,
+ 47,
+ 40,
+ 45,
+ 43,
+ 28,
+ 36,
+ 37,
+ 32,
+ 26,
+ 35,
+ 56,
+ 37,
+ 43,
+ 41,
+ 43,
+ 31,
+ 39,
+ 56,
+ 34,
+ 34,
+ 45,
+ 59,
+ 46,
+ 25,
+ 33,
+ 27,
+ 33,
+ 25,
+ 38,
+ 33,
+ 33,
+ 34,
+ 50,
+ 38,
+ 33,
+ 42,
+ 52,
+ 35,
+ 32,
+ 30,
+ 46,
+ 34,
+ 33,
+ 50,
+ 48,
+ 44,
+ 32,
+ 34,
+ 27,
+ 40,
+ 29,
+ 25,
+ 29,
+ 44,
+ 33,
+ 33,
+ 40,
+ 38,
+ 33,
+ 36,
+ 48,
+ 50,
+ 35,
+ 24,
+ 32,
+ 50,
+ 38,
+ 41,
+ 27,
+ 39,
+ 25,
+ 33,
+ 37,
+ 46,
+ 53,
+ 32,
+ 43,
+ 38,
+ 26,
+ 42,
+ 26,
+ 41,
+ 26,
+ 43,
+ 28,
+ 35,
+ 45,
+ 40,
+ 37,
+ 52,
+ 36,
+ 43,
+ 36,
+ 39,
+ 47,
+ 36,
+ 46,
+ 47,
+ 47,
+ 42,
+ 48,
+ 53,
+ 51,
+ 37,
+ 44,
+ 48,
+ 44,
+ 35,
+ 53,
+ 55,
+ 37,
+ 36,
+ 45,
+ 35,
+ 32,
+ 36,
+ 55,
+ 39,
+ 32,
+ 57,
+ 41,
+ 59,
+ 44,
+ 39,
+ 39,
+ 33,
+ 42,
+ 33,
+ 29,
+ 35,
+ 54,
+ 34,
+ 51,
+ 33,
+ 32,
+ 47,
+ 26,
+ 26,
+ 25,
+ 39,
+ 29,
+ 36,
+ 31,
+ 40,
+ 56,
+ 38,
+ 42,
+ 42,
+ 48,
+ 36,
+ 30,
+ 39,
+ 35,
+ 33,
+ 39,
+ 41,
+ 34,
+ 30,
+ 38,
+ 37,
+ 34,
+ 33,
+ 33,
+ 36,
+ 33,
+ 38,
+ 50,
+ 32,
+ 45,
+ 36,
+ 57,
+ 57,
+ 44,
+ 46,
+ 32,
+ 41,
+ 33,
+ 30,
+ 51,
+ 39,
+ 50,
+ 53,
+ 51,
+ 40,
+ 47,
+ 37,
+ 37,
+ 30,
+ 38,
+ 31,
+ 48,
+ 29,
+ 48,
+ 41,
+ 56,
+ 39,
+ 33,
+ 31,
+ 54,
+ 26,
+ 45,
+ 41,
+ 35,
+ 28,
+ 34,
+ 57,
+ 39,
+ 35,
+ 58,
+ 34,
+ 29,
+ 37,
+ 25,
+ 39,
+ 39,
+ 34,
+ 47,
+ 31,
+ 33,
+ 41,
+ 29,
+ 39,
+ 37,
+ 56,
+ 51,
+ 47,
+ 57,
+ 44,
+ 35,
+ 31,
+ 40,
+ 45,
+ 47,
+ 26,
+ 36,
+ 33,
+ 38,
+ 37,
+ 39,
+ 36,
+ 35,
+ 31,
+ 31,
+ 32,
+ 39,
+ 25,
+ 40,
+ 28,
+ 29,
+ 30,
+ 34,
+ 43,
+ 38,
+ 35,
+ 26,
+ 31,
+ 48,
+ 37,
+ 30,
+ 30,
+ 53,
+ 34,
+ 43,
+ 54,
+ 46,
+ 57,
+ 34,
+ 33,
+ 48,
+ 33,
+ 36,
+ 28,
+ 30,
+ 31,
+ 51,
+ 30,
+ 34,
+ 51,
+ 33,
+ 45,
+ 50,
+ 28,
+ 33,
+ 37,
+ 35,
+ 48,
+ 26,
+ 54,
+ 40,
+ 35,
+ 35,
+ 34,
+ 28,
+ 36,
+ 42,
+ 37,
+ 45,
+ 42,
+ 34,
+ 48,
+ 34,
+ 49,
+ 48,
+ 50,
+ 41,
+ 45,
+ 53,
+ 36,
+ 45,
+ 37,
+ 25,
+ 35,
+ 34,
+ 32,
+ 39,
+ 36,
+ 46,
+ 56,
+ 39,
+ 34,
+ 28,
+ 41,
+ 54,
+ 53,
+ 39,
+ 37,
+ 38,
+ 41,
+ 45,
+ 38,
+ 40,
+ 42,
+ 32,
+ 42,
+ 37,
+ 32,
+ 36,
+ 48,
+ 46,
+ 48,
+ 34,
+ 38,
+ 42,
+ 57,
+ 58,
+ 32,
+ 35,
+ 47,
+ 38,
+ 49,
+ 33,
+ 27,
+ 34,
+ 45,
+ 39,
+ 40,
+ 59,
+ 42,
+ 42,
+ 37,
+ 35,
+ 32,
+ 42,
+ 25,
+ 42,
+ 56,
+ 47,
+ 30,
+ 48,
+ 58,
+ 54,
+ 33,
+ 49,
+ 33,
+ 49,
+ 40,
+ 32,
+ 53,
+ 26,
+ 38,
+ 36,
+ 45,
+ 47,
+ 36,
+ 47,
+ 31,
+ 29,
+ 41,
+ 27,
+ 35,
+ 50,
+ 49,
+ 27,
+ 39,
+ 41,
+ 43,
+ 43,
+ 38,
+ 34,
+ 35,
+ 36,
+ 35,
+ 29,
+ 36,
+ 51,
+ 39,
+ 36,
+ 30,
+ 36,
+ 37,
+ 46,
+ 30,
+ 30,
+ 33,
+ 54,
+ 35,
+ 55,
+ 29,
+ 55,
+ 36,
+ 39,
+ 58,
+ 37,
+ 34,
+ 54,
+ 27,
+ 31,
+ 48,
+ 46,
+ 40,
+ 36,
+ 47,
+ 36,
+ 25,
+ 49,
+ 37,
+ 36,
+ 57,
+ 39,
+ 28,
+ 47,
+ 34,
+ 51,
+ 33,
+ 58,
+ 31,
+ 34,
+ 33,
+ 39,
+ 37,
+ 29,
+ 59,
+ 32,
+ 25,
+ 36,
+ 23,
+ 42,
+ 43,
+ 29,
+ 45,
+ 35,
+ 35,
+ 39,
+ 29,
+ 39,
+ 34,
+ 44,
+ 33,
+ 37,
+ 42,
+ 55,
+ 37,
+ 39,
+ 40,
+ 52,
+ 51,
+ 54,
+ 36,
+ 45,
+ 46,
+ 45,
+ 31,
+ 35,
+ 48,
+ 44,
+ 38,
+ 53,
+ 37,
+ 29,
+ 35,
+ 59,
+ 34,
+ 28,
+ 45,
+ 31,
+ 34,
+ 38,
+ 29,
+ 34,
+ 32,
+ 41,
+ 49,
+ 33,
+ 52,
+ 44,
+ 33,
+ 57,
+ 31,
+ 37,
+ 39,
+ 34,
+ 43,
+ 33,
+ 51,
+ 51,
+ 50,
+ 41,
+ 47,
+ 29,
+ 39,
+ 48,
+ 52,
+ 35,
+ 38,
+ 55,
+ 42,
+ 40,
+ 49,
+ 37,
+ 54,
+ 49,
+ 48,
+ 35,
+ 51,
+ 48,
+ 50,
+ 39,
+ 34,
+ 37,
+ 26,
+ 52,
+ 42,
+ 41,
+ 53,
+ 39,
+ 40,
+ 42,
+ 29,
+ 30,
+ 41,
+ 30,
+ 52,
+ 41,
+ 34,
+ 40,
+ 34,
+ 42,
+ 35,
+ 28,
+ 29,
+ 56,
+ 48,
+ 29,
+ 42,
+ 51,
+ 29,
+ 41,
+ 28,
+ 34,
+ 31,
+ 47,
+ 31,
+ 39,
+ 36,
+ 29,
+ 29,
+ 34,
+ 29,
+ 29,
+ 41,
+ 34,
+ 48,
+ 38,
+ 32,
+ 35,
+ 39,
+ 47,
+ 41,
+ 35,
+ 49,
+ 44,
+ 28,
+ 41,
+ 35,
+ 45,
+ 36,
+ 41,
+ 40,
+ 41,
+ 35,
+ 56,
+ 25,
+ 59,
+ 33,
+ 36,
+ 41,
+ 24,
+ 32,
+ 29,
+ 42,
+ 29,
+ 38,
+ 33,
+ 36,
+ 45,
+ 32,
+ 37,
+ 26,
+ 35,
+ 35,
+ 36,
+ 36,
+ 26,
+ 51,
+ 45,
+ 36,
+ 58,
+ 33,
+ 33,
+ 31,
+ 34,
+ 34,
+ 27,
+ 30,
+ 23,
+ 33,
+ 23,
+ 36,
+ 42,
+ 36,
+ 26,
+ 32,
+ 37,
+ 36,
+ 35,
+ 36,
+ 37,
+ 56,
+ 28,
+ 43,
+ 30,
+ 33,
+ 30,
+ 33,
+ 39,
+ 37,
+ 41,
+ 53,
+ 31,
+ 52,
+ 28,
+ 50,
+ 31,
+ 39,
+ 27,
+ 33,
+ 47,
+ 32,
+ 37,
+ 31,
+ 32,
+ 48,
+ 32,
+ 38,
+ 39,
+ 32,
+ 26,
+ 38,
+ 35,
+ 33,
+ 36,
+ 44,
+ 35,
+ 42,
+ 35,
+ 36,
+ 26,
+ 27,
+ 44,
+ 33,
+ 29,
+ 55,
+ 41,
+ 39,
+ 49,
+ 30,
+ 31,
+ 59,
+ 33,
+ 44,
+ 28,
+ 26,
+ 28,
+ 32,
+ 47,
+ 33,
+ 28,
+ 31,
+ 38,
+ 33,
+ 41,
+ 29,
+ 46,
+ 36,
+ 58,
+ 46,
+ 41,
+ 36,
+ 60,
+ 43,
+ 30,
+ 43,
+ 41,
+ 29,
+ 29,
+ 33,
+ 41,
+ 43,
+ 40,
+ 30,
+ 29,
+ 30,
+ 36,
+ 41,
+ 34,
+ 45,
+ 31,
+ 49,
+ 48,
+ 30,
+ 32,
+ 30,
+ 39,
+ 37,
+ 37,
+ 41,
+ 42,
+ 42,
+ 58,
+ 26,
+ 31,
+ 37,
+ 32,
+ 33,
+ 35,
+ 32,
+ 32,
+ 31,
+ 51,
+ 40,
+ 40,
+ 44,
+ 31,
+ 30,
+ 31,
+ 45,
+ 29,
+ 34,
+ 30,
+ 38,
+ 33,
+ 46,
+ 41,
+ 44,
+ 46,
+ 44,
+ 35,
+ 52,
+ 33,
+ 33,
+ 26,
+ 41,
+ 53,
+ 41,
+ 49,
+ 31,
+ 37,
+ 43,
+ 49,
+ 52,
+ 52,
+ 34,
+ 34,
+ 33,
+ 46,
+ 37,
+ 35,
+ 41,
+ 46,
+ 41,
+ 48,
+ 59,
+ 40,
+ 50,
+ 45,
+ 42,
+ 36,
+ 47,
+ 45,
+ 48,
+ 31,
+ 40,
+ 34,
+ 33,
+ 30,
+ 38,
+ 36,
+ 34,
+ 34,
+ 34,
+ 33,
+ 46,
+ 48,
+ 48,
+ 55,
+ 41,
+ 36,
+ 36,
+ 46,
+ 57,
+ 48,
+ 58,
+ 34,
+ 42,
+ 55,
+ 37,
+ 46,
+ 52,
+ 54,
+ 32,
+ 36,
+ 32,
+ 35,
+ 37,
+ 38,
+ 37,
+ 31,
+ 45,
+ 36,
+ 49,
+ 34,
+ 39,
+ 26,
+ 36,
+ 31,
+ 54,
+ 39,
+ 43,
+ 53,
+ 28,
+ 45,
+ 35,
+ 47,
+ 35,
+ 24,
+ 31,
+ 39,
+ 39,
+ 53,
+ 54,
+ 39,
+ 48,
+ 32,
+ 36,
+ 42,
+ 36,
+ 38,
+ 34,
+ 36,
+ 48,
+ 32,
+ 47,
+ 43,
+ 29,
+ 38,
+ 59,
+ 29,
+ 36,
+ 34,
+ 48,
+ 27,
+ 44,
+ 36,
+ 31,
+ 30,
+ 31,
+ 42,
+ 28,
+ 58,
+ 32,
+ 29,
+ 34,
+ 32,
+ 26,
+ 47,
+ 41,
+ 24,
+ 26,
+ 28,
+ 38,
+ 35,
+ 30,
+ 28,
+ 38,
+ 34,
+ 44,
+ 36,
+ 40,
+ 32,
+ 29,
+ 50,
+ 53,
+ 45,
+ 57,
+ 29,
+ 25,
+ 26,
+ 34,
+ 37,
+ 34,
+ 53,
+ 28,
+ 48,
+ 54,
+ 56,
+ 35,
+ 31,
+ 31,
+ 38,
+ 44,
+ 36,
+ 49,
+ 30,
+ 28,
+ 49,
+ 29,
+ 29,
+ 46,
+ 54,
+ 41,
+ 26,
+ 43,
+ 35,
+ 34,
+ 36,
+ 45,
+ 49,
+ 35,
+ 41,
+ 34,
+ 46,
+ 27,
+ 55,
+ 36,
+ 57,
+ 37,
+ 34,
+ 32,
+ 40,
+ 25,
+ 36,
+ 48,
+ 57,
+ 42,
+ 44,
+ 30,
+ 37,
+ 35,
+ 43,
+ 31,
+ 49,
+ 36,
+ 40,
+ 29,
+ 37,
+ 36,
+ 32,
+ 36,
+ 28,
+ 35,
+ 47,
+ 31,
+ 51,
+ 34,
+ 39,
+ 32,
+ 37,
+ 30,
+ 58,
+ 38,
+ 32,
+ 25,
+ 56,
+ 39,
+ 40,
+ 48,
+ 38,
+ 37,
+ 26,
+ 53,
+ 57,
+ 35,
+ 46,
+ 27,
+ 43,
+ 59,
+ 38,
+ 41,
+ 29,
+ 35,
+ 25,
+ 44,
+ 28,
+ 45,
+ 39,
+ 28,
+ 42,
+ 59,
+ 34,
+ 39,
+ 41,
+ 39,
+ 48,
+ 52,
+ 35,
+ 56,
+ 60,
+ 34,
+ 29,
+ 38,
+ 35,
+ 32,
+ 24,
+ 53,
+ 34,
+ 52,
+ 40,
+ 37,
+ 45,
+ 57,
+ 33,
+ 35,
+ 52,
+ 48,
+ 44,
+ 52,
+ 39,
+ 50,
+ 29,
+ 25,
+ 32,
+ 30,
+ 28,
+ 41,
+ 34,
+ 42,
+ 39,
+ 24,
+ 29,
+ 26,
+ 35,
+ 32,
+ 36,
+ 33,
+ 27,
+ 28,
+ 41,
+ 33,
+ 36,
+ 29,
+ 32,
+ 53,
+ 37,
+ 46,
+ 28,
+ 44,
+ 31,
+ 31,
+ 36,
+ 51,
+ 29,
+ 28,
+ 49,
+ 30,
+ 52,
+ 45,
+ 52,
+ 24,
+ 46,
+ 25,
+ 33,
+ 29,
+ 44,
+ 50,
+ 48,
+ 26,
+ 36,
+ 35,
+ 28,
+ 52,
+ 28,
+ 32,
+ 38,
+ 36,
+ 31,
+ 38,
+ 39,
+ 31,
+ 39,
+ 36,
+ 37,
+ 28,
+ 31,
+ 36,
+ 37,
+ 28,
+ 38,
+ 37,
+ 30,
+ 33,
+ 52,
+ 48,
+ 40,
+ 53,
+ 33,
+ 35,
+ 33,
+ 36,
+ 48,
+ 35,
+ 42,
+ 35,
+ 34,
+ 29,
+ 32,
+ 31,
+ 46,
+ 25,
+ 28,
+ 32,
+ 30,
+ 32,
+ 28,
+ 28,
+ 40,
+ 38,
+ 47,
+ 37,
+ 28,
+ 43,
+ 33,
+ 33,
+ 35,
+ 29,
+ 30,
+ 51,
+ 34,
+ 46,
+ 31,
+ 30,
+ 47,
+ 41,
+ 27,
+ 32,
+ 37,
+ 48,
+ 36,
+ 50,
+ 25,
+ 33,
+ 48,
+ 35,
+ 45,
+ 28,
+ 56,
+ 37,
+ 38,
+ 23,
+ 33,
+ 48,
+ 31,
+ 43,
+ 44,
+ 33,
+ 36,
+ 30,
+ 28,
+ 46,
+ 32,
+ 36,
+ 24,
+ 35,
+ 31,
+ 33,
+ 28,
+ 43,
+ 33,
+ 31,
+ 39,
+ 52,
+ 28,
+ 39,
+ 37,
+ 51,
+ 53,
+ 52,
+ 33,
+ 36,
+ 43,
+ 52,
+ 36,
+ 35,
+ 30,
+ 30,
+ 38,
+ 38,
+ 39,
+ 34,
+ 32,
+ 37,
+ 29,
+ 44,
+ 37,
+ 46,
+ 32,
+ 28,
+ 32,
+ 38,
+ 32,
+ 34,
+ 36,
+ 44,
+ 44,
+ 37,
+ 58,
+ 28,
+ 46,
+ 48,
+ 41,
+ 32,
+ 49,
+ 27,
+ 46,
+ 42,
+ 32,
+ 33,
+ 50,
+ 49,
+ 45,
+ 36,
+ 38,
+ 30,
+ 35,
+ 36,
+ 41,
+ 37,
+ 35,
+ 28,
+ 54,
+ 30,
+ 31,
+ 42,
+ 37,
+ 50,
+ 47,
+ 42,
+ 56,
+ 45,
+ 31,
+ 39,
+ 29,
+ 41,
+ 35,
+ 29,
+ 34,
+ 31,
+ 36,
+ 41,
+ 31,
+ 32,
+ 37,
+ 47,
+ 28,
+ 36,
+ 32,
+ 36,
+ 51,
+ 32,
+ 52,
+ 36,
+ 48,
+ 28,
+ 28,
+ 34,
+ 39,
+ 42,
+ 57,
+ 28,
+ 25,
+ 29,
+ 28,
+ 32,
+ 55,
+ 25,
+ 53,
+ 36,
+ 49,
+ 44,
+ 37,
+ 41,
+ 40,
+ 24,
+ 34,
+ 30,
+ 27,
+ 40,
+ 35,
+ 26,
+ 33,
+ 35,
+ 32,
+ 34,
+ 33,
+ 27,
+ 43,
+ 26,
+ 48,
+ 42,
+ 35,
+ 42,
+ 28,
+ 32,
+ 28,
+ 41,
+ 22,
+ 34,
+ 52,
+ 55,
+ 24,
+ 31,
+ 34,
+ 45,
+ 44,
+ 29,
+ 32,
+ 32,
+ 48,
+ 29,
+ 32,
+ 38,
+ 28,
+ 27,
+ 26,
+ 33,
+ 28,
+ 35,
+ 46,
+ 26,
+ 47,
+ 26,
+ 34,
+ 24,
+ 31,
+ 26,
+ 31,
+ 60,
+ 24,
+ 28,
+ 55,
+ 38,
+ 37,
+ 36,
+ 31,
+ 29,
+ 31,
+ 36,
+ 32,
+ 30,
+ 27,
+ 57,
+ 27,
+ 46,
+ 43,
+ 38,
+ 48,
+ 33,
+ 37,
+ 34,
+ 34,
+ 34,
+ 29,
+ 46,
+ 32,
+ 51,
+ 34,
+ 30,
+ 39,
+ 47,
+ 36,
+ 47,
+ 49,
+ 35,
+ 25,
+ 26,
+ 36,
+ 27,
+ 59,
+ 54,
+ 36,
+ 53,
+ 31,
+ 53,
+ 34,
+ 31,
+ 40,
+ 31,
+ 25,
+ 49,
+ 53,
+ 46,
+ 58,
+ 54,
+ 45,
+ 34,
+ 50,
+ 25,
+ 50,
+ 43,
+ 34,
+ 41,
+ 35,
+ 34,
+ 47,
+ 42,
+ 28,
+ 43,
+ 41,
+ 33,
+ 53,
+ 33,
+ 30,
+ 49,
+ 38,
+ 39,
+ 46,
+ 40,
+ 36,
+ 53,
+ 42,
+ 39,
+ 34,
+ 40,
+ 46,
+ 30,
+ 42,
+ 38,
+ 33,
+ 36,
+ 21,
+ 29,
+ 39,
+ 31,
+ 36,
+ 27,
+ 34,
+ 40,
+ 36,
+ 40,
+ 53,
+ 40,
+ 25,
+ 46,
+ 35,
+ 43,
+ 43,
+ 33,
+ 49,
+ 35,
+ 36,
+ 45,
+ 30,
+ 40,
+ 31,
+ 46,
+ 39,
+ 55,
+ 42,
+ 42,
+ 45,
+ 38,
+ 49,
+ 31,
+ 57,
+ 47,
+ 42,
+ 31,
+ 43,
+ 32,
+ 33,
+ 22,
+ 41,
+ 60,
+ 50,
+ 30,
+ 42,
+ 45,
+ 40,
+ 41,
+ 57,
+ 34,
+ 40,
+ 42,
+ 32,
+ 33,
+ 37,
+ 37,
+ 37,
+ 28,
+ 45,
+ 52,
+ 33,
+ 43,
+ 41,
+ 31,
+ 51,
+ 31,
+ 41,
+ 51,
+ 51,
+ 30,
+ 35,
+ 35,
+ 57,
+ 38,
+ 30,
+ 31,
+ 37,
+ 29,
+ 41,
+ 27,
+ 34,
+ 44,
+ 42,
+ 29,
+ 57,
+ 50,
+ 58,
+ 34,
+ 40,
+ 46,
+ 33,
+ 27,
+ 41,
+ 39,
+ 31,
+ 48,
+ 30,
+ 58,
+ 41,
+ 44,
+ 47,
+ 32,
+ 33,
+ 57,
+ 32,
+ 33,
+ 34,
+ 50,
+ 44,
+ 48,
+ 56,
+ 42,
+ 29,
+ 32,
+ 40,
+ 39,
+ 28,
+ 27,
+ 37,
+ 43,
+ 35,
+ 51,
+ 34,
+ 28,
+ 26,
+ 52,
+ 45,
+ 46,
+ 45,
+ 31,
+ 55,
+ 55,
+ 27,
+ 24,
+ 36,
+ 33,
+ 30,
+ 28,
+ 38,
+ 42,
+ 35,
+ 24,
+ 35,
+ 25,
+ 56,
+ 32,
+ 27,
+ 34,
+ 31,
+ 37,
+ 29,
+ 35,
+ 43,
+ 49,
+ 50,
+ 34,
+ 24,
+ 44,
+ 37,
+ 39,
+ 33,
+ 39,
+ 28,
+ 25,
+ 39,
+ 31,
+ 32,
+ 39,
+ 29,
+ 46,
+ 39,
+ 43,
+ 31,
+ 46,
+ 56,
+ 42,
+ 41,
+ 41,
+ 53,
+ 25,
+ 41,
+ 38,
+ 31,
+ 46,
+ 58,
+ 39,
+ 31,
+ 40,
+ 56,
+ 41,
+ 33,
+ 33,
+ 48,
+ 39,
+ 35,
+ 45,
+ 36,
+ 33,
+ 46,
+ 32,
+ 42,
+ 37,
+ 35,
+ 47,
+ 33,
+ 38,
+ 39,
+ 55,
+ 35,
+ 55,
+ 32,
+ 32,
+ 56,
+ 55,
+ 33,
+ 46,
+ 33,
+ 26,
+ 36,
+ 28,
+ 36,
+ 41,
+ 31,
+ 32,
+ 25,
+ 22,
+ 43,
+ 35,
+ 60,
+ 40,
+ 37,
+ 37,
+ 36,
+ 35,
+ 43,
+ 39,
+ 37,
+ 38,
+ 37,
+ 38,
+ 35,
+ 37,
+ 32,
+ 42,
+ 52,
+ 33,
+ 32,
+ 33,
+ 34,
+ 34,
+ 55,
+ 34,
+ 52,
+ 53,
+ 43,
+ 33,
+ 39,
+ 35,
+ 45,
+ 35,
+ 37,
+ 35,
+ 36,
+ 30,
+ 53,
+ 36,
+ 36,
+ 38,
+ 35,
+ 35,
+ 30,
+ 40,
+ 27,
+ 42,
+ 49,
+ 38,
+ 31,
+ 57,
+ 29,
+ 36,
+ 30,
+ 48,
+ 30,
+ 53,
+ 40,
+ 45,
+ 56,
+ 31,
+ 56,
+ 60,
+ 34,
+ 56,
+ 29,
+ 53,
+ 43,
+ 38,
+ 48,
+ 43,
+ 30,
+ 31,
+ 41,
+ 44,
+ 40,
+ 39,
+ 40,
+ 33,
+ 57,
+ 31,
+ 57,
+ 48,
+ 33,
+ 51,
+ 43,
+ 55,
+ 37,
+ 40,
+ 31,
+ 32,
+ 32,
+ 35,
+ 36,
+ 31,
+ 46,
+ 39,
+ 58,
+ 44,
+ 33,
+ 24,
+ 33,
+ 44,
+ 30,
+ 32,
+ 33,
+ 58,
+ 42,
+ 29,
+ 52,
+ 36,
+ 29,
+ 46,
+ 58,
+ 57,
+ 29,
+ 33,
+ 35,
+ 47,
+ 26,
+ 34,
+ 38,
+ 46,
+ 26,
+ 30,
+ 40,
+ 30,
+ 30,
+ 27,
+ 26,
+ 33,
+ 50,
+ 38,
+ 35,
+ 42,
+ 29,
+ 38,
+ 45,
+ 30,
+ 58,
+ 39,
+ 30,
+ 46,
+ 57,
+ 36,
+ 45,
+ 28,
+ 49,
+ 26,
+ 38,
+ 37,
+ 57,
+ 42,
+ 52,
+ 41,
+ 38,
+ 45,
+ 57,
+ 32,
+ 43,
+ 31,
+ 24,
+ 53,
+ 31,
+ 42,
+ 49,
+ 32,
+ 47,
+ 56,
+ 28,
+ 34,
+ 29,
+ 31,
+ 25,
+ 40,
+ 36,
+ 49,
+ 29,
+ 38,
+ 32,
+ 35,
+ 54,
+ 32,
+ 30,
+ 25,
+ 52,
+ 43,
+ 38,
+ 45,
+ 33,
+ 30,
+ 26,
+ 34,
+ 33,
+ 37,
+ 32,
+ 35,
+ 50,
+ 35,
+ 36,
+ 29,
+ 36,
+ 46,
+ 37,
+ 26,
+ 28,
+ 50,
+ 54,
+ 37,
+ 49,
+ 55,
+ 50,
+ 36,
+ 35,
+ 44,
+ 30,
+ 40,
+ 29,
+ 34,
+ 58,
+ 34,
+ 36,
+ 59,
+ 32,
+ 50,
+ 45,
+ 48,
+ 35,
+ 46,
+ 28,
+ 34,
+ 39,
+ 37,
+ 38,
+ 35,
+ 36,
+ 39,
+ 41,
+ 41,
+ 26,
+ 54,
+ 41,
+ 38,
+ 26,
+ 42,
+ 35,
+ 30,
+ 57,
+ 37,
+ 46,
+ 37,
+ 41,
+ 53,
+ 36,
+ 55,
+ 47,
+ 47,
+ 50,
+ 53,
+ 37,
+ 53,
+ 39,
+ 46,
+ 28,
+ 40,
+ 37,
+ 39,
+ 36,
+ 29,
+ 31,
+ 47,
+ 38,
+ 43,
+ 46,
+ 33,
+ 27,
+ 30,
+ 47,
+ 48,
+ 42,
+ 48,
+ 48,
+ 42,
+ 46,
+ 36,
+ 29,
+ 37,
+ 42,
+ 24,
+ 55,
+ 38,
+ 45,
+ 38,
+ 48,
+ 46,
+ 47,
+ 33,
+ 39,
+ 47,
+ 37,
+ 47,
+ 29,
+ 47,
+ 25,
+ 55,
+ 44,
+ 40,
+ 48,
+ 37,
+ 58,
+ 50,
+ 51,
+ 45,
+ 39,
+ 47,
+ 55,
+ 41,
+ 41,
+ 41,
+ 53,
+ 39,
+ 48,
+ 42,
+ 36,
+ 35,
+ 38,
+ 59,
+ 34,
+ 53,
+ 33,
+ 42,
+ 51,
+ 35,
+ 32,
+ 42,
+ 57,
+ 46,
+ 42,
+ 38,
+ 31,
+ 44,
+ 29,
+ 56,
+ 47,
+ 39,
+ 42,
+ 27,
+ 27,
+ 59,
+ 43,
+ 38,
+ 38,
+ 33,
+ 41,
+ 32,
+ 46,
+ 49,
+ 33,
+ 42,
+ 23,
+ 28,
+ 27,
+ 49,
+ 55,
+ 38,
+ 29,
+ 36,
+ 58,
+ 45,
+ 40,
+ 37,
+ 31,
+ 29,
+ 50,
+ 30,
+ 35,
+ 43,
+ 57,
+ 53,
+ 37,
+ 41,
+ 29,
+ 30,
+ 32,
+ 38,
+ 36,
+ 48,
+ 39,
+ 32,
+ 34,
+ 41,
+ 32,
+ 38,
+ 41,
+ 27,
+ 57,
+ 37,
+ 44,
+ 37,
+ 50,
+ 41,
+ 31,
+ 40,
+ 43,
+ 41,
+ 32,
+ 31,
+ 46,
+ 31,
+ 47,
+ 39,
+ 52,
+ 49,
+ 39,
+ 49,
+ 39,
+ 35,
+ 28,
+ 55,
+ 36,
+ 49,
+ 25,
+ 33,
+ 37,
+ 53,
+ 38,
+ 48,
+ 40,
+ 35,
+ 51,
+ 37,
+ 34,
+ 32,
+ 58,
+ 35,
+ 47,
+ 33,
+ 34,
+ 48,
+ 38,
+ 40,
+ 26,
+ 42,
+ 59,
+ 43,
+ 33,
+ 47,
+ 30,
+ 35,
+ 31,
+ 33,
+ 31,
+ 28,
+ 26,
+ 35,
+ 43,
+ 37,
+ 28,
+ 36,
+ 50,
+ 52,
+ 31,
+ 56,
+ 51,
+ 36,
+ 39,
+ 37,
+ 48,
+ 55,
+ 34,
+ 33,
+ 32,
+ 39,
+ 32,
+ 36,
+ 43,
+ 31,
+ 25,
+ 49,
+ 53,
+ 26,
+ 41,
+ 39,
+ 33,
+ 39,
+ 30,
+ 44,
+ 31,
+ 40,
+ 27,
+ 35,
+ 31,
+ 47,
+ 30,
+ 37,
+ 33,
+ 38,
+ 46,
+ 57,
+ 34,
+ 33,
+ 43,
+ 32,
+ 38,
+ 38,
+ 28,
+ 42,
+ 49,
+ 30,
+ 35,
+ 35,
+ 40,
+ 42,
+ 51,
+ 49,
+ 48,
+ 29,
+ 44,
+ 41,
+ 28,
+ 42,
+ 43,
+ 57,
+ 47,
+ 42,
+ 33,
+ 35,
+ 26,
+ 35,
+ 39,
+ 52,
+ 47,
+ 44,
+ 36,
+ 48,
+ 30,
+ 28,
+ 41,
+ 32,
+ 42,
+ 55,
+ 33,
+ 42,
+ 48,
+ 50,
+ 42,
+ 36,
+ 34,
+ 27,
+ 44,
+ 44,
+ 52,
+ 39,
+ 43,
+ 41,
+ 41,
+ 41,
+ 39,
+ 36,
+ 44,
+ 47,
+ 44,
+ 42,
+ 44,
+ 59,
+ 42,
+ 36,
+ 42,
+ 49,
+ 37,
+ 45,
+ 46,
+ 39,
+ 35,
+ 37,
+ 49,
+ 37,
+ 40,
+ 34,
+ 38,
+ 43,
+ 33,
+ 30,
+ 24,
+ 26,
+ 32,
+ 38,
+ 50,
+ 45,
+ 35,
+ 46,
+ 43,
+ 28,
+ 29,
+ 44,
+ 30,
+ 26,
+ 39,
+ 32,
+ 41,
+ 39,
+ 44,
+ 36,
+ 24,
+ 35,
+ 40,
+ 32,
+ 26,
+ 56,
+ 35,
+ 34,
+ 54,
+ 43,
+ 28,
+ 44,
+ 58,
+ 31,
+ 37,
+ 52,
+ 36,
+ 31,
+ 30,
+ 41,
+ 26,
+ 38,
+ 44,
+ 28,
+ 29,
+ 35,
+ 50,
+ 33,
+ 57,
+ 28,
+ 50,
+ 30,
+ 48,
+ 43,
+ 39,
+ 39,
+ 36,
+ 29,
+ 31,
+ 43,
+ 46,
+ 45,
+ 30,
+ 30,
+ 46,
+ 49,
+ 38,
+ 58,
+ 33,
+ 33,
+ 31,
+ 39,
+ 30,
+ 35,
+ 57,
+ 34,
+ 30,
+ 40,
+ 37,
+ 40,
+ 42,
+ 41,
+ 31,
+ 29,
+ 33,
+ 27,
+ 35,
+ 31,
+ 37,
+ 48,
+ 37,
+ 33,
+ 40,
+ 29,
+ 35,
+ 35,
+ 35,
+ 38,
+ 46,
+ 35,
+ 41,
+ 47,
+ 28,
+ 35,
+ 34,
+ 25,
+ 33,
+ 33,
+ 35,
+ 35,
+ 36,
+ 33,
+ 27,
+ 41,
+ 36,
+ 30,
+ 58,
+ 43,
+ 31,
+ 30,
+ 31,
+ 30,
+ 42,
+ 31,
+ 43,
+ 58,
+ 31,
+ 28,
+ 35,
+ 30,
+ 52,
+ 47,
+ 36,
+ 36,
+ 31,
+ 36,
+ 34,
+ 32,
+ 32,
+ 51,
+ 28,
+ 54,
+ 59,
+ 33,
+ 35,
+ 48,
+ 50,
+ 29,
+ 39,
+ 36,
+ 35,
+ 38,
+ 34,
+ 45,
+ 38,
+ 33,
+ 31,
+ 32,
+ 55,
+ 37,
+ 34,
+ 36,
+ 39,
+ 31,
+ 34,
+ 32,
+ 35,
+ 44,
+ 38,
+ 37,
+ 30,
+ 31,
+ 29,
+ 52,
+ 32,
+ 47,
+ 39,
+ 38,
+ 30,
+ 32,
+ 27,
+ 46,
+ 54,
+ 35,
+ 33,
+ 37,
+ 41,
+ 44,
+ 33,
+ 49,
+ 23,
+ 49,
+ 38,
+ 37,
+ 39,
+ 43,
+ 44,
+ 40,
+ 41,
+ 32,
+ 38,
+ 41,
+ 52,
+ 34,
+ 56,
+ 51,
+ 40,
+ 39,
+ 28,
+ 32,
+ 38,
+ 46,
+ 37,
+ 30,
+ 34,
+ 46,
+ 37,
+ 24,
+ 30,
+ 36,
+ 48,
+ 47,
+ 36,
+ 38,
+ 30,
+ 38,
+ 37,
+ 43,
+ 32,
+ 41,
+ 31,
+ 28,
+ 50,
+ 35,
+ 39,
+ 40,
+ 34,
+ 27,
+ 33,
+ 39,
+ 39,
+ 43,
+ 26,
+ 36,
+ 40,
+ 50,
+ 46,
+ 40,
+ 28,
+ 34,
+ 51,
+ 32,
+ 34,
+ 34,
+ 31,
+ 29,
+ 27,
+ 49,
+ 39,
+ 31,
+ 46,
+ 44,
+ 33,
+ 35,
+ 38,
+ 33,
+ 41,
+ 35,
+ 24,
+ 25,
+ 34,
+ 31,
+ 38,
+ 26,
+ 29,
+ 50,
+ 27,
+ 34,
+ 43,
+ 37,
+ 45,
+ 30,
+ 43,
+ 47,
+ 53,
+ 47,
+ 37,
+ 41,
+ 26,
+ 31,
+ 36,
+ 46,
+ 50,
+ 45,
+ 45,
+ 29,
+ 26,
+ 45,
+ 46,
+ 37,
+ 46,
+ 42,
+ 25,
+ 45,
+ 40,
+ 49,
+ 51,
+ 35,
+ 32,
+ 29,
+ 41,
+ 37,
+ 35,
+ 31,
+ 27,
+ 37,
+ 43,
+ 37,
+ 51,
+ 34,
+ 30,
+ 36,
+ 34,
+ 37,
+ 38,
+ 55,
+ 31,
+ 56,
+ 35,
+ 48,
+ 53,
+ 37,
+ 30,
+ 47,
+ 26,
+ 33,
+ 22,
+ 51,
+ 29,
+ 31,
+ 48,
+ 38,
+ 31,
+ 27,
+ 35,
+ 34,
+ 30,
+ 38,
+ 32,
+ 33,
+ 57,
+ 37,
+ 37,
+ 42,
+ 52,
+ 33,
+ 27,
+ 35,
+ 29,
+ 31,
+ 26,
+ 49,
+ 35,
+ 37,
+ 34,
+ 29,
+ 52,
+ 53,
+ 32,
+ 46,
+ 52,
+ 48,
+ 32,
+ 46,
+ 28,
+ 31,
+ 29,
+ 30,
+ 39,
+ 55,
+ 28,
+ 52,
+ 38,
+ 22,
+ 31,
+ 31,
+ 33,
+ 31,
+ 34,
+ 30,
+ 29,
+ 50,
+ 39,
+ 36,
+ 35,
+ 28,
+ 38,
+ 30,
+ 52,
+ 28,
+ 45,
+ 31,
+ 28,
+ 33,
+ 38,
+ 37,
+ 30,
+ 36,
+ 50,
+ 38,
+ 42,
+ 37,
+ 28,
+ 32,
+ 49,
+ 44,
+ 40,
+ 42,
+ 31,
+ 54,
+ 34,
+ 53,
+ 27,
+ 57,
+ 32,
+ 39,
+ 36,
+ 38,
+ 28,
+ 26,
+ 45,
+ 50,
+ 46,
+ 35,
+ 34,
+ 35,
+ 34,
+ 24,
+ 26,
+ 52,
+ 37,
+ 37,
+ 43,
+ 29,
+ 34,
+ 51,
+ 48,
+ 37,
+ 42,
+ 40,
+ 30,
+ 46,
+ 31,
+ 43,
+ 38,
+ 57,
+ 55,
+ 48,
+ 41,
+ 30,
+ 32,
+ 34,
+ 35,
+ 41,
+ 34,
+ 57,
+ 55,
+ 52,
+ 30,
+ 41,
+ 37,
+ 31,
+ 30,
+ 24,
+ 31,
+ 38,
+ 25,
+ 39,
+ 33,
+ 28,
+ 40,
+ 33,
+ 41,
+ 39,
+ 28,
+ 31,
+ 32,
+ 39,
+ 50,
+ 50,
+ 24,
+ 45,
+ 33,
+ 43,
+ 45,
+ 47,
+ 50,
+ 40,
+ 52,
+ 28,
+ 38,
+ 51,
+ 29,
+ 35,
+ 37,
+ 39,
+ 29,
+ 56,
+ 41,
+ 52,
+ 30,
+ 39,
+ 53,
+ 27,
+ 30,
+ 29,
+ 35,
+ 39,
+ 28,
+ 53,
+ 32,
+ 29,
+ 34,
+ 35,
+ 45,
+ 59,
+ 26,
+ 50,
+ 51,
+ 25,
+ 29,
+ 35,
+ 49,
+ 33,
+ 32,
+ 38,
+ 45,
+ 37,
+ 47,
+ 45,
+ 35,
+ 31,
+ 35,
+ 32,
+ 33,
+ 39,
+ 49,
+ 30,
+ 37,
+ 42,
+ 57,
+ 57,
+ 45,
+ 34,
+ 35,
+ 50,
+ 56,
+ 38,
+ 56,
+ 49,
+ 41,
+ 32,
+ 43,
+ 53,
+ 31,
+ 31,
+ 33,
+ 43,
+ 32,
+ 30,
+ 53,
+ 36,
+ 33,
+ 35,
+ 36,
+ 41,
+ 59,
+ 33,
+ 59,
+ 35,
+ 35,
+ 25,
+ 27,
+ 37,
+ 34,
+ 34,
+ 33,
+ 34,
+ 43,
+ 41,
+ 26,
+ 26,
+ 30,
+ 43,
+ 34,
+ 35,
+ 56,
+ 34,
+ 34,
+ 47,
+ 34,
+ 30,
+ 32,
+ 34,
+ 34,
+ 42,
+ 38,
+ 29,
+ 47,
+ 51,
+ 41,
+ 33,
+ 38,
+ 33,
+ 33,
+ 36,
+ 44,
+ 44,
+ 31,
+ 45,
+ 48,
+ 25,
+ 37,
+ 27,
+ 34,
+ 38,
+ 46,
+ 42,
+ 42,
+ 31,
+ 28,
+ 29,
+ 32,
+ 39,
+ 34,
+ 27,
+ 27,
+ 30,
+ 39,
+ 37,
+ 31,
+ 20,
+ 53,
+ 40,
+ 30,
+ 30,
+ 41,
+ 53,
+ 36,
+ 39,
+ 40,
+ 33,
+ 29,
+ 55,
+ 38,
+ 35,
+ 33,
+ 28,
+ 34,
+ 30,
+ 27,
+ 42,
+ 55,
+ 35,
+ 25,
+ 27,
+ 50,
+ 48,
+ 35,
+ 30,
+ 31,
+ 49,
+ 43,
+ 36,
+ 31,
+ 35,
+ 56,
+ 37,
+ 38,
+ 25,
+ 32,
+ 48,
+ 30,
+ 49,
+ 33,
+ 48,
+ 55,
+ 38,
+ 45,
+ 31,
+ 45,
+ 44,
+ 36,
+ 33,
+ 30,
+ 31,
+ 27,
+ 39,
+ 55,
+ 51,
+ 29,
+ 33,
+ 46,
+ 31,
+ 39,
+ 45,
+ 32,
+ 36,
+ 42,
+ 39,
+ 35,
+ 34,
+ 55,
+ 29,
+ 31,
+ 33,
+ 31,
+ 40,
+ 47,
+ 42,
+ 35,
+ 24,
+ 49,
+ 36,
+ 34,
+ 28,
+ 42,
+ 34,
+ 44,
+ 39,
+ 50,
+ 27,
+ 58,
+ 32,
+ 41,
+ 46,
+ 32,
+ 31,
+ 34,
+ 41,
+ 33,
+ 37,
+ 38,
+ 25,
+ 29,
+ 28,
+ 35,
+ 46,
+ 36,
+ 28,
+ 32,
+ 41,
+ 41,
+ 28,
+ 35,
+ 34,
+ 59,
+ 37,
+ 42,
+ 43,
+ 36,
+ 25,
+ 51,
+ 37,
+ 35,
+ 21,
+ 39,
+ 46,
+ 52,
+ 42,
+ 30,
+ 52,
+ 36,
+ 25,
+ 25,
+ 33,
+ 33,
+ 43,
+ 32,
+ 25,
+ 40,
+ 30,
+ 34,
+ 36,
+ 34,
+ 35,
+ 29,
+ 39,
+ 41,
+ 25,
+ 50,
+ 37,
+ 28,
+ 31,
+ 50,
+ 46,
+ 52,
+ 35,
+ 42,
+ 25,
+ 37,
+ 41,
+ 35,
+ 49,
+ 36,
+ 28,
+ 42,
+ 42,
+ 33,
+ 29,
+ 27,
+ 35,
+ 40,
+ 33,
+ 41,
+ 43,
+ 31,
+ 35,
+ 40,
+ 27,
+ 47,
+ 45,
+ 27,
+ 44,
+ 40,
+ 32,
+ 34,
+ 44,
+ 31,
+ 26,
+ 40,
+ 43,
+ 34,
+ 36,
+ 34,
+ 29,
+ 22,
+ 48,
+ 46,
+ 34,
+ 56,
+ 36,
+ 56,
+ 36,
+ 36,
+ 52,
+ 59,
+ 33,
+ 54,
+ 47,
+ 40,
+ 39,
+ 58,
+ 33,
+ 30,
+ 30,
+ 47,
+ 46,
+ 45,
+ 35,
+ 33,
+ 43,
+ 26,
+ 29,
+ 41,
+ 35,
+ 34,
+ 40,
+ 29,
+ 42,
+ 35,
+ 37,
+ 34,
+ 37,
+ 42,
+ 42,
+ 58,
+ 38,
+ 38,
+ 34,
+ 45,
+ 53,
+ 36,
+ 42,
+ 32,
+ 38,
+ 44,
+ 48,
+ 46,
+ 44,
+ 40,
+ 43,
+ 41,
+ 37,
+ 48,
+ 32,
+ 45,
+ 43,
+ 32,
+ 48,
+ 50,
+ 41,
+ 31,
+ 37,
+ 33,
+ 36,
+ 39,
+ 31,
+ 34,
+ 52,
+ 30,
+ 30,
+ 44,
+ 47,
+ 41,
+ 48,
+ 31,
+ 52,
+ 43,
+ 46,
+ 34,
+ 35,
+ 29,
+ 55,
+ 24,
+ 29,
+ 39,
+ 30,
+ 30,
+ 33,
+ 38,
+ 41,
+ 40,
+ 38,
+ 33,
+ 41,
+ 38,
+ 28,
+ 51,
+ 41,
+ 56,
+ 26,
+ 44,
+ 42,
+ 35,
+ 28,
+ 30,
+ 45,
+ 41,
+ 47,
+ 36,
+ 28,
+ 26,
+ 36,
+ 36,
+ 38,
+ 45,
+ 33,
+ 34,
+ 46,
+ 39,
+ 40,
+ 36,
+ 30,
+ 42,
+ 59,
+ 51,
+ 49,
+ 44,
+ 39,
+ 59,
+ 43,
+ 29,
+ 56,
+ 41,
+ 47,
+ 43,
+ 31,
+ 60,
+ 29,
+ 54,
+ 31,
+ 36,
+ 34,
+ 42,
+ 55,
+ 50,
+ 50,
+ 51,
+ 44,
+ 57,
+ 30,
+ 54,
+ 24,
+ 45,
+ 49,
+ 51,
+ 37,
+ 54,
+ 30,
+ 42,
+ 37,
+ 34,
+ 49,
+ 53,
+ 30,
+ 35,
+ 55,
+ 27,
+ 30,
+ 33,
+ 33,
+ 39,
+ 25,
+ 35,
+ 37,
+ 34,
+ 38,
+ 45,
+ 31,
+ 41,
+ 29,
+ 50,
+ 25,
+ 29,
+ 33,
+ 41,
+ 38,
+ 37,
+ 40,
+ 25,
+ 59,
+ 45,
+ 36,
+ 37,
+ 31,
+ 28,
+ 52,
+ 59,
+ 36,
+ 35,
+ 32,
+ 34,
+ 32,
+ 33,
+ 46,
+ 42,
+ 37,
+ 36,
+ 33,
+ 29,
+ 30,
+ 48,
+ 38,
+ 38,
+ 41,
+ 39,
+ 54,
+ 29,
+ 51,
+ 41,
+ 54,
+ 31,
+ 54,
+ 36,
+ 31,
+ 55,
+ 55,
+ 30,
+ 39,
+ 27,
+ 34,
+ 51,
+ 49,
+ 37,
+ 53,
+ 34,
+ 50,
+ 35,
+ 28,
+ 36,
+ 35,
+ 26,
+ 32,
+ 32,
+ 59,
+ 30,
+ 48,
+ 35,
+ 37,
+ 39,
+ 57,
+ 42,
+ 25,
+ 46,
+ 34,
+ 44,
+ 42,
+ 42,
+ 41,
+ 48,
+ 33,
+ 58,
+ 52,
+ 31,
+ 28,
+ 32,
+ 37,
+ 51,
+ 34,
+ 40,
+ 47,
+ 43,
+ 30,
+ 35,
+ 26,
+ 36,
+ 42,
+ 30,
+ 35,
+ 33,
+ 38,
+ 34,
+ 28,
+ 33,
+ 39,
+ 26,
+ 36,
+ 35,
+ 33,
+ 34,
+ 41,
+ 25,
+ 50,
+ 25,
+ 37,
+ 49,
+ 38,
+ 52,
+ 34,
+ 26,
+ 37,
+ 37,
+ 37,
+ 35,
+ 34,
+ 38,
+ 25,
+ 41,
+ 25,
+ 26,
+ 37,
+ 39,
+ 49,
+ 41,
+ 33,
+ 30,
+ 35,
+ 40,
+ 32,
+ 45,
+ 29,
+ 36,
+ 35,
+ 40,
+ 46,
+ 30,
+ 36,
+ 32,
+ 26,
+ 32,
+ 26,
+ 42,
+ 32,
+ 33,
+ 43,
+ 26,
+ 41,
+ 39,
+ 48,
+ 41,
+ 60,
+ 44,
+ 30,
+ 30,
+ 27,
+ 57,
+ 47,
+ 28,
+ 44,
+ 46,
+ 29,
+ 46,
+ 41,
+ 38,
+ 37,
+ 38,
+ 55,
+ 31,
+ 46,
+ 39,
+ 46,
+ 43,
+ 28,
+ 53,
+ 28,
+ 33,
+ 36,
+ 59,
+ 36,
+ 36,
+ 32,
+ 49,
+ 34,
+ 37,
+ 23,
+ 26,
+ 31,
+ 37,
+ 31,
+ 30,
+ 33,
+ 33,
+ 34,
+ 34,
+ 39,
+ 30,
+ 28,
+ 33,
+ 25,
+ 43,
+ 46,
+ 35,
+ 53,
+ 29,
+ 51,
+ 33,
+ 35,
+ 36,
+ 39,
+ 25,
+ 26,
+ 40,
+ 32,
+ 59,
+ 38,
+ 30,
+ 49,
+ 37,
+ 39,
+ 31,
+ 31,
+ 48,
+ 49,
+ 38,
+ 46,
+ 38,
+ 36,
+ 34,
+ 41,
+ 35,
+ 37,
+ 54,
+ 29,
+ 43,
+ 31,
+ 39,
+ 38,
+ 37,
+ 47,
+ 39,
+ 29,
+ 34,
+ 29,
+ 59,
+ 38,
+ 41,
+ 44,
+ 32,
+ 55,
+ 47,
+ 32,
+ 27,
+ 35,
+ 59,
+ 35,
+ 33,
+ 56,
+ 44,
+ 43,
+ 29,
+ 40,
+ 49,
+ 33,
+ 27,
+ 45,
+ 34,
+ 35,
+ 35,
+ 34,
+ 47,
+ 27,
+ 54,
+ 50,
+ 44,
+ 52,
+ 33,
+ 51,
+ 30,
+ 36,
+ 42,
+ 30,
+ 23,
+ 44,
+ 28,
+ 39,
+ 27,
+ 37,
+ 44,
+ 35,
+ 35,
+ 44,
+ 39,
+ 53,
+ 28,
+ 57,
+ 34,
+ 48,
+ 36,
+ 31,
+ 30,
+ 57,
+ 45,
+ 42,
+ 31,
+ 30,
+ 37,
+ 41,
+ 34,
+ 47,
+ 38,
+ 55,
+ 42,
+ 30,
+ 38,
+ 50,
+ 44,
+ 40,
+ 34,
+ 33,
+ 37,
+ 30,
+ 56,
+ 31,
+ 36,
+ 40,
+ 41,
+ 42,
+ 51,
+ 33,
+ 35,
+ 48,
+ 33,
+ 26,
+ 30,
+ 55,
+ 41,
+ 47,
+ 42,
+ 45,
+ 39,
+ 52,
+ 58,
+ 29,
+ 36,
+ 30,
+ 46,
+ 46,
+ 25,
+ 49,
+ 38,
+ 37,
+ 47,
+ 26,
+ 35,
+ 48,
+ 42,
+ 41,
+ 44,
+ 30,
+ 54,
+ 48,
+ 33,
+ 44,
+ 39,
+ 56,
+ 46,
+ 38,
+ 35,
+ 51,
+ 33,
+ 35,
+ 47,
+ 35,
+ 42,
+ 25,
+ 32,
+ 30,
+ 31,
+ 35,
+ 45,
+ 40,
+ 30,
+ 58,
+ 39,
+ 35,
+ 49,
+ 49,
+ 32,
+ 44,
+ 35,
+ 35,
+ 33,
+ 30,
+ 55,
+ 47,
+ 51,
+ 44,
+ 41,
+ 32,
+ 41,
+ 38,
+ 41,
+ 25,
+ 33,
+ 24,
+ 36,
+ 40,
+ 45,
+ 26,
+ 32,
+ 47,
+ 51,
+ 37,
+ 47,
+ 33,
+ 57,
+ 26,
+ 56,
+ 43,
+ 36,
+ 29,
+ 48,
+ 47,
+ 45,
+ 41,
+ 51,
+ 40,
+ 33,
+ 28,
+ 27,
+ 25,
+ 55,
+ 53,
+ 31,
+ 55,
+ 34,
+ 47,
+ 29,
+ 36,
+ 37,
+ 25,
+ 40,
+ 36,
+ 38,
+ 28,
+ 25,
+ 45,
+ 39,
+ 33,
+ 36,
+ 39,
+ 33,
+ 58,
+ 36,
+ 28,
+ 37,
+ 45,
+ 43,
+ 30,
+ 39,
+ 35,
+ 33,
+ 37,
+ 49,
+ 39,
+ 37,
+ 45,
+ 40,
+ 52,
+ 41,
+ 30,
+ 34,
+ 41,
+ 45,
+ 42,
+ 58,
+ 58,
+ 32,
+ 33,
+ 56,
+ 37,
+ 35,
+ 24,
+ 54,
+ 42,
+ 47,
+ 27,
+ 33,
+ 34,
+ 51,
+ 30,
+ 58,
+ 31,
+ 33,
+ 47,
+ 32,
+ 30,
+ 52,
+ 38,
+ 36,
+ 47,
+ 28,
+ 34,
+ 33,
+ 30,
+ 41,
+ 36,
+ 48,
+ 44,
+ 34,
+ 42,
+ 28,
+ 30,
+ 40,
+ 38,
+ 36,
+ 39,
+ 35,
+ 54,
+ 33,
+ 39,
+ 41,
+ 29,
+ 50,
+ 32,
+ 31,
+ 29,
+ 44,
+ 48,
+ 47,
+ 34,
+ 36,
+ 39,
+ 43,
+ 39,
+ 50,
+ 24,
+ 38,
+ 34,
+ 48,
+ 54,
+ 31,
+ 42,
+ 45,
+ 57,
+ 33,
+ 35,
+ 28,
+ 57,
+ 41,
+ 41,
+ 38,
+ 48,
+ 39,
+ 33,
+ 52,
+ 42,
+ 33,
+ 39,
+ 28,
+ 36,
+ 26,
+ 40,
+ 43,
+ 32,
+ 48,
+ 57,
+ 30,
+ 34,
+ 32,
+ 38,
+ 43,
+ 52,
+ 43,
+ 46,
+ 44,
+ 24,
+ 58,
+ 29,
+ 32,
+ 35,
+ 45,
+ 33,
+ 38,
+ 36,
+ 39,
+ 43,
+ 33,
+ 31,
+ 34,
+ 39,
+ 59,
+ 42,
+ 48,
+ 46,
+ 41,
+ 29,
+ 38,
+ 50,
+ 30,
+ 36,
+ 38,
+ 51,
+ 55,
+ 58,
+ 41,
+ 31,
+ 34,
+ 35,
+ 49,
+ 58,
+ 48,
+ 35,
+ 35,
+ 37,
+ 31,
+ 44,
+ 38,
+ 30,
+ 36,
+ 28,
+ 57,
+ 56,
+ 27,
+ 34,
+ 50,
+ 31,
+ 40,
+ 37,
+ 31,
+ 40,
+ 43,
+ 35,
+ 38,
+ 46,
+ 39,
+ 42,
+ 35,
+ 57,
+ 37,
+ 41,
+ 32,
+ 46,
+ 53,
+ 43,
+ 49,
+ 50,
+ 26,
+ 53,
+ 48,
+ 27,
+ 53,
+ 44,
+ 54,
+ 30,
+ 32,
+ 43,
+ 43,
+ 34,
+ 49,
+ 39,
+ 50,
+ 30,
+ 37,
+ 43,
+ 29,
+ 31,
+ 38,
+ 43,
+ 29,
+ 35,
+ 27,
+ 57,
+ 30,
+ 43,
+ 32,
+ 34,
+ 31,
+ 29,
+ 58,
+ 52,
+ 27,
+ 28,
+ 42,
+ 29,
+ 45,
+ 26,
+ 51,
+ 36,
+ 35,
+ 39,
+ 31,
+ 40,
+ 40,
+ 46,
+ 39,
+ 36,
+ 42,
+ 39,
+ 51,
+ 50,
+ 27,
+ 38,
+ 50,
+ 46,
+ 26,
+ 29,
+ 32,
+ 33,
+ 59,
+ 33,
+ 58,
+ 42,
+ 28,
+ 29,
+ 31,
+ 31,
+ 31,
+ 27,
+ 58,
+ 31,
+ 60,
+ 38,
+ 27,
+ 35,
+ 54,
+ 42,
+ 36,
+ 31,
+ 33,
+ 40,
+ 30,
+ 46,
+ 30,
+ 29,
+ 35,
+ 37,
+ 59,
+ 45,
+ 29,
+ 45,
+ 32,
+ 33,
+ 38,
+ 47,
+ 41,
+ 41,
+ 43,
+ 34,
+ 48,
+ 37,
+ 47,
+ 42,
+ 28,
+ 36,
+ 49,
+ 28,
+ 35,
+ 42,
+ 36,
+ 36,
+ 45,
+ 36,
+ 30,
+ 42,
+ 44,
+ 26,
+ 30,
+ 26,
+ 50,
+ 34,
+ 58,
+ 50,
+ 43,
+ 31,
+ 46,
+ 30,
+ 41,
+ 48,
+ 41,
+ 31,
+ 42,
+ 32,
+ 47,
+ 26,
+ 32,
+ 30,
+ 25,
+ 33,
+ 29,
+ 42,
+ 60,
+ 48,
+ 46,
+ 30,
+ 34,
+ 37,
+ 24,
+ 58,
+ 59,
+ 36,
+ 28,
+ 31,
+ 23,
+ 34,
+ 40,
+ 25,
+ 33,
+ 26,
+ 32,
+ 50,
+ 32,
+ 26,
+ 31,
+ 34,
+ 31,
+ 26,
+ 26,
+ 27,
+ 30,
+ 50,
+ 55,
+ 52,
+ 36,
+ 29,
+ 36,
+ 26,
+ 25,
+ 45,
+ 28,
+ 31,
+ 32,
+ 57,
+ 27,
+ 39,
+ 29,
+ 25,
+ 49,
+ 35,
+ 28,
+ 33,
+ 25,
+ 25,
+ 32,
+ 25,
+ 31,
+ 42,
+ 52,
+ 26,
+ 29,
+ 31,
+ 56,
+ 48,
+ 27,
+ 26,
+ 35,
+ 56,
+ 34,
+ 39,
+ 31,
+ 49,
+ 42,
+ 37,
+ 39,
+ 51,
+ 33,
+ 25,
+ 23,
+ 35,
+ 29,
+ 42,
+ 32,
+ 38,
+ 41,
+ 40,
+ 32,
+ 27,
+ 35,
+ 30,
+ 36,
+ 26,
+ 26,
+ 32,
+ 29,
+ 26,
+ 46,
+ 39,
+ 46,
+ 27,
+ 32,
+ 48,
+ 32,
+ 23,
+ 27,
+ 53,
+ 52,
+ 36,
+ 27,
+ 38,
+ 29,
+ 29,
+ 45,
+ 56,
+ 39,
+ 28,
+ 45,
+ 36,
+ 36,
+ 47,
+ 31,
+ 44,
+ 24,
+ 54,
+ 55,
+ 27,
+ 54,
+ 25,
+ 40,
+ 46,
+ 46,
+ 30,
+ 39,
+ 36,
+ 33,
+ 37,
+ 38,
+ 33,
+ 34,
+ 38,
+ 42,
+ 22,
+ 26,
+ 51,
+ 51,
+ 40,
+ 35,
+ 54,
+ 36,
+ 32,
+ 36,
+ 44,
+ 37,
+ 37,
+ 34,
+ 43,
+ 34,
+ 33,
+ 45,
+ 26,
+ 52,
+ 34,
+ 31,
+ 31,
+ 54,
+ 35,
+ 37,
+ 49,
+ 55,
+ 35,
+ 52,
+ 35,
+ 58,
+ 48,
+ 28,
+ 24,
+ 32,
+ 41,
+ 29,
+ 46,
+ 36,
+ 32,
+ 48,
+ 41,
+ 41,
+ 52,
+ 46,
+ 41,
+ 33,
+ 44,
+ 57,
+ 35,
+ 26,
+ 48,
+ 31,
+ 41,
+ 27,
+ 43,
+ 33,
+ 40,
+ 36,
+ 58,
+ 31,
+ 32,
+ 38,
+ 30,
+ 40,
+ 31,
+ 31,
+ 41,
+ 39,
+ 30,
+ 56,
+ 53,
+ 29,
+ 52,
+ 57,
+ 36,
+ 36,
+ 50,
+ 28,
+ 49,
+ 40,
+ 41,
+ 44,
+ 47,
+ 40,
+ 49,
+ 29,
+ 39,
+ 58,
+ 37,
+ 31,
+ 55,
+ 41,
+ 47,
+ 28,
+ 54,
+ 32,
+ 35,
+ 31,
+ 39,
+ 41,
+ 36,
+ 44,
+ 44,
+ 47,
+ 27,
+ 46,
+ 42,
+ 37,
+ 37,
+ 34,
+ 37,
+ 29,
+ 26,
+ 31,
+ 55,
+ 52,
+ 39,
+ 38,
+ 38,
+ 60,
+ 34,
+ 37,
+ 48,
+ 40,
+ 31,
+ 58,
+ 48,
+ 34,
+ 41,
+ 36,
+ 41,
+ 38,
+ 36,
+ 43,
+ 52,
+ 35,
+ 26,
+ 35,
+ 50,
+ 45,
+ 34,
+ 36,
+ 31,
+ 41,
+ 39,
+ 47,
+ 34,
+ 35,
+ 30,
+ 31,
+ 40,
+ 43,
+ 30,
+ 41,
+ 46,
+ 32,
+ 37,
+ 27,
+ 39,
+ 36,
+ 49,
+ 40,
+ 51,
+ 38,
+ 37,
+ 51,
+ 43,
+ 25,
+ 37,
+ 46,
+ 37,
+ 27,
+ 29,
+ 36,
+ 30,
+ 48,
+ 41,
+ 37,
+ 48,
+ 35,
+ 39,
+ 23,
+ 43,
+ 25,
+ 36,
+ 57,
+ 41,
+ 44,
+ 46,
+ 29,
+ 42,
+ 32,
+ 32,
+ 35,
+ 31,
+ 36,
+ 48,
+ 36,
+ 54,
+ 33,
+ 35,
+ 35,
+ 33,
+ 60,
+ 36,
+ 54,
+ 35,
+ 32,
+ 54,
+ 50,
+ 44,
+ 38,
+ 37,
+ 49,
+ 40,
+ 43,
+ 34,
+ 57,
+ 42,
+ 47,
+ 31,
+ 36,
+ 27,
+ 33,
+ 30,
+ 50,
+ 50,
+ 41,
+ 26,
+ 32,
+ 44,
+ 44,
+ 40,
+ 29,
+ 31,
+ 58,
+ 34,
+ 35,
+ 32,
+ 53,
+ 36,
+ 52,
+ 50,
+ 57,
+ 34,
+ 30,
+ 33,
+ 35,
+ 41,
+ 42,
+ 40,
+ 30,
+ 35,
+ 28,
+ 38,
+ 35,
+ 35,
+ 39,
+ 37,
+ 40,
+ 35,
+ 26,
+ 28,
+ 35,
+ 28,
+ 43,
+ 38,
+ 35,
+ 30,
+ 33,
+ 46,
+ 40,
+ 46,
+ 31,
+ 30,
+ 58,
+ 48,
+ 43,
+ 27,
+ 51,
+ 35,
+ 42,
+ 34,
+ 44,
+ 40,
+ 42,
+ 51,
+ 47,
+ 46,
+ 34,
+ 31,
+ 37,
+ 37,
+ 35,
+ 39,
+ 45,
+ 29,
+ 33,
+ 46,
+ 51,
+ 41,
+ 31,
+ 34,
+ 57,
+ 47,
+ 32,
+ 43,
+ 48,
+ 31,
+ 34,
+ 31,
+ 44,
+ 37,
+ 49,
+ 32,
+ 32,
+ 31,
+ 29,
+ 46,
+ 45,
+ 53,
+ 34,
+ 57,
+ 29,
+ 27,
+ 46,
+ 36,
+ 46,
+ 37,
+ 33,
+ 33,
+ 39,
+ 42,
+ 43,
+ 32,
+ 38,
+ 37,
+ 42,
+ 37,
+ 35,
+ 34,
+ 34,
+ 53,
+ 45,
+ 34,
+ 47,
+ 31,
+ 39,
+ 35,
+ 37,
+ 43,
+ 36,
+ 38,
+ 53,
+ 28,
+ 35,
+ 33,
+ 37,
+ 35,
+ 31,
+ 50,
+ 34,
+ 42,
+ 47,
+ 56,
+ 46,
+ 38,
+ 36,
+ 36,
+ 39,
+ 31,
+ 30,
+ 39,
+ 41,
+ 29,
+ 50,
+ 36,
+ 43,
+ 31,
+ 33,
+ 42,
+ 41,
+ 43,
+ 40,
+ 40,
+ 39,
+ 42,
+ 32,
+ 43,
+ 38,
+ 34,
+ 44,
+ 34,
+ 35,
+ 25,
+ 31,
+ 29,
+ 27,
+ 27,
+ 54,
+ 29,
+ 32,
+ 25,
+ 40,
+ 34,
+ 33,
+ 37,
+ 37,
+ 52,
+ 39,
+ 30,
+ 39,
+ 42,
+ 42,
+ 36,
+ 42,
+ 58,
+ 38,
+ 25,
+ 32,
+ 49,
+ 42,
+ 59,
+ 32,
+ 29,
+ 45,
+ 32,
+ 26,
+ 47,
+ 29,
+ 26,
+ 46,
+ 48,
+ 33,
+ 31,
+ 34,
+ 32,
+ 45,
+ 36,
+ 38,
+ 38,
+ 29,
+ 37,
+ 48,
+ 37,
+ 36,
+ 47,
+ 26,
+ 33,
+ 41,
+ 45,
+ 30,
+ 33,
+ 33,
+ 42,
+ 35,
+ 56,
+ 39,
+ 39,
+ 43,
+ 25,
+ 24,
+ 59,
+ 32,
+ 40,
+ 27,
+ 48,
+ 37,
+ 39,
+ 34,
+ 41,
+ 34,
+ 37,
+ 42,
+ 39,
+ 39,
+ 35,
+ 49,
+ 53,
+ 29,
+ 29,
+ 46,
+ 32,
+ 44,
+ 29,
+ 44,
+ 44,
+ 44,
+ 44,
+ 29,
+ 37,
+ 34,
+ 35,
+ 30,
+ 54,
+ 52,
+ 34,
+ 31,
+ 30,
+ 36,
+ 26,
+ 36,
+ 36,
+ 40,
+ 27,
+ 36,
+ 28,
+ 34,
+ 41,
+ 25,
+ 35,
+ 45,
+ 32,
+ 33,
+ 56,
+ 54,
+ 49,
+ 40,
+ 33,
+ 33,
+ 24,
+ 25,
+ 34,
+ 37,
+ 39,
+ 32,
+ 25,
+ 32,
+ 29,
+ 59,
+ 35,
+ 33,
+ 25,
+ 31,
+ 36,
+ 53,
+ 40,
+ 48,
+ 36,
+ 47,
+ 28,
+ 31,
+ 58,
+ 36,
+ 34,
+ 34,
+ 33,
+ 29,
+ 43,
+ 46,
+ 50,
+ 38,
+ 41,
+ 38,
+ 50,
+ 53,
+ 39,
+ 43,
+ 41,
+ 32,
+ 31,
+ 29,
+ 45,
+ 45,
+ 37,
+ 49,
+ 26,
+ 40,
+ 30,
+ 60,
+ 35,
+ 32,
+ 28,
+ 26,
+ 42,
+ 36,
+ 54,
+ 32,
+ 42,
+ 39,
+ 34,
+ 40,
+ 42,
+ 39,
+ 25,
+ 37,
+ 32,
+ 35,
+ 28,
+ 41,
+ 38,
+ 53,
+ 37,
+ 36,
+ 31,
+ 35,
+ 54,
+ 34,
+ 35,
+ 33,
+ 41,
+ 50,
+ 33,
+ 37,
+ 37,
+ 40,
+ 35,
+ 35,
+ 39,
+ 39,
+ 53,
+ 30,
+ 47,
+ 32,
+ 54,
+ 56,
+ 50,
+ 26,
+ 36,
+ 36,
+ 37,
+ 21,
+ 39,
+ 45,
+ 40,
+ 34,
+ 39,
+ 41,
+ 33,
+ 46,
+ 29,
+ 53,
+ 53,
+ 39,
+ 43,
+ 44,
+ 33,
+ 43,
+ 39,
+ 29,
+ 36,
+ 47,
+ 41,
+ 42,
+ 36,
+ 39,
+ 45,
+ 48,
+ 28,
+ 33,
+ 28,
+ 29,
+ 36,
+ 49,
+ 32,
+ 48,
+ 52,
+ 33,
+ 30,
+ 29,
+ 31,
+ 38,
+ 45,
+ 45,
+ 31,
+ 27,
+ 54,
+ 52,
+ 43,
+ 43,
+ 52,
+ 38,
+ 32,
+ 24,
+ 33,
+ 39,
+ 31,
+ 31,
+ 48,
+ 37,
+ 33,
+ 25,
+ 33,
+ 58,
+ 45,
+ 44,
+ 30,
+ 39,
+ 52,
+ 39,
+ 44,
+ 40,
+ 42,
+ 33,
+ 33,
+ 51,
+ 36,
+ 45,
+ 42,
+ 36,
+ 42,
+ 48,
+ 35,
+ 31,
+ 40,
+ 26,
+ 47,
+ 40,
+ 37,
+ 50,
+ 37,
+ 55,
+ 50,
+ 38,
+ 33,
+ 41,
+ 56,
+ 52,
+ 32,
+ 25,
+ 45,
+ 56,
+ 43,
+ 57,
+ 45,
+ 45,
+ 36,
+ 41,
+ 45,
+ 38,
+ 49,
+ 37,
+ 43,
+ 29,
+ 39,
+ 57,
+ 28,
+ 46,
+ 36,
+ 28,
+ 30,
+ 25,
+ 40,
+ 42,
+ 50,
+ 56,
+ 30,
+ 32,
+ 59,
+ 45,
+ 40,
+ 27,
+ 55,
+ 37,
+ 56,
+ 39,
+ 29,
+ 30,
+ 31,
+ 38,
+ 43,
+ 32,
+ 44,
+ 39,
+ 39,
+ 40,
+ 27,
+ 56,
+ 51,
+ 43,
+ 39,
+ 44,
+ 35,
+ 36,
+ 28,
+ 42,
+ 30,
+ 36,
+ 38,
+ 32,
+ 45,
+ 55,
+ 31,
+ 41,
+ 30,
+ 41,
+ 40,
+ 47,
+ 59,
+ 33,
+ 38,
+ 38,
+ 39,
+ 35,
+ 38,
+ 30,
+ 32,
+ 32,
+ 43,
+ 38,
+ 50,
+ 35,
+ 44,
+ 50,
+ 54,
+ 42,
+ 58,
+ 35,
+ 59,
+ 40,
+ 49,
+ 24,
+ 43,
+ 36,
+ 56,
+ 34,
+ 27,
+ 58,
+ 39,
+ 40,
+ 49,
+ 42,
+ 42,
+ 52,
+ 43,
+ 35,
+ 34,
+ 22,
+ 33,
+ 39,
+ 47,
+ 39,
+ 34,
+ 32,
+ 46,
+ 31,
+ 44,
+ 49,
+ 35,
+ 36,
+ 39,
+ 36,
+ 44,
+ 37,
+ 41,
+ 45,
+ 48,
+ 44,
+ 49,
+ 38,
+ 43,
+ 47,
+ 36,
+ 33,
+ 34,
+ 36,
+ 38,
+ 39,
+ 47,
+ 33,
+ 34,
+ 38,
+ 48,
+ 30,
+ 36,
+ 45,
+ 32,
+ 33,
+ 35,
+ 29,
+ 35,
+ 32,
+ 27,
+ 46,
+ 29,
+ 39,
+ 34,
+ 34,
+ 39,
+ 50,
+ 38,
+ 32,
+ 32,
+ 38,
+ 49,
+ 41,
+ 40,
+ 31,
+ 34,
+ 48,
+ 52,
+ 47,
+ 38,
+ 35,
+ 33,
+ 52,
+ 29,
+ 47,
+ 39,
+ 49,
+ 32,
+ 28,
+ 40,
+ 59,
+ 50,
+ 32,
+ 41,
+ 51,
+ 31,
+ 28,
+ 40,
+ 34,
+ 34,
+ 32,
+ 36,
+ 25,
+ 44,
+ 52,
+ 34,
+ 31,
+ 45,
+ 32,
+ 28,
+ 43,
+ 38,
+ 41,
+ 53,
+ 32,
+ 33,
+ 29,
+ 56,
+ 52,
+ 37,
+ 33,
+ 36,
+ 34,
+ 38,
+ 31,
+ 25,
+ 41,
+ 44,
+ 51,
+ 29,
+ 33,
+ 34,
+ 53,
+ 52,
+ 38,
+ 26,
+ 30,
+ 41,
+ 40,
+ 57,
+ 35,
+ 41,
+ 40,
+ 26,
+ 29,
+ 27,
+ 32,
+ 52,
+ 46,
+ 37,
+ 36,
+ 52,
+ 30,
+ 29,
+ 55,
+ 45,
+ 24,
+ 43,
+ 24,
+ 41,
+ 35,
+ 26,
+ 37,
+ 52,
+ 35,
+ 48,
+ 36,
+ 31,
+ 26,
+ 34,
+ 45,
+ 39,
+ 50,
+ 40,
+ 29,
+ 42,
+ 30,
+ 40,
+ 34,
+ 60,
+ 35,
+ 34,
+ 35,
+ 25,
+ 35,
+ 40,
+ 35,
+ 37,
+ 42,
+ 32,
+ 30,
+ 34,
+ 29,
+ 50,
+ 34,
+ 52,
+ 26,
+ 31,
+ 37,
+ 36,
+ 24,
+ 28,
+ 32,
+ 57,
+ 34,
+ 48,
+ 33,
+ 37,
+ 42,
+ 35,
+ 44,
+ 49,
+ 30,
+ 41,
+ 30,
+ 51,
+ 55,
+ 54,
+ 32,
+ 52,
+ 55,
+ 41,
+ 39,
+ 36,
+ 44,
+ 37,
+ 34,
+ 50,
+ 34,
+ 34,
+ 52,
+ 45,
+ 37,
+ 38,
+ 37,
+ 30,
+ 43,
+ 31,
+ 32,
+ 35,
+ 37,
+ 29,
+ 31,
+ 37,
+ 39,
+ 59,
+ 57,
+ 46,
+ 42,
+ 50,
+ 26,
+ 50,
+ 54,
+ 34,
+ 43,
+ 31,
+ 25,
+ 36,
+ 53,
+ 55,
+ 51,
+ 39,
+ 41,
+ 38,
+ 28,
+ 50,
+ 47,
+ 33,
+ 36,
+ 30,
+ 34,
+ 35,
+ 37,
+ 31,
+ 49,
+ 47,
+ 55,
+ 29,
+ 54,
+ 36,
+ 27,
+ 28,
+ 37,
+ 36,
+ 27,
+ 36,
+ 39,
+ 32,
+ 34,
+ 30,
+ 50,
+ 47,
+ 32,
+ 34,
+ 38,
+ 35,
+ 36,
+ 50,
+ 25,
+ 31,
+ 38,
+ 45,
+ 36,
+ 38,
+ 45,
+ 34,
+ 31,
+ 57,
+ 49,
+ 39,
+ 54,
+ 52,
+ 46,
+ 41,
+ 37,
+ 48,
+ 44,
+ 36,
+ 27,
+ 35,
+ 36,
+ 39,
+ 33,
+ 30,
+ 32,
+ 37,
+ 42,
+ 30,
+ 33,
+ 43,
+ 38,
+ 36,
+ 32,
+ 47,
+ 33,
+ 47,
+ 38,
+ 31,
+ 35,
+ 58,
+ 30,
+ 33,
+ 32,
+ 30,
+ 50,
+ 40,
+ 43,
+ 44,
+ 55,
+ 33,
+ 54,
+ 53,
+ 41,
+ 27,
+ 28,
+ 59,
+ 41,
+ 32,
+ 35,
+ 52,
+ 47,
+ 37,
+ 32,
+ 39,
+ 33,
+ 36,
+ 50,
+ 37,
+ 33,
+ 50,
+ 29,
+ 46,
+ 22,
+ 45,
+ 47,
+ 37,
+ 37,
+ 51,
+ 55,
+ 28,
+ 43,
+ 32,
+ 43,
+ 56,
+ 26,
+ 26,
+ 36,
+ 38,
+ 39,
+ 54,
+ 29,
+ 33,
+ 29,
+ 27,
+ 34,
+ 28,
+ 35,
+ 35,
+ 41,
+ 36,
+ 37,
+ 37,
+ 39,
+ 30,
+ 39,
+ 40,
+ 52,
+ 43,
+ 31,
+ 42,
+ 26,
+ 39,
+ 42,
+ 44,
+ 30,
+ 35,
+ 37,
+ 24,
+ 32,
+ 36,
+ 44,
+ 46,
+ 45,
+ 29,
+ 37,
+ 55,
+ 38,
+ 59,
+ 58,
+ 54,
+ 43,
+ 36,
+ 28,
+ 46,
+ 31,
+ 38,
+ 50,
+ 39,
+ 34,
+ 30,
+ 51,
+ 26,
+ 35,
+ 24,
+ 51,
+ 31,
+ 30,
+ 46,
+ 44,
+ 38,
+ 30,
+ 33,
+ 31,
+ 30,
+ 29,
+ 37,
+ 34,
+ 42,
+ 38,
+ 30,
+ 25,
+ 25,
+ 28,
+ 35,
+ 34,
+ 31,
+ 56,
+ 31,
+ 41,
+ 33,
+ 32,
+ 41,
+ 29,
+ 41,
+ 36,
+ 35,
+ 43,
+ 32,
+ 41,
+ 25,
+ 36,
+ 36,
+ 42,
+ 35,
+ 50,
+ 42,
+ 32,
+ 32,
+ 39,
+ 39,
+ 41,
+ 34,
+ 36,
+ 28,
+ 49,
+ 31,
+ 25,
+ 31,
+ 27,
+ 31,
+ 28,
+ 28,
+ 26,
+ 25,
+ 28,
+ 33,
+ 55,
+ 29,
+ 28,
+ 24,
+ 20,
+ 29,
+ 29,
+ 32,
+ 32,
+ 32,
+ 37,
+ 36,
+ 55,
+ 29,
+ 24,
+ 24,
+ 40,
+ 41,
+ 29,
+ 28,
+ 57,
+ 57,
+ 38,
+ 56,
+ 52,
+ 25,
+ 31,
+ 52,
+ 32,
+ 31,
+ 32,
+ 29,
+ 39,
+ 42,
+ 50,
+ 34,
+ 32,
+ 44,
+ 48,
+ 41,
+ 32,
+ 27,
+ 41,
+ 54,
+ 52,
+ 55,
+ 38,
+ 56,
+ 41,
+ 40,
+ 25,
+ 42,
+ 24,
+ 44,
+ 43,
+ 28,
+ 33,
+ 47,
+ 35,
+ 25,
+ 26,
+ 42,
+ 43,
+ 29,
+ 29,
+ 45,
+ 38,
+ 33,
+ 33,
+ 43,
+ 39,
+ 36,
+ 31,
+ 51,
+ 41,
+ 44,
+ 57,
+ 49,
+ 36,
+ 51,
+ 45,
+ 43,
+ 23,
+ 26,
+ 33,
+ 28,
+ 54,
+ 35,
+ 60,
+ 49,
+ 56,
+ 33,
+ 28,
+ 34,
+ 39,
+ 40,
+ 56,
+ 33,
+ 40,
+ 58,
+ 40,
+ 46,
+ 26,
+ 36,
+ 32,
+ 59,
+ 47,
+ 41,
+ 47,
+ 30,
+ 30,
+ 33,
+ 35,
+ 58,
+ 46,
+ 58,
+ 43,
+ 47,
+ 49,
+ 54,
+ 41,
+ 36,
+ 51,
+ 41,
+ 42,
+ 52,
+ 29,
+ 46,
+ 42,
+ 48,
+ 27,
+ 32,
+ 35,
+ 32,
+ 35,
+ 47,
+ 35,
+ 53,
+ 37,
+ 42,
+ 53,
+ 35,
+ 55,
+ 37,
+ 44,
+ 34,
+ 45,
+ 33,
+ 41,
+ 30,
+ 45,
+ 38,
+ 43,
+ 34,
+ 44,
+ 54,
+ 46,
+ 36,
+ 34,
+ 33,
+ 49,
+ 49,
+ 34,
+ 49,
+ 57,
+ 47,
+ 40,
+ 30,
+ 33,
+ 36,
+ 38,
+ 55,
+ 43,
+ 37,
+ 31,
+ 24,
+ 58,
+ 23,
+ 45,
+ 29,
+ 36,
+ 38,
+ 38,
+ 52,
+ 28,
+ 53,
+ 40,
+ 49,
+ 40,
+ 36,
+ 34,
+ 35,
+ 37,
+ 35,
+ 36,
+ 49,
+ 38,
+ 39,
+ 36,
+ 33,
+ 57,
+ 25,
+ 23,
+ 31,
+ 51,
+ 45,
+ 34,
+ 31,
+ 37,
+ 29,
+ 60,
+ 43,
+ 40,
+ 37,
+ 47,
+ 37,
+ 28,
+ 28,
+ 25,
+ 38,
+ 53,
+ 35,
+ 45,
+ 28,
+ 36,
+ 45,
+ 38,
+ 46,
+ 49,
+ 53,
+ 42,
+ 26,
+ 35,
+ 60,
+ 56,
+ 31,
+ 42,
+ 33,
+ 40,
+ 52,
+ 34,
+ 34,
+ 38,
+ 29,
+ 37,
+ 28,
+ 39,
+ 38,
+ 52,
+ 25,
+ 31,
+ 33,
+ 36,
+ 26,
+ 46,
+ 33,
+ 40,
+ 41,
+ 41,
+ 30,
+ 52,
+ 40,
+ 44,
+ 35,
+ 36,
+ 56,
+ 36,
+ 47,
+ 50,
+ 45,
+ 39,
+ 38,
+ 51,
+ 31,
+ 37,
+ 33,
+ 37,
+ 26,
+ 38,
+ 36,
+ 34,
+ 40,
+ 39,
+ 31,
+ 47,
+ 44,
+ 30,
+ 40,
+ 40,
+ 41,
+ 36,
+ 34,
+ 38,
+ 38,
+ 32,
+ 29,
+ 47,
+ 47,
+ 35,
+ 45,
+ 46,
+ 39,
+ 31,
+ 49,
+ 38,
+ 48,
+ 48,
+ 31,
+ 47,
+ 49,
+ 51,
+ 36,
+ 29,
+ 39,
+ 29,
+ 52,
+ 37,
+ 34,
+ 35,
+ 34,
+ 40,
+ 29,
+ 40,
+ 37,
+ 40,
+ 57,
+ 37,
+ 40,
+ 50,
+ 34,
+ 46,
+ 48,
+ 53,
+ 30,
+ 32,
+ 46,
+ 49,
+ 37,
+ 24,
+ 57,
+ 47,
+ 47,
+ 48,
+ 36,
+ 32,
+ 26,
+ 37,
+ 52,
+ 60,
+ 45,
+ 40,
+ 36,
+ 35,
+ 38,
+ 43,
+ 52,
+ 28,
+ 36,
+ 25,
+ 34,
+ 45,
+ 36,
+ 42,
+ 41,
+ 52,
+ 38,
+ 34,
+ 35,
+ 32,
+ 32,
+ 45,
+ 41,
+ 55,
+ 39,
+ 41,
+ 58,
+ 36,
+ 44,
+ 33,
+ 58,
+ 50,
+ 44,
+ 33,
+ 43,
+ 36,
+ 31,
+ 27,
+ 35,
+ 47,
+ 57,
+ 54,
+ 27,
+ 44,
+ 35,
+ 26,
+ 34,
+ 43,
+ 33,
+ 35,
+ 34,
+ 56,
+ 28,
+ 54,
+ 29,
+ 40,
+ 40,
+ 46,
+ 36,
+ 36,
+ 35,
+ 48,
+ 40,
+ 58,
+ 48,
+ 49,
+ 36,
+ 43,
+ 31,
+ 35,
+ 46,
+ 55,
+ 41,
+ 34,
+ 41,
+ 33,
+ 46,
+ 46,
+ 29,
+ 39,
+ 53,
+ 35,
+ 41,
+ 57,
+ 39,
+ 53,
+ 37,
+ 33,
+ 54,
+ 44,
+ 58,
+ 42,
+ 57,
+ 39,
+ 37,
+ 26,
+ 57,
+ 29,
+ 36,
+ 56,
+ 34,
+ 55,
+ 34,
+ 30,
+ 35,
+ 40,
+ 49,
+ 55,
+ 56,
+ 58,
+ 30,
+ 31,
+ 34,
+ 36,
+ 55,
+ 43,
+ 35,
+ 38,
+ 35,
+ 56,
+ 32,
+ 34,
+ 44,
+ 29,
+ 44,
+ 39,
+ 32,
+ 57,
+ 30,
+ 43,
+ 40,
+ 33,
+ 50,
+ 44,
+ 43,
+ 57,
+ 48,
+ 33,
+ 56,
+ 37,
+ 36,
+ 36,
+ 41,
+ 49,
+ 53,
+ 42,
+ 33,
+ 40,
+ 30,
+ 31,
+ 57,
+ 36,
+ 56,
+ 27,
+ 44,
+ 46,
+ 25,
+ 59,
+ 37,
+ 39,
+ 32,
+ 55,
+ 25,
+ 42,
+ 40,
+ 52,
+ 50,
+ 33,
+ 31,
+ 36,
+ 40,
+ 22,
+ 27,
+ 30,
+ 39,
+ 53,
+ 23,
+ 45,
+ 48,
+ 37,
+ 40,
+ 38,
+ 33,
+ 42,
+ 30,
+ 32,
+ 21,
+ 37,
+ 34,
+ 51,
+ 50,
+ 36,
+ 56,
+ 44,
+ 56,
+ 51,
+ 58,
+ 29,
+ 48,
+ 37,
+ 31,
+ 34,
+ 39,
+ 28,
+ 33,
+ 36,
+ 37,
+ 52,
+ 47,
+ 44,
+ 38,
+ 46,
+ 33,
+ 38,
+ 55,
+ 29,
+ 34,
+ 40,
+ 27,
+ 42,
+ 37,
+ 47,
+ 33,
+ 58,
+ 27,
+ 32,
+ 36,
+ 35,
+ 28,
+ 47,
+ 38,
+ 46,
+ 26,
+ 29,
+ 39,
+ 33,
+ 48,
+ 38,
+ 40,
+ 39,
+ 37,
+ 33,
+ 41,
+ 33,
+ 24,
+ 53,
+ 49,
+ 42,
+ 47,
+ 31,
+ 46,
+ 54,
+ 32,
+ 32,
+ 25,
+ 26,
+ 46,
+ 26,
+ 54,
+ 47,
+ 41,
+ 36,
+ 47,
+ 52,
+ 34,
+ 30,
+ 26,
+ 58,
+ 31,
+ 46,
+ 39,
+ 42,
+ 37,
+ 35,
+ 43,
+ 29,
+ 58,
+ 32,
+ 52,
+ 36,
+ 38,
+ 36,
+ 44,
+ 34,
+ 41,
+ 51,
+ 28,
+ 31,
+ 29,
+ 33,
+ 42,
+ 39,
+ 45,
+ 28,
+ 59,
+ 58,
+ 49,
+ 52,
+ 29,
+ 60,
+ 28,
+ 30,
+ 36,
+ 56,
+ 29,
+ 39,
+ 25,
+ 36,
+ 29,
+ 58,
+ 49,
+ 34,
+ 39,
+ 34,
+ 33,
+ 34,
+ 32,
+ 29,
+ 44,
+ 50,
+ 59,
+ 26,
+ 29,
+ 34,
+ 24,
+ 34,
+ 37,
+ 30,
+ 58,
+ 58,
+ 40,
+ 40,
+ 33,
+ 32,
+ 34,
+ 27,
+ 27,
+ 27,
+ 36,
+ 42,
+ 28,
+ 35,
+ 29,
+ 59,
+ 35,
+ 42,
+ 30,
+ 54,
+ 47,
+ 35,
+ 49,
+ 49,
+ 36,
+ 29,
+ 30,
+ 44,
+ 28,
+ 40,
+ 39,
+ 49,
+ 31,
+ 37,
+ 52,
+ 23,
+ 40,
+ 28,
+ 35,
+ 38,
+ 42,
+ 33,
+ 28,
+ 23,
+ 39,
+ 32,
+ 39,
+ 39,
+ 39,
+ 27,
+ 28,
+ 54,
+ 29,
+ 38,
+ 44,
+ 31,
+ 41,
+ 41,
+ 41,
+ 53,
+ 56,
+ 41,
+ 28,
+ 28,
+ 33,
+ 29,
+ 40,
+ 34,
+ 37,
+ 28,
+ 45,
+ 28,
+ 36,
+ 26,
+ 38,
+ 38,
+ 56,
+ 36,
+ 58,
+ 41,
+ 43,
+ 37,
+ 55,
+ 55,
+ 42,
+ 37,
+ 35,
+ 47,
+ 32,
+ 47,
+ 57,
+ 57,
+ 54,
+ 41,
+ 35,
+ 27,
+ 40,
+ 53,
+ 53,
+ 43,
+ 26,
+ 40,
+ 46,
+ 41,
+ 36,
+ 43,
+ 50,
+ 30,
+ 47,
+ 49,
+ 28,
+ 31,
+ 28,
+ 28,
+ 28,
+ 38,
+ 30,
+ 46,
+ 51,
+ 45,
+ 48,
+ 32,
+ 30,
+ 56,
+ 29,
+ 43,
+ 29,
+ 39,
+ 52,
+ 39,
+ 40,
+ 53,
+ 30,
+ 36,
+ 28,
+ 38,
+ 45,
+ 58,
+ 41,
+ 42,
+ 53,
+ 57,
+ 39,
+ 39,
+ 39,
+ 43,
+ 29,
+ 37,
+ 34,
+ 29,
+ 52,
+ 24,
+ 27,
+ 30,
+ 34,
+ 57,
+ 32,
+ 37,
+ 38,
+ 50,
+ 34,
+ 30,
+ 25,
+ 43,
+ 26,
+ 29,
+ 23,
+ 32,
+ 31,
+ 37,
+ 27,
+ 55,
+ 26,
+ 29,
+ 46,
+ 32,
+ 32,
+ 43,
+ 32,
+ 30,
+ 39,
+ 39,
+ 32,
+ 43,
+ 40,
+ 31,
+ 36,
+ 28,
+ 31,
+ 30,
+ 30,
+ 35,
+ 34,
+ 30,
+ 41,
+ 31,
+ 35,
+ 53,
+ 39,
+ 31,
+ 37,
+ 26,
+ 38,
+ 34,
+ 32,
+ 53,
+ 41,
+ 45,
+ 45,
+ 42,
+ 29,
+ 30,
+ 43,
+ 27,
+ 28,
+ 49,
+ 49,
+ 45,
+ 29,
+ 46,
+ 41,
+ 31,
+ 30,
+ 30,
+ 33,
+ 38,
+ 29,
+ 40,
+ 48,
+ 34,
+ 55,
+ 41,
+ 49,
+ 38,
+ 33,
+ 48,
+ 57,
+ 34,
+ 53,
+ 29,
+ 30,
+ 45,
+ 30,
+ 42,
+ 35,
+ 52,
+ 32,
+ 48,
+ 40,
+ 52,
+ 44,
+ 52,
+ 47,
+ 47,
+ 26,
+ 52,
+ 30,
+ 51,
+ 45,
+ 42,
+ 47,
+ 56,
+ 42,
+ 23,
+ 56,
+ 39,
+ 31,
+ 37,
+ 40,
+ 39,
+ 47,
+ 30,
+ 40,
+ 25,
+ 29,
+ 31,
+ 42,
+ 41,
+ 32,
+ 44,
+ 36,
+ 39,
+ 28,
+ 23,
+ 28,
+ 49,
+ 39,
+ 47,
+ 36,
+ 41,
+ 42,
+ 42,
+ 28,
+ 39,
+ 27,
+ 30,
+ 37,
+ 29,
+ 43,
+ 43,
+ 33,
+ 43,
+ 38,
+ 55,
+ 34,
+ 59,
+ 49,
+ 52,
+ 47,
+ 35,
+ 39,
+ 34,
+ 48,
+ 51,
+ 47,
+ 52,
+ 33,
+ 42,
+ 37,
+ 54,
+ 31,
+ 45,
+ 36,
+ 46,
+ 29,
+ 43,
+ 28,
+ 40,
+ 53,
+ 51,
+ 35,
+ 41,
+ 48,
+ 33,
+ 52,
+ 41,
+ 46,
+ 30,
+ 50,
+ 33,
+ 34,
+ 24,
+ 31,
+ 43,
+ 29,
+ 33,
+ 36,
+ 36,
+ 42,
+ 52,
+ 39,
+ 60,
+ 41,
+ 36,
+ 31,
+ 33,
+ 36,
+ 34,
+ 50,
+ 29,
+ 28,
+ 46,
+ 23,
+ 31,
+ 23,
+ 31,
+ 47,
+ 32,
+ 42,
+ 42,
+ 27,
+ 40,
+ 25,
+ 25,
+ 25,
+ 43,
+ 25,
+ 28,
+ 32,
+ 52,
+ 51,
+ 41,
+ 33,
+ 38,
+ 30,
+ 31,
+ 42,
+ 24,
+ 49,
+ 34,
+ 39,
+ 35,
+ 43,
+ 31,
+ 47,
+ 56,
+ 37,
+ 33,
+ 28,
+ 36,
+ 39,
+ 42,
+ 31,
+ 37,
+ 39,
+ 28,
+ 31,
+ 43,
+ 39,
+ 38,
+ 26,
+ 35,
+ 35,
+ 31,
+ 36,
+ 32,
+ 35,
+ 33,
+ 50,
+ 48,
+ 26,
+ 39,
+ 35,
+ 44,
+ 34,
+ 36,
+ 34,
+ 37,
+ 31,
+ 48,
+ 37,
+ 42,
+ 24,
+ 36,
+ 52,
+ 50,
+ 25,
+ 40,
+ 53,
+ 30,
+ 37,
+ 31,
+ 44,
+ 30,
+ 44,
+ 44,
+ 38,
+ 33,
+ 41,
+ 31,
+ 31,
+ 26,
+ 44,
+ 33,
+ 31,
+ 25,
+ 25,
+ 25,
+ 32,
+ 32,
+ 56,
+ 26,
+ 29,
+ 34,
+ 30,
+ 34,
+ 30,
+ 31,
+ 49,
+ 48,
+ 38,
+ 38,
+ 40,
+ 57,
+ 32,
+ 29,
+ 31,
+ 34,
+ 32,
+ 26,
+ 43,
+ 34,
+ 43,
+ 33,
+ 43,
+ 43,
+ 33,
+ 24,
+ 32,
+ 40,
+ 35,
+ 33,
+ 43,
+ 26,
+ 48,
+ 33,
+ 33,
+ 33,
+ 33,
+ 49,
+ 28,
+ 41,
+ 48,
+ 26,
+ 26,
+ 27,
+ 28,
+ 41,
+ 43,
+ 43,
+ 29,
+ 43,
+ 26,
+ 26,
+ 30,
+ 30,
+ 38,
+ 56,
+ 30,
+ 34,
+ 30,
+ 30,
+ 46,
+ 30,
+ 48,
+ 47,
+ 35,
+ 42,
+ 27,
+ 37,
+ 37,
+ 28,
+ 34,
+ 34,
+ 28,
+ 30,
+ 33,
+ 30,
+ 30,
+ 30,
+ 31,
+ 39,
+ 40,
+ 40,
+ 34,
+ 37,
+ 32,
+ 25,
+ 28,
+ 29,
+ 34,
+ 23,
+ 49,
+ 34,
+ 40,
+ 20,
+ 37,
+ 34,
+ 33,
+ 27,
+ 27,
+ 27,
+ 47,
+ 27,
+ 29,
+ 34,
+ 29,
+ 32,
+ 27,
+ 25,
+ 37,
+ 23,
+ 31,
+ 23,
+ 48,
+ 27,
+ 33,
+ 27,
+ 27,
+ 29,
+ 43,
+ 47,
+ 29,
+ 43,
+ 33,
+ 43,
+ 26,
+ 52,
+ 43,
+ 27,
+ 27,
+ 27,
+ 28,
+ 35,
+ 35,
+ 29,
+ 42,
+ 28,
+ 30,
+ 38,
+ 29,
+ 33,
+ 28,
+ 27,
+ 49,
+ 32,
+ 33,
+ 35,
+ 25,
+ 31,
+ 28,
+ 28,
+ 32,
+ 26,
+ 28,
+ 28,
+ 28,
+ 28,
+ 44,
+ 31,
+ 33,
+ 34,
+ 28,
+ 32,
+ 38,
+ 28,
+ 28,
+ 28,
+ 36,
+ 31,
+ 33,
+ 27,
+ 28,
+ 30,
+ 48,
+ 32,
+ 29,
+ 28,
+ 28,
+ 49,
+ 33,
+ 30,
+ 31,
+ 43,
+ 30,
+ 34,
+ 48,
+ 34,
+ 35,
+ 43,
+ 27,
+ 28,
+ 40,
+ 23,
+ 28,
+ 34,
+ 28,
+ 27,
+ 30,
+ 28,
+ 28,
+ 33,
+ 48,
+ 26,
+ 25,
+ 35,
+ 54,
+ 35,
+ 35,
+ 42,
+ 56,
+ 55,
+ 33,
+ 31,
+ 25,
+ 29,
+ 32,
+ 29,
+ 39,
+ 30,
+ 37,
+ 29,
+ 45,
+ 34,
+ 33,
+ 34,
+ 35,
+ 33,
+ 45,
+ 52,
+ 42,
+ 28,
+ 28,
+ 28,
+ 54,
+ 54,
+ 37,
+ 29,
+ 35,
+ 40,
+ 25,
+ 25,
+ 25,
+ 53,
+ 40,
+ 57,
+ 29,
+ 30,
+ 53,
+ 43,
+ 43,
+ 43,
+ 43,
+ 43,
+ 43,
+ 31,
+ 43,
+ 48,
+ 43,
+ 48,
+ 51,
+ 36,
+ 33,
+ 36,
+ 51,
+ 51,
+ 35,
+ 43,
+ 51,
+ 52,
+ 51,
+ 24,
+ 34,
+ 51,
+ 24,
+ 36,
+ 24,
+ 24,
+ 48,
+ 24,
+ 28,
+ 34,
+ 34,
+ 41,
+ 43,
+ 30,
+ 34,
+ 34,
+ 34,
+ 31,
+ 48,
+ 34,
+ 54,
+ 59,
+ 36,
+ 27,
+ 36,
+ 40,
+ 27,
+ 27,
+ 28,
+ 31,
+ 39,
+ 40,
+ 31,
+ 36,
+ 31,
+ 24,
+ 28,
+ 31,
+ 28,
+ 26,
+ 55,
+ 55,
+ 32,
+ 45,
+ 45,
+ 33,
+ 52,
+ 45,
+ 28,
+ 37,
+ 52,
+ 33,
+ 44,
+ 44,
+ 52,
+ 26,
+ 36,
+ 26,
+ 34,
+ 34,
+ 46,
+ 41,
+ 29,
+ 47,
+ 31,
+ 31,
+ 31,
+ 50,
+ 26,
+ 22,
+ 32,
+ 31,
+ 43,
+ 36,
+ 44,
+ 23,
+ 44,
+ 29,
+ 25,
+ 54,
+ 26,
+ 52,
+ 29,
+ 50,
+ 32,
+ 32,
+ 29,
+ 24,
+ 28,
+ 28,
+ 39,
+ 39,
+ 32,
+ 40,
+ 27,
+ 36,
+ 31,
+ 29,
+ 33,
+ 28,
+ 29,
+ 35,
+ 51,
+ 30,
+ 25,
+ 30,
+ 28,
+ 39,
+ 45,
+ 28,
+ 34,
+ 45,
+ 30,
+ 39,
+ 56,
+ 26,
+ 37,
+ 34,
+ 37,
+ 29,
+ 27,
+ 30,
+ 32,
+ 45,
+ 29,
+ 30,
+ 39,
+ 39,
+ 34,
+ 26,
+ 35,
+ 52,
+ 25,
+ 36,
+ 36,
+ 39,
+ 49,
+ 41,
+ 24,
+ 29,
+ 42,
+ 42,
+ 40,
+ 34,
+ 38,
+ 29,
+ 38,
+ 34,
+ 28,
+ 33,
+ 36,
+ 32,
+ 29,
+ 57,
+ 27,
+ 57,
+ 57,
+ 57,
+ 21,
+ 57,
+ 30,
+ 34,
+ 27,
+ 40,
+ 34,
+ 27,
+ 30,
+ 53,
+ 33,
+ 33,
+ 39,
+ 34,
+ 34,
+ 34,
+ 34,
+ 20,
+ 41,
+ 41,
+ 34,
+ 27,
+ 29,
+ 32,
+ 39,
+ 46,
+ 52,
+ 27,
+ 28,
+ 27,
+ 33,
+ 40,
+ 27,
+ 57,
+ 36,
+ 32,
+ 33,
+ 51,
+ 48,
+ 54,
+ 31,
+ 47,
+ 35,
+ 32,
+ 45,
+ 28,
+ 27,
+ 38,
+ 42,
+ 36,
+ 41,
+ 36,
+ 36,
+ 25,
+ 52,
+ 54,
+ 26,
+ 27,
+ 32,
+ 32,
+ 33,
+ 31,
+ 32,
+ 57,
+ 31,
+ 27,
+ 27,
+ 31,
+ 30,
+ 26,
+ 55,
+ 57,
+ 50,
+ 39,
+ 39,
+ 27,
+ 57,
+ 34,
+ 34,
+ 48,
+ 28,
+ 34,
+ 50,
+ 36,
+ 36,
+ 36,
+ 48,
+ 25,
+ 27,
+ 37,
+ 34,
+ 55,
+ 33,
+ 49,
+ 23,
+ 31,
+ 34,
+ 31,
+ 36,
+ 31,
+ 32,
+ 31,
+ 49,
+ 25,
+ 49,
+ 32,
+ 33,
+ 34,
+ 25,
+ 38,
+ 39,
+ 38,
+ 25,
+ 23,
+ 29,
+ 36,
+ 29,
+ 29,
+ 29,
+ 25,
+ 25,
+ 25,
+ 54,
+ 42,
+ 32,
+ 29,
+ 41,
+ 30,
+ 28,
+ 38,
+ 26,
+ 25,
+ 32,
+ 27,
+ 25,
+ 31,
+ 42,
+ 27,
+ 31,
+ 51,
+ 30,
+ 33,
+ 32,
+ 32,
+ 38,
+ 32,
+ 32,
+ 29,
+ 32,
+ 32,
+ 30,
+ 32,
+ 32,
+ 25,
+ 25,
+ 34,
+ 34,
+ 29,
+ 32,
+ 45,
+ 34,
+ 51,
+ 51,
+ 34,
+ 34,
+ 27,
+ 40,
+ 25,
+ 26,
+ 28,
+ 27,
+ 31,
+ 29,
+ 31,
+ 25,
+ 25,
+ 30,
+ 30,
+ 39,
+ 39,
+ 39,
+ 40,
+ 29,
+ 39,
+ 34,
+ 31,
+ 38,
+ 30,
+ 30,
+ 30,
+ 30,
+ 27,
+ 27,
+ 31,
+ 31,
+ 27,
+ 32,
+ 24,
+ 41,
+ 24,
+ 54,
+ 31,
+ 30,
+ 30,
+ 32,
+ 49,
+ 31,
+ 33,
+ 22,
+ 29,
+ 54,
+ 48,
+ 49,
+ 23,
+ 30,
+ 31,
+ 48,
+ 31,
+ 31,
+ 32,
+ 31,
+ 25,
+ 26,
+ 26,
+ 28,
+ 25,
+ 30,
+ 32,
+ 22,
+ 29,
+ 26,
+ 42,
+ 49,
+ 28,
+ 29,
+ 29,
+ 44,
+ 44,
+ 31,
+ 41,
+ 28,
+ 44,
+ 29,
+ 41,
+ 41,
+ 27,
+ 51,
+ 33,
+ 28,
+ 50,
+ 23,
+ 32,
+ 42,
+ 37,
+ 35,
+ 30,
+ 41,
+ 22,
+ 28,
+ 25,
+ 26,
+ 27,
+ 33,
+ 30,
+ 41,
+ 30,
+ 31,
+ 51,
+ 26,
+ 48,
+ 28,
+ 32,
+ 42,
+ 41,
+ 24,
+ 41,
+ 27,
+ 30,
+ 49,
+ 30,
+ 28,
+ 33,
+ 33,
+ 30,
+ 23,
+ 26,
+ 40,
+ 31,
+ 26,
+ 32,
+ 30,
+ 52,
+ 41,
+ 24,
+ 52,
+ 33,
+ 27,
+ 42,
+ 30,
+ 37,
+ 51,
+ 35,
+ 24,
+ 24,
+ 24,
+ 51,
+ 24,
+ 35,
+ 24,
+ 60,
+ 42,
+ 34,
+ 44,
+ 40,
+ 22,
+ 29,
+ 22,
+ 56,
+ 52,
+ 41,
+ 52,
+ 32,
+ 52,
+ 33,
+ 32,
+ 55,
+ 28,
+ 32,
+ 33,
+ 43,
+ 31,
+ 24,
+ 32,
+ 27,
+ 50,
+ 35,
+ 27,
+ 30,
+ 50,
+ 35,
+ 33,
+ 32,
+ 32,
+ 31,
+ 29,
+ 33,
+ 30,
+ 33,
+ 38,
+ 49,
+ 27,
+ 36,
+ 35,
+ 37,
+ 55,
+ 33,
+ 31,
+ 32,
+ 31,
+ 32,
+ 56,
+ 31,
+ 35,
+ 33,
+ 38,
+ 38,
+ 30,
+ 30,
+ 29,
+ 41,
+ 48,
+ 31,
+ 32,
+ 37,
+ 44,
+ 42,
+ 43,
+ 29,
+ 35,
+ 41,
+ 30,
+ 49,
+ 50,
+ 40,
+ 30,
+ 32,
+ 38,
+ 27,
+ 51,
+ 54,
+ 38,
+ 28,
+ 28,
+ 38,
+ 42,
+ 33,
+ 34,
+ 29,
+ 42,
+ 25,
+ 33,
+ 25,
+ 31,
+ 35,
+ 29,
+ 35,
+ 30,
+ 40,
+ 38,
+ 50,
+ 40,
+ 58,
+ 55,
+ 30,
+ 42,
+ 27,
+ 31,
+ 36,
+ 30,
+ 28,
+ 30,
+ 41,
+ 36,
+ 52,
+ 30,
+ 31,
+ 36,
+ 31,
+ 22,
+ 31,
+ 28,
+ 37,
+ 32,
+ 30,
+ 35,
+ 42,
+ 30,
+ 32,
+ 35,
+ 35,
+ 29,
+ 41,
+ 31,
+ 30,
+ 25,
+ 32,
+ 31,
+ 36,
+ 52,
+ 25,
+ 37,
+ 28,
+ 36,
+ 22,
+ 25,
+ 29,
+ 29,
+ 27,
+ 32,
+ 45,
+ 32,
+ 31,
+ 35,
+ 29,
+ 31,
+ 33,
+ 27,
+ 32,
+ 27,
+ 35,
+ 26,
+ 57,
+ 40,
+ 24,
+ 39,
+ 30,
+ 31,
+ 43,
+ 31,
+ 43,
+ 30,
+ 31,
+ 32,
+ 27,
+ 45,
+ 33,
+ 43,
+ 39,
+ 27,
+ 31,
+ 33,
+ 25,
+ 40,
+ 50,
+ 53,
+ 25,
+ 33,
+ 33,
+ 33,
+ 53,
+ 27,
+ 26,
+ 26,
+ 35,
+ 31,
+ 29,
+ 30,
+ 31,
+ 33,
+ 31,
+ 22,
+ 23,
+ 44,
+ 27,
+ 40,
+ 27,
+ 43,
+ 40,
+ 32,
+ 25,
+ 40,
+ 45,
+ 30,
+ 26,
+ 39,
+ 27,
+ 35,
+ 28,
+ 30,
+ 49,
+ 28,
+ 26,
+ 40,
+ 35,
+ 27,
+ 35,
+ 30,
+ 35,
+ 35,
+ 35,
+ 50,
+ 33,
+ 31,
+ 26,
+ 35,
+ 43,
+ 40,
+ 43,
+ 29,
+ 26,
+ 35,
+ 27,
+ 24,
+ 36,
+ 28,
+ 35,
+ 29,
+ 32,
+ 27,
+ 30,
+ 46,
+ 27,
+ 29,
+ 35,
+ 30,
+ 36,
+ 35,
+ 56,
+ 43,
+ 31,
+ 35,
+ 30,
+ 34,
+ 35,
+ 27,
+ 26,
+ 32,
+ 30,
+ 33,
+ 31,
+ 44,
+ 47,
+ 43,
+ 26,
+ 51,
+ 24,
+ 27,
+ 45,
+ 27,
+ 22,
+ 22,
+ 47,
+ 30,
+ 43,
+ 48,
+ 36,
+ 28,
+ 35,
+ 42,
+ 25,
+ 51,
+ 31,
+ 31,
+ 35,
+ 35,
+ 28,
+ 29,
+ 50,
+ 35,
+ 26,
+ 42,
+ 25,
+ 33,
+ 45,
+ 30,
+ 28,
+ 26,
+ 46,
+ 34,
+ 48,
+ 31,
+ 29,
+ 27,
+ 25,
+ 43,
+ 48,
+ 30,
+ 29,
+ 37,
+ 41,
+ 36,
+ 26,
+ 30,
+ 43,
+ 34,
+ 31,
+ 31,
+ 24,
+ 30,
+ 37,
+ 28,
+ 44,
+ 36,
+ 50,
+ 43,
+ 47,
+ 31,
+ 36,
+ 32,
+ 54,
+ 50,
+ 27,
+ 28,
+ 31,
+ 51,
+ 51,
+ 44,
+ 30,
+ 36,
+ 27,
+ 32,
+ 30,
+ 35,
+ 38,
+ 42,
+ 57,
+ 32,
+ 35,
+ 43,
+ 27,
+ 30,
+ 32,
+ 28,
+ 28,
+ 44,
+ 32,
+ 33,
+ 36,
+ 44,
+ 23,
+ 27,
+ 27,
+ 42,
+ 31,
+ 30,
+ 31,
+ 57,
+ 29,
+ 54,
+ 51,
+ 45,
+ 34,
+ 32,
+ 33,
+ 33,
+ 39,
+ 30,
+ 30,
+ 33,
+ 39,
+ 37,
+ 38,
+ 42,
+ 53,
+ 53,
+ 50,
+ 25,
+ 32,
+ 57,
+ 30,
+ 27,
+ 33,
+ 50,
+ 36,
+ 46,
+ 56,
+ 34,
+ 38,
+ 55,
+ 27,
+ 26,
+ 23,
+ 37,
+ 35,
+ 32,
+ 44,
+ 31,
+ 29,
+ 35,
+ 42,
+ 31,
+ 48,
+ 38,
+ 35,
+ 34,
+ 25,
+ 33,
+ 55,
+ 30,
+ 30,
+ 48,
+ 34,
+ 55,
+ 40,
+ 30,
+ 34,
+ 37,
+ 53,
+ 51,
+ 37,
+ 25,
+ 26,
+ 46,
+ 43,
+ 31,
+ 38,
+ 29,
+ 38,
+ 33,
+ 45,
+ 45,
+ 38,
+ 37,
+ 32,
+ 35,
+ 48,
+ 40,
+ 37,
+ 31,
+ 34,
+ 53,
+ 38,
+ 26,
+ 48,
+ 35,
+ 45,
+ 25,
+ 30,
+ 30,
+ 32,
+ 46,
+ 45,
+ 40,
+ 24,
+ 47,
+ 34,
+ 31,
+ 25,
+ 36,
+ 35,
+ 34,
+ 34,
+ 31,
+ 35,
+ 31,
+ 33,
+ 56,
+ 37,
+ 35,
+ 40,
+ 43,
+ 46,
+ 30,
+ 50,
+ 31,
+ 28,
+ 29,
+ 26,
+ 30,
+ 32,
+ 32,
+ 37,
+ 31,
+ 38,
+ 31,
+ 45,
+ 34,
+ 41,
+ 23,
+ 52,
+ 32,
+ 43,
+ 34,
+ 36,
+ 35,
+ 51,
+ 47,
+ 50,
+ 41,
+ 30,
+ 48,
+ 36,
+ 35,
+ 28,
+ 35,
+ 43,
+ 41,
+ 32,
+ 30,
+ 33,
+ 48,
+ 48,
+ 30,
+ 30,
+ 27,
+ 36,
+ 40,
+ 27,
+ 25,
+ 43,
+ 58,
+ 34,
+ 32,
+ 44,
+ 43,
+ 35,
+ 57,
+ 35,
+ 34,
+ 50,
+ 48,
+ 55,
+ 30,
+ 24,
+ 35,
+ 50,
+ 28,
+ 27,
+ 33,
+ 51,
+ 34,
+ 40,
+ 56,
+ 25,
+ 44,
+ 38,
+ 48,
+ 48,
+ 25,
+ 46,
+ 33,
+ 25,
+ 44,
+ 35,
+ 34,
+ 24,
+ 24,
+ 58,
+ 37,
+ 58,
+ 38,
+ 34,
+ 31,
+ 29,
+ 24,
+ 30,
+ 26,
+ 34,
+ 26,
+ 55,
+ 30,
+ 31,
+ 34,
+ 31,
+ 55,
+ 31,
+ 34,
+ 27,
+ 32,
+ 48,
+ 31,
+ 50,
+ 34,
+ 31,
+ 24,
+ 32,
+ 29,
+ 34,
+ 55,
+ 55,
+ 29,
+ 49,
+ 31,
+ 35,
+ 37,
+ 32,
+ 34,
+ 26,
+ 23,
+ 23,
+ 30,
+ 26,
+ 31,
+ 29,
+ 24,
+ 44,
+ 24,
+ 26,
+ 29,
+ 31,
+ 30,
+ 25,
+ 27,
+ 29,
+ 34,
+ 44,
+ 41,
+ 32,
+ 31,
+ 37,
+ 37,
+ 35,
+ 34,
+ 31,
+ 31,
+ 37,
+ 31,
+ 31,
+ 37,
+ 31,
+ 50,
+ 29,
+ 31,
+ 52,
+ 47,
+ 55,
+ 26,
+ 37,
+ 23,
+ 29,
+ 31,
+ 21,
+ 21,
+ 28,
+ 21,
+ 28,
+ 58,
+ 28,
+ 25,
+ 27,
+ 25,
+ 27,
+ 25,
+ 30,
+ 43,
+ 43,
+ 52,
+ 21,
+ 33,
+ 40,
+ 43,
+ 31,
+ 24,
+ 38,
+ 27,
+ 29,
+ 29,
+ 28,
+ 31,
+ 55,
+ 43,
+ 26,
+ 51,
+ 26,
+ 36,
+ 43,
+ 29,
+ 35,
+ 58,
+ 44,
+ 23,
+ 36,
+ 29,
+ 29,
+ 29,
+ 40,
+ 33,
+ 27,
+ 29,
+ 29,
+ 43,
+ 41,
+ 29,
+ 26,
+ 26,
+ 46,
+ 28,
+ 37,
+ 26,
+ 24,
+ 29,
+ 38,
+ 43,
+ 35,
+ 24,
+ 55,
+ 29,
+ 29,
+ 30,
+ 29,
+ 33,
+ 32,
+ 33,
+ 32,
+ 33,
+ 23,
+ 30,
+ 52,
+ 36,
+ 32,
+ 32,
+ 36,
+ 28,
+ 25,
+ 40,
+ 30,
+ 30,
+ 35,
+ 30,
+ 39,
+ 28,
+ 26,
+ 36,
+ 34,
+ 30,
+ 38,
+ 29,
+ 44,
+ 28,
+ 34,
+ 41,
+ 25,
+ 26,
+ 42,
+ 44,
+ 25,
+ 35,
+ 35,
+ 26,
+ 25,
+ 36,
+ 35,
+ 40,
+ 49,
+ 49,
+ 40,
+ 24,
+ 35,
+ 24,
+ 28,
+ 30,
+ 45,
+ 44,
+ 32,
+ 29,
+ 32,
+ 45,
+ 49,
+ 43,
+ 49,
+ 31,
+ 29,
+ 31,
+ 27,
+ 49,
+ 31,
+ 27,
+ 27,
+ 27,
+ 47,
+ 49,
+ 32,
+ 43,
+ 43,
+ 26,
+ 43,
+ 49,
+ 27,
+ 43,
+ 52,
+ 24,
+ 37,
+ 27,
+ 41,
+ 33,
+ 34,
+ 49,
+ 33,
+ 39,
+ 27,
+ 34,
+ 42,
+ 34,
+ 30,
+ 25,
+ 58,
+ 31,
+ 29,
+ 59,
+ 30,
+ 35,
+ 32,
+ 29,
+ 42,
+ 39,
+ 29,
+ 23,
+ 23,
+ 41,
+ 41,
+ 38,
+ 35,
+ 41,
+ 58,
+ 58,
+ 58,
+ 33,
+ 35,
+ 27,
+ 27,
+ 27,
+ 32,
+ 27,
+ 49,
+ 32,
+ 33,
+ 27,
+ 36,
+ 25,
+ 32,
+ 24,
+ 26,
+ 26,
+ 43,
+ 39,
+ 43,
+ 50,
+ 23,
+ 23,
+ 33,
+ 41,
+ 25,
+ 29,
+ 29,
+ 24,
+ 26,
+ 24,
+ 35,
+ 56,
+ 25,
+ 26,
+ 29,
+ 26,
+ 23,
+ 26,
+ 28,
+ 31,
+ 25,
+ 35,
+ 35,
+ 34,
+ 33,
+ 50,
+ 29,
+ 56,
+ 31,
+ 35,
+ 29,
+ 24,
+ 37,
+ 41,
+ 27,
+ 27,
+ 33,
+ 32,
+ 33,
+ 25,
+ 35,
+ 59,
+ 37,
+ 33,
+ 32,
+ 45,
+ 44,
+ 42,
+ 24,
+ 27,
+ 44,
+ 23,
+ 26,
+ 52,
+ 32,
+ 28,
+ 32,
+ 49,
+ 38,
+ 24,
+ 36,
+ 35,
+ 29,
+ 29,
+ 50,
+ 49,
+ 37,
+ 30,
+ 24,
+ 49,
+ 28,
+ 52,
+ 57,
+ 25,
+ 25,
+ 41,
+ 22,
+ 32,
+ 32,
+ 53,
+ 29,
+ 35,
+ 37,
+ 32,
+ 34,
+ 22,
+ 39,
+ 39,
+ 37,
+ 35,
+ 46,
+ 47,
+ 53,
+ 38,
+ 31,
+ 29,
+ 53,
+ 48,
+ 38,
+ 26,
+ 31,
+ 30,
+ 40,
+ 27,
+ 28,
+ 28,
+ 35,
+ 37,
+ 35,
+ 35,
+ 32,
+ 27,
+ 33,
+ 29,
+ 35,
+ 29,
+ 56,
+ 27,
+ 31,
+ 30,
+ 39,
+ 29,
+ 29,
+ 37,
+ 26,
+ 27,
+ 43,
+ 43,
+ 36,
+ 29,
+ 25,
+ 36,
+ 33,
+ 31,
+ 26,
+ 26,
+ 50,
+ 31,
+ 25,
+ 24,
+ 24,
+ 56,
+ 30,
+ 27,
+ 37,
+ 38,
+ 22,
+ 37,
+ 32,
+ 34,
+ 29,
+ 50,
+ 56,
+ 44,
+ 29,
+ 57,
+ 26,
+ 30,
+ 38,
+ 35,
+ 29,
+ 33,
+ 28,
+ 42,
+ 42,
+ 30,
+ 31,
+ 33,
+ 46,
+ 49,
+ 26,
+ 49,
+ 36,
+ 49,
+ 47,
+ 45,
+ 44,
+ 25,
+ 25,
+ 30,
+ 26,
+ 46,
+ 26,
+ 30,
+ 51,
+ 31,
+ 50,
+ 25,
+ 53,
+ 35,
+ 26,
+ 35,
+ 32,
+ 60,
+ 60,
+ 33,
+ 46,
+ 31,
+ 25,
+ 43,
+ 43,
+ 42,
+ 30,
+ 33,
+ 37,
+ 34,
+ 38,
+ 47,
+ 29,
+ 46,
+ 37,
+ 38,
+ 43,
+ 47,
+ 20,
+ 33,
+ 24,
+ 38,
+ 25,
+ 56,
+ 41,
+ 37,
+ 29,
+ 26,
+ 35,
+ 49,
+ 25,
+ 37,
+ 36,
+ 56,
+ 36,
+ 30,
+ 38,
+ 60,
+ 51,
+ 41,
+ 24,
+ 28,
+ 26,
+ 31,
+ 29,
+ 56,
+ 29,
+ 32,
+ 26,
+ 31,
+ 28,
+ 43,
+ 26,
+ 24,
+ 28,
+ 21,
+ 29,
+ 33,
+ 39,
+ 31,
+ 38,
+ 29,
+ 29,
+ 37,
+ 25,
+ 33,
+ 22,
+ 51,
+ 44,
+ 29,
+ 37,
+ 30,
+ 39,
+ 27,
+ 33,
+ 26,
+ 28,
+ 38,
+ 26,
+ 30,
+ 54,
+ 34,
+ 24,
+ 25,
+ 24,
+ 26,
+ 36,
+ 39,
+ 55,
+ 25,
+ 48,
+ 54,
+ 22,
+ 60,
+ 26,
+ 31,
+ 30,
+ 27,
+ 20,
+ 30,
+ 33,
+ 36,
+ 24,
+ 48,
+ 29,
+ 32,
+ 36,
+ 32,
+ 26,
+ 36,
+ 29,
+ 25,
+ 28,
+ 48,
+ 30,
+ 30,
+ 34,
+ 27,
+ 26,
+ 29,
+ 38,
+ 36,
+ 30,
+ 46,
+ 35,
+ 49,
+ 30,
+ 46,
+ 27,
+ 27,
+ 40,
+ 46,
+ 31,
+ 26,
+ 29,
+ 35,
+ 25,
+ 30,
+ 36,
+ 29,
+ 41,
+ 28,
+ 27,
+ 28,
+ 54,
+ 34,
+ 34,
+ 40,
+ 53,
+ 28,
+ 35,
+ 53,
+ 57,
+ 54,
+ 41,
+ 36,
+ 35,
+ 43,
+ 50,
+ 28,
+ 38,
+ 38,
+ 29,
+ 34,
+ 24,
+ 43,
+ 33,
+ 48,
+ 46,
+ 27,
+ 31,
+ 29,
+ 39,
+ 37,
+ 32,
+ 32,
+ 44,
+ 46,
+ 27,
+ 32,
+ 34,
+ 26,
+ 29,
+ 34,
+ 30,
+ 24,
+ 44,
+ 24,
+ 47,
+ 39,
+ 39,
+ 41,
+ 41,
+ 40,
+ 24,
+ 41,
+ 24,
+ 38,
+ 27,
+ 37,
+ 56,
+ 43,
+ 40,
+ 43,
+ 40,
+ 27,
+ 43,
+ 55,
+ 29,
+ 32,
+ 40,
+ 39,
+ 24,
+ 35,
+ 48,
+ 31,
+ 48,
+ 31,
+ 26,
+ 39,
+ 33,
+ 28,
+ 35,
+ 39,
+ 44,
+ 30,
+ 39,
+ 27,
+ 35,
+ 37,
+ 24,
+ 24,
+ 27,
+ 26,
+ 44,
+ 30,
+ 23,
+ 25,
+ 37,
+ 25,
+ 27,
+ 44,
+ 29,
+ 32,
+ 35,
+ 25,
+ 42,
+ 26,
+ 28,
+ 31,
+ 30,
+ 58,
+ 30,
+ 29,
+ 31,
+ 39,
+ 40,
+ 40,
+ 44,
+ 30,
+ 32,
+ 42,
+ 32,
+ 33,
+ 26,
+ 31,
+ 37,
+ 26,
+ 26,
+ 26,
+ 29,
+ 31,
+ 55,
+ 46,
+ 25,
+ 30,
+ 37,
+ 47,
+ 30,
+ 48,
+ 37,
+ 46,
+ 58,
+ 31,
+ 42,
+ 30,
+ 39,
+ 46,
+ 57,
+ 43,
+ 43,
+ 48,
+ 22,
+ 46,
+ 32,
+ 33,
+ 39,
+ 29,
+ 30,
+ 30,
+ 49,
+ 32,
+ 25,
+ 33,
+ 35,
+ 27,
+ 36,
+ 37,
+ 28,
+ 27,
+ 23,
+ 36,
+ 25,
+ 32,
+ 30,
+ 27,
+ 24,
+ 43,
+ 30,
+ 33,
+ 25,
+ 29,
+ 25,
+ 48,
+ 24,
+ 45,
+ 51,
+ 31,
+ 41,
+ 45,
+ 28,
+ 42,
+ 38,
+ 30,
+ 48,
+ 54,
+ 57,
+ 37,
+ 31,
+ 27,
+ 28,
+ 30,
+ 31,
+ 31,
+ 37,
+ 33,
+ 27,
+ 29,
+ 59,
+ 33,
+ 37,
+ 41,
+ 24,
+ 40,
+ 33,
+ 33,
+ 21,
+ 31,
+ 31,
+ 31,
+ 35,
+ 35,
+ 36,
+ 36,
+ 36,
+ 33,
+ 27,
+ 27,
+ 54,
+ 27,
+ 23,
+ 28,
+ 27,
+ 33,
+ 30,
+ 30,
+ 30,
+ 45,
+ 40,
+ 22,
+ 60,
+ 59,
+ 59,
+ 33,
+ 40,
+ 37,
+ 59,
+ 31,
+ 37,
+ 26,
+ 24,
+ 24,
+ 30,
+ 48,
+ 24,
+ 54,
+ 25,
+ 30,
+ 30,
+ 41,
+ 41,
+ 41,
+ 23,
+ 30,
+ 27,
+ 59,
+ 32,
+ 31,
+ 30,
+ 27,
+ 27,
+ 27,
+ 27,
+ 32,
+ 40,
+ 31,
+ 39,
+ 39,
+ 23,
+ 29,
+ 30,
+ 30,
+ 32,
+ 35,
+ 34,
+ 29,
+ 49,
+ 32,
+ 58,
+ 58,
+ 58,
+ 36,
+ 58,
+ 58,
+ 31,
+ 26,
+ 40,
+ 28,
+ 46,
+ 25,
+ 53,
+ 49,
+ 22,
+ 48,
+ 39,
+ 31,
+ 31,
+ 45,
+ 37,
+ 33,
+ 49,
+ 27,
+ 42,
+ 57,
+ 57,
+ 28,
+ 44,
+ 52,
+ 45,
+ 33,
+ 30,
+ 48,
+ 36,
+ 31,
+ 48,
+ 28,
+ 58,
+ 40,
+ 50,
+ 46,
+ 44,
+ 31,
+ 35,
+ 33,
+ 35,
+ 31,
+ 51,
+ 41,
+ 28,
+ 28,
+ 40,
+ 42,
+ 33,
+ 26,
+ 30,
+ 30,
+ 49,
+ 51,
+ 27,
+ 31,
+ 31,
+ 23,
+ 33,
+ 36,
+ 58,
+ 29,
+ 54,
+ 53,
+ 41,
+ 48,
+ 30,
+ 50,
+ 27,
+ 24,
+ 37,
+ 32,
+ 35,
+ 49,
+ 37,
+ 28,
+ 48,
+ 34,
+ 38,
+ 44,
+ 58,
+ 54,
+ 23,
+ 41,
+ 57,
+ 28,
+ 33,
+ 48,
+ 29,
+ 20,
+ 38,
+ 40,
+ 36,
+ 27,
+ 27,
+ 51,
+ 38,
+ 41,
+ 30,
+ 24,
+ 26,
+ 25,
+ 37,
+ 26,
+ 55,
+ 23,
+ 51,
+ 35,
+ 31,
+ 22,
+ 20,
+ 57,
+ 35,
+ 35,
+ 28,
+ 50,
+ 32,
+ 30,
+ 59,
+ 34,
+ 30,
+ 24,
+ 31,
+ 21,
+ 36,
+ 36,
+ 32,
+ 21,
+ 26,
+ 26,
+ 28,
+ 49,
+ 35,
+ 43,
+ 27,
+ 30,
+ 31,
+ 48,
+ 31,
+ 32,
+ 58,
+ 58,
+ 58,
+ 32,
+ 45,
+ 24,
+ 24,
+ 38,
+ 23,
+ 23,
+ 23,
+ 23,
+ 23,
+ 23,
+ 23,
+ 38,
+ 34,
+ 33,
+ 56,
+ 28,
+ 26,
+ 30,
+ 33,
+ 30,
+ 24,
+ 38,
+ 49,
+ 30,
+ 35,
+ 55,
+ 31,
+ 40,
+ 50,
+ 31,
+ 24,
+ 48,
+ 36,
+ 36,
+ 32,
+ 21,
+ 59,
+ 26,
+ 25,
+ 21,
+ 34,
+ 40,
+ 34,
+ 32,
+ 39,
+ 29,
+ 44,
+ 30,
+ 43,
+ 48,
+ 24,
+ 48,
+ 24,
+ 44,
+ 25,
+ 24,
+ 31,
+ 46,
+ 31,
+ 37,
+ 28,
+ 36,
+ 40,
+ 33,
+ 46,
+ 28,
+ 31,
+ 26,
+ 57,
+ 36,
+ 30,
+ 42,
+ 31,
+ 39,
+ 57,
+ 24,
+ 21,
+ 36,
+ 44,
+ 30,
+ 32,
+ 38,
+ 25,
+ 32,
+ 40,
+ 22,
+ 36,
+ 26,
+ 26,
+ 36,
+ 44,
+ 55,
+ 30,
+ 33,
+ 39,
+ 53,
+ 28,
+ 30,
+ 26,
+ 30,
+ 25,
+ 36,
+ 37,
+ 50,
+ 28,
+ 31,
+ 53,
+ 49,
+ 33,
+ 28,
+ 56,
+ 24,
+ 34,
+ 27,
+ 37,
+ 49,
+ 40,
+ 52,
+ 44,
+ 38,
+ 30,
+ 27,
+ 25,
+ 27,
+ 36,
+ 49,
+ 25,
+ 26,
+ 26,
+ 37,
+ 24,
+ 32,
+ 53,
+ 31,
+ 51,
+ 34,
+ 24,
+ 25,
+ 53,
+ 34,
+ 47,
+ 27,
+ 24,
+ 44,
+ 42,
+ 40,
+ 31,
+ 36,
+ 48,
+ 34,
+ 25,
+ 29,
+ 29,
+ 31,
+ 33,
+ 29,
+ 23,
+ 29,
+ 39,
+ 32,
+ 26,
+ 48,
+ 56,
+ 31,
+ 32,
+ 30,
+ 30,
+ 32,
+ 37,
+ 35,
+ 33,
+ 36,
+ 53,
+ 29,
+ 29,
+ 46,
+ 23,
+ 38,
+ 34,
+ 42,
+ 30,
+ 38,
+ 25,
+ 31,
+ 53,
+ 23,
+ 42,
+ 42,
+ 30,
+ 28,
+ 33,
+ 26,
+ 55,
+ 25,
+ 35,
+ 29,
+ 28,
+ 28,
+ 34,
+ 50,
+ 38,
+ 56,
+ 38,
+ 22,
+ 30,
+ 26,
+ 49,
+ 35,
+ 48,
+ 37,
+ 32,
+ 24,
+ 28,
+ 32,
+ 38,
+ 30,
+ 44,
+ 26,
+ 43,
+ 27,
+ 26,
+ 40,
+ 48,
+ 34,
+ 40,
+ 26,
+ 32,
+ 41,
+ 24,
+ 48,
+ 27,
+ 26,
+ 32,
+ 40,
+ 29,
+ 40,
+ 29,
+ 44,
+ 56,
+ 58,
+ 47,
+ 41,
+ 42,
+ 58,
+ 41,
+ 49,
+ 32,
+ 41,
+ 27,
+ 51,
+ 27,
+ 27,
+ 56,
+ 29,
+ 27,
+ 47,
+ 39,
+ 39,
+ 26,
+ 50,
+ 29,
+ 36,
+ 39,
+ 29,
+ 44,
+ 41,
+ 43,
+ 51,
+ 29,
+ 26,
+ 50,
+ 41,
+ 41,
+ 41,
+ 27,
+ 41,
+ 46,
+ 41,
+ 25,
+ 47,
+ 26,
+ 57,
+ 43,
+ 31,
+ 27,
+ 50,
+ 27,
+ 59,
+ 57,
+ 27,
+ 57,
+ 47,
+ 33,
+ 36,
+ 49,
+ 31,
+ 49,
+ 47,
+ 33,
+ 23,
+ 44,
+ 53,
+ 53,
+ 58,
+ 47,
+ 52,
+ 45,
+ 54,
+ 52,
+ 52,
+ 47,
+ 44,
+ 46,
+ 48,
+ 52,
+ 39,
+ 38,
+ 54,
+ 56,
+ 55,
+ 57,
+ 49,
+ 43,
+ 51,
+ 49,
+ 39,
+ 57,
+ 41,
+ 51,
+ 34,
+ 30,
+ 24,
+ 46,
+ 57,
+ 43,
+ 37,
+ 29,
+ 55,
+ 23,
+ 32,
+ 39,
+ 56,
+ 38,
+ 40,
+ 42,
+ 41,
+ 55,
+ 50,
+ 43,
+ 34,
+ 31,
+ 27,
+ 45,
+ 38,
+ 53,
+ 29,
+ 41,
+ 47,
+ 21,
+ 32,
+ 43,
+ 54,
+ 50,
+ 36,
+ 47,
+ 29,
+ 54,
+ 54,
+ 56,
+ 39,
+ 25,
+ 56,
+ 25,
+ 54,
+ 57,
+ 47,
+ 43,
+ 48,
+ 53,
+ 43,
+ 33,
+ 28,
+ 35,
+ 32,
+ 50,
+ 28,
+ 30,
+ 35,
+ 41,
+ 27,
+ 42,
+ 57,
+ 22,
+ 43,
+ 44,
+ 44,
+ 58,
+ 22,
+ 49,
+ 50,
+ 59,
+ 51,
+ 28,
+ 33,
+ 47,
+ 30,
+ 38,
+ 54,
+ 47,
+ 35,
+ 33,
+ 38,
+ 48,
+ 57,
+ 41,
+ 57,
+ 35,
+ 35,
+ 28,
+ 34,
+ 54,
+ 47,
+ 47,
+ 53,
+ 25,
+ 34,
+ 26,
+ 57,
+ 51,
+ 48,
+ 35,
+ 36,
+ 43,
+ 43,
+ 49,
+ 42,
+ 49,
+ 46,
+ 31,
+ 32,
+ 56,
+ 32,
+ 28,
+ 56,
+ 50,
+ 36,
+ 47,
+ 49,
+ 32,
+ 42,
+ 42,
+ 46,
+ 46,
+ 27,
+ 53,
+ 38,
+ 40,
+ 42,
+ 31,
+ 43,
+ 39,
+ 43,
+ 28,
+ 55,
+ 28,
+ 39,
+ 50,
+ 28,
+ 28,
+ 45,
+ 32,
+ 48,
+ 32,
+ 25,
+ 52,
+ 44,
+ 40,
+ 40,
+ 40,
+ 42,
+ 50,
+ 43,
+ 35,
+ 39,
+ 53,
+ 40,
+ 40,
+ 27,
+ 39,
+ 32,
+ 29,
+ 51,
+ 38,
+ 34,
+ 42,
+ 33,
+ 45,
+ 35,
+ 48,
+ 52,
+ 45,
+ 50,
+ 31,
+ 51,
+ 45,
+ 49,
+ 43,
+ 31,
+ 28,
+ 50,
+ 57,
+ 39,
+ 50,
+ 47,
+ 45,
+ 58,
+ 46,
+ 55,
+ 41,
+ 54,
+ 28,
+ 27,
+ 49,
+ 54,
+ 48,
+ 54,
+ 58,
+ 55,
+ 42,
+ 34,
+ 58,
+ 53,
+ 54,
+ 39,
+ 59,
+ 28,
+ 42,
+ 35,
+ 28,
+ 48,
+ 53,
+ 54,
+ 26,
+ 60,
+ 32,
+ 55,
+ 30,
+ 58,
+ 50,
+ 38,
+ 56,
+ 36,
+ 32,
+ 46,
+ 45,
+ 47,
+ 58,
+ 33,
+ 33,
+ 28,
+ 58,
+ 52,
+ 43,
+ 53,
+ 39,
+ 51,
+ 48,
+ 28,
+ 45,
+ 49,
+ 52,
+ 35,
+ 35,
+ 27,
+ 31,
+ 43,
+ 57,
+ 53,
+ 32,
+ 35,
+ 56,
+ 42,
+ 44,
+ 38,
+ 56,
+ 48,
+ 25,
+ 42,
+ 45,
+ 51,
+ 28,
+ 40,
+ 50,
+ 44,
+ 54,
+ 49,
+ 43,
+ 47,
+ 48,
+ 36,
+ 54,
+ 30,
+ 42,
+ 45,
+ 59,
+ 42,
+ 50,
+ 40,
+ 47,
+ 41,
+ 44,
+ 56,
+ 41,
+ 51,
+ 40,
+ 34,
+ 51,
+ 49,
+ 43,
+ 36,
+ 36,
+ 38,
+ 40,
+ 38,
+ 46,
+ 37,
+ 31,
+ 53,
+ 45,
+ 41,
+ 51,
+ 48,
+ 45,
+ 38,
+ 30,
+ 43,
+ 40,
+ 46,
+ 57,
+ 56,
+ 39,
+ 40,
+ 47,
+ 31,
+ 59,
+ 50,
+ 42,
+ 55,
+ 39,
+ 42,
+ 42,
+ 44,
+ 42,
+ 46,
+ 49,
+ 45,
+ 36,
+ 38,
+ 43,
+ 45,
+ 35,
+ 51,
+ 54,
+ 59,
+ 55,
+ 34,
+ 57,
+ 40,
+ 43,
+ 45,
+ 47,
+ 47,
+ 51,
+ 54,
+ 48,
+ 51,
+ 55,
+ 40,
+ 40,
+ 39,
+ 44,
+ 37,
+ 51,
+ 50,
+ 48,
+ 36,
+ 36,
+ 40,
+ 44,
+ 47,
+ 46,
+ 47,
+ 51,
+ 49,
+ 40,
+ 43,
+ 41,
+ 40,
+ 44,
+ 49,
+ 43,
+ 54,
+ 37,
+ 53,
+ 56,
+ 43,
+ 43,
+ 41,
+ 36,
+ 45,
+ 45,
+ 39,
+ 43,
+ 53,
+ 48,
+ 53,
+ 42,
+ 41,
+ 54,
+ 50,
+ 44,
+ 57,
+ 38,
+ 53,
+ 32,
+ 47,
+ 36,
+ 56,
+ 27,
+ 57,
+ 39,
+ 46,
+ 40,
+ 43,
+ 42,
+ 47,
+ 36,
+ 43,
+ 46,
+ 37,
+ 58,
+ 57,
+ 55,
+ 55,
+ 36,
+ 46,
+ 47,
+ 55,
+ 53,
+ 55,
+ 52,
+ 36,
+ 48,
+ 52,
+ 47,
+ 43,
+ 34,
+ 57,
+ 41,
+ 43,
+ 45,
+ 58,
+ 56,
+ 48,
+ 46,
+ 49,
+ 60,
+ 56,
+ 54,
+ 53,
+ 58,
+ 46,
+ 44,
+ 43,
+ 26,
+ 53,
+ 55,
+ 53,
+ 36,
+ 40,
+ 44,
+ 39,
+ 49,
+ 39,
+ 50,
+ 57,
+ 43,
+ 53,
+ 38,
+ 55,
+ 45,
+ 53,
+ 39,
+ 55,
+ 50,
+ 32,
+ 42,
+ 46,
+ 57,
+ 29,
+ 39,
+ 53,
+ 45,
+ 53,
+ 31,
+ 35,
+ 42,
+ 43,
+ 36,
+ 50,
+ 46,
+ 54,
+ 33,
+ 60,
+ 54,
+ 36,
+ 43,
+ 36,
+ 43,
+ 49,
+ 54,
+ 36,
+ 57,
+ 45,
+ 55,
+ 50,
+ 50,
+ 47,
+ 47,
+ 45,
+ 55,
+ 55,
+ 47,
+ 46,
+ 53,
+ 47,
+ 30,
+ 47,
+ 41,
+ 43,
+ 43,
+ 43,
+ 38,
+ 41,
+ 39,
+ 34,
+ 43,
+ 46,
+ 45,
+ 57,
+ 43,
+ 57,
+ 57,
+ 54,
+ 35,
+ 53,
+ 53,
+ 53,
+ 53,
+ 51,
+ 56,
+ 56,
+ 47,
+ 26,
+ 56,
+ 52,
+ 57,
+ 49,
+ 47,
+ 56,
+ 35,
+ 57,
+ 44,
+ 26,
+ 55,
+ 54,
+ 26,
+ 33,
+ 55,
+ 43,
+ 43,
+ 60,
+ 37,
+ 37,
+ 34,
+ 24,
+ 51,
+ 57,
+ 24,
+ 44,
+ 40,
+ 35,
+ 54,
+ 49,
+ 46,
+ 40,
+ 36,
+ 47,
+ 35,
+ 48,
+ 48,
+ 47,
+ 53,
+ 46,
+ 56,
+ 49,
+ 39,
+ 26,
+ 43,
+ 39,
+ 47,
+ 58,
+ 36,
+ 26,
+ 46,
+ 47,
+ 32,
+ 55,
+ 31,
+ 52,
+ 40,
+ 58,
+ 37,
+ 39,
+ 31,
+ 50,
+ 35,
+ 59,
+ 59,
+ 56,
+ 49,
+ 30,
+ 27,
+ 25,
+ 43,
+ 39,
+ 47,
+ 42,
+ 31,
+ 45,
+ 36,
+ 52,
+ 46,
+ 37,
+ 37,
+ 40,
+ 33,
+ 35,
+ 55,
+ 30,
+ 43,
+ 48,
+ 43,
+ 38,
+ 37,
+ 37,
+ 26,
+ 51,
+ 53,
+ 30,
+ 46,
+ 58,
+ 25,
+ 31,
+ 45,
+ 30,
+ 46,
+ 37,
+ 30,
+ 30,
+ 37,
+ 52,
+ 34,
+ 32,
+ 47,
+ 35,
+ 38,
+ 40,
+ 37,
+ 27,
+ 31,
+ 30,
+ 34,
+ 45,
+ 48,
+ 26,
+ 55,
+ 28,
+ 40,
+ 31,
+ 44,
+ 46,
+ 26,
+ 42,
+ 29,
+ 40,
+ 45,
+ 39,
+ 32,
+ 39,
+ 56,
+ 39,
+ 37,
+ 39,
+ 50,
+ 49,
+ 49,
+ 32,
+ 56,
+ 37,
+ 33,
+ 38,
+ 38,
+ 58,
+ 58,
+ 46,
+ 46,
+ 40,
+ 29,
+ 39,
+ 45,
+ 36,
+ 24,
+ 30,
+ 45,
+ 27,
+ 41,
+ 36,
+ 44,
+ 52,
+ 28,
+ 43,
+ 58,
+ 42,
+ 32,
+ 28,
+ 40,
+ 50,
+ 58,
+ 30,
+ 55,
+ 28,
+ 25,
+ 39,
+ 43,
+ 33,
+ 28,
+ 34,
+ 34,
+ 37,
+ 44,
+ 28,
+ 52,
+ 24,
+ 36,
+ 24,
+ 50,
+ 36,
+ 56,
+ 36,
+ 40,
+ 50,
+ 44,
+ 33,
+ 46,
+ 28,
+ 31,
+ 35,
+ 31,
+ 25,
+ 50,
+ 33,
+ 41,
+ 53,
+ 36,
+ 41,
+ 33,
+ 32,
+ 44,
+ 25,
+ 32,
+ 40,
+ 31,
+ 25,
+ 25,
+ 41,
+ 31,
+ 33,
+ 31,
+ 51,
+ 24,
+ 25,
+ 29,
+ 30,
+ 51,
+ 41,
+ 55,
+ 57,
+ 28,
+ 33,
+ 32,
+ 34,
+ 30,
+ 35,
+ 25,
+ 31,
+ 35,
+ 34,
+ 34,
+ 36,
+ 34,
+ 48,
+ 32,
+ 40,
+ 48,
+ 44,
+ 37,
+ 36,
+ 55,
+ 36,
+ 48,
+ 40,
+ 29,
+ 39,
+ 48,
+ 25,
+ 56,
+ 32,
+ 36,
+ 50,
+ 44,
+ 30,
+ 33,
+ 44,
+ 30,
+ 39,
+ 44,
+ 41,
+ 25,
+ 33,
+ 45,
+ 30,
+ 24,
+ 34,
+ 38,
+ 56,
+ 35,
+ 58,
+ 31,
+ 46,
+ 31,
+ 29,
+ 58,
+ 42,
+ 37,
+ 35,
+ 39,
+ 34,
+ 33,
+ 48,
+ 26,
+ 56,
+ 27,
+ 36,
+ 30,
+ 37,
+ 46,
+ 23,
+ 23,
+ 24,
+ 58,
+ 26,
+ 46,
+ 39,
+ 44,
+ 30,
+ 40,
+ 37,
+ 35,
+ 39,
+ 42,
+ 41,
+ 44,
+ 35,
+ 24,
+ 30,
+ 35,
+ 56,
+ 39,
+ 28,
+ 48,
+ 51,
+ 35,
+ 45,
+ 33,
+ 42,
+ 51,
+ 37,
+ 30,
+ 32,
+ 40,
+ 24,
+ 26,
+ 35,
+ 33,
+ 36,
+ 58,
+ 27,
+ 37,
+ 39,
+ 37,
+ 46,
+ 30,
+ 31,
+ 29,
+ 32,
+ 42,
+ 22,
+ 51,
+ 36,
+ 38,
+ 26,
+ 40,
+ 55,
+ 44,
+ 42,
+ 32,
+ 28,
+ 28,
+ 41,
+ 41,
+ 38,
+ 54,
+ 47,
+ 37,
+ 36,
+ 35,
+ 30,
+ 34,
+ 28,
+ 42,
+ 35,
+ 28,
+ 36,
+ 30,
+ 46,
+ 37,
+ 39,
+ 37,
+ 56,
+ 37,
+ 29,
+ 36,
+ 33,
+ 29,
+ 39,
+ 32,
+ 43,
+ 36,
+ 40,
+ 32,
+ 34,
+ 29,
+ 39,
+ 35,
+ 30,
+ 35,
+ 39,
+ 39,
+ 50,
+ 52,
+ 28,
+ 27,
+ 29,
+ 27,
+ 22,
+ 48,
+ 31,
+ 45,
+ 38,
+ 48,
+ 35,
+ 36,
+ 29,
+ 45,
+ 33,
+ 29,
+ 45,
+ 59,
+ 45,
+ 49,
+ 42,
+ 28,
+ 45,
+ 39,
+ 41,
+ 42,
+ 45,
+ 35,
+ 36,
+ 38,
+ 39,
+ 50,
+ 38,
+ 38,
+ 32,
+ 33,
+ 32,
+ 32,
+ 32,
+ 32,
+ 27,
+ 32,
+ 32,
+ 40,
+ 33,
+ 32,
+ 32,
+ 32,
+ 32,
+ 30,
+ 25,
+ 37,
+ 32,
+ 53,
+ 41,
+ 35,
+ 38,
+ 38,
+ 38,
+ 34,
+ 28,
+ 42,
+ 42,
+ 29,
+ 39,
+ 56,
+ 42,
+ 56,
+ 35,
+ 48,
+ 48,
+ 39,
+ 52,
+ 26,
+ 36,
+ 32,
+ 56,
+ 56,
+ 34,
+ 46,
+ 28,
+ 29,
+ 44,
+ 44,
+ 29,
+ 29,
+ 43,
+ 52,
+ 30,
+ 32,
+ 40,
+ 36,
+ 39,
+ 36,
+ 38,
+ 41,
+ 29,
+ 35,
+ 28,
+ 28,
+ 27,
+ 48,
+ 35,
+ 27,
+ 51,
+ 28,
+ 28,
+ 37,
+ 37,
+ 46,
+ 39,
+ 33,
+ 58,
+ 44,
+ 32,
+ 28,
+ 53,
+ 38,
+ 28,
+ 34,
+ 31,
+ 31,
+ 29,
+ 46,
+ 51,
+ 36,
+ 38,
+ 32,
+ 36,
+ 24,
+ 47,
+ 44,
+ 35,
+ 28,
+ 39,
+ 31,
+ 35,
+ 39,
+ 40,
+ 27,
+ 50,
+ 48,
+ 36,
+ 47,
+ 59,
+ 59,
+ 35,
+ 38,
+ 45,
+ 57,
+ 55,
+ 45,
+ 44,
+ 25,
+ 25,
+ 30,
+ 34,
+ 36,
+ 34,
+ 36,
+ 54,
+ 55,
+ 55,
+ 34,
+ 25,
+ 30,
+ 36,
+ 29,
+ 31,
+ 48,
+ 30,
+ 31,
+ 33,
+ 28,
+ 58,
+ 45,
+ 33,
+ 36,
+ 36,
+ 44,
+ 39,
+ 32,
+ 25,
+ 38,
+ 48,
+ 38,
+ 32,
+ 59,
+ 38,
+ 50,
+ 54,
+ 32,
+ 31,
+ 33,
+ 34,
+ 59,
+ 33,
+ 30,
+ 36,
+ 48,
+ 25,
+ 31,
+ 25,
+ 47,
+ 38,
+ 25,
+ 37,
+ 36,
+ 47,
+ 33,
+ 30,
+ 36,
+ 47,
+ 25,
+ 42,
+ 38,
+ 38,
+ 30,
+ 52,
+ 36,
+ 38,
+ 36,
+ 38,
+ 27,
+ 59,
+ 41,
+ 40,
+ 41,
+ 49,
+ 39,
+ 25,
+ 32,
+ 37,
+ 48,
+ 38,
+ 43,
+ 42,
+ 36,
+ 36,
+ 49,
+ 38,
+ 24,
+ 31,
+ 46,
+ 27,
+ 31,
+ 45,
+ 30,
+ 36,
+ 25,
+ 28,
+ 25,
+ 25,
+ 32,
+ 38,
+ 33,
+ 54,
+ 30,
+ 36,
+ 36,
+ 36,
+ 34,
+ 36,
+ 25,
+ 32,
+ 36,
+ 31,
+ 27,
+ 36,
+ 29,
+ 36,
+ 39,
+ 33,
+ 38,
+ 25,
+ 55,
+ 53,
+ 33,
+ 31,
+ 39,
+ 38,
+ 31,
+ 31,
+ 37,
+ 29,
+ 35,
+ 48,
+ 33,
+ 36,
+ 46,
+ 36,
+ 50,
+ 27,
+ 54,
+ 59,
+ 45,
+ 34,
+ 34,
+ 38,
+ 43,
+ 43,
+ 45,
+ 44,
+ 31,
+ 41,
+ 41,
+ 41,
+ 41,
+ 46,
+ 58,
+ 33,
+ 58,
+ 36,
+ 48,
+ 49,
+ 30,
+ 30,
+ 48,
+ 53,
+ 56,
+ 37,
+ 47,
+ 51,
+ 55,
+ 55,
+ 42,
+ 58,
+ 42,
+ 56,
+ 33,
+ 46,
+ 46,
+ 35,
+ 30,
+ 35,
+ 39,
+ 47,
+ 33,
+ 38,
+ 32,
+ 49,
+ 31,
+ 30,
+ 44,
+ 44,
+ 34,
+ 34,
+ 60,
+ 36,
+ 33,
+ 57,
+ 33,
+ 33,
+ 50,
+ 57,
+ 46,
+ 47,
+ 35,
+ 34,
+ 35,
+ 35,
+ 52,
+ 46,
+ 46,
+ 46,
+ 37,
+ 41,
+ 41,
+ 54,
+ 57,
+ 57,
+ 39,
+ 29,
+ 39,
+ 36,
+ 49,
+ 44,
+ 56,
+ 34,
+ 39,
+ 35,
+ 50,
+ 44,
+ 41,
+ 44,
+ 49,
+ 57,
+ 44,
+ 33,
+ 45,
+ 32,
+ 32,
+ 58,
+ 47,
+ 45,
+ 50,
+ 59,
+ 35,
+ 34,
+ 33,
+ 48,
+ 30,
+ 30,
+ 41,
+ 44,
+ 59,
+ 45,
+ 34,
+ 40,
+ 47,
+ 32,
+ 30,
+ 38,
+ 50,
+ 30,
+ 56,
+ 52,
+ 50,
+ 53,
+ 57,
+ 49,
+ 58,
+ 38,
+ 52,
+ 52,
+ 35,
+ 47,
+ 48,
+ 53,
+ 48,
+ 52,
+ 41,
+ 29,
+ 35,
+ 48,
+ 29,
+ 58,
+ 37,
+ 42,
+ 42,
+ 44,
+ 42,
+ 39,
+ 37,
+ 47,
+ 47,
+ 41,
+ 41,
+ 41,
+ 40,
+ 40,
+ 40,
+ 45,
+ 45,
+ 53,
+ 49,
+ 52,
+ 59,
+ 34,
+ 55,
+ 46,
+ 30,
+ 52,
+ 53,
+ 53,
+ 53,
+ 33,
+ 34,
+ 40,
+ 53,
+ 59,
+ 34,
+ 32,
+ 41,
+ 32,
+ 32,
+ 44,
+ 49,
+ 44,
+ 33,
+ 33,
+ 32,
+ 52,
+ 31,
+ 43,
+ 35,
+ 49,
+ 42,
+ 49,
+ 38,
+ 42,
+ 41,
+ 37,
+ 36,
+ 46,
+ 37,
+ 37,
+ 37,
+ 46,
+ 35,
+ 32,
+ 40,
+ 32,
+ 42,
+ 52,
+ 49,
+ 36,
+ 51,
+ 49,
+ 49,
+ 49,
+ 35,
+ 54,
+ 30,
+ 40,
+ 35,
+ 52,
+ 38,
+ 43,
+ 35,
+ 30,
+ 35,
+ 37,
+ 35,
+ 37,
+ 46,
+ 37,
+ 35,
+ 34,
+ 50,
+ 38,
+ 51,
+ 40,
+ 59,
+ 36,
+ 48,
+ 45,
+ 57,
+ 48,
+ 44,
+ 45,
+ 53,
+ 41,
+ 31,
+ 36,
+ 46,
+ 32,
+ 58,
+ 46,
+ 46,
+ 31,
+ 31,
+ 38,
+ 45,
+ 32,
+ 30,
+ 38,
+ 31,
+ 53,
+ 32,
+ 39,
+ 39,
+ 31,
+ 30,
+ 42,
+ 52,
+ 39,
+ 56,
+ 30,
+ 32,
+ 34,
+ 31,
+ 31,
+ 51,
+ 33,
+ 33,
+ 41,
+ 32,
+ 31,
+ 32,
+ 37,
+ 40,
+ 40,
+ 55,
+ 36,
+ 37,
+ 46,
+ 50,
+ 29,
+ 41,
+ 31,
+ 33,
+ 48,
+ 50,
+ 51,
+ 31,
+ 31,
+ 34,
+ 42,
+ 42,
+ 53,
+ 53,
+ 40,
+ 31,
+ 53,
+ 48,
+ 37,
+ 38,
+ 38,
+ 39,
+ 46,
+ 31,
+ 42,
+ 31,
+ 35,
+ 48,
+ 42,
+ 39,
+ 32,
+ 53,
+ 46,
+ 33,
+ 33,
+ 33,
+ 33,
+ 33,
+ 47,
+ 33,
+ 52,
+ 51,
+ 31,
+ 29,
+ 45,
+ 31,
+ 56,
+ 52,
+ 49,
+ 51,
+ 51,
+ 48,
+ 41,
+ 33,
+ 44,
+ 45,
+ 35,
+ 58,
+ 46,
+ 59,
+ 31,
+ 56,
+ 31,
+ 45,
+ 31,
+ 52,
+ 34,
+ 50,
+ 54,
+ 48,
+ 42,
+ 37,
+ 30,
+ 47,
+ 45,
+ 36,
+ 46,
+ 41,
+ 32,
+ 34,
+ 37,
+ 33,
+ 37,
+ 42,
+ 35,
+ 46,
+ 58,
+ 32,
+ 30,
+ 42,
+ 57,
+ 43,
+ 59,
+ 34,
+ 53,
+ 54,
+ 42,
+ 33,
+ 45,
+ 43,
+ 37,
+ 33,
+ 29,
+ 41,
+ 55,
+ 32,
+ 29,
+ 30,
+ 39,
+ 47,
+ 49,
+ 31,
+ 42,
+ 35,
+ 42,
+ 45,
+ 45,
+ 43,
+ 48,
+ 36,
+ 44,
+ 47,
+ 47,
+ 39,
+ 39,
+ 32,
+ 32,
+ 47,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 30,
+ 39,
+ 38,
+ 39,
+ 34,
+ 29,
+ 39,
+ 30,
+ 39,
+ 38,
+ 30,
+ 46,
+ 36,
+ 46,
+ 36,
+ 35,
+ 35,
+ 35,
+ 31,
+ 35,
+ 35,
+ 52,
+ 29,
+ 32,
+ 29,
+ 35,
+ 45,
+ 33,
+ 45,
+ 49,
+ 33,
+ 43,
+ 33,
+ 31,
+ 38,
+ 31,
+ 31,
+ 59,
+ 58,
+ 41,
+ 41,
+ 41,
+ 40,
+ 35,
+ 32,
+ 32,
+ 42,
+ 32,
+ 39,
+ 39,
+ 39,
+ 55,
+ 49,
+ 35,
+ 44,
+ 50,
+ 47,
+ 30,
+ 31,
+ 33,
+ 46,
+ 41,
+ 29,
+ 29,
+ 45,
+ 36,
+ 46,
+ 50,
+ 38,
+ 34,
+ 39,
+ 56,
+ 45,
+ 44,
+ 45,
+ 31,
+ 29,
+ 29,
+ 48,
+ 39,
+ 50,
+ 38,
+ 29,
+ 38,
+ 35,
+ 50,
+ 47,
+ 33,
+ 33,
+ 45,
+ 39,
+ 45,
+ 46,
+ 58,
+ 58,
+ 34,
+ 45,
+ 30,
+ 46,
+ 50,
+ 37,
+ 32,
+ 47,
+ 32,
+ 47,
+ 47,
+ 41,
+ 34,
+ 38,
+ 33,
+ 57,
+ 33,
+ 52,
+ 36,
+ 36,
+ 54,
+ 57,
+ 48,
+ 50,
+ 50,
+ 41,
+ 51,
+ 32,
+ 42,
+ 39,
+ 47,
+ 48,
+ 35,
+ 50,
+ 30,
+ 31,
+ 31,
+ 50,
+ 50,
+ 55,
+ 34,
+ 52,
+ 38,
+ 45,
+ 56,
+ 52,
+ 39,
+ 60,
+ 32,
+ 39,
+ 40,
+ 34,
+ 44,
+ 34,
+ 56,
+ 44,
+ 51,
+ 38,
+ 34,
+ 31,
+ 45,
+ 32,
+ 45,
+ 31,
+ 38,
+ 38,
+ 30,
+ 30,
+ 34,
+ 59,
+ 31,
+ 34,
+ 56,
+ 30,
+ 30,
+ 46,
+ 51,
+ 34,
+ 39,
+ 33,
+ 44,
+ 33,
+ 42,
+ 31,
+ 31,
+ 34,
+ 31,
+ 37,
+ 38,
+ 33,
+ 38,
+ 32,
+ 38,
+ 47,
+ 51,
+ 36,
+ 57,
+ 35,
+ 47,
+ 33,
+ 34,
+ 31,
+ 34,
+ 52,
+ 46,
+ 38,
+ 47,
+ 45,
+ 30,
+ 58,
+ 47,
+ 34,
+ 54,
+ 47,
+ 30,
+ 39,
+ 39,
+ 44,
+ 51,
+ 53,
+ 30,
+ 38,
+ 44,
+ 40,
+ 36,
+ 51,
+ 36,
+ 47,
+ 38,
+ 44,
+ 36,
+ 36,
+ 32,
+ 56,
+ 36,
+ 33,
+ 44,
+ 32,
+ 37,
+ 31,
+ 49,
+ 49,
+ 34,
+ 36,
+ 29,
+ 42,
+ 29,
+ 46,
+ 46,
+ 32,
+ 58,
+ 50,
+ 30,
+ 52,
+ 52,
+ 60,
+ 29,
+ 29,
+ 39,
+ 42,
+ 39,
+ 54,
+ 47,
+ 47,
+ 55,
+ 50,
+ 36,
+ 36,
+ 42,
+ 35,
+ 33,
+ 40,
+ 34,
+ 34,
+ 34,
+ 54,
+ 34,
+ 31,
+ 37,
+ 34,
+ 36,
+ 33,
+ 40,
+ 38,
+ 41,
+ 33,
+ 36,
+ 53,
+ 36,
+ 30,
+ 30,
+ 42,
+ 35,
+ 52,
+ 46,
+ 33,
+ 60,
+ 51,
+ 30,
+ 30,
+ 38,
+ 37,
+ 34,
+ 34,
+ 33,
+ 52,
+ 34,
+ 45,
+ 52,
+ 46,
+ 32,
+ 35,
+ 41,
+ 35,
+ 38,
+ 41,
+ 51,
+ 41,
+ 34,
+ 51,
+ 48,
+ 31,
+ 31,
+ 49,
+ 58,
+ 38,
+ 34,
+ 34,
+ 31,
+ 58,
+ 30,
+ 33,
+ 50,
+ 53,
+ 31,
+ 32,
+ 29,
+ 30,
+ 42,
+ 38,
+ 50,
+ 44,
+ 40,
+ 42,
+ 35,
+ 46,
+ 33,
+ 42,
+ 34,
+ 33,
+ 35,
+ 32,
+ 58,
+ 45,
+ 39,
+ 53,
+ 30,
+ 41,
+ 36,
+ 29,
+ 42,
+ 41,
+ 52,
+ 39,
+ 33,
+ 35,
+ 36,
+ 58,
+ 59,
+ 38,
+ 39,
+ 32,
+ 42,
+ 44,
+ 52,
+ 31,
+ 32,
+ 36,
+ 31,
+ 36,
+ 49,
+ 39,
+ 31,
+ 40,
+ 38,
+ 32,
+ 34,
+ 34,
+ 43,
+ 33,
+ 44,
+ 31,
+ 55,
+ 32,
+ 50,
+ 33,
+ 29,
+ 34,
+ 34,
+ 34,
+ 35,
+ 49,
+ 56,
+ 49,
+ 45,
+ 32,
+ 36,
+ 35,
+ 44,
+ 44,
+ 43,
+ 40,
+ 50,
+ 32,
+ 32,
+ 32,
+ 49,
+ 38,
+ 33,
+ 29,
+ 29,
+ 32,
+ 41,
+ 41,
+ 36,
+ 35,
+ 45,
+ 34,
+ 40,
+ 35,
+ 32,
+ 39,
+ 36,
+ 34,
+ 46,
+ 36,
+ 39,
+ 56,
+ 45,
+ 54,
+ 57,
+ 37,
+ 32,
+ 33,
+ 47,
+ 38,
+ 33,
+ 32,
+ 36,
+ 36,
+ 32,
+ 47,
+ 30,
+ 33,
+ 30,
+ 30,
+ 30,
+ 44,
+ 39,
+ 39,
+ 59,
+ 34,
+ 50,
+ 33,
+ 29,
+ 31,
+ 33,
+ 32,
+ 34,
+ 38,
+ 35,
+ 35,
+ 37,
+ 37,
+ 37,
+ 36,
+ 36,
+ 36,
+ 39,
+ 30,
+ 36,
+ 33,
+ 44,
+ 37,
+ 41,
+ 29,
+ 36,
+ 36,
+ 31,
+ 32,
+ 30,
+ 36,
+ 52,
+ 45,
+ 40,
+ 33,
+ 36,
+ 39,
+ 42,
+ 45,
+ 35,
+ 35,
+ 35,
+ 30,
+ 48,
+ 31,
+ 34,
+ 33,
+ 34,
+ 53,
+ 31,
+ 31,
+ 45,
+ 37,
+ 52,
+ 31,
+ 36,
+ 56,
+ 49,
+ 34,
+ 34,
+ 31,
+ 49,
+ 49,
+ 52,
+ 49,
+ 48,
+ 30,
+ 32,
+ 36,
+ 30,
+ 30,
+ 55,
+ 52,
+ 30,
+ 44,
+ 42,
+ 55,
+ 47,
+ 36,
+ 36,
+ 48,
+ 30,
+ 39,
+ 39,
+ 34,
+ 29,
+ 29,
+ 55,
+ 40,
+ 30,
+ 30,
+ 34,
+ 34,
+ 34,
+ 32,
+ 29,
+ 50,
+ 46,
+ 36,
+ 39,
+ 36,
+ 46,
+ 29,
+ 31,
+ 29,
+ 40,
+ 30,
+ 51,
+ 32,
+ 30,
+ 31,
+ 32,
+ 30,
+ 33,
+ 31,
+ 32,
+ 40,
+ 35,
+ 48,
+ 55,
+ 38,
+ 54,
+ 50,
+ 33,
+ 29,
+ 48,
+ 56,
+ 38,
+ 58,
+ 34,
+ 31,
+ 31,
+ 44,
+ 32,
+ 41,
+ 32,
+ 52,
+ 58,
+ 35,
+ 58,
+ 52,
+ 52,
+ 52,
+ 52,
+ 52,
+ 31,
+ 31,
+ 31,
+ 31,
+ 31,
+ 47,
+ 32,
+ 31,
+ 38,
+ 36,
+ 33,
+ 33,
+ 37,
+ 42,
+ 31,
+ 47,
+ 47,
+ 29,
+ 38,
+ 33,
+ 51,
+ 38,
+ 33,
+ 46,
+ 34,
+ 46,
+ 30,
+ 30,
+ 52,
+ 39,
+ 30,
+ 29,
+ 52,
+ 35,
+ 35,
+ 35,
+ 33,
+ 31,
+ 30,
+ 33,
+ 52,
+ 40,
+ 40,
+ 40,
+ 45,
+ 45,
+ 42,
+ 34,
+ 49,
+ 37,
+ 48,
+ 39,
+ 59,
+ 51,
+ 31,
+ 29,
+ 31,
+ 31,
+ 31,
+ 50,
+ 50,
+ 31,
+ 31,
+ 51,
+ 35,
+ 32,
+ 34,
+ 31,
+ 35,
+ 32,
+ 32,
+ 32,
+ 36,
+ 39,
+ 38,
+ 32,
+ 34,
+ 38,
+ 33,
+ 41,
+ 41,
+ 54,
+ 47,
+ 47,
+ 48,
+ 48,
+ 30,
+ 36,
+ 40,
+ 31,
+ 30,
+ 48,
+ 35,
+ 33,
+ 49,
+ 31,
+ 36,
+ 33,
+ 48,
+ 35,
+ 46,
+ 32,
+ 37,
+ 39,
+ 32,
+ 45,
+ 35,
+ 35,
+ 32,
+ 35,
+ 35,
+ 33,
+ 32,
+ 42,
+ 42,
+ 29,
+ 53,
+ 46,
+ 50,
+ 32,
+ 44,
+ 41,
+ 41,
+ 49,
+ 41,
+ 35,
+ 56,
+ 58,
+ 32,
+ 38,
+ 31,
+ 54,
+ 40,
+ 31,
+ 34,
+ 53,
+ 30,
+ 36,
+ 31,
+ 33,
+ 33,
+ 46,
+ 48,
+ 52,
+ 39,
+ 52,
+ 31,
+ 32,
+ 57,
+ 31,
+ 54,
+ 38,
+ 44,
+ 33,
+ 34,
+ 32,
+ 54,
+ 31,
+ 47,
+ 32,
+ 34,
+ 54,
+ 41,
+ 35,
+ 41,
+ 36,
+ 31,
+ 60,
+ 56,
+ 32,
+ 35,
+ 57,
+ 32,
+ 33,
+ 30,
+ 44,
+ 46,
+ 35,
+ 30,
+ 30,
+ 44,
+ 30,
+ 33,
+ 31,
+ 59,
+ 38,
+ 38,
+ 58,
+ 58,
+ 32,
+ 51,
+ 52,
+ 44,
+ 46,
+ 36,
+ 39,
+ 40,
+ 34,
+ 39,
+ 54,
+ 54,
+ 32,
+ 29,
+ 46,
+ 42,
+ 33,
+ 42,
+ 34,
+ 34,
+ 58,
+ 42,
+ 54,
+ 41,
+ 31,
+ 31,
+ 41,
+ 45,
+ 31,
+ 35,
+ 32,
+ 29,
+ 29,
+ 45,
+ 52,
+ 31,
+ 34,
+ 34,
+ 31,
+ 45,
+ 29,
+ 57,
+ 39,
+ 40,
+ 40,
+ 39,
+ 39,
+ 30,
+ 34,
+ 31,
+ 34,
+ 34,
+ 58,
+ 52,
+ 33,
+ 32,
+ 53,
+ 54,
+ 34,
+ 35,
+ 31,
+ 58,
+ 31,
+ 31,
+ 44,
+ 32,
+ 48,
+ 33,
+ 44,
+ 52,
+ 47,
+ 37,
+ 46,
+ 44,
+ 32,
+ 41,
+ 57,
+ 33,
+ 34,
+ 59,
+ 35,
+ 37,
+ 55,
+ 41,
+ 49,
+ 30,
+ 29,
+ 29,
+ 45,
+ 37,
+ 29,
+ 30,
+ 54,
+ 32,
+ 56,
+ 39,
+ 31,
+ 34,
+ 31,
+ 30,
+ 31,
+ 31,
+ 55,
+ 34,
+ 34,
+ 32,
+ 48,
+ 33,
+ 45,
+ 42,
+ 31,
+ 35,
+ 32,
+ 33,
+ 45,
+ 33,
+ 50,
+ 32,
+ 33,
+ 44,
+ 49,
+ 33,
+ 32,
+ 32,
+ 33,
+ 34,
+ 34,
+ 30,
+ 33,
+ 39,
+ 30,
+ 33,
+ 31,
+ 57,
+ 31,
+ 31,
+ 31,
+ 35,
+ 23,
+ 41,
+ 31,
+ 31,
+ 35,
+ 32,
+ 54,
+ 32,
+ 32,
+ 31,
+ 45,
+ 54,
+ 32,
+ 34,
+ 35,
+ 34,
+ 34,
+ 42,
+ 50,
+ 31,
+ 38,
+ 34,
+ 49,
+ 33,
+ 31,
+ 30,
+ 50,
+ 40,
+ 40,
+ 33,
+ 30,
+ 32,
+ 36,
+ 34,
+ 35,
+ 42,
+ 32,
+ 32,
+ 42,
+ 34,
+ 57,
+ 31,
+ 41,
+ 29,
+ 29,
+ 31,
+ 31,
+ 32,
+ 39,
+ 40,
+ 31,
+ 31,
+ 47,
+ 31,
+ 31,
+ 49,
+ 36,
+ 34,
+ 30,
+ 32,
+ 35,
+ 31,
+ 31,
+ 50,
+ 50,
+ 36,
+ 47,
+ 49,
+ 29,
+ 46,
+ 31,
+ 41,
+ 31,
+ 39,
+ 32,
+ 34,
+ 30,
+ 59,
+ 39,
+ 32,
+ 33,
+ 34,
+ 58,
+ 34,
+ 47,
+ 31,
+ 56,
+ 58,
+ 30,
+ 31,
+ 49,
+ 39,
+ 33,
+ 33,
+ 47,
+ 32,
+ 34,
+ 35,
+ 58,
+ 47,
+ 49,
+ 50,
+ 31,
+ 49,
+ 55,
+ 32,
+ 32,
+ 31,
+ 30,
+ 45,
+ 31,
+ 35,
+ 35,
+ 41,
+ 35,
+ 35,
+ 47,
+ 46,
+ 31,
+ 33,
+ 50,
+ 34,
+ 34,
+ 33,
+ 34,
+ 34,
+ 31,
+ 35,
+ 53,
+ 30,
+ 29,
+ 54,
+ 31,
+ 29,
+ 43,
+ 54,
+ 29,
+ 51,
+ 54,
+ 51,
+ 33,
+ 54,
+ 37,
+ 29,
+ 54,
+ 32,
+ 36,
+ 54,
+ 54,
+ 36,
+ 54,
+ 32,
+ 58,
+ 32,
+ 38,
+ 33,
+ 35,
+ 31,
+ 33,
+ 33,
+ 34,
+ 32,
+ 41,
+ 54,
+ 38,
+ 53,
+ 29,
+ 33,
+ 41,
+ 32,
+ 56,
+ 39,
+ 32,
+ 30,
+ 40,
+ 49,
+ 48,
+ 41,
+ 31,
+ 29,
+ 47,
+ 31,
+ 45,
+ 37,
+ 32,
+ 32,
+ 50,
+ 30,
+ 33,
+ 34,
+ 31,
+ 41,
+ 33,
+ 48,
+ 54,
+ 31,
+ 47,
+ 35,
+ 43,
+ 33,
+ 32,
+ 31,
+ 38,
+ 36,
+ 31,
+ 31,
+ 37,
+ 30,
+ 38,
+ 49,
+ 33,
+ 41,
+ 45,
+ 32,
+ 38,
+ 35,
+ 33,
+ 50,
+ 37,
+ 35,
+ 35,
+ 40,
+ 38,
+ 33,
+ 29,
+ 30,
+ 31,
+ 31,
+ 34,
+ 42,
+ 33,
+ 44,
+ 34,
+ 33,
+ 36,
+ 43,
+ 45,
+ 38,
+ 29,
+ 41,
+ 36,
+ 35,
+ 35,
+ 35,
+ 32,
+ 35,
+ 29,
+ 42,
+ 35,
+ 34,
+ 31,
+ 33,
+ 33,
+ 35,
+ 47,
+ 50,
+ 44,
+ 34,
+ 33,
+ 40,
+ 31,
+ 41,
+ 31,
+ 30,
+ 41,
+ 32,
+ 32,
+ 30,
+ 38,
+ 44,
+ 40,
+ 50,
+ 52,
+ 38,
+ 41,
+ 31,
+ 53,
+ 42,
+ 42,
+ 55,
+ 30,
+ 47,
+ 33,
+ 33,
+ 31,
+ 35,
+ 45,
+ 31,
+ 30,
+ 31,
+ 41,
+ 41,
+ 31,
+ 30,
+ 54,
+ 41,
+ 38,
+ 29,
+ 29,
+ 34,
+ 42,
+ 41,
+ 30,
+ 31,
+ 35,
+ 30,
+ 42,
+ 31,
+ 40,
+ 37,
+ 45,
+ 33,
+ 45,
+ 30,
+ 37,
+ 45,
+ 30,
+ 34,
+ 38,
+ 50,
+ 32,
+ 41,
+ 50,
+ 30,
+ 33,
+ 29,
+ 35,
+ 31,
+ 47,
+ 33,
+ 35,
+ 32,
+ 49,
+ 48,
+ 52,
+ 33,
+ 33,
+ 31,
+ 27,
+ 41,
+ 31,
+ 34,
+ 52,
+ 44,
+ 35,
+ 35,
+ 37,
+ 40,
+ 40,
+ 35,
+ 40,
+ 44,
+ 37,
+ 31,
+ 33,
+ 31,
+ 46,
+ 45,
+ 31,
+ 32,
+ 31,
+ 36,
+ 36,
+ 31,
+ 37,
+ 56,
+ 29,
+ 33,
+ 42,
+ 32,
+ 39,
+ 31,
+ 33,
+ 52,
+ 42,
+ 48,
+ 48,
+ 48,
+ 48,
+ 31,
+ 49,
+ 31,
+ 35,
+ 31,
+ 32,
+ 31,
+ 41,
+ 33,
+ 52,
+ 37,
+ 31,
+ 33,
+ 29,
+ 29,
+ 31,
+ 38,
+ 49,
+ 32,
+ 50,
+ 33,
+ 33,
+ 32,
+ 36,
+ 54,
+ 31,
+ 33,
+ 34,
+ 44,
+ 30,
+ 34,
+ 30,
+ 58,
+ 30,
+ 32,
+ 32,
+ 49,
+ 54,
+ 48,
+ 39,
+ 30,
+ 32,
+ 33,
+ 38,
+ 32,
+ 36,
+ 31,
+ 36,
+ 48,
+ 29,
+ 56,
+ 35,
+ 33,
+ 33,
+ 30,
+ 33,
+ 33,
+ 33,
+ 31,
+ 36,
+ 37,
+ 33,
+ 30,
+ 47,
+ 50,
+ 58,
+ 31,
+ 30,
+ 44,
+ 30,
+ 31,
+ 33,
+ 32,
+ 52,
+ 42,
+ 58,
+ 38,
+ 32,
+ 36,
+ 36,
+ 42,
+ 32,
+ 37,
+ 47,
+ 46,
+ 37,
+ 31,
+ 49,
+ 52,
+ 59,
+ 54,
+ 33,
+ 54,
+ 30,
+ 43,
+ 43,
+ 33,
+ 29,
+ 31,
+ 31,
+ 34,
+ 41,
+ 34,
+ 47,
+ 32,
+ 29,
+ 48,
+ 48,
+ 52,
+ 49,
+ 36,
+ 40,
+ 59,
+ 40,
+ 32,
+ 40,
+ 40,
+ 30,
+ 32,
+ 32,
+ 31,
+ 31,
+ 30,
+ 30,
+ 33,
+ 33,
+ 41,
+ 30,
+ 30,
+ 30,
+ 30,
+ 30,
+ 30,
+ 31,
+ 50,
+ 37,
+ 31,
+ 31,
+ 31,
+ 54,
+ 40,
+ 36,
+ 36,
+ 31,
+ 36,
+ 32,
+ 31,
+ 45,
+ 49,
+ 31,
+ 32,
+ 30,
+ 54,
+ 35,
+ 36,
+ 39,
+ 54,
+ 29,
+ 30,
+ 29,
+ 45,
+ 41,
+ 34,
+ 32,
+ 33,
+ 30,
+ 45,
+ 38,
+ 35,
+ 30,
+ 35,
+ 44,
+ 50,
+ 50,
+ 30,
+ 43,
+ 31,
+ 31,
+ 48,
+ 31,
+ 32,
+ 31,
+ 43,
+ 32,
+ 32,
+ 47,
+ 35,
+ 56,
+ 33,
+ 30,
+ 33,
+ 37,
+ 44,
+ 35,
+ 33,
+ 55,
+ 29,
+ 32,
+ 52,
+ 30,
+ 32,
+ 52,
+ 53,
+ 32,
+ 32,
+ 56,
+ 33,
+ 37,
+ 36,
+ 52,
+ 34,
+ 47,
+ 43,
+ 39,
+ 35,
+ 30,
+ 29,
+ 45,
+ 30,
+ 40,
+ 47,
+ 36,
+ 55,
+ 31,
+ 30,
+ 57,
+ 58,
+ 32,
+ 31,
+ 31,
+ 38,
+ 48,
+ 43,
+ 31,
+ 33,
+ 32,
+ 32,
+ 35,
+ 30,
+ 48,
+ 42,
+ 30,
+ 31,
+ 31,
+ 59,
+ 29,
+ 33,
+ 33,
+ 33,
+ 37,
+ 33,
+ 32,
+ 33,
+ 53,
+ 33,
+ 33,
+ 51,
+ 49,
+ 46,
+ 32,
+ 32,
+ 36,
+ 31,
+ 32,
+ 43,
+ 56,
+ 43,
+ 49,
+ 29,
+ 54,
+ 32,
+ 55,
+ 40,
+ 55,
+ 33,
+ 48,
+ 31,
+ 31,
+ 36,
+ 31,
+ 33,
+ 29,
+ 42,
+ 42,
+ 29,
+ 45,
+ 33,
+ 33,
+ 29,
+ 33,
+ 42,
+ 30,
+ 36,
+ 40,
+ 40,
+ 40,
+ 32,
+ 40,
+ 29,
+ 29,
+ 36,
+ 50,
+ 44,
+ 44,
+ 32,
+ 31,
+ 31,
+ 46,
+ 31,
+ 32,
+ 30,
+ 59,
+ 59,
+ 30,
+ 57,
+ 54,
+ 36,
+ 33,
+ 32,
+ 31,
+ 50,
+ 30,
+ 37,
+ 53,
+ 46,
+ 49,
+ 31,
+ 30,
+ 47,
+ 30,
+ 33,
+ 48,
+ 30,
+ 32,
+ 40,
+ 31,
+ 43,
+ 43,
+ 31,
+ 43,
+ 43,
+ 44,
+ 53,
+ 57,
+ 53,
+ 36,
+ 53,
+ 45,
+ 60,
+ 48,
+ 30,
+ 47,
+ 51,
+ 30,
+ 32,
+ 36,
+ 32,
+ 33,
+ 29,
+ 30,
+ 29,
+ 31,
+ 29,
+ 37,
+ 29,
+ 43,
+ 32,
+ 38,
+ 31,
+ 32,
+ 48,
+ 30,
+ 37,
+ 40,
+ 37,
+ 35,
+ 51,
+ 36,
+ 43,
+ 53,
+ 53,
+ 36,
+ 37,
+ 29,
+ 43,
+ 33,
+ 59,
+ 58,
+ 59,
+ 59,
+ 36,
+ 36,
+ 41,
+ 45,
+ 36,
+ 29,
+ 31,
+ 34,
+ 55,
+ 32,
+ 56,
+ 34,
+ 34,
+ 34,
+ 41,
+ 46,
+ 35,
+ 35,
+ 44,
+ 35,
+ 30,
+ 30,
+ 29,
+ 30,
+ 36,
+ 36,
+ 53,
+ 30,
+ 41,
+ 53,
+ 32,
+ 29,
+ 34,
+ 57,
+ 43,
+ 32,
+ 37,
+ 47,
+ 46,
+ 47,
+ 32,
+ 33,
+ 48,
+ 43,
+ 43,
+ 39,
+ 32,
+ 50,
+ 34,
+ 55,
+ 45,
+ 54,
+ 46,
+ 41,
+ 36,
+ 50,
+ 32,
+ 29,
+ 36,
+ 31,
+ 35,
+ 55,
+ 31,
+ 51,
+ 48,
+ 31,
+ 42,
+ 30,
+ 30,
+ 34,
+ 33,
+ 53,
+ 30,
+ 42,
+ 53,
+ 56,
+ 36,
+ 36,
+ 52,
+ 49,
+ 49,
+ 36,
+ 45,
+ 29,
+ 31,
+ 34,
+ 47,
+ 58,
+ 34,
+ 37,
+ 43,
+ 30,
+ 30,
+ 45,
+ 29,
+ 30,
+ 29,
+ 31,
+ 49,
+ 58,
+ 30,
+ 31,
+ 29,
+ 30,
+ 41,
+ 31,
+ 46,
+ 34,
+ 41,
+ 48,
+ 43,
+ 48,
+ 43,
+ 48,
+ 55,
+ 36,
+ 32,
+ 35,
+ 33,
+ 51,
+ 41,
+ 35,
+ 41,
+ 35,
+ 53,
+ 55,
+ 53,
+ 44,
+ 43,
+ 44,
+ 34,
+ 33,
+ 50,
+ 34,
+ 42,
+ 47,
+ 31,
+ 29,
+ 29,
+ 38,
+ 30,
+ 30,
+ 30,
+ 47,
+ 32,
+ 31,
+ 48,
+ 56,
+ 46,
+ 29,
+ 37,
+ 37,
+ 35,
+ 39,
+ 31,
+ 42,
+ 42,
+ 42,
+ 42,
+ 29,
+ 50,
+ 43,
+ 53,
+ 34,
+ 30,
+ 30,
+ 31,
+ 34,
+ 29,
+ 32,
+ 30,
+ 30,
+ 32,
+ 30,
+ 30,
+ 30,
+ 49,
+ 51,
+ 32,
+ 51,
+ 54,
+ 33,
+ 30,
+ 39,
+ 39,
+ 46,
+ 60,
+ 51,
+ 60,
+ 46,
+ 30,
+ 57,
+ 49,
+ 29,
+ 29,
+ 47,
+ 56,
+ 44,
+ 31,
+ 45,
+ 30,
+ 55,
+ 46,
+ 42,
+ 41,
+ 33,
+ 56,
+ 47,
+ 29,
+ 29,
+ 32,
+ 31,
+ 49,
+ 51,
+ 45,
+ 56,
+ 51,
+ 40,
+ 31,
+ 34,
+ 45,
+ 29,
+ 31,
+ 56,
+ 52,
+ 45,
+ 35,
+ 34,
+ 50,
+ 52,
+ 32,
+ 31,
+ 38,
+ 35,
+ 29,
+ 30,
+ 50,
+ 31,
+ 29,
+ 33,
+ 31,
+ 31,
+ 48,
+ 48,
+ 31,
+ 35,
+ 30,
+ 47,
+ 47,
+ 31,
+ 54,
+ 32,
+ 29,
+ 37,
+ 49,
+ 54,
+ 30,
+ 31,
+ 55,
+ 37,
+ 55,
+ 31,
+ 40,
+ 47,
+ 31,
+ 29,
+ 48,
+ 30,
+ 29,
+ 54,
+ 31,
+ 55,
+ 32,
+ 29,
+ 29,
+ 31,
+ 36,
+ 36,
+ 55,
+ 36,
+ 53,
+ 30,
+ 50,
+ 41,
+ 41,
+ 41,
+ 35,
+ 36,
+ 57,
+ 57,
+ 57,
+ 58,
+ 33,
+ 33,
+ 29,
+ 30,
+ 30,
+ 34,
+ 39,
+ 30,
+ 29,
+ 57,
+ 31,
+ 31,
+ 30,
+ 55,
+ 45,
+ 30,
+ 35,
+ 47,
+ 44,
+ 37,
+ 59,
+ 44,
+ 46,
+ 33,
+ 34,
+ 53,
+ 41,
+ 59,
+ 34,
+ 30,
+ 38,
+ 29,
+ 41,
+ 39,
+ 39,
+ 29,
+ 54,
+ 51,
+ 29,
+ 51,
+ 29,
+ 45,
+ 30,
+ 30,
+ 30,
+ 30,
+ 48,
+ 35,
+ 34,
+ 51,
+ 30,
+ 29,
+ 47,
+ 47,
+ 37,
+ 34,
+ 37,
+ 59,
+ 34,
+ 37,
+ 29,
+ 55,
+ 37,
+ 33,
+ 33,
+ 31,
+ 32,
+ 46,
+ 46,
+ 31,
+ 30,
+ 29,
+ 30,
+ 29,
+ 29,
+ 30,
+ 30,
+ 57,
+ 48,
+ 35,
+ 39,
+ 40,
+ 40,
+ 52,
+ 34,
+ 30,
+ 33,
+ 33,
+ 30,
+ 29,
+ 36,
+ 31,
+ 34,
+ 34,
+ 53,
+ 38,
+ 38,
+ 54,
+ 32,
+ 34,
+ 38,
+ 34,
+ 48,
+ 48,
+ 31,
+ 30,
+ 53,
+ 56,
+ 32,
+ 31,
+ 30,
+ 30,
+ 45,
+ 29,
+ 31,
+ 32,
+ 30,
+ 33,
+ 37,
+ 37,
+ 31,
+ 29,
+ 37,
+ 47,
+ 48,
+ 36,
+ 33,
+ 31,
+ 31,
+ 37,
+ 39,
+ 52,
+ 31,
+ 30,
+ 33,
+ 42,
+ 32,
+ 31,
+ 36,
+ 48,
+ 48,
+ 29,
+ 29,
+ 55,
+ 35,
+ 37,
+ 30,
+ 32,
+ 33,
+ 53,
+ 40,
+ 48,
+ 39,
+ 60,
+ 59,
+ 30,
+ 51,
+ 31,
+ 60,
+ 42,
+ 48,
+ 32,
+ 41,
+ 59,
+ 39,
+ 41,
+ 40,
+ 34,
+ 39,
+ 39,
+ 43,
+ 55,
+ 44,
+ 40,
+ 33,
+ 30,
+ 31,
+ 33,
+ 36,
+ 39,
+ 39,
+ 47,
+ 44,
+ 35,
+ 29,
+ 58,
+ 42,
+ 31,
+ 52,
+ 30,
+ 31,
+ 39,
+ 30,
+ 56,
+ 31,
+ 36,
+ 34,
+ 37,
+ 34,
+ 32,
+ 30,
+ 31,
+ 35,
+ 35,
+ 45,
+ 40,
+ 31,
+ 30,
+ 39,
+ 32,
+ 46,
+ 46,
+ 48,
+ 36,
+ 33,
+ 32,
+ 32,
+ 53,
+ 31,
+ 31,
+ 32,
+ 36,
+ 54,
+ 32,
+ 32,
+ 32,
+ 39,
+ 31,
+ 52,
+ 58,
+ 35,
+ 48,
+ 52,
+ 31,
+ 60,
+ 45,
+ 45,
+ 36,
+ 47,
+ 35,
+ 35,
+ 29,
+ 29,
+ 30,
+ 50,
+ 31,
+ 40,
+ 33,
+ 35,
+ 39,
+ 42,
+ 31,
+ 48,
+ 41,
+ 42,
+ 57,
+ 30,
+ 32,
+ 40,
+ 36,
+ 37,
+ 33,
+ 35,
+ 33,
+ 33,
+ 31,
+ 30,
+ 37,
+ 41,
+ 31,
+ 45,
+ 59,
+ 32,
+ 50,
+ 35,
+ 30,
+ 37,
+ 49,
+ 37,
+ 50,
+ 47,
+ 35,
+ 33,
+ 50,
+ 50,
+ 47,
+ 58,
+ 30,
+ 56,
+ 37,
+ 39,
+ 35,
+ 30,
+ 47,
+ 35,
+ 57,
+ 53,
+ 37,
+ 53,
+ 35,
+ 32,
+ 48,
+ 47,
+ 40,
+ 30,
+ 29,
+ 58,
+ 38,
+ 53,
+ 32,
+ 37,
+ 42,
+ 53,
+ 47,
+ 39,
+ 47,
+ 29,
+ 54,
+ 50,
+ 49,
+ 42,
+ 33,
+ 56,
+ 48,
+ 48,
+ 59,
+ 37,
+ 40,
+ 31,
+ 51,
+ 57,
+ 47,
+ 38,
+ 44,
+ 42,
+ 42,
+ 52,
+ 31,
+ 40,
+ 56,
+ 33,
+ 47,
+ 37,
+ 29,
+ 51,
+ 48,
+ 30,
+ 32,
+ 29,
+ 49,
+ 33,
+ 59,
+ 32,
+ 31,
+ 42,
+ 30,
+ 44,
+ 44,
+ 30,
+ 29,
+ 40,
+ 35,
+ 50,
+ 42,
+ 40,
+ 55,
+ 32,
+ 58,
+ 33,
+ 41,
+ 53,
+ 35,
+ 32,
+ 45,
+ 37,
+ 32,
+ 50,
+ 46,
+ 35,
+ 52,
+ 47,
+ 47,
+ 29,
+ 35,
+ 57,
+ 33,
+ 45,
+ 45,
+ 51,
+ 54,
+ 31,
+ 45,
+ 36,
+ 55,
+ 49,
+ 31,
+ 59,
+ 36,
+ 53,
+ 48,
+ 34,
+ 32,
+ 41,
+ 57,
+ 38,
+ 40,
+ 46,
+ 41,
+ 59,
+ 54,
+ 54,
+ 59,
+ 53,
+ 47,
+ 31,
+ 38,
+ 29,
+ 56,
+ 59,
+ 44,
+ 45,
+ 45,
+ 56,
+ 43,
+ 43,
+ 56,
+ 44,
+ 50,
+ 37,
+ 50,
+ 47,
+ 38,
+ 50,
+ 34,
+ 46,
+ 58,
+ 38,
+ 51,
+ 41,
+ 38,
+ 51,
+ 46,
+ 55,
+ 48,
+ 47,
+ 40,
+ 54,
+ 56,
+ 56,
+ 31,
+ 38,
+ 49,
+ 38,
+ 49,
+ 50,
+ 40,
+ 59,
+ 38,
+ 47,
+ 50,
+ 47,
+ 48,
+ 48,
+ 45,
+ 32,
+ 48,
+ 48,
+ 48,
+ 44,
+ 41,
+ 32,
+ 47,
+ 44,
+ 36,
+ 38,
+ 45,
+ 46,
+ 34,
+ 38,
+ 31,
+ 41,
+ 32,
+ 60,
+ 50,
+ 35,
+ 35,
+ 50,
+ 48,
+ 50,
+ 59,
+ 38,
+ 55,
+ 37,
+ 55,
+ 42,
+ 47,
+ 55,
+ 40,
+ 38,
+ 39,
+ 55,
+ 50,
+ 35,
+ 35,
+ 35,
+ 40,
+ 37,
+ 41,
+ 41,
+ 41,
+ 37,
+ 37,
+ 33,
+ 33,
+ 50,
+ 30,
+ 37,
+ 32,
+ 54,
+ 32,
+ 56,
+ 36,
+ 48,
+ 47,
+ 29,
+ 56,
+ 40,
+ 52,
+ 56,
+ 56,
+ 45,
+ 58,
+ 38,
+ 38,
+ 48,
+ 50,
+ 32,
+ 47,
+ 38,
+ 48,
+ 33,
+ 33,
+ 32,
+ 47,
+ 33,
+ 57,
+ 55,
+ 38,
+ 29,
+ 52,
+ 40,
+ 32,
+ 35,
+ 35,
+ 54,
+ 35,
+ 35,
+ 32,
+ 35,
+ 37,
+ 52,
+ 47,
+ 51,
+ 52,
+ 33,
+ 29,
+ 32,
+ 40,
+ 50,
+ 44,
+ 58,
+ 35,
+ 55,
+ 54,
+ 60,
+ 43,
+ 31,
+ 51,
+ 47,
+ 42,
+ 46,
+ 42,
+ 47,
+ 36,
+ 38,
+ 47,
+ 37,
+ 47,
+ 52,
+ 42,
+ 42,
+ 42,
+ 37,
+ 29,
+ 52,
+ 46,
+ 57,
+ 55,
+ 31,
+ 55,
+ 38,
+ 29,
+ 44,
+ 54,
+ 48,
+ 37,
+ 38,
+ 47,
+ 42,
+ 46,
+ 59,
+ 55,
+ 36,
+ 58,
+ 47,
+ 55,
+ 44,
+ 37,
+ 41,
+ 33,
+ 48,
+ 48,
+ 52,
+ 48,
+ 44,
+ 45,
+ 40,
+ 29,
+ 43,
+ 47,
+ 29,
+ 37,
+ 36,
+ 30,
+ 41,
+ 43,
+ 48,
+ 59,
+ 41,
+ 52,
+ 55,
+ 45,
+ 51,
+ 50,
+ 50,
+ 57,
+ 60,
+ 31,
+ 44,
+ 34,
+ 58,
+ 45,
+ 47,
+ 44,
+ 40,
+ 44,
+ 37,
+ 60,
+ 39,
+ 47,
+ 30,
+ 55,
+ 52,
+ 44,
+ 48,
+ 49,
+ 41,
+ 48,
+ 43,
+ 41,
+ 54,
+ 42,
+ 41,
+ 54,
+ 31,
+ 51,
+ 41,
+ 44,
+ 47,
+ 52,
+ 46,
+ 54,
+ 48,
+ 47,
+ 54,
+ 57,
+ 57,
+ 48,
+ 40,
+ 47,
+ 54,
+ 47,
+ 31,
+ 46,
+ 52,
+ 43,
+ 57,
+ 48,
+ 46,
+ 51,
+ 47,
+ 37,
+ 44,
+ 30,
+ 54,
+ 44,
+ 41,
+ 33,
+ 37,
+ 52,
+ 54,
+ 29,
+ 38,
+ 40,
+ 37,
+ 59,
+ 41,
+ 47,
+ 37,
+ 52,
+ 43,
+ 42,
+ 29,
+ 32,
+ 30,
+ 31,
+ 58,
+ 31,
+ 33,
+ 39,
+ 44,
+ 44,
+ 33,
+ 43,
+ 29,
+ 30,
+ 31,
+ 33,
+ 33,
+ 55,
+ 37,
+ 37,
+ 32,
+ 58,
+ 46,
+ 46,
+ 43,
+ 40,
+ 39,
+ 45,
+ 38,
+ 41,
+ 43,
+ 47,
+ 31,
+ 47,
+ 31,
+ 47,
+ 41,
+ 36,
+ 41,
+ 41,
+ 35,
+ 40,
+ 30,
+ 30,
+ 49,
+ 38,
+ 33,
+ 44,
+ 40,
+ 43,
+ 33,
+ 40,
+ 41,
+ 43,
+ 55,
+ 46,
+ 51,
+ 31,
+ 41,
+ 51,
+ 30,
+ 30,
+ 33,
+ 36,
+ 46,
+ 33,
+ 32,
+ 48,
+ 44,
+ 43,
+ 29,
+ 43,
+ 44,
+ 56,
+ 37,
+ 40,
+ 32,
+ 57,
+ 31,
+ 30,
+ 35,
+ 41,
+ 37,
+ 33,
+ 40,
+ 36,
+ 32,
+ 32,
+ 41,
+ 31,
+ 51,
+ 43,
+ 33,
+ 41,
+ 37,
+ 46,
+ 55,
+ 37,
+ 29,
+ 31,
+ 36,
+ 52,
+ 41,
+ 31,
+ 35,
+ 50,
+ 42,
+ 40,
+ 37,
+ 31,
+ 35,
+ 32,
+ 41,
+ 37,
+ 31,
+ 59,
+ 33,
+ 33,
+ 31,
+ 37,
+ 46,
+ 40,
+ 33,
+ 37,
+ 33,
+ 46,
+ 48,
+ 32,
+ 36,
+ 58,
+ 44,
+ 57,
+ 40,
+ 36,
+ 48,
+ 47,
+ 52,
+ 34,
+ 32,
+ 30,
+ 30,
+ 48,
+ 37,
+ 35,
+ 40,
+ 29,
+ 37,
+ 54,
+ 30,
+ 41,
+ 47,
+ 32,
+ 46,
+ 32,
+ 50,
+ 30,
+ 35,
+ 50,
+ 31,
+ 30,
+ 46,
+ 39,
+ 30,
+ 46,
+ 57,
+ 41,
+ 41,
+ 31,
+ 33,
+ 54,
+ 41,
+ 30,
+ 39,
+ 31,
+ 48,
+ 31,
+ 47,
+ 37,
+ 34,
+ 32,
+ 35,
+ 42,
+ 30,
+ 32,
+ 50,
+ 32,
+ 32,
+ 34,
+ 50,
+ 38,
+ 48,
+ 45,
+ 31,
+ 29,
+ 30,
+ 30,
+ 35,
+ 33,
+ 45,
+ 40,
+ 48,
+ 35,
+ 39,
+ 35,
+ 56,
+ 45,
+ 45,
+ 45,
+ 39,
+ 37,
+ 53,
+ 53,
+ 60,
+ 33,
+ 50,
+ 33,
+ 48,
+ 29,
+ 31,
+ 33,
+ 29,
+ 30,
+ 30,
+ 53,
+ 59,
+ 37,
+ 31,
+ 32,
+ 60,
+ 30,
+ 33,
+ 33,
+ 33,
+ 30,
+ 33,
+ 35,
+ 33,
+ 31,
+ 32,
+ 35,
+ 59,
+ 36,
+ 30,
+ 49,
+ 36,
+ 53,
+ 44,
+ 44,
+ 31,
+ 48,
+ 30,
+ 35,
+ 45,
+ 40,
+ 33,
+ 51,
+ 50,
+ 55,
+ 41,
+ 53,
+ 34,
+ 32,
+ 50,
+ 31,
+ 35,
+ 39,
+ 32,
+ 32,
+ 34,
+ 31,
+ 31,
+ 60,
+ 43,
+ 45,
+ 32,
+ 45,
+ 49,
+ 45,
+ 53,
+ 32,
+ 43,
+ 38,
+ 32,
+ 35,
+ 45,
+ 43,
+ 40,
+ 35,
+ 33,
+ 33,
+ 37,
+ 29,
+ 36,
+ 31,
+ 58,
+ 50,
+ 41,
+ 34,
+ 36,
+ 34,
+ 45,
+ 37,
+ 41,
+ 53,
+ 43,
+ 31,
+ 35,
+ 40,
+ 48,
+ 33,
+ 31,
+ 29,
+ 33,
+ 33,
+ 38,
+ 38,
+ 29,
+ 37,
+ 31,
+ 38,
+ 33,
+ 40,
+ 30,
+ 31,
+ 45,
+ 29,
+ 29,
+ 51,
+ 40,
+ 34,
+ 42,
+ 42,
+ 29,
+ 29,
+ 37,
+ 36,
+ 34,
+ 34,
+ 45,
+ 34,
+ 29,
+ 59,
+ 51,
+ 38,
+ 45,
+ 42,
+ 43,
+ 52,
+ 39,
+ 52,
+ 32,
+ 51,
+ 38,
+ 49,
+ 42,
+ 52,
+ 38,
+ 58,
+ 55,
+ 38,
+ 29,
+ 38,
+ 32,
+ 59,
+ 29,
+ 35,
+ 30,
+ 42,
+ 42,
+ 32,
+ 44,
+ 32,
+ 33,
+ 31,
+ 43,
+ 45,
+ 41,
+ 54,
+ 41,
+ 41,
+ 42,
+ 41,
+ 45,
+ 37,
+ 32,
+ 29,
+ 29,
+ 50,
+ 45,
+ 31,
+ 32,
+ 54,
+ 33,
+ 32,
+ 33,
+ 38,
+ 35,
+ 31,
+ 34,
+ 41,
+ 41,
+ 33,
+ 33,
+ 32,
+ 44,
+ 43,
+ 33,
+ 30,
+ 53,
+ 38,
+ 33,
+ 30,
+ 53,
+ 55,
+ 53,
+ 40,
+ 40,
+ 29,
+ 60,
+ 31,
+ 59,
+ 59,
+ 33,
+ 58,
+ 30,
+ 38,
+ 35,
+ 32,
+ 33,
+ 32,
+ 35,
+ 29,
+ 47,
+ 34,
+ 29,
+ 35,
+ 30,
+ 52,
+ 29,
+ 60,
+ 45,
+ 38,
+ 53,
+ 53,
+ 33,
+ 33,
+ 50,
+ 31,
+ 38,
+ 41,
+ 33,
+ 41,
+ 48,
+ 45,
+ 33,
+ 45,
+ 58,
+ 45,
+ 41,
+ 51,
+ 41,
+ 60,
+ 58,
+ 55,
+ 44,
+ 43,
+ 27,
+ 46,
+ 52,
+ 35,
+ 35,
+ 59,
+ 35,
+ 41,
+ 56,
+ 36,
+ 58,
+ 26,
+ 32,
+ 49,
+ 27,
+ 43,
+ 49,
+ 33,
+ 58,
+ 33,
+ 31,
+ 33,
+ 30,
+ 25,
+ 32,
+ 57,
+ 48,
+ 30,
+ 36,
+ 57,
+ 33,
+ 47,
+ 30,
+ 32,
+ 43,
+ 32,
+ 33,
+ 27,
+ 24,
+ 46,
+ 47,
+ 43,
+ 57,
+ 53,
+ 37,
+ 48,
+ 46,
+ 37,
+ 33,
+ 18,
+ 33,
+ 27,
+ 29,
+ 39,
+ 35,
+ 57,
+ 42,
+ 56,
+ 56,
+ 40,
+ 52,
+ 50,
+ 42,
+ 55,
+ 41,
+ 48,
+ 34,
+ 57,
+ 32,
+ 44,
+ 35,
+ 44,
+ 52,
+ 41,
+ 52,
+ 42,
+ 35,
+ 54,
+ 35,
+ 40,
+ 51,
+ 58,
+ 37,
+ 44,
+ 40,
+ 45,
+ 36,
+ 36,
+ 36,
+ 36,
+ 38,
+ 38,
+ 50,
+ 46,
+ 41,
+ 41,
+ 40,
+ 57,
+ 46,
+ 34,
+ 46,
+ 35,
+ 43,
+ 54,
+ 52,
+ 42,
+ 42,
+ 51,
+ 50,
+ 54,
+ 43,
+ 43,
+ 31,
+ 47,
+ 55,
+ 44,
+ 39,
+ 39,
+ 40,
+ 53,
+ 42,
+ 51,
+ 49,
+ 41,
+ 48,
+ 41,
+ 55,
+ 45,
+ 49,
+ 55,
+ 38,
+ 39,
+ 39,
+ 33,
+ 40,
+ 52,
+ 41,
+ 48,
+ 40,
+ 39,
+ 29,
+ 39,
+ 51,
+ 51,
+ 41,
+ 38,
+ 30,
+ 31,
+ 35,
+ 54,
+ 35,
+ 42,
+ 43,
+ 37,
+ 54,
+ 43,
+ 55,
+ 36,
+ 48,
+ 39,
+ 36,
+ 40,
+ 34,
+ 36,
+ 36,
+ 42,
+ 42,
+ 39,
+ 36,
+ 39,
+ 48,
+ 45,
+ 39,
+ 54,
+ 45,
+ 45,
+ 37,
+ 39,
+ 50,
+ 49,
+ 46,
+ 45,
+ 30,
+ 42,
+ 42,
+ 42,
+ 44,
+ 46,
+ 51,
+ 45,
+ 38,
+ 49,
+ 40,
+ 49,
+ 50,
+ 41,
+ 53,
+ 51,
+ 42,
+ 39,
+ 46,
+ 48,
+ 46,
+ 54,
+ 31,
+ 54,
+ 44,
+ 51,
+ 45,
+ 31,
+ 55,
+ 54,
+ 46,
+ 53,
+ 38,
+ 54,
+ 41,
+ 35,
+ 46,
+ 45,
+ 36,
+ 46,
+ 51,
+ 40,
+ 47,
+ 52,
+ 47,
+ 45,
+ 46,
+ 34,
+ 37,
+ 36,
+ 36,
+ 52,
+ 52,
+ 56,
+ 53,
+ 53,
+ 40,
+ 43,
+ 58,
+ 58,
+ 31,
+ 30,
+ 37,
+ 58,
+ 47,
+ 47,
+ 38,
+ 38,
+ 38,
+ 35,
+ 56,
+ 37,
+ 44,
+ 52,
+ 43,
+ 43,
+ 45,
+ 45,
+ 35,
+ 54,
+ 42,
+ 31,
+ 52,
+ 39,
+ 36,
+ 58,
+ 52,
+ 43,
+ 52,
+ 42,
+ 50,
+ 33,
+ 50,
+ 50,
+ 45,
+ 37,
+ 35,
+ 43,
+ 57,
+ 32,
+ 30,
+ 50,
+ 36,
+ 32,
+ 39,
+ 36,
+ 47,
+ 31,
+ 54,
+ 45,
+ 39,
+ 39,
+ 36,
+ 50,
+ 49,
+ 52,
+ 36,
+ 46,
+ 46,
+ 33,
+ 46,
+ 43,
+ 56,
+ 38,
+ 36,
+ 33,
+ 46,
+ 40,
+ 42,
+ 46,
+ 40,
+ 53,
+ 53,
+ 34,
+ 34,
+ 57,
+ 47,
+ 32,
+ 42,
+ 42,
+ 40,
+ 37,
+ 32,
+ 38,
+ 58,
+ 54,
+ 38,
+ 29,
+ 42,
+ 54,
+ 53,
+ 42,
+ 40,
+ 42,
+ 38,
+ 42,
+ 36,
+ 38,
+ 44,
+ 44,
+ 33,
+ 33,
+ 57,
+ 32,
+ 36,
+ 47,
+ 53,
+ 55,
+ 38,
+ 36,
+ 42,
+ 32,
+ 29,
+ 55,
+ 29,
+ 29,
+ 45,
+ 33,
+ 29,
+ 31,
+ 39,
+ 43,
+ 46,
+ 41,
+ 31,
+ 53,
+ 44,
+ 47,
+ 31,
+ 32,
+ 32,
+ 39,
+ 44,
+ 38,
+ 31,
+ 30,
+ 35,
+ 35,
+ 29,
+ 32,
+ 39,
+ 32,
+ 35,
+ 40,
+ 31,
+ 35,
+ 34,
+ 34,
+ 31,
+ 31,
+ 56,
+ 34,
+ 31,
+ 45,
+ 48,
+ 48,
+ 32,
+ 50,
+ 39,
+ 55,
+ 55,
+ 39,
+ 39,
+ 36,
+ 53,
+ 42,
+ 42,
+ 46,
+ 30,
+ 35,
+ 35,
+ 36,
+ 35,
+ 30,
+ 42,
+ 32,
+ 42,
+ 34,
+ 46,
+ 39,
+ 38,
+ 46,
+ 42,
+ 42,
+ 38,
+ 44,
+ 42,
+ 52,
+ 32,
+ 35,
+ 43,
+ 31,
+ 58,
+ 37,
+ 51,
+ 34,
+ 35,
+ 41,
+ 46,
+ 44,
+ 50,
+ 50,
+ 40,
+ 34,
+ 31,
+ 34,
+ 33,
+ 32,
+ 39,
+ 38,
+ 40,
+ 36,
+ 46,
+ 36,
+ 33,
+ 53,
+ 43,
+ 46,
+ 38,
+ 57,
+ 42,
+ 51,
+ 43,
+ 43,
+ 35,
+ 35,
+ 40,
+ 37,
+ 43,
+ 36,
+ 49,
+ 42,
+ 38,
+ 55,
+ 41,
+ 55,
+ 51,
+ 49,
+ 48,
+ 34,
+ 50,
+ 52,
+ 43,
+ 35,
+ 39,
+ 35,
+ 43,
+ 46,
+ 53,
+ 52,
+ 39,
+ 31,
+ 31,
+ 36,
+ 37,
+ 52,
+ 35,
+ 33,
+ 36,
+ 45,
+ 41,
+ 52,
+ 37,
+ 46,
+ 39,
+ 40,
+ 30,
+ 52,
+ 44,
+ 53,
+ 53,
+ 53,
+ 44,
+ 53,
+ 53,
+ 35,
+ 44,
+ 57,
+ 43,
+ 45,
+ 51,
+ 52,
+ 42,
+ 45,
+ 32,
+ 40,
+ 41,
+ 50,
+ 51,
+ 31,
+ 58,
+ 50,
+ 33,
+ 42,
+ 50,
+ 43,
+ 36,
+ 34,
+ 31,
+ 51,
+ 44,
+ 34,
+ 34,
+ 41,
+ 37,
+ 43,
+ 43,
+ 50,
+ 55,
+ 49,
+ 39,
+ 56,
+ 31,
+ 53,
+ 47,
+ 54,
+ 47,
+ 40,
+ 47,
+ 43,
+ 43,
+ 54,
+ 54,
+ 41,
+ 34,
+ 30,
+ 35,
+ 41,
+ 36,
+ 57,
+ 41,
+ 37,
+ 36,
+ 34,
+ 34,
+ 34,
+ 40,
+ 52,
+ 40,
+ 34,
+ 35,
+ 35,
+ 35,
+ 49,
+ 32,
+ 40,
+ 44,
+ 31,
+ 36,
+ 37,
+ 53,
+ 32,
+ 51,
+ 34,
+ 35,
+ 35,
+ 33,
+ 51,
+ 29,
+ 30,
+ 36,
+ 33,
+ 32,
+ 32,
+ 40,
+ 33,
+ 39,
+ 50,
+ 56,
+ 29,
+ 32,
+ 40,
+ 38,
+ 39,
+ 33,
+ 31,
+ 42,
+ 43,
+ 38,
+ 52,
+ 43,
+ 31,
+ 33,
+ 43,
+ 31,
+ 52,
+ 40,
+ 38,
+ 38,
+ 51,
+ 37,
+ 33,
+ 36,
+ 39,
+ 36,
+ 33,
+ 46,
+ 29,
+ 31,
+ 44,
+ 31,
+ 34,
+ 46,
+ 35,
+ 43,
+ 31,
+ 54,
+ 30,
+ 43,
+ 48,
+ 52,
+ 54,
+ 56,
+ 39,
+ 51,
+ 39,
+ 39,
+ 37,
+ 47,
+ 37,
+ 36,
+ 35,
+ 48,
+ 37,
+ 39,
+ 39,
+ 48,
+ 33,
+ 32,
+ 38,
+ 36,
+ 50,
+ 50,
+ 34,
+ 30,
+ 54,
+ 52,
+ 40,
+ 30,
+ 30,
+ 34,
+ 33,
+ 32,
+ 37,
+ 52,
+ 34,
+ 36,
+ 34,
+ 40,
+ 29,
+ 39,
+ 40,
+ 52,
+ 30,
+ 49,
+ 49,
+ 47,
+ 49,
+ 30,
+ 36,
+ 54,
+ 41,
+ 36,
+ 31,
+ 50,
+ 44,
+ 33,
+ 32,
+ 43,
+ 32,
+ 32,
+ 49,
+ 47,
+ 51,
+ 43,
+ 41,
+ 39,
+ 51,
+ 38,
+ 48,
+ 31,
+ 35,
+ 47,
+ 29,
+ 54,
+ 47,
+ 54,
+ 30,
+ 39,
+ 50,
+ 39,
+ 37,
+ 49,
+ 38,
+ 51,
+ 53,
+ 55,
+ 51,
+ 55,
+ 44,
+ 35,
+ 49,
+ 48,
+ 50,
+ 46,
+ 31,
+ 35,
+ 48,
+ 35,
+ 50,
+ 48,
+ 50,
+ 35,
+ 50,
+ 30,
+ 35,
+ 32,
+ 52,
+ 51,
+ 46,
+ 32,
+ 53,
+ 32,
+ 35,
+ 46,
+ 53,
+ 34,
+ 38,
+ 33,
+ 46,
+ 37,
+ 40,
+ 30,
+ 29,
+ 46,
+ 57,
+ 34,
+ 45,
+ 41,
+ 30,
+ 56,
+ 33,
+ 39,
+ 38,
+ 54,
+ 38,
+ 31,
+ 50,
+ 32,
+ 56,
+ 33,
+ 31,
+ 58,
+ 31,
+ 31,
+ 31,
+ 34,
+ 49,
+ 29,
+ 38,
+ 53,
+ 29,
+ 41,
+ 52,
+ 58,
+ 29,
+ 31,
+ 32,
+ 56,
+ 32,
+ 36,
+ 29,
+ 52,
+ 33,
+ 47,
+ 46,
+ 53,
+ 35,
+ 35,
+ 53,
+ 40,
+ 50,
+ 41,
+ 33,
+ 45,
+ 54,
+ 35,
+ 40,
+ 54,
+ 36,
+ 35,
+ 38,
+ 50,
+ 32,
+ 50,
+ 47,
+ 35,
+ 37,
+ 44,
+ 43,
+ 55,
+ 33,
+ 40,
+ 45,
+ 40,
+ 38,
+ 32,
+ 39,
+ 39,
+ 44,
+ 47,
+ 47,
+ 44,
+ 45,
+ 47,
+ 48,
+ 36,
+ 51,
+ 38,
+ 30,
+ 36,
+ 48,
+ 50,
+ 31,
+ 41,
+ 36,
+ 30,
+ 58,
+ 43,
+ 38,
+ 54,
+ 32,
+ 50,
+ 38,
+ 37,
+ 35,
+ 30,
+ 35,
+ 50,
+ 35,
+ 54,
+ 32,
+ 56,
+ 31,
+ 49,
+ 45,
+ 45,
+ 51,
+ 32,
+ 41,
+ 37,
+ 35,
+ 40,
+ 36,
+ 30,
+ 35,
+ 35,
+ 47,
+ 47,
+ 34,
+ 43,
+ 37,
+ 36,
+ 36,
+ 57,
+ 41,
+ 51,
+ 33,
+ 43,
+ 46,
+ 30,
+ 39,
+ 35,
+ 35,
+ 37,
+ 51,
+ 41,
+ 44,
+ 50,
+ 35,
+ 33,
+ 39,
+ 50,
+ 39,
+ 58,
+ 41,
+ 36,
+ 47,
+ 34,
+ 46,
+ 54,
+ 35,
+ 40,
+ 53,
+ 53,
+ 42,
+ 47,
+ 37,
+ 53,
+ 39,
+ 32,
+ 41,
+ 39,
+ 35,
+ 50,
+ 36,
+ 53,
+ 53,
+ 54,
+ 32,
+ 32,
+ 47,
+ 43,
+ 57,
+ 32,
+ 33,
+ 36,
+ 36,
+ 45,
+ 55,
+ 36,
+ 50,
+ 34,
+ 46,
+ 56,
+ 44,
+ 43,
+ 47,
+ 47,
+ 37,
+ 45,
+ 43,
+ 44,
+ 31,
+ 46,
+ 56,
+ 45,
+ 40,
+ 36,
+ 31,
+ 46,
+ 33,
+ 46,
+ 50,
+ 32,
+ 30,
+ 35,
+ 31,
+ 39,
+ 54,
+ 34,
+ 37,
+ 30,
+ 29,
+ 29,
+ 37,
+ 51,
+ 42,
+ 31,
+ 31,
+ 48,
+ 32,
+ 31,
+ 34,
+ 50,
+ 54,
+ 31,
+ 29,
+ 31,
+ 34,
+ 35,
+ 50,
+ 36,
+ 56,
+ 32,
+ 34,
+ 33,
+ 35,
+ 33,
+ 39,
+ 30,
+ 49,
+ 36,
+ 36,
+ 34,
+ 39,
+ 31,
+ 37,
+ 32,
+ 40,
+ 54,
+ 32,
+ 57,
+ 38,
+ 40,
+ 47,
+ 52,
+ 42,
+ 38,
+ 34,
+ 30,
+ 36,
+ 45,
+ 47,
+ 57,
+ 34,
+ 36,
+ 38,
+ 37,
+ 35,
+ 29,
+ 36,
+ 36,
+ 40,
+ 32,
+ 40,
+ 51,
+ 52,
+ 30,
+ 35,
+ 30,
+ 29,
+ 31,
+ 30,
+ 50,
+ 50,
+ 50,
+ 34,
+ 46,
+ 43,
+ 41,
+ 33,
+ 42,
+ 35,
+ 58,
+ 35,
+ 53,
+ 58,
+ 58,
+ 58,
+ 36,
+ 36,
+ 34,
+ 32,
+ 43,
+ 48,
+ 48,
+ 31,
+ 34,
+ 34,
+ 34,
+ 34,
+ 29,
+ 43,
+ 44,
+ 36,
+ 34,
+ 42,
+ 36,
+ 33,
+ 36,
+ 37,
+ 33,
+ 42,
+ 37,
+ 37,
+ 30,
+ 37,
+ 37,
+ 56,
+ 30,
+ 34,
+ 38,
+ 31,
+ 35,
+ 35,
+ 30,
+ 40,
+ 43,
+ 29,
+ 29,
+ 29,
+ 32,
+ 29,
+ 29,
+ 31,
+ 31,
+ 33,
+ 33,
+ 41,
+ 36,
+ 33,
+ 33,
+ 34,
+ 32,
+ 32,
+ 34,
+ 49,
+ 30,
+ 48,
+ 33,
+ 33,
+ 38,
+ 46,
+ 41,
+ 58,
+ 41,
+ 44,
+ 48,
+ 48,
+ 32,
+ 30,
+ 29,
+ 58,
+ 38,
+ 30,
+ 40,
+ 47,
+ 38,
+ 48,
+ 35,
+ 32,
+ 36,
+ 39,
+ 32,
+ 45,
+ 31,
+ 46,
+ 38,
+ 44,
+ 32,
+ 48,
+ 39,
+ 31,
+ 31,
+ 37,
+ 29,
+ 30,
+ 32,
+ 33,
+ 35,
+ 34,
+ 41,
+ 44,
+ 35,
+ 35,
+ 44,
+ 34,
+ 34,
+ 30,
+ 58,
+ 30,
+ 35,
+ 34,
+ 43,
+ 35,
+ 33,
+ 51,
+ 29,
+ 41,
+ 45,
+ 51,
+ 29,
+ 31,
+ 29,
+ 30,
+ 38,
+ 45,
+ 29,
+ 32,
+ 50,
+ 29,
+ 33,
+ 35,
+ 36,
+ 36,
+ 36,
+ 48,
+ 32,
+ 42,
+ 29,
+ 38,
+ 30,
+ 29,
+ 43,
+ 48,
+ 36,
+ 31,
+ 34,
+ 36,
+ 36,
+ 48,
+ 49,
+ 31,
+ 56,
+ 30,
+ 32,
+ 36,
+ 47,
+ 33,
+ 34,
+ 30,
+ 54,
+ 29,
+ 59,
+ 33,
+ 36,
+ 36,
+ 49,
+ 34,
+ 33,
+ 38,
+ 35,
+ 32,
+ 32,
+ 32,
+ 38,
+ 29,
+ 35,
+ 49,
+ 43,
+ 33,
+ 32,
+ 40,
+ 32,
+ 53,
+ 34,
+ 34,
+ 47,
+ 36,
+ 48,
+ 33,
+ 38,
+ 47,
+ 36,
+ 47,
+ 34,
+ 34,
+ 33,
+ 30,
+ 47,
+ 50,
+ 35,
+ 37,
+ 45,
+ 44,
+ 53,
+ 31,
+ 29,
+ 38,
+ 36,
+ 36,
+ 36,
+ 41,
+ 40,
+ 54,
+ 40,
+ 35,
+ 32,
+ 31,
+ 31,
+ 45,
+ 31,
+ 28,
+ 58,
+ 37,
+ 30,
+ 40,
+ 33,
+ 36,
+ 55,
+ 29,
+ 40,
+ 32,
+ 32,
+ 36,
+ 42,
+ 32,
+ 42,
+ 34,
+ 32,
+ 33,
+ 35,
+ 38,
+ 36,
+ 34,
+ 37,
+ 37,
+ 39,
+ 36,
+ 36,
+ 29,
+ 36,
+ 56,
+ 46,
+ 38,
+ 35,
+ 36,
+ 35,
+ 36,
+ 32,
+ 44,
+ 47,
+ 32,
+ 44,
+ 34,
+ 46,
+ 51,
+ 31,
+ 36,
+ 34,
+ 41,
+ 30,
+ 54,
+ 55,
+ 35,
+ 41,
+ 38,
+ 32,
+ 38,
+ 53,
+ 45,
+ 39,
+ 36,
+ 51,
+ 31,
+ 32,
+ 34,
+ 56,
+ 35,
+ 35,
+ 33,
+ 40,
+ 58,
+ 30,
+ 34,
+ 49,
+ 40,
+ 44,
+ 32,
+ 48,
+ 32,
+ 31,
+ 47,
+ 53,
+ 30,
+ 30,
+ 32,
+ 29,
+ 29,
+ 36,
+ 52,
+ 44,
+ 51,
+ 36,
+ 29,
+ 44,
+ 52,
+ 36,
+ 35,
+ 39,
+ 46,
+ 31,
+ 48,
+ 34,
+ 58,
+ 48,
+ 55,
+ 54,
+ 52,
+ 42,
+ 43,
+ 30,
+ 30,
+ 42,
+ 31,
+ 31,
+ 31,
+ 38,
+ 30,
+ 33,
+ 35,
+ 33,
+ 47,
+ 38,
+ 38,
+ 30,
+ 32,
+ 38,
+ 39,
+ 30,
+ 33,
+ 30,
+ 35,
+ 36,
+ 40,
+ 31,
+ 40,
+ 31,
+ 34,
+ 34,
+ 45,
+ 30,
+ 40,
+ 44,
+ 40,
+ 35,
+ 32,
+ 30,
+ 32,
+ 32,
+ 38,
+ 35,
+ 38,
+ 40,
+ 36,
+ 29,
+ 32,
+ 35,
+ 30,
+ 51,
+ 35,
+ 45,
+ 44,
+ 39,
+ 31,
+ 31,
+ 31,
+ 39,
+ 35,
+ 45,
+ 30,
+ 34,
+ 34,
+ 30,
+ 32,
+ 55,
+ 50,
+ 33,
+ 35,
+ 32,
+ 31,
+ 54,
+ 34,
+ 33,
+ 37,
+ 37,
+ 33,
+ 31,
+ 39,
+ 31,
+ 43,
+ 29,
+ 42,
+ 49,
+ 49,
+ 38,
+ 29,
+ 34,
+ 29,
+ 48,
+ 29,
+ 46,
+ 29,
+ 36,
+ 36,
+ 38,
+ 49,
+ 48,
+ 30,
+ 38,
+ 30,
+ 49,
+ 53,
+ 56,
+ 47,
+ 40,
+ 39,
+ 37,
+ 56,
+ 31,
+ 44,
+ 47,
+ 42,
+ 40,
+ 31,
+ 32,
+ 41,
+ 37,
+ 41,
+ 37,
+ 30,
+ 32,
+ 30,
+ 44,
+ 39,
+ 42,
+ 30,
+ 38,
+ 31,
+ 38,
+ 43,
+ 48,
+ 55,
+ 34,
+ 42,
+ 33,
+ 31,
+ 43,
+ 58,
+ 53,
+ 36,
+ 30,
+ 29,
+ 39,
+ 32,
+ 34,
+ 47,
+ 56,
+ 31,
+ 38,
+ 47,
+ 31,
+ 31,
+ 38,
+ 49,
+ 56,
+ 31,
+ 39,
+ 46,
+ 46,
+ 35,
+ 51,
+ 39,
+ 35,
+ 35,
+ 35,
+ 38,
+ 50,
+ 35,
+ 42,
+ 32,
+ 32,
+ 32,
+ 34,
+ 34,
+ 54,
+ 33,
+ 35,
+ 29,
+ 34,
+ 49,
+ 53,
+ 31,
+ 34,
+ 35,
+ 35,
+ 42,
+ 31,
+ 43,
+ 37,
+ 37,
+ 35,
+ 38,
+ 43,
+ 32,
+ 42,
+ 31,
+ 38,
+ 36,
+ 33,
+ 55,
+ 43,
+ 32,
+ 36,
+ 30,
+ 45,
+ 46,
+ 35,
+ 33,
+ 31,
+ 54,
+ 34,
+ 46,
+ 40,
+ 35,
+ 46,
+ 52,
+ 31,
+ 53,
+ 46,
+ 30,
+ 45,
+ 36,
+ 33,
+ 31,
+ 45,
+ 37,
+ 42,
+ 44,
+ 55,
+ 40,
+ 56,
+ 56,
+ 41,
+ 36,
+ 50,
+ 43,
+ 36,
+ 49,
+ 33,
+ 38,
+ 32,
+ 39,
+ 29,
+ 33,
+ 48,
+ 35,
+ 32,
+ 50,
+ 49,
+ 35,
+ 44,
+ 40,
+ 39,
+ 46,
+ 44,
+ 33,
+ 44,
+ 37,
+ 32,
+ 32,
+ 56,
+ 36,
+ 31,
+ 39,
+ 36,
+ 37,
+ 36,
+ 30,
+ 30,
+ 36,
+ 32,
+ 34,
+ 45,
+ 40,
+ 31,
+ 29,
+ 50,
+ 33,
+ 41,
+ 31,
+ 51,
+ 43,
+ 39,
+ 53,
+ 29,
+ 36,
+ 29,
+ 53,
+ 54,
+ 36,
+ 53,
+ 33,
+ 29,
+ 30,
+ 38,
+ 30,
+ 50,
+ 38,
+ 30,
+ 36,
+ 52,
+ 38,
+ 31,
+ 48,
+ 33,
+ 38,
+ 53,
+ 34,
+ 33,
+ 53,
+ 36,
+ 34,
+ 37,
+ 32,
+ 38,
+ 30,
+ 31,
+ 36,
+ 29,
+ 53,
+ 29,
+ 49,
+ 30,
+ 39,
+ 36,
+ 47,
+ 34,
+ 33,
+ 41,
+ 33,
+ 41,
+ 39,
+ 45,
+ 49,
+ 35,
+ 31,
+ 33,
+ 42,
+ 39,
+ 31,
+ 30,
+ 31,
+ 44,
+ 34,
+ 31,
+ 30,
+ 31,
+ 30,
+ 36,
+ 47,
+ 37,
+ 51,
+ 52,
+ 52,
+ 53,
+ 53,
+ 37,
+ 29,
+ 46,
+ 45,
+ 52,
+ 32,
+ 46,
+ 39,
+ 44,
+ 36,
+ 40,
+ 55,
+ 58,
+ 38,
+ 40,
+ 44,
+ 40,
+ 33,
+ 42,
+ 33,
+ 47,
+ 56,
+ 31,
+ 30,
+ 35,
+ 32,
+ 44,
+ 31,
+ 36,
+ 35,
+ 34,
+ 55,
+ 34,
+ 46,
+ 36,
+ 43,
+ 53,
+ 31,
+ 31,
+ 29,
+ 31,
+ 42,
+ 31,
+ 31,
+ 32,
+ 36,
+ 30,
+ 31,
+ 32,
+ 48,
+ 32,
+ 30,
+ 56,
+ 30,
+ 30,
+ 52,
+ 32,
+ 34,
+ 46,
+ 53,
+ 45,
+ 31,
+ 53,
+ 29,
+ 36,
+ 36,
+ 36,
+ 34,
+ 48,
+ 30,
+ 38,
+ 29,
+ 30,
+ 32,
+ 30,
+ 31,
+ 32,
+ 38,
+ 33,
+ 29,
+ 36,
+ 31,
+ 40,
+ 29,
+ 31,
+ 32,
+ 32,
+ 32,
+ 36,
+ 38,
+ 44,
+ 32,
+ 44,
+ 29,
+ 44,
+ 32,
+ 31,
+ 56,
+ 38,
+ 58,
+ 38,
+ 29,
+ 32,
+ 32,
+ 31,
+ 32,
+ 58,
+ 31,
+ 50,
+ 29,
+ 38,
+ 35,
+ 38,
+ 38,
+ 30,
+ 37,
+ 36,
+ 29,
+ 33,
+ 32,
+ 29,
+ 55,
+ 29,
+ 58,
+ 48,
+ 30,
+ 50,
+ 32,
+ 57,
+ 40,
+ 35,
+ 49,
+ 36,
+ 30,
+ 42,
+ 52,
+ 52,
+ 30,
+ 33,
+ 38,
+ 31,
+ 31,
+ 47,
+ 29,
+ 49,
+ 42,
+ 32,
+ 31,
+ 31,
+ 57,
+ 30,
+ 44,
+ 38,
+ 46,
+ 38,
+ 34,
+ 33,
+ 32,
+ 37,
+ 31,
+ 50,
+ 31,
+ 33,
+ 44,
+ 45,
+ 31,
+ 32,
+ 31,
+ 53,
+ 31,
+ 36,
+ 32,
+ 31,
+ 38,
+ 43,
+ 36,
+ 58,
+ 34,
+ 46,
+ 34,
+ 45,
+ 46,
+ 38,
+ 38,
+ 30,
+ 30,
+ 38,
+ 58,
+ 30,
+ 33,
+ 53,
+ 39,
+ 38,
+ 32,
+ 34,
+ 35,
+ 30,
+ 30,
+ 32,
+ 48,
+ 33,
+ 31,
+ 31,
+ 36,
+ 56,
+ 31,
+ 30,
+ 48,
+ 34,
+ 34,
+ 59,
+ 59,
+ 38,
+ 33,
+ 38,
+ 56,
+ 34,
+ 34,
+ 38,
+ 44,
+ 33,
+ 55,
+ 51,
+ 34,
+ 35,
+ 30,
+ 32,
+ 34,
+ 46,
+ 31,
+ 40,
+ 36,
+ 31,
+ 37,
+ 36,
+ 44,
+ 36,
+ 30,
+ 52,
+ 31,
+ 53,
+ 40,
+ 45,
+ 46,
+ 38,
+ 41,
+ 50,
+ 43,
+ 43,
+ 31,
+ 32,
+ 33,
+ 55,
+ 39,
+ 39,
+ 30,
+ 36,
+ 29,
+ 39,
+ 30,
+ 39,
+ 33,
+ 39,
+ 29,
+ 32,
+ 35,
+ 41,
+ 43,
+ 49,
+ 36,
+ 56,
+ 30,
+ 36,
+ 32,
+ 32,
+ 47,
+ 47,
+ 58,
+ 31,
+ 45,
+ 31,
+ 42,
+ 29,
+ 37,
+ 43,
+ 33,
+ 40,
+ 47,
+ 55,
+ 44,
+ 43,
+ 33,
+ 39,
+ 50,
+ 30,
+ 52,
+ 31,
+ 30,
+ 37,
+ 50,
+ 30,
+ 33,
+ 35,
+ 50,
+ 44,
+ 41,
+ 48,
+ 52,
+ 31,
+ 50,
+ 43,
+ 30,
+ 29,
+ 53,
+ 53,
+ 31,
+ 51,
+ 31,
+ 31,
+ 29,
+ 29,
+ 47,
+ 51,
+ 51,
+ 31,
+ 31,
+ 31,
+ 31,
+ 30,
+ 51,
+ 52,
+ 30,
+ 41,
+ 44,
+ 34,
+ 31,
+ 31,
+ 30,
+ 31,
+ 46,
+ 36,
+ 30,
+ 38,
+ 39,
+ 33,
+ 30,
+ 32,
+ 39,
+ 43,
+ 33,
+ 31,
+ 36,
+ 30,
+ 41,
+ 37,
+ 32,
+ 51,
+ 32,
+ 56,
+ 37,
+ 34,
+ 56,
+ 31,
+ 41,
+ 56,
+ 34,
+ 51,
+ 46,
+ 32,
+ 43,
+ 41,
+ 34,
+ 31,
+ 38,
+ 34,
+ 37,
+ 33,
+ 29,
+ 31,
+ 53,
+ 30,
+ 37,
+ 36,
+ 33,
+ 40,
+ 30,
+ 35,
+ 35,
+ 31,
+ 35,
+ 37,
+ 36,
+ 32,
+ 36,
+ 46,
+ 32,
+ 56,
+ 56,
+ 50,
+ 29,
+ 43,
+ 32,
+ 34,
+ 42,
+ 47,
+ 35,
+ 31,
+ 40,
+ 31,
+ 31,
+ 33,
+ 46,
+ 32,
+ 31,
+ 33,
+ 53,
+ 32,
+ 34,
+ 30,
+ 32,
+ 31,
+ 35,
+ 30,
+ 51,
+ 30,
+ 36,
+ 52,
+ 51,
+ 34,
+ 55,
+ 51,
+ 39,
+ 31,
+ 48,
+ 30,
+ 50,
+ 32,
+ 35,
+ 40,
+ 39,
+ 30,
+ 31,
+ 47,
+ 39,
+ 29,
+ 50,
+ 30,
+ 33,
+ 29,
+ 33,
+ 41,
+ 39,
+ 49,
+ 42,
+ 45,
+ 31,
+ 29,
+ 53,
+ 53,
+ 46,
+ 49,
+ 43,
+ 39,
+ 38,
+ 33,
+ 51,
+ 45,
+ 32,
+ 30,
+ 38,
+ 44,
+ 50,
+ 50,
+ 31,
+ 41,
+ 30,
+ 29,
+ 36,
+ 36,
+ 43,
+ 46,
+ 38,
+ 38,
+ 29,
+ 30,
+ 29,
+ 36,
+ 36,
+ 33,
+ 30,
+ 33,
+ 52,
+ 33,
+ 46,
+ 34,
+ 38,
+ 36,
+ 31,
+ 41,
+ 33,
+ 35,
+ 39,
+ 30,
+ 36,
+ 50,
+ 31,
+ 31,
+ 36,
+ 30,
+ 32,
+ 41,
+ 41,
+ 41,
+ 22,
+ 35,
+ 31,
+ 30,
+ 34,
+ 29,
+ 39,
+ 52,
+ 32,
+ 30,
+ 31,
+ 50,
+ 34,
+ 45,
+ 30,
+ 30,
+ 35,
+ 30,
+ 43,
+ 33,
+ 57,
+ 29,
+ 33,
+ 36,
+ 30,
+ 29,
+ 36,
+ 39,
+ 47,
+ 55,
+ 55,
+ 55,
+ 54,
+ 29,
+ 31,
+ 31,
+ 29,
+ 30,
+ 30,
+ 37,
+ 55,
+ 38,
+ 46,
+ 30,
+ 32,
+ 41,
+ 32,
+ 42,
+ 31,
+ 39,
+ 31,
+ 31,
+ 35,
+ 30,
+ 36,
+ 29,
+ 41,
+ 52,
+ 38,
+ 33,
+ 30,
+ 49,
+ 31,
+ 55,
+ 45,
+ 54,
+ 41,
+ 52,
+ 42,
+ 59,
+ 29,
+ 51,
+ 48,
+ 29,
+ 32,
+ 48,
+ 33,
+ 31,
+ 30,
+ 31,
+ 58,
+ 41,
+ 30,
+ 36,
+ 30,
+ 34,
+ 37,
+ 51,
+ 36,
+ 36,
+ 45,
+ 31,
+ 46,
+ 38,
+ 32,
+ 33,
+ 31,
+ 32,
+ 38,
+ 45,
+ 39,
+ 42,
+ 36,
+ 34,
+ 33,
+ 39,
+ 31,
+ 42,
+ 29,
+ 35,
+ 42,
+ 56,
+ 42,
+ 31,
+ 51,
+ 42,
+ 54,
+ 44,
+ 37,
+ 45,
+ 33,
+ 58,
+ 46,
+ 50,
+ 44,
+ 31,
+ 32,
+ 40,
+ 38,
+ 33,
+ 47,
+ 33,
+ 58,
+ 31,
+ 48,
+ 32,
+ 49,
+ 45,
+ 54,
+ 30,
+ 32,
+ 57,
+ 50,
+ 53,
+ 38,
+ 57,
+ 58,
+ 49,
+ 37,
+ 57,
+ 36,
+ 43,
+ 30,
+ 45,
+ 40,
+ 31,
+ 36,
+ 29,
+ 48,
+ 32,
+ 29,
+ 38,
+ 29,
+ 37,
+ 42,
+ 30,
+ 55,
+ 56,
+ 55,
+ 31,
+ 45,
+ 37,
+ 45,
+ 30,
+ 34,
+ 53,
+ 45,
+ 48,
+ 49,
+ 29,
+ 47,
+ 32,
+ 43,
+ 42,
+ 50,
+ 39,
+ 55,
+ 42,
+ 30,
+ 43,
+ 29,
+ 31,
+ 35,
+ 48,
+ 43,
+ 29,
+ 40,
+ 40,
+ 29,
+ 55,
+ 45,
+ 43,
+ 29,
+ 40,
+ 32,
+ 33,
+ 31,
+ 57,
+ 57,
+ 48,
+ 34,
+ 32,
+ 57,
+ 45,
+ 50,
+ 52,
+ 42,
+ 30,
+ 38,
+ 34,
+ 51,
+ 44,
+ 38,
+ 57,
+ 36,
+ 40,
+ 40,
+ 31,
+ 34,
+ 50,
+ 53,
+ 52,
+ 42,
+ 50,
+ 40,
+ 51,
+ 44,
+ 57,
+ 50,
+ 49,
+ 36,
+ 37,
+ 32,
+ 31,
+ 29,
+ 40,
+ 44,
+ 50,
+ 39,
+ 57,
+ 46,
+ 41,
+ 31,
+ 54,
+ 33,
+ 52,
+ 46,
+ 57,
+ 55,
+ 37,
+ 40,
+ 29,
+ 31,
+ 33,
+ 34,
+ 40,
+ 34,
+ 52,
+ 31,
+ 46,
+ 50,
+ 41,
+ 31,
+ 32,
+ 51,
+ 31,
+ 49,
+ 55,
+ 57,
+ 57,
+ 48,
+ 40,
+ 33,
+ 58,
+ 40,
+ 31,
+ 36,
+ 52,
+ 40,
+ 50,
+ 39,
+ 37,
+ 57,
+ 48,
+ 29,
+ 47,
+ 57,
+ 48,
+ 50,
+ 29,
+ 32,
+ 37,
+ 45,
+ 50,
+ 45,
+ 52,
+ 54,
+ 33,
+ 34,
+ 38,
+ 55,
+ 38,
+ 52,
+ 32,
+ 49,
+ 30,
+ 52,
+ 31,
+ 49,
+ 32,
+ 53,
+ 50,
+ 37,
+ 57,
+ 44,
+ 44,
+ 37,
+ 44,
+ 43,
+ 51,
+ 33,
+ 36,
+ 31,
+ 49,
+ 34,
+ 42,
+ 29,
+ 29,
+ 52,
+ 48,
+ 56,
+ 41,
+ 37,
+ 55,
+ 58,
+ 45,
+ 44,
+ 52,
+ 35,
+ 48,
+ 32,
+ 47,
+ 31,
+ 48,
+ 35,
+ 40,
+ 35,
+ 40,
+ 37,
+ 55,
+ 35,
+ 29,
+ 47,
+ 56,
+ 35,
+ 30,
+ 31,
+ 39,
+ 56,
+ 51,
+ 31,
+ 31,
+ 50,
+ 32,
+ 41,
+ 51,
+ 37,
+ 50,
+ 34,
+ 37,
+ 47,
+ 40,
+ 33,
+ 39,
+ 37,
+ 55,
+ 36,
+ 55,
+ 36,
+ 34,
+ 52,
+ 44,
+ 40,
+ 32,
+ 31,
+ 42,
+ 51,
+ 42,
+ 49,
+ 53,
+ 52,
+ 46,
+ 54,
+ 32,
+ 34,
+ 50,
+ 32,
+ 32,
+ 29,
+ 33,
+ 44,
+ 46,
+ 51,
+ 44,
+ 39,
+ 56,
+ 33,
+ 33,
+ 52,
+ 56,
+ 31,
+ 31,
+ 31,
+ 40,
+ 53,
+ 52,
+ 40,
+ 56,
+ 45,
+ 41,
+ 31,
+ 34,
+ 38,
+ 38,
+ 31,
+ 43,
+ 55,
+ 34,
+ 46,
+ 40,
+ 58,
+ 31,
+ 36,
+ 37,
+ 30,
+ 29,
+ 48,
+ 44,
+ 46,
+ 32,
+ 36,
+ 53,
+ 53,
+ 56,
+ 37,
+ 44,
+ 52,
+ 56,
+ 40,
+ 46,
+ 39,
+ 34,
+ 51,
+ 51,
+ 50,
+ 53,
+ 41,
+ 30,
+ 45,
+ 51,
+ 43,
+ 32,
+ 50,
+ 45,
+ 50,
+ 41,
+ 40,
+ 50,
+ 58,
+ 42,
+ 53,
+ 34,
+ 49,
+ 42,
+ 40,
+ 54,
+ 29,
+ 34,
+ 53,
+ 39,
+ 50,
+ 57,
+ 37,
+ 35,
+ 37,
+ 51,
+ 54,
+ 30,
+ 34,
+ 46,
+ 31,
+ 43,
+ 56,
+ 46,
+ 53,
+ 53,
+ 48,
+ 31,
+ 44,
+ 47,
+ 36,
+ 32,
+ 40,
+ 53,
+ 37,
+ 30,
+ 49,
+ 53,
+ 37,
+ 42,
+ 43,
+ 51,
+ 44,
+ 44,
+ 56,
+ 52,
+ 51,
+ 30,
+ 48,
+ 34,
+ 47,
+ 42,
+ 30,
+ 46,
+ 51,
+ 43,
+ 33,
+ 53,
+ 58,
+ 54,
+ 53,
+ 47,
+ 37,
+ 43,
+ 50,
+ 48,
+ 34,
+ 56,
+ 57,
+ 47,
+ 59,
+ 47,
+ 53,
+ 57,
+ 44,
+ 41,
+ 41,
+ 48,
+ 52,
+ 30,
+ 45,
+ 56,
+ 49,
+ 31,
+ 58,
+ 49,
+ 32,
+ 48,
+ 35,
+ 57,
+ 53,
+ 30,
+ 58,
+ 29,
+ 47,
+ 30,
+ 48,
+ 52,
+ 50,
+ 37,
+ 55,
+ 58,
+ 37,
+ 53,
+ 29,
+ 51,
+ 55,
+ 37,
+ 30,
+ 42,
+ 41,
+ 37,
+ 51,
+ 46,
+ 43,
+ 50,
+ 29,
+ 44,
+ 33,
+ 35,
+ 49,
+ 40,
+ 31,
+ 35,
+ 45,
+ 31,
+ 31,
+ 34,
+ 36,
+ 40,
+ 50,
+ 56,
+ 37,
+ 50,
+ 32,
+ 42,
+ 49,
+ 51,
+ 55,
+ 48,
+ 39,
+ 40,
+ 39,
+ 41,
+ 32,
+ 34,
+ 38,
+ 32,
+ 46,
+ 27,
+ 31,
+ 39,
+ 41,
+ 37,
+ 48,
+ 51,
+ 39,
+ 36,
+ 55,
+ 26,
+ 26,
+ 30,
+ 26,
+ 28,
+ 48,
+ 28,
+ 31,
+ 38,
+ 28,
+ 30,
+ 26,
+ 28,
+ 26,
+ 28,
+ 61,
+ 26,
+ 30,
+ 31,
+ 34,
+ 32,
+ 38,
+ 38,
+ 44,
+ 33,
+ 23,
+ 44,
+ 44,
+ 23,
+ 33,
+ 38,
+ 32,
+ 38,
+ 76,
+ 34,
+ 38,
+ 41,
+ 37,
+ 32,
+ 67,
+ 32,
+ 32,
+ 32,
+ 32,
+ 73,
+ 33,
+ 39,
+ 39,
+ 38,
+ 38,
+ 18,
+ 32,
+ 39,
+ 30,
+ 32,
+ 29,
+ 88,
+ 29,
+ 29,
+ 29,
+ 88,
+ 60,
+ 88,
+ 88,
+ 88,
+ 33,
+ 33,
+ 95,
+ 28,
+ 32,
+ 28,
+ 28,
+ 37,
+ 70,
+ 70,
+ 34,
+ 56,
+ 34,
+ 34,
+ 70,
+ 34,
+ 50,
+ 46,
+ 33,
+ 32,
+ 32,
+ 50,
+ 26,
+ 33,
+ 33,
+ 24,
+ 54,
+ 75,
+ 27,
+ 70,
+ 35,
+ 29,
+ 32,
+ 28,
+ 29,
+ 61,
+ 29,
+ 63,
+ 36,
+ 70,
+ 45,
+ 36,
+ 28,
+ 20,
+ 36,
+ 37,
+ 51,
+ 28,
+ 22,
+ 27,
+ 28,
+ 28,
+ 28,
+ 25,
+ 25,
+ 30,
+ 28,
+ 43,
+ 36,
+ 60,
+ 43,
+ 28,
+ 30,
+ 34,
+ 34,
+ 32,
+ 21,
+ 32,
+ 32,
+ 32,
+ 34,
+ 59,
+ 45,
+ 45,
+ 48,
+ 38,
+ 31,
+ 34,
+ 29,
+ 56,
+ 30,
+ 33,
+ 39,
+ 33,
+ 33,
+ 40,
+ 29,
+ 29,
+ 29,
+ 29,
+ 39,
+ 32,
+ 38,
+ 32,
+ 63,
+ 34,
+ 31,
+ 30,
+ 54,
+ 54,
+ 30,
+ 30,
+ 38,
+ 39,
+ 34,
+ 26,
+ 39,
+ 39,
+ 39,
+ 33,
+ 39,
+ 28,
+ 42,
+ 28,
+ 28,
+ 28,
+ 28,
+ 30,
+ 32,
+ 46,
+ 42,
+ 39,
+ 50,
+ 44,
+ 31,
+ 39,
+ 38,
+ 28,
+ 30,
+ 32,
+ 24,
+ 39,
+ 40,
+ 42,
+ 53,
+ 26,
+ 32,
+ 26,
+ 49,
+ 30,
+ 42,
+ 37,
+ 51,
+ 51,
+ 40,
+ 31,
+ 30,
+ 33,
+ 39,
+ 44,
+ 33,
+ 32,
+ 55,
+ 33,
+ 39,
+ 56,
+ 48,
+ 48,
+ 32,
+ 32,
+ 34,
+ 49,
+ 50,
+ 39,
+ 37,
+ 32,
+ 44,
+ 44,
+ 31,
+ 47,
+ 36,
+ 47,
+ 51,
+ 37,
+ 40,
+ 49,
+ 38,
+ 41,
+ 41,
+ 45,
+ 40,
+ 25,
+ 40,
+ 37,
+ 38,
+ 55,
+ 31,
+ 26,
+ 56,
+ 65,
+ 34,
+ 55,
+ 55,
+ 44,
+ 24,
+ 42,
+ 46,
+ 41,
+ 45,
+ 45,
+ 55,
+ 24,
+ 55,
+ 40,
+ 26,
+ 26,
+ 58,
+ 55,
+ 43,
+ 32,
+ 35,
+ 48,
+ 40,
+ 57,
+ 38,
+ 42,
+ 38,
+ 51,
+ 56,
+ 19,
+ 32,
+ 57,
+ 39,
+ 35,
+ 34,
+ 44,
+ 39,
+ 35,
+ 41,
+ 22,
+ 41,
+ 40,
+ 40,
+ 46,
+ 45,
+ 36,
+ 39,
+ 57,
+ 36,
+ 45,
+ 46,
+ 40,
+ 40,
+ 39,
+ 66,
+ 42,
+ 41,
+ 42,
+ 34,
+ 28,
+ 32,
+ 72,
+ 36,
+ 32,
+ 45,
+ 45,
+ 43,
+ 57,
+ 35,
+ 35,
+ 40,
+ 25,
+ 36,
+ 39,
+ 44,
+ 40,
+ 40,
+ 41,
+ 59,
+ 44,
+ 44,
+ 38,
+ 38,
+ 38,
+ 33,
+ 55,
+ 59,
+ 43,
+ 40,
+ 36,
+ 44,
+ 27,
+ 27,
+ 46,
+ 34,
+ 27,
+ 27,
+ 40,
+ 32,
+ 55,
+ 27,
+ 61,
+ 48,
+ 29,
+ 32,
+ 41,
+ 41,
+ 25,
+ 25,
+ 27,
+ 39,
+ 39,
+ 27,
+ 37,
+ 29,
+ 34,
+ 38,
+ 36,
+ 36,
+ 37,
+ 47,
+ 28,
+ 51,
+ 25,
+ 47,
+ 31,
+ 36,
+ 27,
+ 46,
+ 47,
+ 35,
+ 38,
+ 24,
+ 64,
+ 40,
+ 42,
+ 35,
+ 40,
+ 35,
+ 35,
+ 35,
+ 34,
+ 29,
+ 37,
+ 34,
+ 52,
+ 46,
+ 34,
+ 27,
+ 22,
+ 64,
+ 39,
+ 25,
+ 43,
+ 34,
+ 41,
+ 33,
+ 46,
+ 59,
+ 31,
+ 20,
+ 36,
+ 31,
+ 21,
+ 52,
+ 21,
+ 41,
+ 28,
+ 46,
+ 43,
+ 44,
+ 24,
+ 35,
+ 35,
+ 38,
+ 38,
+ 37,
+ 32,
+ 67,
+ 33,
+ 40,
+ 40,
+ 32,
+ 33,
+ 36,
+ 45,
+ 33,
+ 30,
+ 30,
+ 30,
+ 30,
+ 35,
+ 52,
+ 42,
+ 37,
+ 46,
+ 52,
+ 45,
+ 33,
+ 36,
+ 47,
+ 54,
+ 43,
+ 28,
+ 46,
+ 36,
+ 57,
+ 37,
+ 33,
+ 30,
+ 26,
+ 41,
+ 36,
+ 34,
+ 30,
+ 24,
+ 41,
+ 34,
+ 42,
+ 42,
+ 37,
+ 34,
+ 38,
+ 46,
+ 34,
+ 42,
+ 59,
+ 46,
+ 34,
+ 35,
+ 48,
+ 34,
+ 24,
+ 48,
+ 24,
+ 24,
+ 47,
+ 34,
+ 55,
+ 55,
+ 26,
+ 28,
+ 35,
+ 44,
+ 30,
+ 57,
+ 46,
+ 39,
+ 71,
+ 25,
+ 34,
+ 45,
+ 36,
+ 42,
+ 23,
+ 29,
+ 38,
+ 47,
+ 41,
+ 46,
+ 67,
+ 39,
+ 56,
+ 23,
+ 37,
+ 56,
+ 38,
+ 34,
+ 30,
+ 45,
+ 30,
+ 29,
+ 36,
+ 66,
+ 44,
+ 44,
+ 40,
+ 53,
+ 53,
+ 35,
+ 41,
+ 44,
+ 35,
+ 44,
+ 41,
+ 32,
+ 41,
+ 32,
+ 52,
+ 44,
+ 60,
+ 59,
+ 21,
+ 32,
+ 44,
+ 36,
+ 58,
+ 32,
+ 44,
+ 32,
+ 70,
+ 27,
+ 52,
+ 52,
+ 57,
+ 57,
+ 57,
+ 43,
+ 25,
+ 25,
+ 33,
+ 31,
+ 55,
+ 37,
+ 33,
+ 37,
+ 56,
+ 30,
+ 30,
+ 45,
+ 54,
+ 43,
+ 71,
+ 39,
+ 39,
+ 55,
+ 51,
+ 42,
+ 47,
+ 35,
+ 29,
+ 33,
+ 38,
+ 64,
+ 57,
+ 29,
+ 48,
+ 33,
+ 52,
+ 45,
+ 37,
+ 31,
+ 52,
+ 27,
+ 27,
+ 27,
+ 35,
+ 44,
+ 27,
+ 27,
+ 43,
+ 32,
+ 42,
+ 32,
+ 27,
+ 54,
+ 27,
+ 24,
+ 54,
+ 31,
+ 52,
+ 29,
+ 32,
+ 24,
+ 46,
+ 54,
+ 26,
+ 37,
+ 40,
+ 35,
+ 27,
+ 40,
+ 41,
+ 51,
+ 37,
+ 35,
+ 37,
+ 59,
+ 31,
+ 56,
+ 38,
+ 32,
+ 46,
+ 47,
+ 31,
+ 41,
+ 27,
+ 27,
+ 44,
+ 19,
+ 47,
+ 20,
+ 31,
+ 47,
+ 32,
+ 38,
+ 31,
+ 42,
+ 37,
+ 42,
+ 26,
+ 37,
+ 44,
+ 37,
+ 29,
+ 41,
+ 47,
+ 35,
+ 38,
+ 27,
+ 59,
+ 40,
+ 24,
+ 33,
+ 33,
+ 49,
+ 49,
+ 34,
+ 32,
+ 24,
+ 30,
+ 46,
+ 46,
+ 45,
+ 39,
+ 41,
+ 31,
+ 55,
+ 32,
+ 29,
+ 37,
+ 46,
+ 32,
+ 53,
+ 32,
+ 42,
+ 38,
+ 46,
+ 45,
+ 40,
+ 37,
+ 24,
+ 38,
+ 40,
+ 37,
+ 39,
+ 42,
+ 32,
+ 39,
+ 33,
+ 41,
+ 36,
+ 36,
+ 44,
+ 41,
+ 47,
+ 27,
+ 31,
+ 45,
+ 28,
+ 41,
+ 38,
+ 33,
+ 47,
+ 44,
+ 55,
+ 36,
+ 31,
+ 28,
+ 25,
+ 44,
+ 44,
+ 45,
+ 40,
+ 28,
+ 28,
+ 28,
+ 23,
+ 28,
+ 44,
+ 28,
+ 30,
+ 25,
+ 47,
+ 59,
+ 29,
+ 34,
+ 34,
+ 42,
+ 47,
+ 43,
+ 33,
+ 42,
+ 37,
+ 38,
+ 29,
+ 37,
+ 37,
+ 41,
+ 34,
+ 48,
+ 37,
+ 45,
+ 25,
+ 36,
+ 41,
+ 35,
+ 54,
+ 41,
+ 42,
+ 35,
+ 34,
+ 57,
+ 34,
+ 54,
+ 55,
+ 34,
+ 31,
+ 55,
+ 59,
+ 35,
+ 34,
+ 39,
+ 34,
+ 32,
+ 34,
+ 38,
+ 39,
+ 43,
+ 35,
+ 47,
+ 50,
+ 43,
+ 32,
+ 42,
+ 32,
+ 37,
+ 35,
+ 35,
+ 36,
+ 39,
+ 48,
+ 36,
+ 35,
+ 34,
+ 33,
+ 38,
+ 39,
+ 38,
+ 39,
+ 25,
+ 37,
+ 34,
+ 44,
+ 40,
+ 43,
+ 44,
+ 34,
+ 34,
+ 34,
+ 47,
+ 42,
+ 38,
+ 29,
+ 53,
+ 38,
+ 34,
+ 49,
+ 36,
+ 35,
+ 48,
+ 32,
+ 36,
+ 49,
+ 36,
+ 41,
+ 41,
+ 41,
+ 32,
+ 42,
+ 34,
+ 24,
+ 34,
+ 37,
+ 44,
+ 55,
+ 36,
+ 57,
+ 35,
+ 39,
+ 24,
+ 48,
+ 55,
+ 24,
+ 45,
+ 38,
+ 32,
+ 38,
+ 47,
+ 30,
+ 29,
+ 46,
+ 34,
+ 55,
+ 44,
+ 32,
+ 26,
+ 42,
+ 36,
+ 41,
+ 34,
+ 41,
+ 41,
+ 47,
+ 50,
+ 39,
+ 38,
+ 45,
+ 35,
+ 36,
+ 39,
+ 36,
+ 50,
+ 55,
+ 55,
+ 33,
+ 33,
+ 41,
+ 39,
+ 40,
+ 37,
+ 33,
+ 37,
+ 32,
+ 53,
+ 34,
+ 32,
+ 31,
+ 28,
+ 37,
+ 37,
+ 33,
+ 56,
+ 30,
+ 45,
+ 26,
+ 39,
+ 40,
+ 44,
+ 48,
+ 50,
+ 33,
+ 45,
+ 27,
+ 36,
+ 36,
+ 34,
+ 54,
+ 54,
+ 34,
+ 39,
+ 39,
+ 45,
+ 31,
+ 33,
+ 34,
+ 34,
+ 49,
+ 40,
+ 53,
+ 37,
+ 31,
+ 34,
+ 39,
+ 34,
+ 55,
+ 34,
+ 35,
+ 35,
+ 43,
+ 35,
+ 35,
+ 45,
+ 22,
+ 41,
+ 32,
+ 37,
+ 38,
+ 27,
+ 42,
+ 30,
+ 36,
+ 37,
+ 37,
+ 42,
+ 40,
+ 36,
+ 33,
+ 31,
+ 35,
+ 35,
+ 39,
+ 37,
+ 44,
+ 40,
+ 36,
+ 33,
+ 45,
+ 42,
+ 39,
+ 34,
+ 41,
+ 37,
+ 29,
+ 41,
+ 44,
+ 41,
+ 50,
+ 28,
+ 36,
+ 44,
+ 34,
+ 44,
+ 43,
+ 48,
+ 25,
+ 33,
+ 53,
+ 45,
+ 49,
+ 36,
+ 33,
+ 47,
+ 30,
+ 29,
+ 31,
+ 59,
+ 33,
+ 38,
+ 48,
+ 47,
+ 34,
+ 36,
+ 33,
+ 31,
+ 28,
+ 75,
+ 37,
+ 30,
+ 47,
+ 37,
+ 36,
+ 36,
+ 43,
+ 28,
+ 37,
+ 48,
+ 60,
+ 37,
+ 39,
+ 44,
+ 39,
+ 39,
+ 55,
+ 42,
+ 24,
+ 47,
+ 49,
+ 37,
+ 32,
+ 31,
+ 36,
+ 37,
+ 41,
+ 30,
+ 38,
+ 35,
+ 37,
+ 33,
+ 35,
+ 38,
+ 37,
+ 35,
+ 37,
+ 46,
+ 42,
+ 36,
+ 40,
+ 36,
+ 29,
+ 34,
+ 34,
+ 40,
+ 32,
+ 46,
+ 40,
+ 40,
+ 29,
+ 36,
+ 27,
+ 40,
+ 29,
+ 53,
+ 33,
+ 22,
+ 26,
+ 34,
+ 35,
+ 40,
+ 37,
+ 29,
+ 36,
+ 39,
+ 22,
+ 35,
+ 39,
+ 38,
+ 34,
+ 36,
+ 36,
+ 42,
+ 40,
+ 31,
+ 41,
+ 40,
+ 33,
+ 50,
+ 36,
+ 34,
+ 43,
+ 29,
+ 35,
+ 36,
+ 39,
+ 39,
+ 33,
+ 37,
+ 33,
+ 34,
+ 37,
+ 38,
+ 32,
+ 34,
+ 60,
+ 32,
+ 38,
+ 43,
+ 25,
+ 40,
+ 68,
+ 49,
+ 42,
+ 47,
+ 35,
+ 47,
+ 32,
+ 30,
+ 32,
+ 36,
+ 49,
+ 36,
+ 37,
+ 46,
+ 45,
+ 36,
+ 42,
+ 52,
+ 40,
+ 33,
+ 24,
+ 32,
+ 34,
+ 38,
+ 37,
+ 42,
+ 30,
+ 56,
+ 39,
+ 40,
+ 29,
+ 35,
+ 38,
+ 46,
+ 29,
+ 41,
+ 26,
+ 42,
+ 35,
+ 31,
+ 34,
+ 31,
+ 43,
+ 39,
+ 31,
+ 41,
+ 29,
+ 31,
+ 44,
+ 29,
+ 30,
+ 37,
+ 53,
+ 48,
+ 48,
+ 34,
+ 48,
+ 38,
+ 38,
+ 44,
+ 34,
+ 73,
+ 54,
+ 31,
+ 31,
+ 56,
+ 37,
+ 37,
+ 29,
+ 53,
+ 37,
+ 33,
+ 42,
+ 41,
+ 36,
+ 40,
+ 34,
+ 35,
+ 29,
+ 38,
+ 37,
+ 57,
+ 37,
+ 39,
+ 42,
+ 36,
+ 50,
+ 36,
+ 50,
+ 41,
+ 52,
+ 26,
+ 40,
+ 59,
+ 40,
+ 36,
+ 38,
+ 36,
+ 32,
+ 33,
+ 40,
+ 36,
+ 41,
+ 45,
+ 33,
+ 41,
+ 36,
+ 42,
+ 42,
+ 40,
+ 35,
+ 40,
+ 42,
+ 43,
+ 30,
+ 38,
+ 40,
+ 36,
+ 47,
+ 30,
+ 58,
+ 38,
+ 57,
+ 31,
+ 34,
+ 34,
+ 30,
+ 44,
+ 43,
+ 29,
+ 38,
+ 48,
+ 34,
+ 43,
+ 32,
+ 32,
+ 43,
+ 52,
+ 56,
+ 43,
+ 31,
+ 31,
+ 47,
+ 21,
+ 34,
+ 37,
+ 36,
+ 48,
+ 73,
+ 23,
+ 32,
+ 56,
+ 37,
+ 34,
+ 51,
+ 56,
+ 28,
+ 37,
+ 31,
+ 31,
+ 46,
+ 28,
+ 46,
+ 46,
+ 46,
+ 43,
+ 45,
+ 32,
+ 40,
+ 39,
+ 31,
+ 47,
+ 52,
+ 44,
+ 40,
+ 34,
+ 40,
+ 38,
+ 46,
+ 52,
+ 49,
+ 52,
+ 48,
+ 33,
+ 49,
+ 47,
+ 37,
+ 23,
+ 50,
+ 53,
+ 37,
+ 41,
+ 52,
+ 29,
+ 54,
+ 31,
+ 30,
+ 33,
+ 30,
+ 33,
+ 34,
+ 45,
+ 34,
+ 22,
+ 36,
+ 40,
+ 30,
+ 35,
+ 52,
+ 31,
+ 40,
+ 45,
+ 33,
+ 31,
+ 43,
+ 34,
+ 45,
+ 55,
+ 31,
+ 59,
+ 37,
+ 30,
+ 32,
+ 41,
+ 57,
+ 33,
+ 50,
+ 25,
+ 44,
+ 32,
+ 37,
+ 50,
+ 39,
+ 43,
+ 37,
+ 21,
+ 32,
+ 39,
+ 34,
+ 36,
+ 51,
+ 45,
+ 21,
+ 31,
+ 54,
+ 31,
+ 53,
+ 41,
+ 50,
+ 38,
+ 48,
+ 36,
+ 42,
+ 39,
+ 31,
+ 34,
+ 34,
+ 24,
+ 41,
+ 32,
+ 43,
+ 41,
+ 31,
+ 41,
+ 40,
+ 41,
+ 39,
+ 39,
+ 31,
+ 50,
+ 40,
+ 35,
+ 37,
+ 21,
+ 36,
+ 50,
+ 27,
+ 31,
+ 35,
+ 42,
+ 37,
+ 25,
+ 52,
+ 47,
+ 69,
+ 37,
+ 34,
+ 37,
+ 34,
+ 50,
+ 33,
+ 31,
+ 39,
+ 35,
+ 32,
+ 42,
+ 34,
+ 37,
+ 35,
+ 33,
+ 39,
+ 50,
+ 34,
+ 33,
+ 45,
+ 42,
+ 31,
+ 57,
+ 56,
+ 43,
+ 36,
+ 33,
+ 41,
+ 23,
+ 24,
+ 38,
+ 29,
+ 33,
+ 33,
+ 50,
+ 35,
+ 46,
+ 33,
+ 31,
+ 40,
+ 43,
+ 37,
+ 36,
+ 24,
+ 57,
+ 40,
+ 47,
+ 42,
+ 38,
+ 38,
+ 49,
+ 34,
+ 46,
+ 37,
+ 30,
+ 49,
+ 35,
+ 41,
+ 45,
+ 42,
+ 51,
+ 42,
+ 37,
+ 37,
+ 60,
+ 49,
+ 34,
+ 32,
+ 33,
+ 46,
+ 42,
+ 55,
+ 33,
+ 39,
+ 39,
+ 37,
+ 38,
+ 31,
+ 36,
+ 40,
+ 38,
+ 38,
+ 27,
+ 34,
+ 39,
+ 33,
+ 34,
+ 37,
+ 54,
+ 32,
+ 40,
+ 38,
+ 34,
+ 42,
+ 53,
+ 52,
+ 48,
+ 37,
+ 57,
+ 36,
+ 39,
+ 57,
+ 34,
+ 75,
+ 64,
+ 53,
+ 54,
+ 41,
+ 70,
+ 78,
+ 66,
+ 29,
+ 65,
+ 47,
+ 34,
+ 34,
+ 31,
+ 61,
+ 46,
+ 46,
+ 23,
+ 33,
+ 29,
+ 23,
+ 45,
+ 45,
+ 46,
+ 64,
+ 48,
+ 50,
+ 25,
+ 39,
+ 62,
+ 53,
+ 37,
+ 27,
+ 38,
+ 33,
+ 28,
+ 28,
+ 37,
+ 29,
+ 85,
+ 31,
+ 28,
+ 30,
+ 36,
+ 85,
+ 80,
+ 64,
+ 66,
+ 64,
+ 33,
+ 71,
+ 27,
+ 36,
+ 28,
+ 28,
+ 64,
+ 55,
+ 41,
+ 53,
+ 38,
+ 85,
+ 62,
+ 38,
+ 27,
+ 52,
+ 85,
+ 61,
+ 38,
+ 61,
+ 23,
+ 31,
+ 51,
+ 30,
+ 53,
+ 69,
+ 55,
+ 30,
+ 52,
+ 24,
+ 31,
+ 24,
+ 33,
+ 35,
+ 58,
+ 39,
+ 18,
+ 44,
+ 31,
+ 46,
+ 46,
+ 39,
+ 31,
+ 46,
+ 21,
+ 48,
+ 57,
+ 54,
+ 54,
+ 40,
+ 40,
+ 33,
+ 77,
+ 53,
+ 43,
+ 31,
+ 31,
+ 38,
+ 30,
+ 54,
+ 53,
+ 54,
+ 40,
+ 30,
+ 28,
+ 32,
+ 23,
+ 35,
+ 83,
+ 34,
+ 35,
+ 35,
+ 20,
+ 81,
+ 49,
+ 71,
+ 35,
+ 31,
+ 51,
+ 27,
+ 49,
+ 81,
+ 60,
+ 44,
+ 47,
+ 33,
+ 34,
+ 25,
+ 40,
+ 24,
+ 56,
+ 48,
+ 56,
+ 56,
+ 56,
+ 56,
+ 56,
+ 56,
+ 56,
+ 56,
+ 53,
+ 37,
+ 27,
+ 25,
+ 29,
+ 49,
+ 54,
+ 49,
+ 20,
+ 43,
+ 46,
+ 42,
+ 48,
+ 36,
+ 63,
+ 28,
+ 28,
+ 28,
+ 28,
+ 21,
+ 31,
+ 37,
+ 37,
+ 24,
+ 48,
+ 39,
+ 34,
+ 29,
+ 35,
+ 30,
+ 24,
+ 30,
+ 48,
+ 57,
+ 54,
+ 31,
+ 73,
+ 71,
+ 43,
+ 58,
+ 32,
+ 47,
+ 34,
+ 28,
+ 18,
+ 25,
+ 23,
+ 44,
+ 56,
+ 28,
+ 28,
+ 49,
+ 29,
+ 59,
+ 33,
+ 40,
+ 28,
+ 34,
+ 37,
+ 66,
+ 38,
+ 46,
+ 35,
+ 41,
+ 25,
+ 48,
+ 71,
+ 33,
+ 25,
+ 25,
+ 34,
+ 49,
+ 37,
+ 60,
+ 56,
+ 39,
+ 30,
+ 30,
+ 57,
+ 27,
+ 49,
+ 24,
+ 66,
+ 88,
+ 63,
+ 38,
+ 57,
+ 61,
+ 46,
+ 33,
+ 42,
+ 31,
+ 30,
+ 35,
+ 44,
+ 60,
+ 28,
+ 31,
+ 49,
+ 58,
+ 81,
+ 35,
+ 36,
+ 36,
+ 34,
+ 26,
+ 52,
+ 34,
+ 43,
+ 51,
+ 30,
+ 59,
+ 27,
+ 27,
+ 66,
+ 49,
+ 52,
+ 25,
+ 42,
+ 62,
+ 27,
+ 35,
+ 26,
+ 39,
+ 45,
+ 43,
+ 33,
+ 35,
+ 34,
+ 34,
+ 30,
+ 42,
+ 53,
+ 42,
+ 45,
+ 49,
+ 57,
+ 35,
+ 58,
+ 43,
+ 31,
+ 38,
+ 36,
+ 42,
+ 41,
+ 35,
+ 27,
+ 27,
+ 27,
+ 44,
+ 36,
+ 31,
+ 39,
+ 35,
+ 30,
+ 51,
+ 31,
+ 34,
+ 39,
+ 54,
+ 52,
+ 28,
+ 48,
+ 42,
+ 53,
+ 39,
+ 39,
+ 56,
+ 30,
+ 56,
+ 30,
+ 42,
+ 34,
+ 28,
+ 35,
+ 35,
+ 32,
+ 42,
+ 50,
+ 41,
+ 38,
+ 36,
+ 46,
+ 59,
+ 44,
+ 51,
+ 39,
+ 29,
+ 39,
+ 37,
+ 53,
+ 37,
+ 43,
+ 34,
+ 27,
+ 42,
+ 45,
+ 43,
+ 44,
+ 48,
+ 32,
+ 37,
+ 46,
+ 49,
+ 53,
+ 51,
+ 44,
+ 44,
+ 36,
+ 39,
+ 56,
+ 49,
+ 36,
+ 25,
+ 56,
+ 34,
+ 45,
+ 39,
+ 36,
+ 29,
+ 37,
+ 25,
+ 36,
+ 32,
+ 34,
+ 40,
+ 36,
+ 33,
+ 38,
+ 48,
+ 57,
+ 41,
+ 55,
+ 36,
+ 32,
+ 44,
+ 37,
+ 44,
+ 29,
+ 37,
+ 37,
+ 40,
+ 43,
+ 42,
+ 38,
+ 34,
+ 34,
+ 34,
+ 34,
+ 42,
+ 32,
+ 34,
+ 37,
+ 32,
+ 36,
+ 36,
+ 36,
+ 36,
+ 29,
+ 41,
+ 41,
+ 41,
+ 41,
+ 49,
+ 41,
+ 40,
+ 34,
+ 30,
+ 39,
+ 38,
+ 39,
+ 38,
+ 39,
+ 58,
+ 44,
+ 49,
+ 38,
+ 49,
+ 49,
+ 43,
+ 35,
+ 38,
+ 43,
+ 47,
+ 31,
+ 35,
+ 45,
+ 35,
+ 36,
+ 31,
+ 45,
+ 31,
+ 42,
+ 41,
+ 40,
+ 44,
+ 35,
+ 39,
+ 55,
+ 41,
+ 39,
+ 34,
+ 39,
+ 57,
+ 37,
+ 36,
+ 36,
+ 33,
+ 37,
+ 38,
+ 48,
+ 34,
+ 46,
+ 44,
+ 30,
+ 30,
+ 46,
+ 42,
+ 30,
+ 36,
+ 38,
+ 46,
+ 48,
+ 33,
+ 40,
+ 33,
+ 33,
+ 33,
+ 37,
+ 47,
+ 33,
+ 33,
+ 39,
+ 32,
+ 32,
+ 54,
+ 49,
+ 49,
+ 32,
+ 32,
+ 32,
+ 35,
+ 40,
+ 42,
+ 35,
+ 57,
+ 42,
+ 36,
+ 32,
+ 37,
+ 32,
+ 45,
+ 43,
+ 39,
+ 32,
+ 52,
+ 30,
+ 53,
+ 31,
+ 33,
+ 29,
+ 34,
+ 35,
+ 37,
+ 36,
+ 37,
+ 50,
+ 34,
+ 37,
+ 38,
+ 49,
+ 38,
+ 36,
+ 52,
+ 52,
+ 37,
+ 39,
+ 37,
+ 37,
+ 54,
+ 43,
+ 33,
+ 30,
+ 44,
+ 30,
+ 27,
+ 27,
+ 57,
+ 36,
+ 47,
+ 41,
+ 32,
+ 40,
+ 29,
+ 29,
+ 29,
+ 31,
+ 29,
+ 29,
+ 37,
+ 34,
+ 40,
+ 28,
+ 39,
+ 31,
+ 31,
+ 36,
+ 39,
+ 32,
+ 36,
+ 36,
+ 37,
+ 54,
+ 32,
+ 54,
+ 39,
+ 54,
+ 30,
+ 30,
+ 30,
+ 48,
+ 30,
+ 45,
+ 31,
+ 36,
+ 31,
+ 33,
+ 33,
+ 42,
+ 41,
+ 41,
+ 34,
+ 31,
+ 32,
+ 44,
+ 46,
+ 35,
+ 30,
+ 37,
+ 32,
+ 33,
+ 38,
+ 37,
+ 45,
+ 36,
+ 26,
+ 45,
+ 43,
+ 42,
+ 55,
+ 49,
+ 32,
+ 37,
+ 36,
+ 52,
+ 39,
+ 34,
+ 35,
+ 34,
+ 38,
+ 31,
+ 34,
+ 48,
+ 34,
+ 37,
+ 57,
+ 39,
+ 34,
+ 40,
+ 44,
+ 34,
+ 47,
+ 35,
+ 36,
+ 38,
+ 34,
+ 55,
+ 39,
+ 46,
+ 29,
+ 31,
+ 31,
+ 35,
+ 37,
+ 42,
+ 48,
+ 41,
+ 37,
+ 31,
+ 36,
+ 26,
+ 36,
+ 46,
+ 49,
+ 38,
+ 40,
+ 44,
+ 42,
+ 46,
+ 46,
+ 35,
+ 33,
+ 33,
+ 50,
+ 35,
+ 42,
+ 38,
+ 38,
+ 36,
+ 39,
+ 33,
+ 46,
+ 36,
+ 51,
+ 38,
+ 47,
+ 38,
+ 35,
+ 38,
+ 38,
+ 40,
+ 35,
+ 31,
+ 29,
+ 36,
+ 33,
+ 37,
+ 37,
+ 36,
+ 29,
+ 35,
+ 36,
+ 41,
+ 29,
+ 36,
+ 29,
+ 33,
+ 25,
+ 50,
+ 32,
+ 27,
+ 45,
+ 55,
+ 36,
+ 45,
+ 48,
+ 35,
+ 54,
+ 37,
+ 38,
+ 44,
+ 34,
+ 46,
+ 34,
+ 48,
+ 34,
+ 57,
+ 31,
+ 39,
+ 42,
+ 39,
+ 39,
+ 39,
+ 39,
+ 31,
+ 31,
+ 31,
+ 31,
+ 31,
+ 28,
+ 37,
+ 35,
+ 36,
+ 39,
+ 31,
+ 44,
+ 27,
+ 41,
+ 27,
+ 44,
+ 51,
+ 25,
+ 49,
+ 41,
+ 30,
+ 45,
+ 25,
+ 45,
+ 35,
+ 39,
+ 42,
+ 36,
+ 48,
+ 26,
+ 48,
+ 47,
+ 31,
+ 35,
+ 35,
+ 43,
+ 42,
+ 43,
+ 35,
+ 35,
+ 46,
+ 48,
+ 57,
+ 39,
+ 33,
+ 20,
+ 34,
+ 36,
+ 32,
+ 28,
+ 28,
+ 33,
+ 20,
+ 42,
+ 28,
+ 39,
+ 34,
+ 36,
+ 33,
+ 25,
+ 58,
+ 37,
+ 38,
+ 36,
+ 41,
+ 38,
+ 36,
+ 39,
+ 30,
+ 51,
+ 50,
+ 37,
+ 54,
+ 54,
+ 35,
+ 34,
+ 38,
+ 29,
+ 27,
+ 29,
+ 53,
+ 27,
+ 46,
+ 32,
+ 32,
+ 46,
+ 33,
+ 48,
+ 34,
+ 46,
+ 33,
+ 33,
+ 42,
+ 36,
+ 41,
+ 32,
+ 28,
+ 36,
+ 31,
+ 31,
+ 32,
+ 28,
+ 38,
+ 28,
+ 36,
+ 36,
+ 59,
+ 36,
+ 37,
+ 51,
+ 34,
+ 41,
+ 44,
+ 36,
+ 43,
+ 28,
+ 28,
+ 30,
+ 34,
+ 31,
+ 41,
+ 27,
+ 33,
+ 31,
+ 35,
+ 39,
+ 58,
+ 37,
+ 31,
+ 26,
+ 36,
+ 51,
+ 32,
+ 32,
+ 41,
+ 34,
+ 46,
+ 49,
+ 44,
+ 37,
+ 33,
+ 54,
+ 37,
+ 33,
+ 35,
+ 36,
+ 27,
+ 35,
+ 39,
+ 39,
+ 34,
+ 33,
+ 37,
+ 31,
+ 34,
+ 37,
+ 37,
+ 34,
+ 33,
+ 34,
+ 36,
+ 54,
+ 48,
+ 29,
+ 29,
+ 35,
+ 33,
+ 44,
+ 36,
+ 41,
+ 54,
+ 33,
+ 30,
+ 51,
+ 39,
+ 24,
+ 51,
+ 48,
+ 58,
+ 37,
+ 39,
+ 32,
+ 40,
+ 32,
+ 42,
+ 37,
+ 35,
+ 30,
+ 28,
+ 49,
+ 33,
+ 34,
+ 51,
+ 30,
+ 33,
+ 34,
+ 34,
+ 28,
+ 36,
+ 32,
+ 43,
+ 32,
+ 30,
+ 47,
+ 34,
+ 29,
+ 41,
+ 35,
+ 36,
+ 54,
+ 54,
+ 40,
+ 33,
+ 37,
+ 33,
+ 51,
+ 34,
+ 36,
+ 52,
+ 58,
+ 31,
+ 35,
+ 33,
+ 41,
+ 28,
+ 36,
+ 37,
+ 39,
+ 42,
+ 44,
+ 38,
+ 48,
+ 35,
+ 49,
+ 28,
+ 34,
+ 35,
+ 48,
+ 29,
+ 35,
+ 32,
+ 37,
+ 50,
+ 52,
+ 33,
+ 29,
+ 34,
+ 36,
+ 29,
+ 41,
+ 34,
+ 39,
+ 46,
+ 33,
+ 34,
+ 34,
+ 43,
+ 59,
+ 39,
+ 42,
+ 31,
+ 39,
+ 30,
+ 38,
+ 44,
+ 34,
+ 35,
+ 34,
+ 44,
+ 34,
+ 27,
+ 32,
+ 33,
+ 35,
+ 35,
+ 31,
+ 50,
+ 35,
+ 30,
+ 32,
+ 26,
+ 30,
+ 45,
+ 33,
+ 37,
+ 36,
+ 36,
+ 36,
+ 36,
+ 34,
+ 30,
+ 32,
+ 29,
+ 36,
+ 36,
+ 28,
+ 36,
+ 36,
+ 38,
+ 30,
+ 39,
+ 36,
+ 39,
+ 40,
+ 30,
+ 30,
+ 54,
+ 43,
+ 30,
+ 57,
+ 54,
+ 32,
+ 32,
+ 32,
+ 45,
+ 32,
+ 33,
+ 33,
+ 29,
+ 36,
+ 29,
+ 43,
+ 33,
+ 31,
+ 29,
+ 43,
+ 39,
+ 34,
+ 43,
+ 33,
+ 41,
+ 35,
+ 35,
+ 26,
+ 31,
+ 50,
+ 25,
+ 28,
+ 33,
+ 33,
+ 32,
+ 60,
+ 60,
+ 29,
+ 33,
+ 29,
+ 29,
+ 29,
+ 30,
+ 52,
+ 52,
+ 33,
+ 43,
+ 33,
+ 36,
+ 32,
+ 30,
+ 40,
+ 25,
+ 51,
+ 25,
+ 34,
+ 40,
+ 57,
+ 57,
+ 57,
+ 37,
+ 29,
+ 26,
+ 44,
+ 36,
+ 55,
+ 35,
+ 28,
+ 26,
+ 38,
+ 28,
+ 38,
+ 37,
+ 34,
+ 34,
+ 38,
+ 38,
+ 33,
+ 34,
+ 45,
+ 37,
+ 36,
+ 36,
+ 36,
+ 38,
+ 51,
+ 41,
+ 32,
+ 42,
+ 41,
+ 35,
+ 49,
+ 35,
+ 36,
+ 31,
+ 39,
+ 36,
+ 37,
+ 30,
+ 47,
+ 37,
+ 33,
+ 24,
+ 35,
+ 33,
+ 37,
+ 40,
+ 26,
+ 44,
+ 43,
+ 33,
+ 33,
+ 36,
+ 36,
+ 35,
+ 35,
+ 37,
+ 43,
+ 35,
+ 31,
+ 32,
+ 39,
+ 37,
+ 49,
+ 33,
+ 37,
+ 32,
+ 32,
+ 34,
+ 37,
+ 34,
+ 37,
+ 34,
+ 34,
+ 34,
+ 34,
+ 35,
+ 33,
+ 37,
+ 56,
+ 31,
+ 23,
+ 40,
+ 45,
+ 40,
+ 38,
+ 31,
+ 40,
+ 37,
+ 45,
+ 45,
+ 35,
+ 33,
+ 35,
+ 39,
+ 39,
+ 42,
+ 39,
+ 32,
+ 42,
+ 42,
+ 28,
+ 27,
+ 27,
+ 41,
+ 36,
+ 41,
+ 42,
+ 42,
+ 45,
+ 45,
+ 27,
+ 39,
+ 44,
+ 36,
+ 32,
+ 43,
+ 37,
+ 51,
+ 27,
+ 52,
+ 27,
+ 39,
+ 43,
+ 36,
+ 48,
+ 37,
+ 32,
+ 34,
+ 48,
+ 42,
+ 43,
+ 39,
+ 41,
+ 39,
+ 33,
+ 33,
+ 39,
+ 58,
+ 41,
+ 32,
+ 32,
+ 37,
+ 40,
+ 32,
+ 46,
+ 36,
+ 39,
+ 35,
+ 29,
+ 27,
+ 29,
+ 27,
+ 41,
+ 36,
+ 50,
+ 37,
+ 38,
+ 43,
+ 35,
+ 27,
+ 31,
+ 46,
+ 35,
+ 46,
+ 34,
+ 49,
+ 36,
+ 36,
+ 32,
+ 30,
+ 33,
+ 44,
+ 31,
+ 35,
+ 35,
+ 59,
+ 33,
+ 46,
+ 59,
+ 40,
+ 30,
+ 31,
+ 36,
+ 44,
+ 40,
+ 33,
+ 37,
+ 37,
+ 48,
+ 54,
+ 44,
+ 39,
+ 37,
+ 30,
+ 39,
+ 26,
+ 41,
+ 45,
+ 42,
+ 43,
+ 24,
+ 36,
+ 32,
+ 36,
+ 35,
+ 44,
+ 39,
+ 56,
+ 35,
+ 46,
+ 41,
+ 31,
+ 34,
+ 33,
+ 48,
+ 46,
+ 29,
+ 43,
+ 30,
+ 31,
+ 35,
+ 49,
+ 46,
+ 38,
+ 47,
+ 47,
+ 45,
+ 36,
+ 42,
+ 31,
+ 53,
+ 37,
+ 49,
+ 32,
+ 39,
+ 43,
+ 39,
+ 34,
+ 43,
+ 39,
+ 46,
+ 30,
+ 51,
+ 55,
+ 36,
+ 33,
+ 49,
+ 50,
+ 26,
+ 25,
+ 35,
+ 50,
+ 46,
+ 29,
+ 36,
+ 36,
+ 41,
+ 56,
+ 31,
+ 36,
+ 36,
+ 48,
+ 45,
+ 43,
+ 28,
+ 39,
+ 30,
+ 36,
+ 58,
+ 57,
+ 41,
+ 35,
+ 25,
+ 31,
+ 50,
+ 33,
+ 39,
+ 35,
+ 38,
+ 48,
+ 45,
+ 49,
+ 32,
+ 44,
+ 44,
+ 34,
+ 33,
+ 44,
+ 37,
+ 35,
+ 25,
+ 31,
+ 27,
+ 39,
+ 36,
+ 36,
+ 39,
+ 41,
+ 32,
+ 56,
+ 30,
+ 33,
+ 32,
+ 30,
+ 28,
+ 28,
+ 41,
+ 32,
+ 36,
+ 42,
+ 37,
+ 31,
+ 42,
+ 36,
+ 43,
+ 33,
+ 34,
+ 33,
+ 34,
+ 36,
+ 35,
+ 37,
+ 35,
+ 39,
+ 35,
+ 38,
+ 37,
+ 32,
+ 35,
+ 32,
+ 39,
+ 39,
+ 36,
+ 31,
+ 36,
+ 37,
+ 37,
+ 35,
+ 33,
+ 37,
+ 37,
+ 46,
+ 37,
+ 34,
+ 57,
+ 42,
+ 38,
+ 58,
+ 33,
+ 34,
+ 41,
+ 31,
+ 38,
+ 41,
+ 25,
+ 31,
+ 42,
+ 31,
+ 38,
+ 51,
+ 24,
+ 33,
+ 32,
+ 29,
+ 36,
+ 33,
+ 47,
+ 37,
+ 25,
+ 38,
+ 34,
+ 44,
+ 37,
+ 53,
+ 32,
+ 49,
+ 34,
+ 33,
+ 39,
+ 42,
+ 32,
+ 36,
+ 51,
+ 31,
+ 37,
+ 22,
+ 33,
+ 45,
+ 39,
+ 36,
+ 36,
+ 55,
+ 45,
+ 56,
+ 32,
+ 35,
+ 32,
+ 28,
+ 42,
+ 42,
+ 29,
+ 33,
+ 42,
+ 37,
+ 41,
+ 47,
+ 28,
+ 33,
+ 38,
+ 49,
+ 33,
+ 25,
+ 38,
+ 45,
+ 51,
+ 37,
+ 35,
+ 45,
+ 32,
+ 47,
+ 34,
+ 23,
+ 38,
+ 35,
+ 40,
+ 40,
+ 40,
+ 31,
+ 35,
+ 58,
+ 58,
+ 35,
+ 36,
+ 30,
+ 32,
+ 28,
+ 34,
+ 28,
+ 24,
+ 43,
+ 31,
+ 28,
+ 34,
+ 37,
+ 38,
+ 27,
+ 48,
+ 38,
+ 32,
+ 43,
+ 43,
+ 43,
+ 29,
+ 34,
+ 35,
+ 26,
+ 49,
+ 35,
+ 39,
+ 39,
+ 39,
+ 37,
+ 32,
+ 37,
+ 52,
+ 24,
+ 37,
+ 43,
+ 38,
+ 41,
+ 41,
+ 57,
+ 44,
+ 28,
+ 41,
+ 33,
+ 33,
+ 44,
+ 33,
+ 37,
+ 33,
+ 32,
+ 38,
+ 37,
+ 34,
+ 33,
+ 45,
+ 52,
+ 42,
+ 29,
+ 45,
+ 33,
+ 52,
+ 32,
+ 38,
+ 34,
+ 46,
+ 22,
+ 40,
+ 58,
+ 33,
+ 34,
+ 35,
+ 47,
+ 34,
+ 39,
+ 34,
+ 37,
+ 37,
+ 25,
+ 34,
+ 21,
+ 51,
+ 31,
+ 32,
+ 41,
+ 35,
+ 47,
+ 33,
+ 35,
+ 33,
+ 54,
+ 33,
+ 35,
+ 34,
+ 34,
+ 34,
+ 37,
+ 32,
+ 55,
+ 34,
+ 35,
+ 31,
+ 35,
+ 29,
+ 25,
+ 32,
+ 41,
+ 34,
+ 32,
+ 32,
+ 31,
+ 48,
+ 39,
+ 32,
+ 43,
+ 38,
+ 35,
+ 34,
+ 37,
+ 42,
+ 38,
+ 38,
+ 34,
+ 36,
+ 31,
+ 38,
+ 29,
+ 33,
+ 27,
+ 46,
+ 42,
+ 34,
+ 36,
+ 29,
+ 30,
+ 37,
+ 31,
+ 39,
+ 34,
+ 28,
+ 35,
+ 37,
+ 33,
+ 47,
+ 36,
+ 46,
+ 35,
+ 27,
+ 49,
+ 29,
+ 43,
+ 45,
+ 44,
+ 28,
+ 42,
+ 52,
+ 37,
+ 32,
+ 35,
+ 32,
+ 30,
+ 45,
+ 35,
+ 36,
+ 34,
+ 32,
+ 36,
+ 42,
+ 30,
+ 28,
+ 50,
+ 37,
+ 35,
+ 44,
+ 59,
+ 36,
+ 30,
+ 29,
+ 32,
+ 30,
+ 49,
+ 37,
+ 35,
+ 34,
+ 29,
+ 29,
+ 44,
+ 34,
+ 44,
+ 47,
+ 34,
+ 38,
+ 33,
+ 52,
+ 32,
+ 34,
+ 28,
+ 34,
+ 34,
+ 53,
+ 26,
+ 41,
+ 44,
+ 34,
+ 29,
+ 34,
+ 30,
+ 38,
+ 27,
+ 29,
+ 39,
+ 44,
+ 31,
+ 32,
+ 27,
+ 43,
+ 45,
+ 54,
+ 34,
+ 31,
+ 44,
+ 31,
+ 35,
+ 40,
+ 29,
+ 44,
+ 33,
+ 33,
+ 34,
+ 33,
+ 27,
+ 30,
+ 35,
+ 42,
+ 26,
+ 42,
+ 24,
+ 42,
+ 29,
+ 34,
+ 39,
+ 29,
+ 26,
+ 27,
+ 27,
+ 34,
+ 26,
+ 27,
+ 32,
+ 26,
+ 26,
+ 33,
+ 30,
+ 32,
+ 37,
+ 37,
+ 30,
+ 40,
+ 27,
+ 30,
+ 23,
+ 25,
+ 48,
+ 37,
+ 23,
+ 37,
+ 32,
+ 49,
+ 37,
+ 37,
+ 31,
+ 36,
+ 33,
+ 38,
+ 36,
+ 38,
+ 44,
+ 32,
+ 37,
+ 31,
+ 36,
+ 32,
+ 32,
+ 36,
+ 36,
+ 40,
+ 52,
+ 36,
+ 26,
+ 34,
+ 27,
+ 30,
+ 32,
+ 30,
+ 38,
+ 51,
+ 51,
+ 51,
+ 39,
+ 39,
+ 35,
+ 27,
+ 53,
+ 33,
+ 46,
+ 31,
+ 27,
+ 31,
+ 30,
+ 35,
+ 28,
+ 32,
+ 35,
+ 39,
+ 31,
+ 27,
+ 39,
+ 42,
+ 39,
+ 30,
+ 41,
+ 32,
+ 46,
+ 57,
+ 29,
+ 29,
+ 31,
+ 30,
+ 34,
+ 56,
+ 46,
+ 31,
+ 34,
+ 47,
+ 30,
+ 45,
+ 39,
+ 30,
+ 34,
+ 30,
+ 26,
+ 48,
+ 26,
+ 36,
+ 27,
+ 36,
+ 29,
+ 36,
+ 28,
+ 35,
+ 39,
+ 34,
+ 34,
+ 34,
+ 31,
+ 44,
+ 35,
+ 34,
+ 34,
+ 34,
+ 34,
+ 37,
+ 50,
+ 34,
+ 30,
+ 37,
+ 31,
+ 32,
+ 36,
+ 49,
+ 33,
+ 43,
+ 49,
+ 34,
+ 37,
+ 28,
+ 45,
+ 37,
+ 32,
+ 31,
+ 31,
+ 35,
+ 29,
+ 32,
+ 36,
+ 50,
+ 33,
+ 31,
+ 32,
+ 33,
+ 31,
+ 35,
+ 41,
+ 32,
+ 24,
+ 37,
+ 36,
+ 39,
+ 29,
+ 27,
+ 39,
+ 29,
+ 39,
+ 39,
+ 47,
+ 54,
+ 27,
+ 31,
+ 30,
+ 33,
+ 28,
+ 33,
+ 33,
+ 49,
+ 32,
+ 30,
+ 28,
+ 32,
+ 29,
+ 42,
+ 31,
+ 39,
+ 36,
+ 28,
+ 38,
+ 39,
+ 30,
+ 44,
+ 31,
+ 34,
+ 28,
+ 31,
+ 55,
+ 25,
+ 35,
+ 46,
+ 26,
+ 30,
+ 36,
+ 28,
+ 57,
+ 29,
+ 32,
+ 51,
+ 57,
+ 35,
+ 57,
+ 57,
+ 32,
+ 32,
+ 36,
+ 30,
+ 30,
+ 40,
+ 35,
+ 32,
+ 34,
+ 35,
+ 53,
+ 40,
+ 30,
+ 38,
+ 28,
+ 32,
+ 43,
+ 30,
+ 30,
+ 47,
+ 28,
+ 57,
+ 32,
+ 56,
+ 32,
+ 47,
+ 30,
+ 36,
+ 28,
+ 42,
+ 57,
+ 31,
+ 42,
+ 30,
+ 52,
+ 29,
+ 27,
+ 32,
+ 36,
+ 49,
+ 30,
+ 32,
+ 34,
+ 31,
+ 29,
+ 28,
+ 58,
+ 36,
+ 31,
+ 29,
+ 33,
+ 55,
+ 35,
+ 37,
+ 35,
+ 44,
+ 26,
+ 44,
+ 30,
+ 27,
+ 32,
+ 43,
+ 24,
+ 37,
+ 32,
+ 30,
+ 43,
+ 46,
+ 30,
+ 36,
+ 30,
+ 32,
+ 37,
+ 35,
+ 32,
+ 30,
+ 34,
+ 30,
+ 37,
+ 33,
+ 30,
+ 33,
+ 37,
+ 49,
+ 44,
+ 35,
+ 31,
+ 29,
+ 36,
+ 29,
+ 42,
+ 44,
+ 31,
+ 33,
+ 26,
+ 26,
+ 31,
+ 36,
+ 35,
+ 35,
+ 25,
+ 34,
+ 46,
+ 34,
+ 33,
+ 35,
+ 33,
+ 54,
+ 45,
+ 24,
+ 46,
+ 32,
+ 40,
+ 35,
+ 33,
+ 29,
+ 31,
+ 30,
+ 43,
+ 46,
+ 41,
+ 32,
+ 27,
+ 36,
+ 32,
+ 26,
+ 30,
+ 28,
+ 33,
+ 32,
+ 43,
+ 35,
+ 32,
+ 39,
+ 27,
+ 37,
+ 29,
+ 40,
+ 36,
+ 26,
+ 30,
+ 47,
+ 36,
+ 35,
+ 41,
+ 27,
+ 29,
+ 51,
+ 35,
+ 49,
+ 50,
+ 33,
+ 30,
+ 31,
+ 26,
+ 34,
+ 30,
+ 32,
+ 31,
+ 39,
+ 51,
+ 35,
+ 38,
+ 37,
+ 36,
+ 34,
+ 54,
+ 28,
+ 42,
+ 29,
+ 40,
+ 33,
+ 33,
+ 38,
+ 51,
+ 38,
+ 33,
+ 42,
+ 28,
+ 28,
+ 48,
+ 40,
+ 31,
+ 59,
+ 27,
+ 27,
+ 35,
+ 27,
+ 36,
+ 35,
+ 59,
+ 35,
+ 47,
+ 44,
+ 45,
+ 28,
+ 45,
+ 38,
+ 45,
+ 48,
+ 27,
+ 35,
+ 45,
+ 26,
+ 33,
+ 41,
+ 41,
+ 54,
+ 46,
+ 38,
+ 30,
+ 46,
+ 43,
+ 43,
+ 36,
+ 43,
+ 43,
+ 54,
+ 43,
+ 36,
+ 27,
+ 35,
+ 39,
+ 59,
+ 34,
+ 33,
+ 37,
+ 32,
+ 24,
+ 30,
+ 28,
+ 34,
+ 39,
+ 57,
+ 36,
+ 26,
+ 36,
+ 37,
+ 33,
+ 34,
+ 44,
+ 44,
+ 31,
+ 39,
+ 31,
+ 36,
+ 36,
+ 26,
+ 26,
+ 26,
+ 32,
+ 28,
+ 28,
+ 36,
+ 28,
+ 36,
+ 54,
+ 36,
+ 38,
+ 32,
+ 29,
+ 42,
+ 29,
+ 34,
+ 31,
+ 27,
+ 27,
+ 42,
+ 31,
+ 34,
+ 26,
+ 21,
+ 29,
+ 35,
+ 26,
+ 34,
+ 29,
+ 33,
+ 33,
+ 46,
+ 33,
+ 51,
+ 33,
+ 31,
+ 31,
+ 38,
+ 34,
+ 31,
+ 43,
+ 34,
+ 34,
+ 39,
+ 32,
+ 47,
+ 36,
+ 32,
+ 31,
+ 47,
+ 28,
+ 41,
+ 33,
+ 31,
+ 28,
+ 43,
+ 29,
+ 28,
+ 35,
+ 32,
+ 41,
+ 39,
+ 43,
+ 27,
+ 39,
+ 39,
+ 32,
+ 39,
+ 39,
+ 39,
+ 43,
+ 39,
+ 33,
+ 29,
+ 33,
+ 30,
+ 32,
+ 33,
+ 37,
+ 32,
+ 47,
+ 38,
+ 33,
+ 27,
+ 48,
+ 32,
+ 36,
+ 33,
+ 35,
+ 33,
+ 33,
+ 33,
+ 40,
+ 32,
+ 45,
+ 28,
+ 42,
+ 42,
+ 29,
+ 32,
+ 50,
+ 30,
+ 42,
+ 28,
+ 28,
+ 54,
+ 36,
+ 29,
+ 23,
+ 26,
+ 29,
+ 39,
+ 31,
+ 32,
+ 33,
+ 36,
+ 32,
+ 37,
+ 39,
+ 37,
+ 33,
+ 27,
+ 31,
+ 44,
+ 31,
+ 41,
+ 35,
+ 35,
+ 34,
+ 33,
+ 35,
+ 34,
+ 41,
+ 33,
+ 28,
+ 48,
+ 29,
+ 28,
+ 25,
+ 25,
+ 33,
+ 35,
+ 29,
+ 35,
+ 28,
+ 28,
+ 32,
+ 32,
+ 31,
+ 51,
+ 25,
+ 27,
+ 56,
+ 28,
+ 49,
+ 31,
+ 29,
+ 28,
+ 37,
+ 31,
+ 47,
+ 48,
+ 38,
+ 35,
+ 43,
+ 31,
+ 29,
+ 27,
+ 30,
+ 31,
+ 48,
+ 45,
+ 27,
+ 34,
+ 40,
+ 27,
+ 34,
+ 44,
+ 53,
+ 45,
+ 33,
+ 42,
+ 40,
+ 43,
+ 34,
+ 27,
+ 27,
+ 33,
+ 49,
+ 34,
+ 35,
+ 35,
+ 29,
+ 38,
+ 33,
+ 51,
+ 32,
+ 28,
+ 34,
+ 38,
+ 35,
+ 36,
+ 32,
+ 38,
+ 32,
+ 27,
+ 35,
+ 31,
+ 57,
+ 36,
+ 28,
+ 36,
+ 43,
+ 35,
+ 29,
+ 37,
+ 32,
+ 30,
+ 45,
+ 32,
+ 27,
+ 33,
+ 33,
+ 32,
+ 31,
+ 33,
+ 46,
+ 49,
+ 32,
+ 28,
+ 32,
+ 54,
+ 48,
+ 35,
+ 50,
+ 41,
+ 36,
+ 33,
+ 27,
+ 44,
+ 36,
+ 42,
+ 34,
+ 28,
+ 33,
+ 29,
+ 38,
+ 37,
+ 26,
+ 33,
+ 33,
+ 35,
+ 53,
+ 38,
+ 32,
+ 49,
+ 42,
+ 34,
+ 30,
+ 34,
+ 42,
+ 34,
+ 42,
+ 37,
+ 53,
+ 27,
+ 33,
+ 25,
+ 43,
+ 35,
+ 35,
+ 55,
+ 34,
+ 43,
+ 35,
+ 42,
+ 38,
+ 26,
+ 30,
+ 26,
+ 27,
+ 25,
+ 26,
+ 33,
+ 55,
+ 40,
+ 35,
+ 38,
+ 41,
+ 29,
+ 53,
+ 38,
+ 51,
+ 24,
+ 35,
+ 43,
+ 42,
+ 43,
+ 38,
+ 43,
+ 26,
+ 37,
+ 29,
+ 35,
+ 28,
+ 36,
+ 35,
+ 29,
+ 36,
+ 43,
+ 36,
+ 30,
+ 33,
+ 23,
+ 36,
+ 23,
+ 29,
+ 41,
+ 29,
+ 34,
+ 44,
+ 41,
+ 34,
+ 27,
+ 48,
+ 30,
+ 35,
+ 28,
+ 35,
+ 41,
+ 28,
+ 29,
+ 35,
+ 31,
+ 51,
+ 29,
+ 35,
+ 27,
+ 49,
+ 41,
+ 42,
+ 41,
+ 28,
+ 53,
+ 26,
+ 38,
+ 32,
+ 43,
+ 34,
+ 37,
+ 53,
+ 31,
+ 30,
+ 34,
+ 34,
+ 36,
+ 51,
+ 37,
+ 38,
+ 31,
+ 53,
+ 33,
+ 27,
+ 43,
+ 42,
+ 24,
+ 40,
+ 27,
+ 36,
+ 33,
+ 34,
+ 33,
+ 35,
+ 34,
+ 23,
+ 24,
+ 36,
+ 33,
+ 31,
+ 42,
+ 29,
+ 43,
+ 44,
+ 34,
+ 29,
+ 31,
+ 37,
+ 35,
+ 35,
+ 41,
+ 29,
+ 29,
+ 31,
+ 35,
+ 29,
+ 29,
+ 23,
+ 42,
+ 29,
+ 53,
+ 25,
+ 24,
+ 35,
+ 30,
+ 52,
+ 31,
+ 29,
+ 39,
+ 39,
+ 28,
+ 41,
+ 36,
+ 28,
+ 48,
+ 34,
+ 39,
+ 31,
+ 41,
+ 43,
+ 37,
+ 38,
+ 29,
+ 37,
+ 43,
+ 39,
+ 38,
+ 30,
+ 29,
+ 31,
+ 30,
+ 31,
+ 29,
+ 31,
+ 51,
+ 36,
+ 38,
+ 23,
+ 31,
+ 33,
+ 43,
+ 28,
+ 28,
+ 35,
+ 30,
+ 28,
+ 47,
+ 36,
+ 33,
+ 36,
+ 27,
+ 53,
+ 27,
+ 29,
+ 28,
+ 22,
+ 51,
+ 32,
+ 26,
+ 29,
+ 42,
+ 33,
+ 33,
+ 51,
+ 28,
+ 51,
+ 28,
+ 29,
+ 44,
+ 58,
+ 41,
+ 40,
+ 45,
+ 30,
+ 31,
+ 32,
+ 35,
+ 33,
+ 29,
+ 35,
+ 32,
+ 31,
+ 23,
+ 50,
+ 24,
+ 39,
+ 58,
+ 47,
+ 31,
+ 34,
+ 30,
+ 33,
+ 31,
+ 34,
+ 34,
+ 28,
+ 35,
+ 48,
+ 28,
+ 29,
+ 27,
+ 29,
+ 33,
+ 35,
+ 52,
+ 48,
+ 41,
+ 28,
+ 29,
+ 32,
+ 29,
+ 34,
+ 22,
+ 33,
+ 55,
+ 36,
+ 45,
+ 37,
+ 39,
+ 38,
+ 40,
+ 38,
+ 59,
+ 24,
+ 31,
+ 38,
+ 40,
+ 29,
+ 29,
+ 34,
+ 34,
+ 33,
+ 33,
+ 33,
+ 33,
+ 33,
+ 34,
+ 28,
+ 45,
+ 37,
+ 45,
+ 32,
+ 34,
+ 33,
+ 36,
+ 29,
+ 34,
+ 36,
+ 34,
+ 36,
+ 35,
+ 42,
+ 33,
+ 34,
+ 36,
+ 48,
+ 58,
+ 29,
+ 27,
+ 49,
+ 34,
+ 40,
+ 45,
+ 33,
+ 32,
+ 42,
+ 36,
+ 49,
+ 39,
+ 26,
+ 42,
+ 42,
+ 34,
+ 23,
+ 23,
+ 24,
+ 42,
+ 31,
+ 31,
+ 30,
+ 41,
+ 40,
+ 39,
+ 39,
+ 33,
+ 35,
+ 24,
+ 31,
+ 38,
+ 29,
+ 49,
+ 35,
+ 32,
+ 34,
+ 44,
+ 51,
+ 33,
+ 35,
+ 38,
+ 33,
+ 51,
+ 35,
+ 41,
+ 29,
+ 32,
+ 33,
+ 39,
+ 30,
+ 29,
+ 33,
+ 37,
+ 49,
+ 34,
+ 40,
+ 48,
+ 34,
+ 33,
+ 36,
+ 39,
+ 29,
+ 39,
+ 34,
+ 32,
+ 52,
+ 27,
+ 36,
+ 36,
+ 26,
+ 34,
+ 32,
+ 35,
+ 27,
+ 29,
+ 34,
+ 24,
+ 43,
+ 31,
+ 43,
+ 41,
+ 31,
+ 31,
+ 29,
+ 35,
+ 33,
+ 29,
+ 27,
+ 28,
+ 35,
+ 39,
+ 55,
+ 39,
+ 34,
+ 32,
+ 32,
+ 30,
+ 35,
+ 35,
+ 32,
+ 42,
+ 29,
+ 38,
+ 38,
+ 30,
+ 27,
+ 59,
+ 56,
+ 36,
+ 34,
+ 44,
+ 24,
+ 29,
+ 32,
+ 42,
+ 42,
+ 38,
+ 27,
+ 27,
+ 51,
+ 29,
+ 48,
+ 32,
+ 26,
+ 34,
+ 32,
+ 34,
+ 36,
+ 42,
+ 33,
+ 40,
+ 27,
+ 39,
+ 27,
+ 29,
+ 33,
+ 34,
+ 53,
+ 21,
+ 36,
+ 32,
+ 29,
+ 28,
+ 33,
+ 27,
+ 44,
+ 33,
+ 36,
+ 32,
+ 34,
+ 33,
+ 43,
+ 27,
+ 34,
+ 34,
+ 35,
+ 28,
+ 29,
+ 32,
+ 46,
+ 27,
+ 29,
+ 25,
+ 42,
+ 31,
+ 29,
+ 30,
+ 27,
+ 29,
+ 32,
+ 29,
+ 28,
+ 35,
+ 23,
+ 31,
+ 29,
+ 29,
+ 59,
+ 38,
+ 24,
+ 37,
+ 33,
+ 31,
+ 26,
+ 30,
+ 29,
+ 31,
+ 38,
+ 36,
+ 36,
+ 28,
+ 33,
+ 33,
+ 24,
+ 26,
+ 36,
+ 32,
+ 30,
+ 22,
+ 27,
+ 27,
+ 33,
+ 30,
+ 31,
+ 34,
+ 31,
+ 31,
+ 23,
+ 24,
+ 30,
+ 39,
+ 40,
+ 26,
+ 35,
+ 23,
+ 34,
+ 29,
+ 45,
+ 31,
+ 28,
+ 38,
+ 29,
+ 26,
+ 33,
+ 28,
+ 28,
+ 23,
+ 26,
+ 26,
+ 28,
+ 34,
+ 32,
+ 30,
+ 25,
+ 29,
+ 30,
+ 27,
+ 40,
+ 33,
+ 33,
+ 31,
+ 40,
+ 31,
+ 38,
+ 29,
+ 54,
+ 42,
+ 42,
+ 22,
+ 42,
+ 29,
+ 27,
+ 29,
+ 24,
+ 27,
+ 27,
+ 22,
+ 30,
+ 27,
+ 27,
+ 27,
+ 39,
+ 24,
+ 34,
+ 32,
+ 27,
+ 27,
+ 27,
+ 32,
+ 27,
+ 27,
+ 39,
+ 48,
+ 32,
+ 30,
+ 31,
+ 35,
+ 27,
+ 39,
+ 47,
+ 23,
+ 26,
+ 24,
+ 35,
+ 39,
+ 33,
+ 41,
+ 37,
+ 29,
+ 32,
+ 49,
+ 36,
+ 25,
+ 49,
+ 32,
+ 32,
+ 26,
+ 33,
+ 25,
+ 26,
+ 44,
+ 32,
+ 32,
+ 31,
+ 34,
+ 32,
+ 23,
+ 32,
+ 46,
+ 23,
+ 41,
+ 32,
+ 22,
+ 26,
+ 29,
+ 27,
+ 29,
+ 27,
+ 24,
+ 47,
+ 27,
+ 52,
+ 36,
+ 24,
+ 45,
+ 36,
+ 45,
+ 24,
+ 25,
+ 53,
+ 42,
+ 35,
+ 31,
+ 35,
+ 31,
+ 38,
+ 37,
+ 31,
+ 24,
+ 40,
+ 36,
+ 27,
+ 27,
+ 23,
+ 40,
+ 27,
+ 30,
+ 39,
+ 44,
+ 36,
+ 28,
+ 21,
+ 31,
+ 25,
+ 30,
+ 24,
+ 29,
+ 46,
+ 30,
+ 33,
+ 26,
+ 33,
+ 36,
+ 30,
+ 21,
+ 34,
+ 26,
+ 24,
+ 28,
+ 30,
+ 41,
+ 50,
+ 33,
+ 28,
+ 30,
+ 23,
+ 28,
+ 53,
+ 28,
+ 31,
+ 32,
+ 34,
+ 42,
+ 25,
+ 30,
+ 33,
+ 28,
+ 23,
+ 25,
+ 26,
+ 32,
+ 35,
+ 27,
+ 25,
+ 29,
+ 29,
+ 37,
+ 27,
+ 27,
+ 27,
+ 27,
+ 42,
+ 35,
+ 31,
+ 31,
+ 27,
+ 34,
+ 40,
+ 24,
+ 23,
+ 36,
+ 27,
+ 21,
+ 29,
+ 46,
+ 51,
+ 37,
+ 27,
+ 23,
+ 34,
+ 39,
+ 23,
+ 26,
+ 32,
+ 35,
+ 28,
+ 28,
+ 28,
+ 34,
+ 23,
+ 36,
+ 22,
+ 38,
+ 27,
+ 35,
+ 27,
+ 40,
+ 33,
+ 27,
+ 30,
+ 24,
+ 33,
+ 48,
+ 28,
+ 39,
+ 39,
+ 31,
+ 31,
+ 46,
+ 31,
+ 42,
+ 29,
+ 26,
+ 26,
+ 54,
+ 58,
+ 28,
+ 24,
+ 27,
+ 29,
+ 49,
+ 35,
+ 35,
+ 57,
+ 25,
+ 33,
+ 53,
+ 31,
+ 23,
+ 27,
+ 36,
+ 54,
+ 24,
+ 31,
+ 40,
+ 31,
+ 33,
+ 37,
+ 33,
+ 40,
+ 36,
+ 30,
+ 33,
+ 31,
+ 35,
+ 34,
+ 46,
+ 33,
+ 41,
+ 42,
+ 30,
+ 27,
+ 36,
+ 37,
+ 24,
+ 29,
+ 30,
+ 34,
+ 42,
+ 26,
+ 42,
+ 29,
+ 28,
+ 30,
+ 35,
+ 32,
+ 33,
+ 30,
+ 26,
+ 22,
+ 46,
+ 31,
+ 26,
+ 31,
+ 44,
+ 36,
+ 34,
+ 38,
+ 42,
+ 27,
+ 31,
+ 42,
+ 32,
+ 31,
+ 45,
+ 39,
+ 32,
+ 31,
+ 28,
+ 29,
+ 31,
+ 26,
+ 31,
+ 34,
+ 30,
+ 33,
+ 27,
+ 31,
+ 32,
+ 31,
+ 31,
+ 35,
+ 26,
+ 28,
+ 23,
+ 30,
+ 47,
+ 45,
+ 33,
+ 29,
+ 30,
+ 24,
+ 39,
+ 37,
+ 32,
+ 43,
+ 23,
+ 60,
+ 30,
+ 30,
+ 38,
+ 29,
+ 38,
+ 38,
+ 46,
+ 43,
+ 29,
+ 31,
+ 39,
+ 36,
+ 26,
+ 27,
+ 25,
+ 29,
+ 27,
+ 44,
+ 32,
+ 33,
+ 34,
+ 24,
+ 33,
+ 28,
+ 43,
+ 33,
+ 27,
+ 36,
+ 29,
+ 28,
+ 35,
+ 25,
+ 20,
+ 24,
+ 23,
+ 33,
+ 24,
+ 32,
+ 34,
+ 30,
+ 32,
+ 40,
+ 29,
+ 34,
+ 30,
+ 35,
+ 58,
+ 34,
+ 35,
+ 22,
+ 57,
+ 25,
+ 30,
+ 30,
+ 30,
+ 31,
+ 55,
+ 26,
+ 21,
+ 34,
+ 34,
+ 24,
+ 34,
+ 37,
+ 28,
+ 32,
+ 44,
+ 28,
+ 36,
+ 29,
+ 29,
+ 42,
+ 31,
+ 32,
+ 29,
+ 28,
+ 28,
+ 31,
+ 35,
+ 34,
+ 28,
+ 23,
+ 26,
+ 34,
+ 41,
+ 40,
+ 54,
+ 45,
+ 32,
+ 39,
+ 51,
+ 29,
+ 32,
+ 39,
+ 53,
+ 39,
+ 31,
+ 31,
+ 28,
+ 33,
+ 30,
+ 30,
+ 54,
+ 39,
+ 54,
+ 29,
+ 30,
+ 36,
+ 24,
+ 29,
+ 32,
+ 42,
+ 45,
+ 30,
+ 45,
+ 45,
+ 39,
+ 39,
+ 27,
+ 27,
+ 30,
+ 44,
+ 41,
+ 34,
+ 28,
+ 29,
+ 55,
+ 30,
+ 34,
+ 24,
+ 41,
+ 51,
+ 50,
+ 43,
+ 25,
+ 52,
+ 33,
+ 34,
+ 53,
+ 41,
+ 34,
+ 34,
+ 34,
+ 25,
+ 39,
+ 59,
+ 33,
+ 35,
+ 43,
+ 25,
+ 40,
+ 39,
+ 30,
+ 46,
+ 36,
+ 27,
+ 39,
+ 53,
+ 53,
+ 46,
+ 33,
+ 27,
+ 44,
+ 55,
+ 26,
+ 28,
+ 32,
+ 35,
+ 30,
+ 52,
+ 30,
+ 47,
+ 47,
+ 39,
+ 44,
+ 45,
+ 50,
+ 45,
+ 31,
+ 25,
+ 51,
+ 50,
+ 35,
+ 26,
+ 37,
+ 23,
+ 31,
+ 51,
+ 32,
+ 35,
+ 37,
+ 33,
+ 29,
+ 28,
+ 32,
+ 32,
+ 30,
+ 44,
+ 31,
+ 39,
+ 24,
+ 39,
+ 29,
+ 39,
+ 53,
+ 44,
+ 38,
+ 31,
+ 48,
+ 48,
+ 36,
+ 48,
+ 48,
+ 48,
+ 59,
+ 59,
+ 58,
+ 26,
+ 35,
+ 37,
+ 53,
+ 41,
+ 24,
+ 37,
+ 34,
+ 33,
+ 53,
+ 37,
+ 33,
+ 30,
+ 47,
+ 53,
+ 31,
+ 41,
+ 53,
+ 34,
+ 34,
+ 29,
+ 53,
+ 26,
+ 27,
+ 38,
+ 37,
+ 36,
+ 32,
+ 36,
+ 32,
+ 30,
+ 36,
+ 32,
+ 49,
+ 31,
+ 54,
+ 44,
+ 54,
+ 54,
+ 37,
+ 30,
+ 34,
+ 37,
+ 30,
+ 27,
+ 37,
+ 34,
+ 39,
+ 42,
+ 45,
+ 45,
+ 42,
+ 53,
+ 23,
+ 53,
+ 22,
+ 40,
+ 32,
+ 25,
+ 28,
+ 31,
+ 39,
+ 35,
+ 36,
+ 58,
+ 25,
+ 32,
+ 47,
+ 37,
+ 54,
+ 41,
+ 44,
+ 26,
+ 31,
+ 57,
+ 27,
+ 43,
+ 54,
+ 44,
+ 30,
+ 21,
+ 31,
+ 39,
+ 32,
+ 33,
+ 54,
+ 52,
+ 41,
+ 33,
+ 42,
+ 27,
+ 29,
+ 26,
+ 29,
+ 33,
+ 30,
+ 37,
+ 25,
+ 34,
+ 37,
+ 37,
+ 32,
+ 29,
+ 25,
+ 32,
+ 29,
+ 34,
+ 44,
+ 48,
+ 58,
+ 53,
+ 24,
+ 58,
+ 30,
+ 23,
+ 31,
+ 29,
+ 31,
+ 35,
+ 29,
+ 31,
+ 35,
+ 41,
+ 24,
+ 29,
+ 30,
+ 26,
+ 34,
+ 30,
+ 49,
+ 32,
+ 26,
+ 24,
+ 55,
+ 28,
+ 23,
+ 49,
+ 46,
+ 41,
+ 30,
+ 34,
+ 32,
+ 27,
+ 56,
+ 54,
+ 30,
+ 31,
+ 23,
+ 32,
+ 37,
+ 39,
+ 32,
+ 39,
+ 44,
+ 32,
+ 25,
+ 28,
+ 36,
+ 23,
+ 34,
+ 32,
+ 34,
+ 27,
+ 42,
+ 27,
+ 34,
+ 34,
+ 34,
+ 49,
+ 39,
+ 26,
+ 29,
+ 29,
+ 31,
+ 43,
+ 26,
+ 30,
+ 37,
+ 28,
+ 21,
+ 30,
+ 47,
+ 32,
+ 24,
+ 23,
+ 35,
+ 33,
+ 50,
+ 27,
+ 41,
+ 41,
+ 29,
+ 34,
+ 32,
+ 37,
+ 38,
+ 32,
+ 37,
+ 26,
+ 22,
+ 33,
+ 32,
+ 34,
+ 32,
+ 32,
+ 26,
+ 49,
+ 52,
+ 37,
+ 32,
+ 32,
+ 30,
+ 29,
+ 29,
+ 33,
+ 23,
+ 24,
+ 27,
+ 29,
+ 23,
+ 53,
+ 43,
+ 34,
+ 53,
+ 37,
+ 27,
+ 54,
+ 31,
+ 27,
+ 34,
+ 24,
+ 28,
+ 42,
+ 43,
+ 50,
+ 22,
+ 33,
+ 48,
+ 47,
+ 40,
+ 35,
+ 32,
+ 26,
+ 43,
+ 25,
+ 39,
+ 37,
+ 24,
+ 28,
+ 28,
+ 25,
+ 26,
+ 33,
+ 55,
+ 32,
+ 25,
+ 41,
+ 50,
+ 39,
+ 38,
+ 42,
+ 48,
+ 41,
+ 41,
+ 38,
+ 25,
+ 29,
+ 48,
+ 49,
+ 49,
+ 38,
+ 43,
+ 42,
+ 38,
+ 39,
+ 38,
+ 31,
+ 41,
+ 57,
+ 40,
+ 57,
+ 57,
+ 21,
+ 44,
+ 35,
+ 27,
+ 54,
+ 27,
+ 25,
+ 50,
+ 46,
+ 25,
+ 38,
+ 38,
+ 41,
+ 32,
+ 33,
+ 30,
+ 52,
+ 27,
+ 57,
+ 42,
+ 44,
+ 24,
+ 31,
+ 29,
+ 30,
+ 32,
+ 28,
+ 31,
+ 28,
+ 47,
+ 34,
+ 47,
+ 23,
+ 46,
+ 23,
+ 34,
+ 44,
+ 39,
+ 48,
+ 38,
+ 37,
+ 41,
+ 41,
+ 30,
+ 45,
+ 41,
+ 36,
+ 52,
+ 44,
+ 30,
+ 35,
+ 38,
+ 25,
+ 24,
+ 33,
+ 37,
+ 41,
+ 37,
+ 24,
+ 37,
+ 33,
+ 48,
+ 30,
+ 32,
+ 41,
+ 28,
+ 46,
+ 35,
+ 33,
+ 59,
+ 29,
+ 52,
+ 38,
+ 29,
+ 30,
+ 41,
+ 33,
+ 25,
+ 41,
+ 21,
+ 21,
+ 35,
+ 37,
+ 47,
+ 32,
+ 41,
+ 25,
+ 27,
+ 44,
+ 31,
+ 42,
+ 31,
+ 36,
+ 43,
+ 46,
+ 58,
+ 31,
+ 57,
+ 38,
+ 50,
+ 47,
+ 32,
+ 47,
+ 33,
+ 44,
+ 28,
+ 42,
+ 39,
+ 43,
+ 23,
+ 32,
+ 58,
+ 29,
+ 45,
+ 35,
+ 49,
+ 42,
+ 27,
+ 30,
+ 46,
+ 37,
+ 44,
+ 29,
+ 29,
+ 32,
+ 30,
+ 41,
+ 34,
+ 44,
+ 46,
+ 30,
+ 44,
+ 44,
+ 32,
+ 34,
+ 34,
+ 30,
+ 30,
+ 28,
+ 35,
+ 28,
+ 42,
+ 21,
+ 32,
+ 32,
+ 21,
+ 48,
+ 40,
+ 40,
+ 41,
+ 30,
+ 30,
+ 28,
+ 30,
+ 26,
+ 41,
+ 56,
+ 41,
+ 38,
+ 34,
+ 24,
+ 58,
+ 55,
+ 58,
+ 58,
+ 53,
+ 38,
+ 38,
+ 41,
+ 31,
+ 41,
+ 50,
+ 57,
+ 25,
+ 56,
+ 37,
+ 43,
+ 36,
+ 33,
+ 25,
+ 26,
+ 46,
+ 34,
+ 37,
+ 37,
+ 40,
+ 46,
+ 47,
+ 50,
+ 27,
+ 40,
+ 45,
+ 39,
+ 42,
+ 29,
+ 25,
+ 46,
+ 46,
+ 27,
+ 35,
+ 36,
+ 43,
+ 33,
+ 41,
+ 35,
+ 25,
+ 39,
+ 48,
+ 34,
+ 48,
+ 45,
+ 53,
+ 43,
+ 26,
+ 31,
+ 58,
+ 38,
+ 34,
+ 29,
+ 24,
+ 34,
+ 37,
+ 38,
+ 44,
+ 36,
+ 41,
+ 42,
+ 38,
+ 28,
+ 33,
+ 29,
+ 41,
+ 47,
+ 38,
+ 22,
+ 52,
+ 33,
+ 49,
+ 57,
+ 31,
+ 33,
+ 26,
+ 47,
+ 36,
+ 41,
+ 29,
+ 51,
+ 33,
+ 23,
+ 33,
+ 30,
+ 41,
+ 37,
+ 24,
+ 26,
+ 43,
+ 37,
+ 33,
+ 29,
+ 33,
+ 24,
+ 25,
+ 38,
+ 33,
+ 27,
+ 29,
+ 30,
+ 33,
+ 56,
+ 36,
+ 56,
+ 31,
+ 35,
+ 28,
+ 33,
+ 41,
+ 32,
+ 52,
+ 46,
+ 47,
+ 44,
+ 41,
+ 46,
+ 58,
+ 30,
+ 31,
+ 26,
+ 32,
+ 43,
+ 41,
+ 25,
+ 55,
+ 53,
+ 44,
+ 43,
+ 35,
+ 35,
+ 35,
+ 34,
+ 39,
+ 39,
+ 40,
+ 40,
+ 36,
+ 23,
+ 27,
+ 27,
+ 27,
+ 58,
+ 83,
+ 30,
+ 49,
+ 49,
+ 66,
+ 27,
+ 37,
+ 57,
+ 57,
+ 32,
+ 40,
+ 40,
+ 55,
+ 18,
+ 62,
+ 43,
+ 75,
+ 46,
+ 38,
+ 28,
+ 27,
+ 52,
+ 40,
+ 49,
+ 45,
+ 59,
+ 59,
+ 26,
+ 34,
+ 48,
+ 46,
+ 50,
+ 27,
+ 34,
+ 34,
+ 34,
+ 26,
+ 44,
+ 32,
+ 36,
+ 24,
+ 36,
+ 33,
+ 58,
+ 33,
+ 44,
+ 44,
+ 36,
+ 56,
+ 29,
+ 27,
+ 52,
+ 62,
+ 42,
+ 37,
+ 46,
+ 46,
+ 46,
+ 46,
+ 56,
+ 54,
+ 34,
+ 26,
+ 27,
+ 32,
+ 36,
+ 36,
+ 58,
+ 36,
+ 33,
+ 26,
+ 36,
+ 36,
+ 46,
+ 34,
+ 61,
+ 34,
+ 60,
+ 29,
+ 34,
+ 35,
+ 43,
+ 27,
+ 78,
+ 55,
+ 42,
+ 32,
+ 41,
+ 46,
+ 47,
+ 29,
+ 28,
+ 38,
+ 33,
+ 44,
+ 29,
+ 52,
+ 29,
+ 26,
+ 29,
+ 31,
+ 36,
+ 59,
+ 31,
+ 49,
+ 32,
+ 30,
+ 31,
+ 34,
+ 38,
+ 35,
+ 39,
+ 39,
+ 39,
+ 36,
+ 40,
+ 55,
+ 55,
+ 51,
+ 25,
+ 35,
+ 55,
+ 29,
+ 27,
+ 29,
+ 31,
+ 24,
+ 35,
+ 45,
+ 45,
+ 28,
+ 55,
+ 31,
+ 29,
+ 35,
+ 34,
+ 28,
+ 54,
+ 59,
+ 22,
+ 36,
+ 33,
+ 36,
+ 37,
+ 36,
+ 28,
+ 42,
+ 42,
+ 31,
+ 22,
+ 33,
+ 29,
+ 33,
+ 42,
+ 28,
+ 27,
+ 27,
+ 36,
+ 36,
+ 27,
+ 49,
+ 39,
+ 39,
+ 39,
+ 34,
+ 34,
+ 34,
+ 48,
+ 48,
+ 25,
+ 29,
+ 33,
+ 31,
+ 42,
+ 25,
+ 52,
+ 51,
+ 51,
+ 37,
+ 25,
+ 49,
+ 49,
+ 49,
+ 29,
+ 38,
+ 39,
+ 59,
+ 23,
+ 59,
+ 30,
+ 27,
+ 47,
+ 27,
+ 32,
+ 25,
+ 34,
+ 42,
+ 30,
+ 30,
+ 47,
+ 39,
+ 25,
+ 54,
+ 31,
+ 31,
+ 30,
+ 35,
+ 26,
+ 34,
+ 52,
+ 37,
+ 24,
+ 31,
+ 68,
+ 37,
+ 34,
+ 38,
+ 38,
+ 20,
+ 32,
+ 25,
+ 61,
+ 61,
+ 34,
+ 41,
+ 41,
+ 40,
+ 26,
+ 32,
+ 26,
+ 52,
+ 45,
+ 37,
+ 30,
+ 40,
+ 26,
+ 43,
+ 32,
+ 61,
+ 35,
+ 35,
+ 88,
+ 53,
+ 34,
+ 47,
+ 35,
+ 34,
+ 32,
+ 36,
+ 48,
+ 30,
+ 40,
+ 35,
+ 35,
+ 27,
+ 37,
+ 23,
+ 22,
+ 26,
+ 24,
+ 42,
+ 32,
+ 52,
+ 35,
+ 53,
+ 28,
+ 23,
+ 41,
+ 24,
+ 37,
+ 45,
+ 40,
+ 28,
+ 45,
+ 35,
+ 37,
+ 27,
+ 32,
+ 45,
+ 35,
+ 46,
+ 53,
+ 33,
+ 52,
+ 45,
+ 29,
+ 41,
+ 22,
+ 58,
+ 25,
+ 28,
+ 47,
+ 31,
+ 41,
+ 31,
+ 36,
+ 30,
+ 57,
+ 39,
+ 57,
+ 24,
+ 33,
+ 65,
+ 30,
+ 49,
+ 49,
+ 49,
+ 44,
+ 34,
+ 34,
+ 55,
+ 77,
+ 38,
+ 30,
+ 27,
+ 33,
+ 56,
+ 27,
+ 47,
+ 58,
+ 49,
+ 37,
+ 28,
+ 34,
+ 65,
+ 72,
+ 31,
+ 31,
+ 28,
+ 55,
+ 39,
+ 25,
+ 28,
+ 37,
+ 26,
+ 33,
+ 58,
+ 40,
+ 35,
+ 39,
+ 47,
+ 48,
+ 59,
+ 46,
+ 33,
+ 32,
+ 49,
+ 49,
+ 31,
+ 43,
+ 27,
+ 33,
+ 52,
+ 24,
+ 24,
+ 27,
+ 34,
+ 34,
+ 27,
+ 47,
+ 29,
+ 79,
+ 33,
+ 23,
+ 43,
+ 43,
+ 29,
+ 52,
+ 29,
+ 27,
+ 32,
+ 31,
+ 30,
+ 30,
+ 38,
+ 28,
+ 34,
+ 24,
+ 26,
+ 35,
+ 56,
+ 27,
+ 23,
+ 41,
+ 31,
+ 30,
+ 47,
+ 30,
+ 44,
+ 33,
+ 29,
+ 34,
+ 27,
+ 37,
+ 37,
+ 31,
+ 34,
+ 47,
+ 30,
+ 38,
+ 43,
+ 33,
+ 46,
+ 40,
+ 32,
+ 24,
+ 58,
+ 55,
+ 24,
+ 44,
+ 55,
+ 38,
+ 47,
+ 59,
+ 59,
+ 53,
+ 31,
+ 26,
+ 37,
+ 38,
+ 36,
+ 58,
+ 29,
+ 29,
+ 29,
+ 29,
+ 30,
+ 29,
+ 48,
+ 33,
+ 33,
+ 39,
+ 57,
+ 30,
+ 39,
+ 32,
+ 56,
+ 33,
+ 20,
+ 38,
+ 61,
+ 38,
+ 38,
+ 33,
+ 21,
+ 29,
+ 32,
+ 37,
+ 24,
+ 26,
+ 26,
+ 34,
+ 33,
+ 50,
+ 47,
+ 24,
+ 54,
+ 56,
+ 25,
+ 30,
+ 54,
+ 27,
+ 57,
+ 69,
+ 31,
+ 29,
+ 26,
+ 35,
+ 54,
+ 33,
+ 25,
+ 33,
+ 21,
+ 56,
+ 25,
+ 53,
+ 30,
+ 29,
+ 51,
+ 30,
+ 54,
+ 30,
+ 30,
+ 50,
+ 22,
+ 32,
+ 36,
+ 26,
+ 26,
+ 34,
+ 28,
+ 38,
+ 38,
+ 29,
+ 52,
+ 42,
+ 29,
+ 32,
+ 42,
+ 28,
+ 28,
+ 32,
+ 35,
+ 33,
+ 34,
+ 50,
+ 34,
+ 31,
+ 44,
+ 27,
+ 49,
+ 27,
+ 56,
+ 45,
+ 24,
+ 50,
+ 27,
+ 49,
+ 27,
+ 32,
+ 28,
+ 46,
+ 37,
+ 29,
+ 21,
+ 26,
+ 33,
+ 30,
+ 27,
+ 51,
+ 25,
+ 25,
+ 54,
+ 52,
+ 29,
+ 32,
+ 29,
+ 27,
+ 30,
+ 31,
+ 52,
+ 21,
+ 51,
+ 25,
+ 26,
+ 33,
+ 25,
+ 52,
+ 29,
+ 36,
+ 32,
+ 28,
+ 32,
+ 31,
+ 33,
+ 22,
+ 25,
+ 30,
+ 29,
+ 57,
+ 48,
+ 25,
+ 22,
+ 26,
+ 25,
+ 26,
+ 44,
+ 55,
+ 52,
+ 33,
+ 31,
+ 25,
+ 59,
+ 32,
+ 40,
+ 52,
+ 30,
+ 57,
+ 35,
+ 28,
+ 22,
+ 22,
+ 34,
+ 23,
+ 27,
+ 29,
+ 34,
+ 29,
+ 32,
+ 32,
+ 34,
+ 41,
+ 24,
+ 25,
+ 28,
+ 22,
+ 23,
+ 26,
+ 43,
+ 32,
+ 30,
+ 34,
+ 25,
+ 26,
+ 38,
+ 25,
+ 49,
+ 29,
+ 57,
+ 56,
+ 48,
+ 43,
+ 39,
+ 35,
+ 50,
+ 25,
+ 40,
+ 46,
+ 49,
+ 43,
+ 58,
+ 44,
+ 31,
+ 36,
+ 44,
+ 24,
+ 32,
+ 26,
+ 40,
+ 24,
+ 32,
+ 34,
+ 56,
+ 56,
+ 56,
+ 27,
+ 32,
+ 47,
+ 31,
+ 38,
+ 38,
+ 25,
+ 55,
+ 58,
+ 48,
+ 60,
+ 55,
+ 47,
+ 53,
+ 42,
+ 41,
+ 32,
+ 32,
+ 49,
+ 45,
+ 39,
+ 51,
+ 36,
+ 45,
+ 47,
+ 45,
+ 47,
+ 38,
+ 45,
+ 37,
+ 38,
+ 38,
+ 36,
+ 31,
+ 51,
+ 56,
+ 59,
+ 51,
+ 34,
+ 45,
+ 58,
+ 63,
+ 43,
+ 51,
+ 63,
+ 60,
+ 38,
+ 32,
+ 36,
+ 29,
+ 36,
+ 35,
+ 56,
+ 57,
+ 53,
+ 29,
+ 47,
+ 28,
+ 75,
+ 58,
+ 34,
+ 35,
+ 46,
+ 30,
+ 41,
+ 38,
+ 42,
+ 37,
+ 50,
+ 30,
+ 31,
+ 25,
+ 29,
+ 26,
+ 46,
+ 45,
+ 26,
+ 42,
+ 31,
+ 38,
+ 26,
+ 27,
+ 44,
+ 47,
+ 68,
+ 50,
+ 45,
+ 24,
+ 41,
+ 44,
+ 20,
+ 45,
+ 20,
+ 36,
+ 30,
+ 43,
+ 42,
+ 42,
+ 32,
+ 27,
+ 42,
+ 59,
+ 40,
+ 36,
+ 38,
+ 33,
+ 32,
+ 32,
+ 51,
+ 26,
+ 51,
+ 45,
+ 37,
+ 27,
+ 36,
+ 33,
+ 27,
+ 38,
+ 38,
+ 26,
+ 44,
+ 23,
+ 34,
+ 26,
+ 54,
+ 26,
+ 30,
+ 31,
+ 47,
+ 36,
+ 58,
+ 54,
+ 41,
+ 32,
+ 61,
+ 48,
+ 36,
+ 31,
+ 64,
+ 26,
+ 51,
+ 21,
+ 21,
+ 72,
+ 72,
+ 34,
+ 24,
+ 40,
+ 52,
+ 43,
+ 27,
+ 59,
+ 45,
+ 45,
+ 43,
+ 56,
+ 46,
+ 31,
+ 37,
+ 63,
+ 52,
+ 57,
+ 60,
+ 59,
+ 32,
+ 37,
+ 63,
+ 37,
+ 45,
+ 58,
+ 53,
+ 53,
+ 74,
+ 74,
+ 58,
+ 74,
+ 35,
+ 35,
+ 35,
+ 35,
+ 32,
+ 29,
+ 38,
+ 51,
+ 82,
+ 38,
+ 32,
+ 32,
+ 34,
+ 34,
+ 46,
+ 32,
+ 24,
+ 48,
+ 54,
+ 73,
+ 58,
+ 73,
+ 23,
+ 36,
+ 30,
+ 28,
+ 33,
+ 28,
+ 28,
+ 59,
+ 29,
+ 29,
+ 30,
+ 29,
+ 73,
+ 29,
+ 48,
+ 54,
+ 46,
+ 36,
+ 40,
+ 52,
+ 41,
+ 27,
+ 64,
+ 66,
+ 19,
+ 40,
+ 40,
+ 43,
+ 43,
+ 35,
+ 36,
+ 69,
+ 35,
+ 21,
+ 19,
+ 46,
+ 19,
+ 32,
+ 39,
+ 40,
+ 40,
+ 67,
+ 57,
+ 37,
+ 35,
+ 58,
+ 43,
+ 70,
+ 34,
+ 69,
+ 59,
+ 49,
+ 31,
+ 50,
+ 31,
+ 45,
+ 60,
+ 30,
+ 30,
+ 31,
+ 35,
+ 59,
+ 29,
+ 42,
+ 27,
+ 27,
+ 49,
+ 69,
+ 28,
+ 41,
+ 60,
+ 35,
+ 67,
+ 56,
+ 59,
+ 47,
+ 59,
+ 59,
+ 30,
+ 70,
+ 59,
+ 58,
+ 35,
+ 57,
+ 21,
+ 57,
+ 62,
+ 27,
+ 60,
+ 31,
+ 31,
+ 48,
+ 25,
+ 26,
+ 49,
+ 25,
+ 34,
+ 45,
+ 45,
+ 36,
+ 37,
+ 59,
+ 29,
+ 38,
+ 27,
+ 36,
+ 54,
+ 36,
+ 36,
+ 66,
+ 35,
+ 28,
+ 28,
+ 44,
+ 32,
+ 29,
+ 33,
+ 45,
+ 44,
+ 28,
+ 32,
+ 33,
+ 42,
+ 42,
+ 44,
+ 37,
+ 42,
+ 28,
+ 74,
+ 76,
+ 29,
+ 27,
+ 37,
+ 33,
+ 30,
+ 41,
+ 36,
+ 88,
+ 39,
+ 45,
+ 34,
+ 74,
+ 46,
+ 34,
+ 36,
+ 36,
+ 38,
+ 33,
+ 24,
+ 34,
+ 20,
+ 81,
+ 43,
+ 34,
+ 32,
+ 32,
+ 34,
+ 24,
+ 28,
+ 27,
+ 46,
+ 76,
+ 35,
+ 41,
+ 41,
+ 76,
+ 48,
+ 25,
+ 25,
+ 21,
+ 44,
+ 44,
+ 44,
+ 44,
+ 29,
+ 73,
+ 36,
+ 22,
+ 21,
+ 72,
+ 31,
+ 33,
+ 43,
+ 36,
+ 17,
+ 43,
+ 61,
+ 70,
+ 45,
+ 43,
+ 29,
+ 48,
+ 33,
+ 32,
+ 36,
+ 36,
+ 17,
+ 25,
+ 25,
+ 48,
+ 20,
+ 63,
+ 35,
+ 25,
+ 26,
+ 32,
+ 63,
+ 37,
+ 25,
+ 61,
+ 70,
+ 28,
+ 35,
+ 20,
+ 35,
+ 22,
+ 68,
+ 65,
+ 26,
+ 23,
+ 43,
+ 72,
+ 60,
+ 33,
+ 23,
+ 23,
+ 33,
+ 65,
+ 34,
+ 31,
+ 34,
+ 31,
+ 43,
+ 50,
+ 30,
+ 34,
+ 18,
+ 27,
+ 28,
+ 29,
+ 46,
+ 29,
+ 65,
+ 31,
+ 63,
+ 34,
+ 33,
+ 33,
+ 49,
+ 32,
+ 56,
+ 59,
+ 61,
+ 34,
+ 37,
+ 32,
+ 29,
+ 65,
+ 63,
+ 35,
+ 26,
+ 38,
+ 33,
+ 33,
+ 62,
+ 80,
+ 26,
+ 56,
+ 20,
+ 26,
+ 33,
+ 32,
+ 34,
+ 33,
+ 54,
+ 35,
+ 32,
+ 66,
+ 40,
+ 25,
+ 27,
+ 62,
+ 38,
+ 74,
+ 29,
+ 29,
+ 24,
+ 45,
+ 26,
+ 38,
+ 28,
+ 25,
+ 53,
+ 64,
+ 64,
+ 76,
+ 76,
+ 61,
+ 58,
+ 36,
+ 62,
+ 54,
+ 24,
+ 24,
+ 24,
+ 24,
+ 55,
+ 35,
+ 70,
+ 34,
+ 54,
+ 34,
+ 66,
+ 69,
+ 58,
+ 88,
+ 40,
+ 57,
+ 47,
+ 64,
+ 57,
+ 49,
+ 25,
+ 81,
+ 44,
+ 43,
+ 58,
+ 51,
+ 51,
+ 54,
+ 60,
+ 58,
+ 53,
+ 43,
+ 67,
+ 49,
+ 59,
+ 57,
+ 28,
+ 80,
+ 78,
+ 56,
+ 42,
+ 24,
+ 71,
+ 71,
+ 46,
+ 42,
+ 31,
+ 45,
+ 27,
+ 24,
+ 24,
+ 43,
+ 26,
+ 44,
+ 34,
+ 28,
+ 45,
+ 51,
+ 40,
+ 26,
+ 40,
+ 73,
+ 36,
+ 36,
+ 73,
+ 40,
+ 29,
+ 53,
+ 38,
+ 33,
+ 59,
+ 63,
+ 34,
+ 31,
+ 32,
+ 32,
+ 36,
+ 35,
+ 48,
+ 27,
+ 38,
+ 38,
+ 28,
+ 28,
+ 51,
+ 52,
+ 39,
+ 19,
+ 60,
+ 40,
+ 60,
+ 25,
+ 60,
+ 46,
+ 60,
+ 44,
+ 43,
+ 43,
+ 71,
+ 35,
+ 35,
+ 61,
+ 38,
+ 26,
+ 41,
+ 53,
+ 45,
+ 40,
+ 32,
+ 50,
+ 31,
+ 71,
+ 39,
+ 46,
+ 55,
+ 47,
+ 31,
+ 54,
+ 28,
+ 41,
+ 30,
+ 48,
+ 41,
+ 54,
+ 54,
+ 25,
+ 28,
+ 41,
+ 45,
+ 61,
+ 25,
+ 28,
+ 46,
+ 39,
+ 68,
+ 76,
+ 71,
+ 30,
+ 35,
+ 69,
+ 58,
+ 91,
+ 62,
+ 32,
+ 62,
+ 29,
+ 58,
+ 32,
+ 91,
+ 56,
+ 56,
+ 31,
+ 69,
+ 57,
+ 73,
+ 53,
+ 36,
+ 36,
+ 76,
+ 73,
+ 38,
+ 69,
+ 40,
+ 30,
+ 39,
+ 41,
+ 46,
+ 49,
+ 51,
+ 53,
+ 66,
+ 47,
+ 70,
+ 31,
+ 49,
+ 49,
+ 32,
+ 60,
+ 51,
+ 32,
+ 50,
+ 63,
+ 43,
+ 36,
+ 56,
+ 47,
+ 50,
+ 35,
+ 60,
+ 60,
+ 33,
+ 54,
+ 53,
+ 61,
+ 70,
+ 61,
+ 68,
+ 70,
+ 68,
+ 33,
+ 45,
+ 53,
+ 68,
+ 68,
+ 43,
+ 43,
+ 30,
+ 70,
+ 70,
+ 37,
+ 35,
+ 55,
+ 59,
+ 31,
+ 35,
+ 36,
+ 69,
+ 65,
+ 78,
+ 32,
+ 50,
+ 71,
+ 29,
+ 51,
+ 38,
+ 26,
+ 28,
+ 63,
+ 28,
+ 71,
+ 45,
+ 68,
+ 37,
+ 43,
+ 43,
+ 82,
+ 82,
+ 80,
+ 80,
+ 41,
+ 27,
+ 36,
+ 63,
+ 30,
+ 48,
+ 58,
+ 38,
+ 48,
+ 35,
+ 38,
+ 58,
+ 58,
+ 32,
+ 63,
+ 41,
+ 48,
+ 69,
+ 69,
+ 29,
+ 59,
+ 42,
+ 75,
+ 29,
+ 33,
+ 70,
+ 38,
+ 44,
+ 48,
+ 80,
+ 71,
+ 71,
+ 45,
+ 33,
+ 58,
+ 55,
+ 55,
+ 55,
+ 48,
+ 32,
+ 26,
+ 56,
+ 48,
+ 80,
+ 44,
+ 71,
+ 36,
+ 71,
+ 36,
+ 36,
+ 37,
+ 56,
+ 38,
+ 35,
+ 42,
+ 28,
+ 36,
+ 36,
+ 37,
+ 35,
+ 49,
+ 28,
+ 34,
+ 30,
+ 44,
+ 28,
+ 68,
+ 37,
+ 37,
+ 74,
+ 35,
+ 37,
+ 25,
+ 83,
+ 32,
+ 40,
+ 38,
+ 39,
+ 39,
+ 39,
+ 60,
+ 33,
+ 30,
+ 36,
+ 36,
+ 49,
+ 28,
+ 34,
+ 44,
+ 32,
+ 36,
+ 34,
+ 29,
+ 21,
+ 60,
+ 60,
+ 25,
+ 36,
+ 55,
+ 60,
+ 55,
+ 30,
+ 32,
+ 54,
+ 20,
+ 36,
+ 38,
+ 55,
+ 41,
+ 41,
+ 55,
+ 54,
+ 67,
+ 54,
+ 51,
+ 59,
+ 30,
+ 58,
+ 58,
+ 31,
+ 70,
+ 53,
+ 70,
+ 33,
+ 88,
+ 62,
+ 44,
+ 54,
+ 32,
+ 30,
+ 25,
+ 31,
+ 35,
+ 30,
+ 32,
+ 35,
+ 26,
+ 31,
+ 31,
+ 37,
+ 61,
+ 33,
+ 26,
+ 29,
+ 29,
+ 73,
+ 29,
+ 50,
+ 29,
+ 33,
+ 30,
+ 26,
+ 42,
+ 55,
+ 32,
+ 63,
+ 71,
+ 45,
+ 61,
+ 22,
+ 22,
+ 30,
+ 32,
+ 39,
+ 63,
+ 65,
+ 46,
+ 33,
+ 26,
+ 28,
+ 75,
+ 81,
+ 60,
+ 61,
+ 46,
+ 46,
+ 35,
+ 40,
+ 35,
+ 62,
+ 45,
+ 61,
+ 24,
+ 30,
+ 40,
+ 73,
+ 23,
+ 36,
+ 31,
+ 61,
+ 75,
+ 58,
+ 28,
+ 69,
+ 32,
+ 60,
+ 36,
+ 55,
+ 61,
+ 82,
+ 60,
+ 78,
+ 27,
+ 65,
+ 37,
+ 24,
+ 72,
+ 37,
+ 59,
+ 78,
+ 23,
+ 41,
+ 37,
+ 37,
+ 36,
+ 50,
+ 35,
+ 21,
+ 34,
+ 60,
+ 37,
+ 55,
+ 64,
+ 37,
+ 37,
+ 37,
+ 50,
+ 32,
+ 37,
+ 30,
+ 24,
+ 50,
+ 34,
+ 33,
+ 32,
+ 34,
+ 37,
+ 52,
+ 56,
+ 67,
+ 40,
+ 27,
+ 47,
+ 30,
+ 37,
+ 37,
+ 37,
+ 37,
+ 58,
+ 54,
+ 54,
+ 29,
+ 28,
+ 29,
+ 26,
+ 56,
+ 51,
+ 62,
+ 58,
+ 32,
+ 32,
+ 32,
+ 34,
+ 37,
+ 34,
+ 34,
+ 26,
+ 29,
+ 32,
+ 57,
+ 71,
+ 25,
+ 49,
+ 21,
+ 45,
+ 30,
+ 37,
+ 72,
+ 45,
+ 36,
+ 45,
+ 25,
+ 45,
+ 35,
+ 20,
+ 37,
+ 37,
+ 23,
+ 32,
+ 67,
+ 40,
+ 43,
+ 25,
+ 64,
+ 78,
+ 56,
+ 52,
+ 62,
+ 29,
+ 52,
+ 28,
+ 49,
+ 62,
+ 25,
+ 52,
+ 21,
+ 43,
+ 31,
+ 26,
+ 52,
+ 27,
+ 31,
+ 52,
+ 40,
+ 40,
+ 25,
+ 40,
+ 39,
+ 50,
+ 75,
+ 50,
+ 56,
+ 37,
+ 37,
+ 37,
+ 35,
+ 27,
+ 25,
+ 35,
+ 38,
+ 43,
+ 54,
+ 35,
+ 31,
+ 64,
+ 34,
+ 30,
+ 25,
+ 42,
+ 48,
+ 32,
+ 27,
+ 34,
+ 72,
+ 50,
+ 31,
+ 36,
+ 45,
+ 63,
+ 40,
+ 32,
+ 35,
+ 35,
+ 34,
+ 30,
+ 65,
+ 31,
+ 83,
+ 55,
+ 57,
+ 24,
+ 58,
+ 58,
+ 32,
+ 94,
+ 78,
+ 21,
+ 55,
+ 28,
+ 55,
+ 86,
+ 65,
+ 32,
+ 77,
+ 67,
+ 31,
+ 38,
+ 38,
+ 38,
+ 62,
+ 81,
+ 62,
+ 62,
+ 31,
+ 62,
+ 76,
+ 42,
+ 83,
+ 64,
+ 64,
+ 40,
+ 53,
+ 23,
+ 48,
+ 25,
+ 60,
+ 25,
+ 55,
+ 80,
+ 48,
+ 49,
+ 36,
+ 36,
+ 47,
+ 47,
+ 48,
+ 73,
+ 38,
+ 29,
+ 56,
+ 32,
+ 32,
+ 70,
+ 51,
+ 64,
+ 64,
+ 61,
+ 57,
+ 54,
+ 18,
+ 48,
+ 74,
+ 18,
+ 43,
+ 70,
+ 47,
+ 68,
+ 76,
+ 19,
+ 28,
+ 23,
+ 30,
+ 36,
+ 42,
+ 29,
+ 26,
+ 29,
+ 28,
+ 27,
+ 23,
+ 35,
+ 76,
+ 35,
+ 35,
+ 41,
+ 63,
+ 59,
+ 53,
+ 30,
+ 63,
+ 34,
+ 29,
+ 32,
+ 27,
+ 35,
+ 31,
+ 39,
+ 59,
+ 59,
+ 60,
+ 31,
+ 30,
+ 27,
+ 30,
+ 66,
+ 51,
+ 36,
+ 54,
+ 37,
+ 34,
+ 53,
+ 25,
+ 55,
+ 66,
+ 53,
+ 25,
+ 64,
+ 85,
+ 38,
+ 31,
+ 22,
+ 59,
+ 35,
+ 29,
+ 27,
+ 29,
+ 27,
+ 34,
+ 35,
+ 28,
+ 28,
+ 31,
+ 33,
+ 27,
+ 39,
+ 46,
+ 53,
+ 35,
+ 33,
+ 31,
+ 28,
+ 61,
+ 33,
+ 33,
+ 58,
+ 73,
+ 53,
+ 30,
+ 48,
+ 53,
+ 53,
+ 58,
+ 29,
+ 30,
+ 48,
+ 34,
+ 65,
+ 52,
+ 33,
+ 27,
+ 66,
+ 33,
+ 37,
+ 56,
+ 59,
+ 28,
+ 28,
+ 24,
+ 50,
+ 36,
+ 75,
+ 37,
+ 28,
+ 28,
+ 57,
+ 33,
+ 59,
+ 26,
+ 26,
+ 34,
+ 78,
+ 28,
+ 51,
+ 57,
+ 58,
+ 58,
+ 58,
+ 58,
+ 36,
+ 58,
+ 58,
+ 49,
+ 27,
+ 56,
+ 32,
+ 56,
+ 84,
+ 27,
+ 76,
+ 39,
+ 53,
+ 53,
+ 71,
+ 37,
+ 35,
+ 33,
+ 58,
+ 62,
+ 58,
+ 33,
+ 42,
+ 33,
+ 58,
+ 56,
+ 33,
+ 33,
+ 48,
+ 46,
+ 58,
+ 22,
+ 68,
+ 55,
+ 29,
+ 54,
+ 74,
+ 70,
+ 61,
+ 49,
+ 80,
+ 80,
+ 59,
+ 44,
+ 32,
+ 63,
+ 25,
+ 71,
+ 29,
+ 29,
+ 46,
+ 30,
+ 46,
+ 24,
+ 24,
+ 71,
+ 29,
+ 24,
+ 27,
+ 24,
+ 24,
+ 27,
+ 33,
+ 61,
+ 26,
+ 36,
+ 34,
+ 30,
+ 28,
+ 28,
+ 37,
+ 52,
+ 29,
+ 30,
+ 30,
+ 79,
+ 79,
+ 19,
+ 29,
+ 37,
+ 24,
+ 24,
+ 29,
+ 44,
+ 27,
+ 48,
+ 46,
+ 36,
+ 52,
+ 19,
+ 62,
+ 78,
+ 44,
+ 60,
+ 44,
+ 33,
+ 38,
+ 41,
+ 46,
+ 24,
+ 54,
+ 50,
+ 50,
+ 30,
+ 30,
+ 47,
+ 34,
+ 28,
+ 52,
+ 47,
+ 32,
+ 41,
+ 33,
+ 63,
+ 33,
+ 54,
+ 33,
+ 29,
+ 45,
+ 31,
+ 34,
+ 34,
+ 29,
+ 51,
+ 36,
+ 79,
+ 84,
+ 49,
+ 40,
+ 43,
+ 34,
+ 54,
+ 79,
+ 35,
+ 33,
+ 23,
+ 25,
+ 74,
+ 26,
+ 72,
+ 72,
+ 30,
+ 49,
+ 29,
+ 47,
+ 49,
+ 42,
+ 47,
+ 37,
+ 29,
+ 39,
+ 28,
+ 59,
+ 30,
+ 20,
+ 40,
+ 52,
+ 34,
+ 29,
+ 34,
+ 31,
+ 52,
+ 38,
+ 38,
+ 38,
+ 29,
+ 28,
+ 48,
+ 32,
+ 35,
+ 47,
+ 21,
+ 29,
+ 26,
+ 37,
+ 38,
+ 29,
+ 27,
+ 27,
+ 28,
+ 37,
+ 35,
+ 39,
+ 35,
+ 28,
+ 37,
+ 44,
+ 33,
+ 27,
+ 27,
+ 31,
+ 37,
+ 35,
+ 39,
+ 33,
+ 36,
+ 29,
+ 38,
+ 24,
+ 24,
+ 26,
+ 33,
+ 62,
+ 41,
+ 34,
+ 27,
+ 27,
+ 18,
+ 24,
+ 45,
+ 27,
+ 36,
+ 35,
+ 35,
+ 40,
+ 24,
+ 33,
+ 22,
+ 74,
+ 30,
+ 43,
+ 44,
+ 31,
+ 37,
+ 30,
+ 38,
+ 68,
+ 25,
+ 33,
+ 33,
+ 26,
+ 39,
+ 47,
+ 30,
+ 30,
+ 36,
+ 53,
+ 36,
+ 37,
+ 69,
+ 53,
+ 33,
+ 32,
+ 32,
+ 35,
+ 37,
+ 37,
+ 81,
+ 50,
+ 27,
+ 23,
+ 35,
+ 38,
+ 32,
+ 30,
+ 33,
+ 32,
+ 26,
+ 52,
+ 26,
+ 29,
+ 29,
+ 31,
+ 52,
+ 37,
+ 37,
+ 35,
+ 34,
+ 29,
+ 27,
+ 33,
+ 38,
+ 39,
+ 37,
+ 37,
+ 55,
+ 52,
+ 41,
+ 25,
+ 32,
+ 33,
+ 33,
+ 30,
+ 30,
+ 83,
+ 35,
+ 21,
+ 35,
+ 58,
+ 32,
+ 39,
+ 37,
+ 25,
+ 72,
+ 72,
+ 32,
+ 32,
+ 33,
+ 33,
+ 26,
+ 33,
+ 59,
+ 36,
+ 28,
+ 28,
+ 28,
+ 19,
+ 33,
+ 29,
+ 32,
+ 29,
+ 24,
+ 73,
+ 29,
+ 32,
+ 31,
+ 29,
+ 34,
+ 30,
+ 44,
+ 27,
+ 28,
+ 32,
+ 32,
+ 38,
+ 54,
+ 63,
+ 26,
+ 32,
+ 31,
+ 31,
+ 31,
+ 27,
+ 32,
+ 51,
+ 44,
+ 21,
+ 54,
+ 72,
+ 28,
+ 28,
+ 66,
+ 28,
+ 35,
+ 23,
+ 38,
+ 48,
+ 23,
+ 72,
+ 21,
+ 71,
+ 34,
+ 29,
+ 56,
+ 45,
+ 32,
+ 29,
+ 29,
+ 31,
+ 52,
+ 34,
+ 27,
+ 35,
+ 32,
+ 23,
+ 33,
+ 28,
+ 52,
+ 28,
+ 26,
+ 74,
+ 66,
+ 47,
+ 60,
+ 23,
+ 65,
+ 53,
+ 39,
+ 32,
+ 23,
+ 41,
+ 56,
+ 39,
+ 63,
+ 55,
+ 46,
+ 33,
+ 25,
+ 33,
+ 42,
+ 67,
+ 36,
+ 81,
+ 25,
+ 42,
+ 31,
+ 33,
+ 38,
+ 33,
+ 53,
+ 28,
+ 77,
+ 31,
+ 21,
+ 31,
+ 30,
+ 28,
+ 52,
+ 27,
+ 27,
+ 46,
+ 46,
+ 46,
+ 44,
+ 27,
+ 30,
+ 71,
+ 63,
+ 41,
+ 60,
+ 32,
+ 41,
+ 24,
+ 30,
+ 26,
+ 30,
+ 26,
+ 47,
+ 47,
+ 56,
+ 55,
+ 25,
+ 22,
+ 34,
+ 37,
+ 25,
+ 65,
+ 31,
+ 59,
+ 35,
+ 71,
+ 60,
+ 60,
+ 76,
+ 30,
+ 40,
+ 32,
+ 48,
+ 28,
+ 39,
+ 35,
+ 60,
+ 34,
+ 45,
+ 34,
+ 45,
+ 34,
+ 26,
+ 54,
+ 36,
+ 40,
+ 39,
+ 33,
+ 29,
+ 49,
+ 45,
+ 30,
+ 72,
+ 33,
+ 22,
+ 28,
+ 30,
+ 35,
+ 58,
+ 27,
+ 49,
+ 27,
+ 30,
+ 31,
+ 58,
+ 34,
+ 44,
+ 72,
+ 34,
+ 71,
+ 70,
+ 34,
+ 29,
+ 37,
+ 33,
+ 71,
+ 30,
+ 35,
+ 58,
+ 44,
+ 26,
+ 47,
+ 32,
+ 38,
+ 57,
+ 51,
+ 78,
+ 32,
+ 39,
+ 67,
+ 49,
+ 59,
+ 51,
+ 34,
+ 30,
+ 75,
+ 28,
+ 25,
+ 34,
+ 20,
+ 58,
+ 88,
+ 58,
+ 34,
+ 76,
+ 34,
+ 27,
+ 34,
+ 88,
+ 30,
+ 47,
+ 24,
+ 39,
+ 88,
+ 48,
+ 36,
+ 35,
+ 26,
+ 39,
+ 45,
+ 38,
+ 44,
+ 26,
+ 80,
+ 83,
+ 58,
+ 33,
+ 65,
+ 38,
+ 29,
+ 28,
+ 32,
+ 27,
+ 69,
+ 29,
+ 23,
+ 33,
+ 31,
+ 31,
+ 27,
+ 50,
+ 30,
+ 25,
+ 30,
+ 32,
+ 61,
+ 32,
+ 33,
+ 45,
+ 33,
+ 34,
+ 35,
+ 29,
+ 33,
+ 38,
+ 29,
+ 34,
+ 34,
+ 48,
+ 55,
+ 50,
+ 50,
+ 28,
+ 37,
+ 26,
+ 31,
+ 29,
+ 26,
+ 22,
+ 30,
+ 35,
+ 35,
+ 54,
+ 35,
+ 33,
+ 30,
+ 32,
+ 29,
+ 28,
+ 36,
+ 23,
+ 33,
+ 60,
+ 51,
+ 27,
+ 34,
+ 32,
+ 32,
+ 32,
+ 30,
+ 30,
+ 30,
+ 32,
+ 32,
+ 30,
+ 30,
+ 22,
+ 40,
+ 35,
+ 35,
+ 30,
+ 42,
+ 50,
+ 59,
+ 32,
+ 32,
+ 41,
+ 27,
+ 30,
+ 58,
+ 40,
+ 26,
+ 32,
+ 26,
+ 32,
+ 75,
+ 64,
+ 36,
+ 65,
+ 28,
+ 31,
+ 33,
+ 39,
+ 32,
+ 39,
+ 24,
+ 55,
+ 59,
+ 33,
+ 29,
+ 33,
+ 24,
+ 74,
+ 25,
+ 25,
+ 26,
+ 22,
+ 71,
+ 61,
+ 28,
+ 31,
+ 31,
+ 22,
+ 27,
+ 27,
+ 31,
+ 51,
+ 27,
+ 52,
+ 60,
+ 63,
+ 33,
+ 54,
+ 81,
+ 48,
+ 54,
+ 63,
+ 37,
+ 54,
+ 41,
+ 54,
+ 51,
+ 81,
+ 74,
+ 34,
+ 68,
+ 26,
+ 47,
+ 56,
+ 74,
+ 74,
+ 44,
+ 60,
+ 44,
+ 24,
+ 67,
+ 54,
+ 25,
+ 34,
+ 61,
+ 38,
+ 23,
+ 65,
+ 29,
+ 27,
+ 37,
+ 28,
+ 25,
+ 38,
+ 28,
+ 35,
+ 38,
+ 30,
+ 25,
+ 27,
+ 23,
+ 60,
+ 42,
+ 46,
+ 51,
+ 29,
+ 37,
+ 34,
+ 29,
+ 51,
+ 37,
+ 61,
+ 24,
+ 39,
+ 35,
+ 34,
+ 51,
+ 27,
+ 51,
+ 48,
+ 50,
+ 30,
+ 31,
+ 31,
+ 52,
+ 19,
+ 31,
+ 28,
+ 34,
+ 45,
+ 40,
+ 46,
+ 32,
+ 32,
+ 32,
+ 46,
+ 58,
+ 46,
+ 61,
+ 58,
+ 28,
+ 54,
+ 42,
+ 31,
+ 29,
+ 35,
+ 30,
+ 41,
+ 26,
+ 41,
+ 31,
+ 31,
+ 33,
+ 60,
+ 32,
+ 38,
+ 62,
+ 40,
+ 38,
+ 57,
+ 64,
+ 36,
+ 29,
+ 46,
+ 56,
+ 74
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes age=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 49,
+ 42,
+ 39,
+ 44,
+ 42,
+ 42,
+ 42,
+ 31,
+ 41,
+ 44,
+ 54,
+ 42,
+ 46,
+ 32,
+ 43,
+ 54,
+ 50,
+ 31,
+ 31,
+ 41,
+ 35,
+ 51,
+ 24,
+ 32,
+ 59,
+ 24,
+ 39,
+ 33,
+ 38,
+ 35,
+ 38,
+ 38,
+ 30,
+ 51,
+ 45,
+ 36,
+ 31,
+ 45,
+ 41,
+ 27,
+ 33,
+ 33,
+ 35,
+ 40,
+ 40,
+ 36,
+ 35,
+ 32,
+ 42,
+ 45,
+ 39,
+ 41,
+ 30,
+ 50,
+ 30,
+ 45,
+ 35,
+ 29,
+ 45,
+ 26,
+ 40,
+ 49,
+ 26,
+ 37,
+ 51,
+ 46,
+ 35,
+ 57,
+ 28,
+ 57,
+ 48,
+ 28,
+ 38,
+ 34,
+ 52,
+ 33,
+ 32,
+ 31,
+ 35,
+ 39,
+ 42,
+ 55,
+ 42,
+ 45,
+ 30,
+ 35,
+ 31,
+ 36,
+ 46,
+ 25,
+ 45,
+ 56,
+ 30,
+ 32,
+ 37,
+ 58,
+ 35,
+ 49,
+ 47,
+ 55,
+ 50,
+ 32,
+ 33,
+ 46,
+ 39,
+ 39,
+ 56,
+ 58,
+ 29,
+ 58,
+ 43,
+ 39,
+ 38,
+ 28,
+ 24,
+ 42,
+ 29,
+ 34,
+ 47,
+ 31,
+ 39,
+ 52,
+ 30,
+ 52,
+ 57,
+ 34,
+ 40,
+ 33,
+ 54,
+ 33,
+ 41,
+ 30,
+ 59,
+ 39,
+ 38,
+ 34,
+ 31,
+ 31,
+ 40,
+ 37,
+ 36,
+ 37,
+ 34,
+ 40,
+ 48,
+ 30,
+ 50,
+ 31,
+ 41,
+ 37,
+ 29,
+ 49,
+ 42,
+ 32,
+ 40,
+ 37,
+ 31,
+ 46,
+ 38,
+ 60,
+ 30,
+ 28,
+ 42,
+ 26,
+ 55,
+ 59,
+ 26,
+ 34,
+ 32,
+ 56,
+ 48,
+ 41,
+ 24,
+ 31,
+ 40,
+ 37,
+ 52,
+ 30,
+ 39,
+ 38,
+ 35,
+ 34,
+ 31,
+ 32,
+ 33,
+ 40,
+ 36,
+ 52,
+ 46,
+ 28,
+ 31,
+ 34,
+ 39,
+ 31,
+ 29,
+ 34,
+ 39,
+ 33,
+ 38,
+ 32,
+ 48,
+ 47,
+ 41,
+ 40,
+ 29,
+ 26,
+ 24,
+ 34,
+ 36,
+ 38,
+ 27,
+ 42,
+ 29,
+ 34,
+ 37,
+ 30,
+ 53,
+ 32,
+ 31,
+ 48,
+ 36,
+ 28,
+ 35,
+ 49,
+ 43,
+ 44,
+ 25,
+ 35,
+ 41,
+ 37,
+ 36,
+ 43,
+ 31,
+ 39,
+ 31,
+ 47,
+ 28,
+ 37,
+ 52,
+ 30,
+ 30,
+ 36,
+ 31,
+ 35,
+ 43,
+ 29,
+ 24,
+ 28,
+ 41,
+ 59,
+ 31,
+ 28,
+ 28,
+ 60,
+ 47,
+ 29,
+ 38,
+ 31,
+ 42,
+ 37,
+ 40,
+ 29,
+ 31,
+ 36,
+ 29,
+ 43,
+ 43,
+ 31,
+ 38,
+ 35,
+ 42,
+ 40,
+ 39,
+ 30,
+ 48,
+ 36,
+ 58,
+ 31,
+ 27,
+ 53,
+ 25,
+ 40,
+ 42,
+ 34,
+ 52,
+ 40,
+ 31,
+ 31,
+ 32,
+ 56,
+ 50,
+ 31,
+ 35,
+ 36,
+ 29,
+ 47,
+ 37,
+ 50,
+ 39,
+ 33,
+ 25,
+ 48,
+ 35,
+ 29,
+ 25,
+ 29,
+ 34,
+ 42,
+ 36,
+ 27,
+ 27,
+ 50,
+ 34,
+ 30,
+ 43,
+ 27,
+ 30,
+ 26,
+ 31,
+ 31,
+ 35,
+ 36,
+ 42,
+ 31,
+ 31,
+ 31,
+ 51,
+ 31,
+ 31,
+ 26,
+ 44,
+ 34,
+ 58,
+ 28,
+ 27,
+ 30,
+ 34,
+ 33,
+ 32,
+ 26,
+ 43,
+ 42,
+ 28,
+ 54,
+ 31,
+ 55,
+ 31,
+ 25,
+ 42,
+ 48,
+ 42,
+ 31,
+ 23,
+ 31,
+ 30,
+ 33,
+ 33,
+ 30,
+ 38,
+ 35,
+ 41,
+ 29,
+ 43,
+ 26,
+ 50,
+ 39,
+ 31,
+ 23,
+ 33,
+ 35,
+ 50,
+ 57,
+ 36,
+ 27,
+ 26,
+ 54,
+ 44,
+ 42,
+ 54,
+ 57,
+ 38,
+ 24,
+ 43,
+ 33,
+ 35,
+ 26,
+ 33,
+ 50,
+ 26,
+ 34,
+ 39,
+ 34,
+ 34,
+ 32,
+ 48,
+ 34,
+ 27,
+ 43,
+ 27,
+ 49,
+ 34,
+ 23,
+ 23,
+ 29,
+ 50,
+ 55,
+ 35,
+ 33,
+ 51,
+ 30,
+ 34,
+ 24,
+ 31,
+ 25,
+ 27,
+ 23,
+ 39,
+ 32,
+ 23,
+ 29,
+ 24,
+ 27,
+ 31,
+ 31,
+ 35,
+ 26,
+ 42,
+ 41,
+ 37,
+ 31,
+ 27,
+ 31,
+ 35,
+ 29,
+ 29,
+ 33,
+ 38,
+ 37,
+ 32,
+ 24,
+ 56,
+ 33,
+ 46,
+ 39,
+ 25,
+ 33,
+ 26,
+ 35,
+ 30,
+ 57,
+ 43,
+ 40,
+ 36,
+ 39,
+ 44,
+ 31,
+ 22,
+ 39,
+ 41,
+ 28,
+ 43,
+ 43,
+ 32,
+ 29,
+ 29,
+ 33,
+ 28,
+ 30,
+ 41,
+ 30,
+ 33,
+ 33,
+ 35,
+ 50,
+ 35,
+ 27,
+ 29,
+ 27,
+ 36,
+ 38,
+ 31,
+ 31,
+ 31,
+ 55,
+ 28,
+ 28,
+ 30,
+ 36,
+ 30,
+ 23,
+ 31,
+ 21,
+ 49,
+ 30,
+ 36,
+ 47,
+ 60,
+ 36,
+ 32,
+ 41,
+ 57,
+ 34,
+ 48,
+ 30,
+ 48,
+ 45,
+ 37,
+ 33,
+ 27,
+ 27,
+ 27,
+ 50,
+ 36,
+ 39,
+ 55,
+ 60,
+ 59,
+ 28,
+ 39,
+ 43,
+ 50,
+ 47,
+ 59,
+ 55,
+ 46,
+ 44,
+ 40,
+ 40,
+ 48,
+ 37,
+ 52,
+ 43,
+ 45,
+ 50,
+ 53,
+ 60,
+ 33,
+ 60,
+ 48,
+ 44,
+ 50,
+ 23,
+ 40,
+ 35,
+ 30,
+ 32,
+ 52,
+ 33,
+ 25,
+ 37,
+ 34,
+ 31,
+ 36,
+ 35,
+ 43,
+ 40,
+ 39,
+ 32,
+ 32,
+ 33,
+ 36,
+ 42,
+ 37,
+ 33,
+ 42,
+ 37,
+ 24,
+ 32,
+ 28,
+ 38,
+ 28,
+ 28,
+ 39,
+ 22,
+ 42,
+ 36,
+ 58,
+ 33,
+ 54,
+ 52,
+ 47,
+ 47,
+ 43,
+ 58,
+ 52,
+ 47,
+ 39,
+ 42,
+ 44,
+ 31,
+ 43,
+ 41,
+ 42,
+ 40,
+ 32,
+ 34,
+ 53,
+ 37,
+ 32,
+ 32,
+ 37,
+ 31,
+ 31,
+ 46,
+ 37,
+ 44,
+ 43,
+ 46,
+ 30,
+ 38,
+ 48,
+ 44,
+ 32,
+ 34,
+ 33,
+ 39,
+ 45,
+ 32,
+ 45,
+ 30,
+ 30,
+ 31,
+ 35,
+ 45,
+ 52,
+ 40,
+ 37,
+ 30,
+ 41,
+ 50,
+ 29,
+ 38,
+ 58,
+ 33,
+ 42,
+ 29,
+ 35,
+ 44,
+ 38,
+ 30,
+ 38,
+ 36,
+ 52,
+ 45,
+ 45,
+ 34,
+ 30,
+ 36,
+ 36,
+ 32,
+ 38,
+ 53,
+ 31,
+ 52,
+ 32,
+ 33,
+ 31,
+ 35,
+ 48,
+ 53,
+ 33,
+ 32,
+ 32,
+ 31,
+ 32,
+ 36,
+ 41,
+ 32,
+ 32,
+ 33,
+ 45,
+ 33,
+ 32,
+ 32,
+ 33,
+ 43,
+ 35,
+ 50,
+ 33,
+ 39,
+ 50,
+ 46,
+ 40,
+ 34,
+ 54,
+ 39,
+ 34,
+ 31,
+ 34,
+ 34,
+ 45,
+ 54,
+ 31,
+ 35,
+ 54,
+ 30,
+ 35,
+ 45,
+ 30,
+ 35,
+ 35,
+ 41,
+ 54,
+ 47,
+ 49,
+ 35,
+ 45,
+ 56,
+ 31,
+ 31,
+ 29,
+ 39,
+ 45,
+ 29,
+ 42,
+ 56,
+ 57,
+ 29,
+ 30,
+ 31,
+ 41,
+ 36,
+ 29,
+ 59,
+ 48,
+ 34,
+ 51,
+ 52,
+ 30,
+ 37,
+ 29,
+ 56,
+ 33,
+ 35,
+ 33,
+ 33,
+ 48,
+ 29,
+ 53,
+ 29,
+ 53,
+ 35,
+ 46,
+ 35,
+ 35,
+ 47,
+ 32,
+ 40,
+ 30,
+ 36,
+ 38,
+ 55,
+ 49,
+ 50,
+ 57,
+ 57,
+ 58,
+ 40,
+ 39,
+ 31,
+ 51,
+ 51,
+ 44,
+ 55,
+ 47,
+ 30,
+ 47,
+ 30,
+ 29,
+ 37,
+ 42,
+ 38,
+ 30,
+ 42,
+ 39,
+ 30,
+ 42,
+ 48,
+ 30,
+ 39,
+ 44,
+ 59,
+ 33,
+ 32,
+ 40,
+ 27,
+ 30,
+ 36,
+ 43,
+ 48,
+ 37,
+ 25,
+ 39,
+ 39,
+ 38,
+ 46,
+ 29,
+ 31,
+ 26,
+ 31,
+ 45,
+ 31,
+ 34,
+ 27,
+ 33,
+ 33,
+ 30,
+ 34,
+ 36,
+ 56,
+ 31,
+ 34,
+ 38,
+ 42,
+ 32,
+ 30,
+ 50,
+ 25,
+ 39,
+ 27,
+ 41,
+ 29,
+ 31,
+ 29,
+ 58,
+ 32,
+ 33,
+ 36,
+ 58,
+ 42,
+ 37,
+ 35,
+ 34,
+ 55,
+ 55,
+ 48,
+ 48,
+ 42,
+ 31,
+ 32,
+ 35,
+ 45,
+ 32,
+ 57,
+ 44,
+ 50,
+ 40,
+ 41,
+ 30,
+ 30,
+ 30,
+ 57,
+ 54,
+ 39,
+ 38,
+ 50,
+ 39,
+ 35,
+ 37,
+ 36,
+ 35,
+ 31,
+ 58,
+ 32,
+ 35,
+ 34,
+ 35,
+ 36,
+ 29,
+ 29,
+ 46,
+ 43,
+ 43,
+ 30,
+ 33,
+ 51,
+ 34,
+ 43,
+ 35,
+ 31,
+ 36,
+ 36,
+ 29,
+ 40,
+ 30,
+ 31,
+ 43,
+ 35,
+ 37,
+ 35,
+ 36,
+ 56,
+ 37,
+ 57,
+ 48,
+ 52,
+ 36,
+ 30,
+ 56,
+ 53,
+ 36,
+ 58,
+ 32,
+ 29,
+ 34,
+ 53,
+ 43,
+ 35,
+ 32,
+ 32,
+ 45,
+ 40,
+ 30,
+ 29,
+ 56,
+ 42,
+ 47,
+ 30,
+ 30,
+ 44,
+ 33,
+ 50,
+ 34,
+ 34,
+ 57,
+ 45,
+ 37,
+ 29,
+ 53,
+ 34,
+ 32,
+ 34,
+ 32,
+ 36,
+ 54,
+ 56,
+ 38,
+ 30,
+ 34,
+ 33,
+ 34,
+ 35,
+ 31,
+ 30,
+ 29,
+ 48,
+ 53,
+ 34,
+ 29,
+ 30,
+ 33,
+ 35,
+ 35,
+ 37,
+ 40,
+ 50,
+ 46,
+ 57,
+ 40,
+ 29,
+ 34,
+ 58,
+ 39,
+ 42,
+ 41,
+ 45,
+ 34,
+ 57,
+ 56,
+ 48,
+ 35,
+ 29,
+ 56,
+ 29,
+ 30,
+ 44,
+ 26,
+ 38,
+ 35,
+ 30,
+ 26,
+ 44,
+ 26,
+ 28,
+ 26,
+ 70,
+ 48,
+ 26,
+ 28,
+ 66,
+ 34,
+ 35,
+ 28,
+ 28,
+ 36,
+ 43,
+ 28,
+ 41,
+ 41,
+ 38,
+ 33,
+ 38,
+ 38,
+ 38,
+ 38,
+ 38,
+ 34,
+ 34,
+ 38,
+ 38,
+ 34,
+ 34,
+ 34,
+ 38,
+ 32,
+ 55,
+ 38,
+ 32,
+ 31,
+ 32,
+ 38,
+ 39,
+ 38,
+ 37,
+ 32,
+ 88,
+ 29,
+ 88,
+ 29,
+ 88,
+ 88,
+ 88,
+ 88,
+ 88,
+ 88,
+ 27,
+ 26,
+ 66,
+ 29,
+ 26,
+ 19,
+ 30,
+ 28,
+ 28,
+ 28,
+ 33,
+ 21,
+ 37,
+ 33,
+ 29,
+ 34,
+ 33,
+ 60,
+ 24,
+ 68,
+ 33,
+ 32,
+ 36,
+ 31,
+ 54,
+ 54,
+ 31,
+ 19,
+ 32,
+ 32,
+ 31,
+ 46,
+ 50,
+ 28,
+ 28,
+ 33,
+ 28,
+ 35,
+ 36,
+ 26,
+ 20,
+ 68,
+ 28,
+ 28,
+ 28,
+ 56,
+ 41,
+ 25,
+ 73,
+ 31,
+ 27,
+ 25,
+ 28,
+ 32,
+ 28,
+ 34,
+ 32,
+ 32,
+ 32,
+ 62,
+ 59,
+ 44,
+ 33,
+ 49,
+ 33,
+ 33,
+ 63,
+ 30,
+ 30,
+ 30,
+ 44,
+ 28,
+ 28,
+ 28,
+ 26,
+ 32,
+ 41,
+ 55,
+ 55,
+ 29,
+ 37,
+ 60,
+ 41,
+ 34,
+ 32,
+ 19,
+ 31,
+ 44,
+ 25,
+ 25,
+ 55,
+ 46,
+ 27,
+ 48,
+ 29,
+ 25,
+ 24,
+ 35,
+ 40,
+ 38,
+ 29,
+ 30,
+ 29,
+ 36,
+ 32,
+ 43,
+ 33,
+ 33,
+ 30,
+ 30,
+ 30,
+ 30,
+ 33,
+ 30,
+ 30,
+ 45,
+ 29,
+ 36,
+ 41,
+ 73,
+ 34,
+ 34,
+ 34,
+ 34,
+ 24,
+ 59,
+ 24,
+ 24,
+ 30,
+ 42,
+ 26,
+ 26,
+ 57,
+ 30,
+ 30,
+ 30,
+ 28,
+ 42,
+ 46,
+ 57,
+ 61,
+ 69,
+ 26,
+ 28,
+ 70,
+ 32,
+ 70,
+ 43,
+ 25,
+ 47,
+ 58,
+ 49,
+ 32,
+ 42,
+ 29,
+ 26,
+ 66,
+ 67,
+ 37,
+ 33,
+ 33,
+ 26,
+ 58,
+ 31,
+ 25,
+ 30,
+ 66,
+ 41,
+ 36,
+ 51,
+ 26,
+ 26,
+ 26,
+ 57,
+ 29,
+ 32,
+ 45,
+ 32,
+ 47,
+ 29,
+ 50,
+ 33,
+ 33,
+ 24,
+ 37,
+ 50,
+ 56,
+ 30,
+ 40,
+ 26,
+ 29,
+ 32,
+ 33,
+ 36,
+ 54,
+ 37,
+ 43,
+ 27,
+ 43,
+ 35,
+ 33,
+ 41,
+ 34,
+ 32,
+ 38,
+ 38,
+ 41,
+ 27,
+ 22,
+ 34,
+ 34,
+ 26,
+ 55,
+ 28,
+ 45,
+ 38,
+ 39,
+ 48,
+ 45,
+ 40,
+ 48,
+ 48,
+ 25,
+ 59,
+ 40,
+ 43,
+ 40,
+ 26,
+ 26,
+ 32,
+ 34,
+ 68,
+ 26,
+ 57,
+ 26,
+ 55,
+ 50,
+ 34,
+ 71,
+ 56,
+ 75,
+ 35,
+ 56,
+ 24,
+ 59,
+ 25,
+ 25,
+ 21,
+ 34,
+ 46,
+ 24,
+ 29,
+ 25,
+ 31,
+ 35,
+ 31,
+ 69,
+ 28,
+ 37,
+ 54,
+ 64,
+ 31,
+ 56,
+ 78,
+ 57,
+ 31,
+ 75,
+ 47,
+ 54,
+ 54,
+ 34,
+ 75,
+ 53,
+ 31,
+ 47,
+ 78,
+ 64,
+ 27,
+ 23,
+ 30,
+ 23,
+ 23,
+ 52,
+ 23,
+ 29,
+ 64,
+ 29,
+ 39,
+ 37,
+ 25,
+ 55,
+ 54,
+ 61,
+ 65,
+ 60,
+ 52,
+ 58,
+ 60,
+ 19,
+ 25,
+ 61,
+ 52,
+ 44,
+ 35,
+ 50,
+ 42,
+ 43,
+ 26,
+ 50,
+ 64,
+ 27,
+ 38,
+ 28,
+ 27,
+ 27,
+ 38,
+ 23,
+ 38,
+ 33,
+ 47,
+ 33,
+ 27,
+ 79,
+ 60,
+ 60,
+ 60,
+ 31,
+ 39,
+ 28,
+ 26,
+ 30,
+ 30,
+ 53,
+ 35,
+ 40,
+ 51,
+ 60,
+ 48,
+ 49,
+ 34,
+ 48,
+ 53,
+ 24,
+ 46,
+ 40,
+ 41,
+ 29,
+ 40,
+ 31,
+ 40,
+ 39,
+ 45,
+ 30,
+ 48,
+ 31,
+ 34,
+ 30,
+ 38,
+ 54,
+ 36,
+ 37,
+ 33,
+ 32,
+ 59,
+ 30,
+ 35,
+ 38,
+ 27,
+ 44,
+ 35,
+ 51,
+ 46,
+ 51,
+ 51,
+ 39,
+ 51,
+ 36,
+ 39,
+ 42,
+ 48,
+ 29,
+ 30,
+ 30,
+ 51,
+ 28,
+ 39,
+ 24,
+ 56,
+ 25,
+ 46,
+ 60,
+ 47,
+ 37,
+ 47,
+ 69,
+ 46,
+ 48,
+ 49,
+ 30,
+ 37,
+ 28,
+ 48,
+ 58,
+ 36,
+ 51,
+ 33,
+ 60,
+ 33,
+ 55,
+ 22,
+ 40,
+ 28,
+ 41,
+ 35,
+ 20,
+ 38,
+ 41,
+ 33,
+ 24,
+ 36,
+ 58,
+ 49,
+ 41,
+ 49,
+ 49,
+ 48,
+ 30,
+ 66,
+ 33,
+ 30,
+ 38,
+ 24,
+ 53,
+ 32,
+ 33,
+ 29,
+ 31,
+ 61,
+ 32,
+ 60,
+ 32,
+ 35,
+ 64,
+ 56,
+ 30,
+ 32,
+ 42,
+ 56,
+ 35,
+ 59,
+ 36,
+ 39,
+ 35,
+ 60,
+ 36,
+ 60,
+ 26,
+ 30,
+ 31,
+ 39,
+ 30,
+ 39,
+ 65,
+ 28,
+ 36,
+ 50,
+ 35,
+ 31,
+ 57,
+ 36,
+ 42,
+ 53,
+ 30,
+ 59,
+ 31,
+ 39,
+ 20,
+ 42,
+ 44,
+ 51,
+ 58,
+ 57,
+ 30,
+ 22,
+ 61,
+ 26,
+ 40,
+ 81,
+ 56,
+ 50,
+ 46,
+ 53,
+ 39,
+ 59,
+ 57,
+ 50,
+ 44,
+ 24,
+ 56,
+ 50,
+ 60,
+ 33,
+ 49,
+ 39,
+ 41,
+ 35,
+ 58,
+ 50,
+ 36,
+ 34,
+ 35,
+ 30,
+ 34,
+ 44,
+ 34,
+ 54,
+ 38,
+ 41,
+ 32,
+ 36,
+ 48,
+ 45,
+ 37,
+ 52,
+ 34,
+ 36,
+ 41,
+ 41,
+ 40,
+ 28,
+ 41,
+ 39,
+ 46,
+ 31,
+ 57,
+ 29,
+ 37,
+ 33,
+ 28,
+ 41,
+ 28,
+ 27,
+ 28,
+ 51,
+ 33,
+ 36,
+ 45,
+ 52,
+ 33,
+ 38,
+ 35,
+ 30,
+ 32,
+ 28,
+ 38,
+ 30,
+ 28,
+ 45,
+ 38,
+ 32,
+ 29,
+ 39,
+ 34,
+ 27,
+ 32,
+ 55,
+ 29,
+ 54,
+ 35,
+ 36,
+ 46,
+ 48,
+ 41,
+ 35,
+ 34,
+ 33,
+ 45,
+ 34,
+ 31,
+ 36,
+ 38,
+ 42,
+ 35,
+ 35,
+ 35,
+ 27,
+ 33,
+ 33,
+ 33,
+ 58,
+ 33,
+ 25,
+ 34,
+ 33,
+ 30,
+ 23,
+ 32,
+ 31,
+ 26,
+ 31,
+ 34,
+ 31,
+ 50,
+ 27,
+ 29,
+ 27,
+ 26,
+ 39,
+ 23,
+ 27,
+ 31,
+ 46,
+ 33,
+ 47,
+ 38,
+ 33,
+ 32,
+ 34,
+ 38,
+ 35,
+ 48,
+ 26,
+ 36,
+ 50,
+ 59,
+ 48,
+ 45,
+ 28,
+ 37,
+ 33,
+ 43,
+ 48,
+ 48,
+ 28,
+ 39,
+ 48,
+ 36,
+ 28,
+ 32,
+ 28,
+ 43,
+ 32,
+ 39,
+ 41,
+ 31,
+ 32,
+ 31,
+ 30,
+ 38,
+ 33,
+ 33,
+ 28,
+ 29,
+ 28,
+ 43,
+ 31,
+ 31,
+ 28,
+ 30,
+ 34,
+ 32,
+ 24,
+ 34,
+ 32,
+ 24,
+ 31,
+ 33,
+ 28,
+ 31,
+ 31,
+ 29,
+ 34,
+ 29,
+ 29,
+ 53,
+ 35,
+ 41,
+ 51,
+ 31,
+ 34,
+ 34,
+ 38,
+ 38,
+ 31,
+ 31,
+ 36,
+ 30,
+ 38,
+ 28,
+ 42,
+ 31,
+ 38,
+ 51,
+ 58,
+ 29,
+ 38,
+ 52,
+ 43,
+ 33,
+ 44,
+ 36,
+ 26,
+ 26,
+ 35,
+ 29,
+ 25,
+ 37,
+ 38,
+ 33,
+ 44,
+ 31,
+ 28,
+ 39,
+ 42,
+ 33,
+ 57,
+ 28,
+ 30,
+ 23,
+ 31,
+ 28,
+ 27,
+ 51,
+ 31,
+ 25,
+ 26,
+ 32,
+ 27,
+ 40,
+ 29,
+ 25,
+ 54,
+ 31,
+ 37,
+ 28,
+ 35,
+ 32,
+ 29,
+ 27,
+ 34,
+ 42,
+ 35,
+ 22,
+ 43,
+ 29,
+ 34,
+ 59,
+ 37,
+ 39,
+ 30,
+ 30,
+ 23,
+ 29,
+ 24,
+ 33,
+ 32,
+ 30,
+ 43,
+ 29,
+ 34,
+ 36,
+ 49,
+ 39,
+ 35,
+ 29,
+ 24,
+ 44,
+ 28,
+ 30,
+ 41,
+ 31,
+ 51,
+ 43,
+ 47,
+ 25,
+ 29,
+ 25,
+ 45,
+ 31,
+ 50,
+ 30,
+ 35,
+ 41,
+ 44,
+ 57,
+ 28,
+ 44,
+ 33,
+ 29,
+ 33,
+ 37,
+ 33,
+ 29,
+ 45,
+ 46,
+ 33,
+ 44,
+ 30,
+ 33,
+ 39,
+ 39,
+ 43,
+ 46,
+ 32,
+ 29,
+ 33,
+ 33,
+ 37,
+ 58,
+ 52,
+ 40,
+ 38,
+ 45,
+ 26,
+ 35,
+ 48,
+ 19,
+ 27,
+ 18,
+ 48,
+ 57,
+ 43,
+ 26,
+ 28,
+ 31,
+ 35,
+ 30,
+ 37,
+ 37,
+ 44,
+ 53,
+ 36,
+ 54,
+ 55,
+ 56,
+ 46,
+ 34,
+ 54,
+ 43,
+ 37,
+ 36,
+ 50,
+ 35,
+ 42,
+ 30,
+ 31,
+ 28,
+ 36,
+ 34,
+ 60,
+ 31,
+ 58,
+ 33,
+ 27,
+ 33,
+ 28,
+ 31,
+ 36,
+ 25,
+ 22,
+ 28,
+ 27,
+ 32,
+ 25,
+ 21,
+ 28,
+ 26,
+ 41,
+ 29,
+ 30,
+ 31,
+ 54,
+ 34,
+ 31,
+ 50,
+ 56,
+ 29,
+ 26,
+ 33,
+ 32,
+ 26,
+ 32,
+ 38,
+ 56,
+ 26,
+ 32,
+ 38,
+ 24,
+ 26,
+ 60,
+ 29,
+ 35,
+ 32,
+ 27,
+ 37,
+ 36,
+ 36,
+ 29,
+ 36,
+ 57,
+ 52,
+ 28,
+ 31,
+ 31,
+ 59,
+ 32,
+ 33,
+ 37,
+ 45,
+ 65,
+ 49,
+ 21,
+ 36,
+ 29,
+ 49,
+ 45,
+ 36,
+ 32,
+ 28,
+ 26,
+ 33,
+ 26,
+ 26,
+ 43,
+ 40,
+ 27,
+ 58,
+ 32,
+ 31,
+ 46,
+ 33,
+ 32,
+ 32,
+ 37,
+ 41,
+ 34,
+ 31,
+ 32,
+ 25,
+ 41,
+ 41,
+ 46,
+ 32,
+ 32,
+ 32,
+ 28,
+ 33,
+ 46,
+ 23,
+ 30,
+ 44,
+ 28,
+ 40,
+ 47,
+ 30,
+ 46,
+ 25,
+ 31,
+ 31,
+ 33,
+ 28,
+ 43,
+ 28,
+ 40,
+ 24,
+ 30,
+ 31,
+ 59,
+ 33,
+ 53,
+ 28,
+ 40,
+ 40,
+ 58,
+ 37,
+ 28,
+ 28,
+ 28,
+ 34,
+ 29,
+ 31,
+ 28,
+ 29,
+ 29,
+ 29,
+ 38,
+ 48,
+ 30,
+ 36,
+ 29,
+ 42,
+ 23,
+ 29,
+ 40,
+ 29,
+ 69,
+ 30,
+ 69,
+ 52,
+ 33,
+ 35,
+ 53,
+ 51,
+ 51,
+ 45,
+ 29,
+ 26,
+ 21,
+ 25,
+ 42,
+ 24,
+ 21,
+ 30,
+ 50,
+ 25,
+ 36,
+ 36,
+ 30,
+ 25,
+ 31,
+ 35,
+ 32,
+ 28,
+ 53,
+ 35,
+ 32,
+ 30,
+ 28,
+ 25,
+ 53,
+ 53,
+ 22,
+ 52,
+ 29,
+ 46,
+ 30,
+ 30,
+ 32,
+ 28,
+ 32,
+ 24,
+ 51,
+ 28,
+ 25,
+ 31,
+ 21,
+ 51,
+ 51,
+ 29,
+ 51,
+ 31,
+ 48,
+ 28,
+ 25,
+ 35,
+ 20,
+ 30,
+ 34,
+ 53,
+ 36,
+ 36,
+ 30,
+ 29,
+ 32,
+ 27,
+ 53,
+ 27,
+ 43,
+ 47,
+ 36,
+ 43,
+ 44,
+ 49,
+ 29,
+ 38,
+ 25,
+ 32,
+ 54,
+ 54,
+ 55,
+ 22,
+ 22,
+ 50,
+ 33,
+ 28,
+ 32,
+ 41,
+ 35,
+ 46,
+ 30,
+ 36,
+ 29,
+ 31,
+ 74,
+ 30,
+ 57,
+ 57,
+ 29,
+ 52,
+ 29,
+ 21,
+ 37,
+ 35,
+ 53,
+ 53,
+ 40,
+ 55,
+ 57,
+ 25,
+ 29,
+ 25,
+ 29,
+ 53,
+ 49,
+ 25,
+ 32,
+ 40,
+ 40,
+ 50,
+ 39,
+ 36,
+ 24,
+ 36,
+ 64,
+ 33,
+ 50,
+ 55,
+ 51,
+ 61,
+ 45,
+ 45,
+ 50,
+ 60,
+ 59,
+ 59,
+ 51,
+ 46,
+ 46,
+ 32,
+ 32,
+ 50,
+ 60,
+ 51,
+ 46,
+ 57,
+ 21,
+ 29,
+ 47,
+ 29,
+ 48,
+ 30,
+ 33,
+ 56,
+ 31,
+ 23,
+ 37,
+ 28,
+ 53,
+ 33,
+ 26,
+ 23,
+ 26,
+ 23,
+ 33,
+ 40,
+ 31,
+ 42,
+ 42,
+ 29,
+ 20,
+ 32,
+ 26,
+ 32,
+ 29,
+ 23,
+ 23,
+ 27,
+ 35,
+ 51,
+ 30,
+ 54,
+ 27,
+ 38,
+ 44,
+ 42,
+ 61,
+ 18,
+ 47,
+ 52,
+ 51,
+ 34,
+ 59,
+ 34,
+ 37,
+ 57,
+ 59,
+ 20,
+ 32,
+ 37,
+ 39,
+ 46,
+ 37,
+ 52,
+ 32,
+ 52,
+ 24,
+ 54,
+ 74,
+ 31,
+ 35,
+ 25,
+ 44,
+ 76,
+ 76,
+ 46,
+ 33,
+ 29,
+ 75,
+ 25,
+ 32,
+ 70,
+ 24,
+ 41,
+ 41,
+ 33,
+ 73,
+ 48,
+ 28,
+ 36,
+ 36,
+ 29,
+ 76,
+ 31,
+ 33,
+ 43,
+ 36,
+ 38,
+ 38,
+ 36,
+ 36,
+ 37,
+ 65,
+ 33,
+ 63,
+ 31,
+ 33,
+ 52,
+ 37,
+ 34,
+ 31,
+ 58,
+ 33,
+ 26,
+ 52,
+ 52,
+ 85,
+ 30,
+ 57,
+ 35,
+ 26,
+ 44,
+ 58,
+ 59,
+ 34,
+ 49,
+ 27,
+ 36,
+ 26,
+ 49,
+ 26,
+ 26,
+ 27,
+ 74,
+ 32,
+ 60,
+ 56,
+ 27,
+ 32,
+ 48,
+ 20,
+ 20,
+ 33,
+ 28,
+ 56,
+ 38,
+ 28,
+ 23,
+ 36,
+ 22,
+ 29,
+ 31,
+ 30,
+ 39,
+ 32,
+ 46,
+ 39,
+ 46,
+ 22,
+ 36,
+ 40,
+ 74,
+ 33,
+ 39,
+ 57,
+ 36,
+ 28,
+ 26,
+ 39,
+ 35,
+ 61,
+ 42,
+ 54,
+ 58,
+ 55,
+ 71,
+ 70,
+ 28,
+ 46,
+ 42,
+ 35,
+ 38,
+ 28,
+ 31,
+ 29,
+ 31,
+ 62,
+ 76,
+ 73,
+ 67,
+ 80,
+ 25,
+ 25,
+ 34,
+ 28,
+ 48,
+ 44,
+ 23,
+ 28,
+ 41,
+ 74,
+ 22,
+ 67,
+ 36,
+ 61,
+ 34,
+ 26,
+ 47,
+ 37,
+ 50,
+ 34,
+ 56,
+ 33,
+ 20,
+ 35,
+ 74,
+ 38,
+ 35,
+ 37,
+ 32,
+ 33,
+ 74,
+ 64,
+ 34,
+ 33,
+ 37,
+ 66,
+ 36,
+ 34,
+ 35,
+ 32,
+ 71,
+ 24,
+ 25,
+ 28,
+ 28,
+ 51,
+ 61,
+ 61,
+ 87,
+ 54,
+ 24,
+ 34,
+ 54,
+ 62,
+ 79,
+ 30,
+ 36,
+ 39,
+ 47,
+ 38,
+ 63,
+ 51,
+ 58,
+ 63,
+ 62,
+ 58,
+ 56,
+ 43,
+ 27,
+ 42,
+ 59,
+ 80,
+ 59,
+ 51,
+ 46,
+ 50,
+ 58,
+ 31,
+ 33,
+ 55,
+ 26,
+ 62,
+ 26,
+ 30,
+ 30,
+ 53,
+ 38,
+ 31,
+ 39,
+ 33,
+ 79,
+ 39,
+ 37,
+ 34,
+ 34,
+ 26,
+ 32,
+ 60,
+ 44,
+ 59,
+ 51,
+ 53,
+ 39,
+ 72,
+ 28,
+ 50,
+ 45,
+ 61,
+ 45,
+ 52,
+ 45,
+ 45,
+ 41,
+ 30,
+ 30,
+ 43,
+ 49,
+ 71,
+ 66,
+ 39,
+ 30,
+ 29,
+ 43,
+ 39,
+ 34,
+ 30,
+ 58,
+ 36,
+ 46,
+ 27,
+ 27,
+ 76,
+ 56,
+ 42,
+ 25,
+ 42,
+ 69,
+ 34,
+ 49,
+ 43,
+ 28,
+ 40,
+ 31,
+ 36,
+ 34,
+ 47,
+ 62,
+ 62,
+ 70,
+ 59,
+ 70,
+ 29,
+ 27,
+ 24,
+ 27,
+ 70,
+ 24,
+ 53,
+ 31,
+ 49,
+ 49,
+ 36,
+ 46,
+ 56,
+ 52,
+ 37,
+ 39,
+ 60,
+ 44,
+ 22,
+ 22,
+ 63,
+ 70,
+ 81,
+ 30,
+ 43,
+ 56,
+ 61,
+ 35,
+ 50,
+ 37,
+ 35,
+ 23,
+ 71,
+ 83,
+ 82,
+ 69,
+ 65,
+ 37,
+ 35,
+ 34,
+ 48,
+ 48,
+ 63,
+ 54,
+ 37,
+ 42,
+ 42,
+ 59,
+ 42,
+ 36,
+ 42,
+ 77,
+ 32,
+ 30,
+ 35,
+ 30,
+ 80,
+ 32,
+ 22,
+ 33,
+ 45,
+ 26,
+ 28,
+ 28,
+ 37,
+ 34,
+ 33,
+ 40,
+ 74,
+ 37,
+ 33,
+ 37,
+ 25,
+ 28,
+ 28,
+ 22,
+ 39,
+ 33,
+ 33,
+ 26,
+ 49,
+ 33,
+ 38,
+ 28,
+ 49,
+ 36,
+ 70,
+ 60,
+ 30,
+ 21,
+ 36,
+ 33,
+ 31,
+ 31,
+ 60,
+ 59,
+ 30,
+ 24,
+ 39,
+ 44,
+ 38,
+ 38,
+ 36,
+ 32,
+ 88,
+ 44,
+ 36,
+ 42,
+ 42,
+ 29,
+ 54,
+ 34,
+ 37,
+ 35,
+ 56,
+ 33,
+ 71,
+ 56,
+ 45,
+ 30,
+ 56,
+ 25,
+ 24,
+ 35,
+ 61,
+ 22,
+ 64,
+ 23,
+ 21,
+ 64,
+ 22,
+ 22,
+ 29,
+ 34,
+ 26,
+ 33,
+ 26,
+ 42,
+ 55,
+ 71,
+ 32,
+ 52,
+ 68,
+ 29,
+ 33,
+ 42,
+ 63,
+ 31,
+ 68,
+ 71,
+ 21,
+ 32,
+ 63,
+ 58,
+ 32,
+ 40,
+ 62,
+ 54,
+ 24,
+ 55,
+ 33,
+ 80,
+ 31,
+ 53,
+ 30,
+ 72,
+ 82,
+ 34,
+ 48,
+ 61,
+ 48,
+ 48,
+ 69,
+ 34,
+ 32,
+ 51,
+ 54,
+ 55,
+ 78,
+ 26,
+ 34,
+ 36,
+ 59,
+ 25,
+ 69,
+ 18,
+ 37,
+ 34,
+ 30,
+ 37,
+ 47,
+ 45,
+ 52,
+ 71,
+ 32,
+ 36,
+ 79,
+ 56,
+ 30,
+ 27,
+ 47,
+ 54,
+ 22,
+ 28,
+ 32,
+ 54,
+ 71,
+ 26,
+ 73,
+ 69,
+ 34,
+ 54,
+ 54,
+ 53,
+ 56,
+ 69,
+ 26,
+ 27,
+ 57,
+ 25,
+ 24,
+ 29,
+ 22,
+ 41,
+ 76,
+ 38,
+ 27,
+ 71,
+ 28,
+ 34,
+ 61,
+ 61,
+ 41,
+ 33,
+ 38,
+ 41,
+ 52,
+ 33,
+ 30,
+ 79,
+ 28,
+ 54,
+ 79,
+ 52,
+ 37,
+ 72,
+ 20,
+ 28,
+ 72,
+ 20,
+ 20,
+ 36,
+ 72,
+ 29,
+ 23,
+ 33,
+ 53,
+ 38,
+ 40,
+ 29,
+ 29,
+ 65,
+ 43,
+ 65,
+ 29,
+ 38,
+ 67,
+ 51,
+ 49,
+ 34,
+ 34,
+ 34,
+ 56,
+ 32,
+ 66,
+ 35,
+ 32,
+ 60,
+ 38,
+ 29,
+ 26,
+ 26,
+ 26,
+ 29,
+ 32,
+ 32,
+ 53,
+ 65,
+ 29,
+ 52,
+ 52,
+ 39,
+ 31,
+ 55,
+ 78,
+ 18,
+ 40,
+ 25,
+ 61,
+ 64,
+ 67,
+ 50,
+ 26,
+ 30,
+ 66,
+ 72,
+ 77,
+ 40,
+ 40,
+ 68,
+ 34,
+ 47,
+ 35,
+ 82,
+ 48,
+ 53,
+ 43,
+ 34,
+ 43,
+ 26,
+ 66,
+ 83,
+ 27,
+ 56,
+ 31,
+ 57,
+ 61,
+ 58,
+ 56,
+ 48,
+ 56,
+ 28,
+ 27,
+ 28,
+ 25,
+ 78,
+ 73,
+ 44,
+ 38,
+ 54,
+ 38,
+ 30,
+ 55,
+ 83,
+ 60,
+ 50,
+ 60,
+ 50,
+ 54,
+ 43,
+ 49,
+ 50,
+ 38,
+ 54,
+ 42,
+ 31,
+ 32,
+ 86,
+ 26,
+ 64,
+ 56,
+ 55,
+ 29,
+ 64,
+ 64,
+ 56,
+ 62,
+ 81,
+ 84,
+ 59,
+ 46,
+ 55,
+ 64,
+ 70,
+ 18,
+ 76,
+ 24,
+ 76,
+ 38,
+ 21,
+ 52,
+ 55,
+ 29,
+ 31,
+ 51,
+ 23,
+ 23,
+ 50,
+ 27,
+ 62,
+ 41,
+ 41,
+ 41,
+ 45,
+ 46,
+ 22,
+ 37,
+ 35,
+ 39,
+ 53,
+ 32,
+ 35,
+ 40,
+ 73,
+ 43,
+ 26,
+ 27,
+ 32,
+ 34,
+ 73,
+ 51,
+ 39,
+ 30,
+ 78,
+ 66,
+ 66,
+ 30,
+ 30,
+ 66,
+ 53,
+ 19,
+ 31,
+ 25,
+ 35,
+ 30,
+ 33,
+ 21,
+ 38,
+ 38,
+ 24,
+ 38,
+ 37,
+ 21,
+ 36,
+ 34,
+ 34,
+ 34,
+ 36,
+ 53,
+ 25,
+ 34,
+ 34,
+ 41,
+ 28,
+ 72,
+ 33,
+ 34,
+ 27,
+ 50,
+ 41,
+ 38,
+ 41,
+ 41,
+ 43,
+ 27,
+ 59,
+ 33,
+ 36,
+ 64,
+ 34,
+ 42,
+ 34,
+ 29,
+ 34,
+ 34,
+ 34,
+ 34,
+ 55,
+ 34,
+ 34,
+ 64,
+ 26,
+ 34,
+ 38,
+ 29,
+ 25,
+ 43,
+ 55,
+ 28,
+ 46,
+ 38,
+ 31,
+ 23,
+ 38,
+ 26,
+ 27,
+ 27,
+ 80,
+ 29,
+ 33,
+ 82,
+ 31,
+ 30,
+ 34,
+ 29,
+ 31,
+ 47,
+ 48,
+ 33,
+ 46,
+ 31,
+ 52,
+ 23,
+ 52,
+ 28,
+ 38,
+ 43,
+ 34,
+ 29,
+ 39,
+ 75,
+ 59,
+ 29,
+ 39,
+ 39,
+ 27,
+ 27,
+ 80,
+ 41,
+ 66,
+ 27,
+ 58,
+ 57,
+ 35,
+ 68,
+ 59,
+ 27,
+ 47,
+ 27,
+ 49,
+ 64,
+ 56,
+ 56,
+ 56,
+ 56,
+ 27,
+ 60,
+ 33,
+ 41,
+ 35,
+ 32,
+ 35,
+ 33,
+ 46,
+ 27,
+ 61,
+ 58,
+ 53,
+ 58,
+ 26,
+ 71,
+ 37,
+ 54,
+ 48,
+ 59,
+ 35,
+ 63,
+ 26,
+ 80,
+ 49,
+ 20,
+ 20,
+ 53,
+ 36,
+ 48,
+ 74,
+ 48,
+ 48,
+ 35,
+ 37,
+ 35,
+ 41,
+ 68,
+ 50,
+ 82,
+ 82,
+ 74,
+ 74,
+ 75,
+ 66,
+ 57,
+ 80,
+ 80,
+ 80,
+ 57,
+ 58,
+ 53,
+ 57,
+ 77,
+ 80,
+ 43,
+ 41,
+ 47,
+ 73,
+ 26,
+ 46,
+ 38,
+ 32,
+ 29,
+ 20,
+ 71,
+ 39,
+ 37,
+ 30,
+ 29,
+ 48,
+ 33,
+ 50,
+ 38,
+ 31,
+ 37,
+ 35,
+ 52,
+ 33,
+ 38,
+ 35,
+ 31,
+ 21,
+ 39,
+ 48,
+ 43,
+ 52,
+ 24,
+ 52,
+ 51,
+ 24,
+ 24,
+ 52,
+ 29,
+ 72,
+ 37,
+ 33,
+ 52,
+ 52,
+ 52,
+ 52,
+ 37,
+ 44,
+ 30,
+ 30,
+ 44,
+ 38,
+ 56,
+ 59,
+ 58,
+ 50,
+ 77,
+ 61,
+ 48,
+ 48,
+ 40,
+ 48,
+ 77,
+ 45,
+ 58,
+ 31,
+ 41,
+ 28,
+ 29,
+ 39,
+ 70,
+ 40,
+ 40,
+ 29,
+ 52,
+ 30,
+ 68,
+ 33,
+ 76,
+ 65,
+ 52,
+ 33,
+ 71,
+ 29,
+ 33,
+ 60,
+ 63,
+ 33,
+ 74,
+ 47,
+ 50,
+ 48,
+ 28,
+ 68,
+ 46,
+ 31,
+ 58,
+ 46,
+ 31,
+ 61,
+ 34,
+ 45,
+ 24,
+ 80,
+ 24,
+ 76,
+ 45,
+ 36,
+ 36,
+ 77,
+ 22,
+ 46,
+ 69,
+ 31,
+ 28,
+ 28,
+ 70,
+ 29,
+ 60,
+ 49,
+ 36,
+ 37,
+ 43,
+ 38,
+ 37,
+ 32,
+ 29,
+ 33,
+ 56,
+ 27,
+ 29,
+ 76,
+ 29,
+ 76,
+ 51,
+ 39,
+ 22,
+ 48,
+ 29,
+ 34,
+ 32,
+ 47,
+ 35,
+ 34,
+ 29,
+ 34,
+ 33,
+ 44,
+ 44,
+ 28,
+ 29,
+ 50,
+ 36,
+ 23,
+ 39,
+ 89,
+ 30,
+ 21,
+ 30,
+ 36,
+ 39,
+ 59,
+ 35,
+ 22,
+ 29,
+ 25,
+ 31,
+ 29,
+ 56,
+ 60,
+ 31,
+ 31,
+ 29,
+ 29,
+ 24,
+ 28,
+ 28,
+ 43,
+ 28,
+ 24,
+ 70,
+ 30,
+ 36,
+ 36,
+ 32,
+ 36,
+ 36,
+ 36,
+ 36,
+ 37,
+ 59,
+ 44,
+ 69,
+ 37,
+ 23,
+ 83,
+ 27,
+ 51,
+ 51,
+ 53,
+ 51,
+ 34,
+ 32,
+ 37,
+ 62,
+ 38,
+ 36,
+ 34,
+ 56,
+ 64,
+ 27,
+ 25,
+ 38,
+ 27,
+ 34,
+ 26,
+ 30,
+ 33,
+ 56,
+ 21,
+ 26,
+ 66,
+ 26,
+ 60,
+ 37,
+ 38,
+ 27,
+ 33,
+ 55,
+ 35,
+ 25,
+ 48,
+ 34,
+ 41,
+ 41,
+ 21,
+ 46,
+ 46,
+ 29,
+ 46,
+ 43,
+ 83,
+ 55,
+ 33,
+ 35,
+ 36,
+ 34,
+ 75,
+ 29,
+ 25,
+ 58,
+ 25,
+ 34,
+ 34,
+ 72,
+ 26,
+ 46,
+ 79,
+ 39,
+ 59,
+ 39,
+ 35,
+ 24,
+ 19,
+ 59,
+ 28,
+ 73,
+ 29,
+ 22,
+ 83,
+ 83,
+ 66,
+ 66,
+ 31,
+ 35,
+ 35,
+ 22,
+ 35,
+ 29,
+ 53,
+ 30,
+ 29,
+ 53,
+ 45,
+ 29,
+ 29,
+ 34,
+ 53,
+ 35,
+ 23,
+ 52,
+ 50,
+ 37,
+ 28,
+ 30,
+ 20,
+ 80,
+ 70,
+ 35,
+ 23,
+ 28,
+ 47,
+ 31,
+ 60,
+ 51,
+ 29,
+ 26,
+ 59,
+ 22,
+ 56,
+ 49,
+ 78,
+ 72,
+ 78,
+ 56,
+ 56,
+ 66,
+ 78,
+ 29,
+ 30,
+ 29,
+ 62,
+ 66,
+ 82,
+ 72,
+ 37,
+ 24,
+ 52,
+ 24,
+ 43,
+ 64,
+ 45,
+ 40,
+ 30,
+ 60,
+ 24,
+ 31,
+ 59,
+ 31,
+ 24,
+ 26,
+ 26,
+ 63,
+ 35,
+ 51,
+ 65,
+ 68,
+ 68,
+ 24,
+ 84,
+ 32,
+ 52,
+ 52,
+ 48,
+ 68,
+ 24,
+ 57,
+ 24,
+ 51,
+ 50,
+ 48,
+ 26,
+ 80,
+ 34,
+ 50,
+ 50,
+ 31,
+ 51,
+ 31,
+ 48,
+ 71,
+ 31,
+ 34,
+ 27,
+ 37,
+ 35,
+ 71,
+ 40,
+ 37,
+ 40,
+ 53,
+ 62,
+ 67,
+ 27,
+ 64,
+ 37,
+ 28,
+ 28,
+ 31,
+ 40,
+ 30,
+ 21,
+ 58,
+ 48,
+ 35,
+ 35,
+ 27,
+ 28,
+ 61,
+ 27,
+ 28,
+ 48,
+ 34,
+ 48,
+ 47,
+ 30,
+ 44,
+ 30,
+ 41,
+ 26,
+ 26,
+ 48,
+ 48,
+ 47,
+ 77,
+ 41,
+ 41,
+ 37,
+ 46,
+ 25,
+ 45,
+ 59,
+ 41,
+ 27,
+ 59,
+ 41,
+ 41,
+ 41,
+ 27,
+ 24,
+ 35,
+ 29,
+ 58,
+ 26,
+ 26,
+ 53,
+ 55,
+ 58,
+ 34,
+ 50,
+ 65,
+ 31,
+ 70,
+ 31,
+ 55,
+ 43,
+ 61,
+ 26,
+ 51,
+ 75,
+ 35,
+ 66,
+ 41,
+ 42,
+ 67,
+ 52,
+ 33,
+ 51,
+ 76,
+ 27,
+ 33,
+ 33,
+ 42,
+ 25,
+ 48,
+ 38,
+ 39,
+ 36,
+ 30,
+ 42,
+ 31,
+ 31,
+ 34,
+ 44,
+ 33,
+ 58,
+ 30,
+ 33,
+ 76,
+ 60,
+ 56,
+ 27,
+ 64,
+ 69,
+ 33,
+ 37,
+ 60,
+ 59,
+ 45,
+ 37,
+ 22,
+ 45,
+ 81,
+ 55,
+ 39,
+ 60,
+ 47,
+ 60,
+ 32,
+ 32,
+ 43,
+ 57,
+ 31,
+ 30,
+ 51,
+ 22,
+ 33,
+ 43,
+ 35,
+ 34,
+ 85,
+ 89,
+ 26,
+ 36,
+ 36,
+ 26,
+ 86,
+ 42,
+ 44,
+ 46,
+ 32,
+ 28,
+ 32,
+ 45,
+ 38,
+ 29,
+ 60,
+ 27,
+ 27,
+ 38,
+ 33,
+ 37,
+ 26,
+ 34,
+ 27,
+ 38,
+ 83,
+ 24,
+ 64,
+ 38,
+ 23,
+ 29,
+ 71,
+ 57,
+ 39,
+ 82,
+ 30,
+ 34,
+ 34,
+ 31,
+ 53,
+ 24,
+ 52,
+ 60,
+ 19,
+ 23,
+ 60,
+ 52,
+ 39,
+ 33,
+ 23,
+ 19,
+ 37,
+ 36,
+ 82,
+ 25,
+ 31,
+ 33,
+ 23,
+ 24,
+ 56,
+ 77,
+ 19,
+ 23,
+ 30,
+ 34,
+ 34,
+ 26,
+ 41,
+ 36,
+ 26,
+ 34,
+ 31,
+ 25,
+ 38,
+ 41,
+ 33,
+ 33,
+ 33,
+ 32,
+ 32,
+ 41,
+ 33,
+ 58,
+ 42,
+ 23,
+ 53,
+ 31,
+ 33,
+ 58,
+ 30,
+ 31,
+ 26,
+ 33,
+ 31,
+ 48,
+ 32,
+ 48,
+ 30,
+ 29,
+ 42,
+ 34,
+ 42,
+ 32,
+ 32,
+ 26,
+ 26,
+ 35,
+ 32,
+ 41,
+ 22,
+ 28,
+ 51,
+ 61,
+ 29,
+ 47,
+ 49,
+ 66,
+ 56,
+ 31,
+ 48,
+ 27,
+ 33,
+ 65,
+ 59,
+ 31,
+ 21,
+ 27,
+ 71,
+ 27,
+ 65,
+ 35,
+ 54,
+ 70,
+ 50,
+ 48,
+ 61,
+ 37,
+ 37,
+ 65,
+ 24,
+ 68,
+ 44,
+ 56,
+ 42,
+ 44,
+ 29,
+ 68,
+ 47,
+ 48,
+ 50,
+ 54,
+ 81,
+ 54,
+ 37,
+ 80,
+ 37,
+ 37,
+ 24,
+ 33,
+ 37,
+ 29,
+ 37,
+ 45,
+ 26,
+ 31,
+ 25,
+ 23,
+ 25,
+ 65,
+ 37,
+ 28,
+ 36,
+ 33,
+ 33,
+ 30,
+ 23,
+ 33,
+ 30,
+ 25,
+ 62,
+ 60,
+ 62,
+ 21,
+ 30,
+ 65,
+ 31,
+ 27,
+ 30,
+ 65,
+ 31,
+ 48,
+ 29,
+ 50,
+ 45,
+ 37,
+ 24,
+ 51,
+ 18,
+ 50,
+ 31,
+ 29,
+ 59,
+ 33,
+ 63,
+ 36,
+ 29,
+ 36,
+ 36,
+ 37,
+ 37,
+ 61,
+ 61,
+ 31,
+ 31,
+ 41,
+ 25,
+ 58,
+ 33,
+ 37,
+ 43,
+ 26,
+ 41,
+ 25,
+ 35,
+ 41,
+ 67,
+ 41,
+ 35,
+ 35,
+ 33,
+ 35,
+ 54,
+ 38,
+ 32,
+ 33,
+ 31,
+ 62,
+ 62,
+ 62,
+ 37,
+ 73,
+ 44
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "age"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no duration=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 261,
+ 226,
+ 151,
+ 307,
+ 139,
+ 380,
+ 50,
+ 222,
+ 137,
+ 293,
+ 146,
+ 312,
+ 353,
+ 38,
+ 342,
+ 181,
+ 172,
+ 99,
+ 208,
+ 365,
+ 1666,
+ 577,
+ 137,
+ 314,
+ 160,
+ 212,
+ 616,
+ 178,
+ 355,
+ 225,
+ 160,
+ 266,
+ 253,
+ 179,
+ 174,
+ 812,
+ 357,
+ 232,
+ 91,
+ 158,
+ 200,
+ 172,
+ 349,
+ 20,
+ 246,
+ 529,
+ 192,
+ 188,
+ 180,
+ 545,
+ 583,
+ 221,
+ 426,
+ 197,
+ 257,
+ 55,
+ 197,
+ 190,
+ 300,
+ 123,
+ 194,
+ 337,
+ 286,
+ 247,
+ 439,
+ 139,
+ 79,
+ 175,
+ 262,
+ 61,
+ 78,
+ 102,
+ 143,
+ 345,
+ 185,
+ 207,
+ 125,
+ 240,
+ 193,
+ 136,
+ 338,
+ 87,
+ 98,
+ 186,
+ 579,
+ 165,
+ 85,
+ 506,
+ 843,
+ 292,
+ 93,
+ 128,
+ 107,
+ 303,
+ 81,
+ 270,
+ 228,
+ 233,
+ 461,
+ 138,
+ 412,
+ 179,
+ 19,
+ 228,
+ 717,
+ 1077,
+ 146,
+ 167,
+ 356,
+ 172,
+ 67,
+ 291,
+ 256,
+ 286,
+ 477,
+ 322,
+ 216,
+ 168,
+ 132,
+ 64,
+ 209,
+ 177,
+ 580,
+ 165,
+ 300,
+ 136,
+ 125,
+ 238,
+ 124,
+ 18,
+ 730,
+ 79,
+ 142,
+ 389,
+ 702,
+ 151,
+ 211,
+ 117,
+ 232,
+ 370,
+ 46,
+ 50,
+ 181,
+ 361,
+ 73,
+ 67,
+ 350,
+ 150,
+ 611,
+ 89,
+ 611,
+ 962,
+ 10,
+ 118,
+ 92,
+ 143,
+ 189,
+ 75,
+ 189,
+ 55,
+ 56,
+ 225,
+ 125,
+ 286,
+ 164,
+ 98,
+ 446,
+ 742,
+ 120,
+ 122,
+ 248,
+ 205,
+ 261,
+ 83,
+ 106,
+ 106,
+ 108,
+ 364,
+ 136,
+ 173,
+ 241,
+ 224,
+ 148,
+ 196,
+ 111,
+ 231,
+ 316,
+ 669,
+ 425,
+ 121,
+ 174,
+ 88,
+ 135,
+ 402,
+ 158,
+ 220,
+ 254,
+ 503,
+ 680,
+ 130,
+ 164,
+ 113,
+ 195,
+ 347,
+ 208,
+ 404,
+ 396,
+ 98,
+ 229,
+ 350,
+ 379,
+ 168,
+ 158,
+ 210,
+ 102,
+ 306,
+ 218,
+ 77,
+ 54,
+ 344,
+ 195,
+ 202,
+ 278,
+ 189,
+ 83,
+ 18,
+ 235,
+ 290,
+ 402,
+ 144,
+ 69,
+ 243,
+ 769,
+ 231,
+ 442,
+ 455,
+ 154,
+ 393,
+ 203,
+ 140,
+ 483,
+ 259,
+ 227,
+ 245,
+ 186,
+ 623,
+ 102,
+ 342,
+ 225,
+ 87,
+ 262,
+ 271,
+ 198,
+ 150,
+ 241,
+ 196,
+ 246,
+ 140,
+ 175,
+ 144,
+ 451,
+ 159,
+ 170,
+ 243,
+ 112,
+ 262,
+ 53,
+ 204,
+ 678,
+ 182,
+ 162,
+ 177,
+ 358,
+ 310,
+ 47,
+ 30,
+ 116,
+ 169,
+ 145,
+ 278,
+ 226,
+ 157,
+ 349,
+ 233,
+ 198,
+ 82,
+ 198,
+ 120,
+ 128,
+ 166,
+ 211,
+ 369,
+ 91,
+ 371,
+ 310,
+ 158,
+ 198,
+ 145,
+ 102,
+ 179,
+ 73,
+ 263,
+ 342,
+ 13,
+ 79,
+ 358,
+ 150,
+ 792,
+ 242,
+ 123,
+ 161,
+ 268,
+ 259,
+ 26,
+ 424,
+ 179,
+ 383,
+ 195,
+ 217,
+ 189,
+ 260,
+ 179,
+ 266,
+ 352,
+ 695,
+ 76,
+ 310,
+ 112,
+ 140,
+ 262,
+ 424,
+ 1906,
+ 219,
+ 135,
+ 407,
+ 402,
+ 209,
+ 92,
+ 193,
+ 65,
+ 284,
+ 285,
+ 278,
+ 389,
+ 158,
+ 87,
+ 147,
+ 635,
+ 289,
+ 170,
+ 802,
+ 381,
+ 57,
+ 304,
+ 241,
+ 230,
+ 79,
+ 262,
+ 145,
+ 252,
+ 329,
+ 191,
+ 116,
+ 246,
+ 532,
+ 293,
+ 37,
+ 132,
+ 530,
+ 90,
+ 29,
+ 311,
+ 211,
+ 312,
+ 392,
+ 191,
+ 328,
+ 100,
+ 226,
+ 333,
+ 322,
+ 202,
+ 739,
+ 262,
+ 245,
+ 160,
+ 189,
+ 477,
+ 65,
+ 221,
+ 197,
+ 178,
+ 221,
+ 75,
+ 400,
+ 346,
+ 60,
+ 276,
+ 390,
+ 716,
+ 189,
+ 125,
+ 234,
+ 283,
+ 109,
+ 144,
+ 95,
+ 31,
+ 112,
+ 161,
+ 87,
+ 285,
+ 178,
+ 174,
+ 631,
+ 152,
+ 176,
+ 32,
+ 1529,
+ 254,
+ 214,
+ 147,
+ 800,
+ 106,
+ 135,
+ 112,
+ 222,
+ 421,
+ 239,
+ 55,
+ 157,
+ 303,
+ 233,
+ 211,
+ 139,
+ 329,
+ 128,
+ 122,
+ 343,
+ 126,
+ 249,
+ 59,
+ 166,
+ 190,
+ 51,
+ 117,
+ 275,
+ 124,
+ 479,
+ 285,
+ 322,
+ 720,
+ 92,
+ 188,
+ 395,
+ 261,
+ 446,
+ 198,
+ 312,
+ 275,
+ 333,
+ 296,
+ 128,
+ 292,
+ 421,
+ 268,
+ 232,
+ 152,
+ 104,
+ 416,
+ 174,
+ 193,
+ 294,
+ 102,
+ 143,
+ 128,
+ 105,
+ 250,
+ 254,
+ 149,
+ 133,
+ 374,
+ 425,
+ 464,
+ 439,
+ 83,
+ 149,
+ 274,
+ 325,
+ 216,
+ 161,
+ 111,
+ 359,
+ 327,
+ 236,
+ 492,
+ 241,
+ 123,
+ 295,
+ 287,
+ 140,
+ 233,
+ 254,
+ 255,
+ 184,
+ 294,
+ 285,
+ 336,
+ 344,
+ 153,
+ 260,
+ 164,
+ 255,
+ 192,
+ 388,
+ 221,
+ 25,
+ 104,
+ 283,
+ 448,
+ 127,
+ 378,
+ 67,
+ 221,
+ 150,
+ 144,
+ 296,
+ 245,
+ 143,
+ 231,
+ 227,
+ 69,
+ 799,
+ 109,
+ 45,
+ 120,
+ 180,
+ 112,
+ 148,
+ 223,
+ 566,
+ 274,
+ 49,
+ 97,
+ 511,
+ 157,
+ 101,
+ 866,
+ 279,
+ 530,
+ 129,
+ 60,
+ 516,
+ 617,
+ 125,
+ 171,
+ 614,
+ 485,
+ 287,
+ 37,
+ 650,
+ 590,
+ 55,
+ 166,
+ 48,
+ 72,
+ 55,
+ 96,
+ 144,
+ 474,
+ 559,
+ 1101,
+ 236,
+ 164,
+ 123,
+ 209,
+ 485,
+ 311,
+ 274,
+ 163,
+ 345,
+ 329,
+ 68,
+ 214,
+ 1062,
+ 253,
+ 170,
+ 78,
+ 194,
+ 126,
+ 224,
+ 98,
+ 252,
+ 607,
+ 103,
+ 241,
+ 96,
+ 238,
+ 245,
+ 152,
+ 418,
+ 198,
+ 175,
+ 51,
+ 229,
+ 154,
+ 306,
+ 114,
+ 24,
+ 353,
+ 108,
+ 222,
+ 1009,
+ 105,
+ 228,
+ 128,
+ 550,
+ 764,
+ 234,
+ 110,
+ 305,
+ 134,
+ 217,
+ 283,
+ 353,
+ 212,
+ 225,
+ 1273,
+ 139,
+ 62,
+ 245,
+ 161,
+ 245,
+ 89,
+ 113,
+ 517,
+ 231,
+ 299,
+ 253,
+ 164,
+ 191,
+ 157,
+ 548,
+ 126,
+ 155,
+ 152,
+ 145,
+ 66,
+ 123,
+ 248,
+ 275,
+ 984,
+ 84,
+ 27,
+ 130,
+ 41,
+ 159,
+ 196,
+ 281,
+ 122,
+ 319,
+ 90,
+ 505,
+ 17,
+ 404,
+ 238,
+ 71,
+ 157,
+ 280,
+ 374,
+ 365,
+ 177,
+ 238,
+ 425,
+ 223,
+ 239,
+ 116,
+ 308,
+ 137,
+ 162,
+ 134,
+ 175,
+ 67,
+ 196,
+ 342,
+ 142,
+ 194,
+ 132,
+ 110,
+ 94,
+ 31,
+ 220,
+ 180,
+ 193,
+ 177,
+ 528,
+ 183,
+ 238,
+ 61,
+ 70,
+ 93,
+ 135,
+ 604,
+ 65,
+ 380,
+ 11,
+ 75,
+ 255,
+ 462,
+ 56,
+ 418,
+ 139,
+ 39,
+ 204,
+ 129,
+ 187,
+ 144,
+ 323,
+ 194,
+ 521,
+ 269,
+ 294,
+ 152,
+ 187,
+ 268,
+ 193,
+ 206,
+ 216,
+ 103,
+ 107,
+ 147,
+ 339,
+ 198,
+ 141,
+ 369,
+ 249,
+ 162,
+ 81,
+ 124,
+ 124,
+ 33,
+ 393,
+ 784,
+ 87,
+ 196,
+ 149,
+ 154,
+ 287,
+ 229,
+ 21,
+ 147,
+ 93,
+ 131,
+ 160,
+ 74,
+ 60,
+ 97,
+ 82,
+ 140,
+ 110,
+ 64,
+ 149,
+ 63,
+ 362,
+ 338,
+ 102,
+ 446,
+ 176,
+ 1007,
+ 175,
+ 211,
+ 237,
+ 500,
+ 186,
+ 98,
+ 477,
+ 319,
+ 789,
+ 280,
+ 63,
+ 159,
+ 177,
+ 108,
+ 194,
+ 366,
+ 213,
+ 166,
+ 141,
+ 168,
+ 195,
+ 352,
+ 91,
+ 93,
+ 218,
+ 289,
+ 130,
+ 208,
+ 177,
+ 442,
+ 101,
+ 166,
+ 342,
+ 189,
+ 178,
+ 238,
+ 14,
+ 250,
+ 269,
+ 491,
+ 44,
+ 22,
+ 989,
+ 147,
+ 1170,
+ 807,
+ 534,
+ 159,
+ 343,
+ 152,
+ 389,
+ 90,
+ 103,
+ 32,
+ 369,
+ 149,
+ 210,
+ 180,
+ 92,
+ 102,
+ 193,
+ 245,
+ 223,
+ 42,
+ 66,
+ 477,
+ 77,
+ 219,
+ 205,
+ 376,
+ 453,
+ 151,
+ 767,
+ 200,
+ 305,
+ 627,
+ 242,
+ 287,
+ 119,
+ 403,
+ 626,
+ 12,
+ 266,
+ 10,
+ 240,
+ 312,
+ 202,
+ 144,
+ 543,
+ 237,
+ 209,
+ 442,
+ 186,
+ 226,
+ 275,
+ 81,
+ 74,
+ 261,
+ 151,
+ 78,
+ 15,
+ 352,
+ 345,
+ 230,
+ 296,
+ 181,
+ 335,
+ 139,
+ 163,
+ 956,
+ 166,
+ 95,
+ 71,
+ 191,
+ 459,
+ 100,
+ 255,
+ 128,
+ 4,
+ 43,
+ 210,
+ 21,
+ 67,
+ 219,
+ 248,
+ 223,
+ 112,
+ 205,
+ 105,
+ 112,
+ 207,
+ 10,
+ 249,
+ 672,
+ 390,
+ 21,
+ 393,
+ 246,
+ 330,
+ 84,
+ 399,
+ 297,
+ 111,
+ 170,
+ 141,
+ 886,
+ 49,
+ 461,
+ 515,
+ 123,
+ 179,
+ 102,
+ 272,
+ 17,
+ 291,
+ 209,
+ 1187,
+ 89,
+ 123,
+ 104,
+ 117,
+ 37,
+ 51,
+ 627,
+ 466,
+ 101,
+ 303,
+ 283,
+ 598,
+ 185,
+ 220,
+ 423,
+ 337,
+ 99,
+ 27,
+ 166,
+ 182,
+ 103,
+ 379,
+ 287,
+ 732,
+ 126,
+ 172,
+ 43,
+ 109,
+ 191,
+ 117,
+ 64,
+ 260,
+ 207,
+ 128,
+ 144,
+ 110,
+ 85,
+ 132,
+ 346,
+ 205,
+ 218,
+ 62,
+ 93,
+ 286,
+ 241,
+ 283,
+ 380,
+ 584,
+ 371,
+ 274,
+ 71,
+ 357,
+ 215,
+ 131,
+ 847,
+ 57,
+ 306,
+ 147,
+ 244,
+ 59,
+ 24,
+ 85,
+ 70,
+ 21,
+ 659,
+ 296,
+ 307,
+ 120,
+ 390,
+ 83,
+ 198,
+ 21,
+ 93,
+ 217,
+ 134,
+ 375,
+ 45,
+ 93,
+ 410,
+ 157,
+ 72,
+ 131,
+ 498,
+ 514,
+ 127,
+ 198,
+ 117,
+ 155,
+ 18,
+ 386,
+ 341,
+ 208,
+ 44,
+ 480,
+ 86,
+ 93,
+ 238,
+ 399,
+ 93,
+ 123,
+ 92,
+ 219,
+ 2462,
+ 114,
+ 249,
+ 187,
+ 122,
+ 207,
+ 117,
+ 393,
+ 25,
+ 136,
+ 38,
+ 164,
+ 825,
+ 479,
+ 229,
+ 258,
+ 308,
+ 137,
+ 257,
+ 213,
+ 115,
+ 202,
+ 106,
+ 95,
+ 64,
+ 186,
+ 205,
+ 377,
+ 322,
+ 46,
+ 211,
+ 156,
+ 71,
+ 324,
+ 164,
+ 137,
+ 87,
+ 91,
+ 230,
+ 63,
+ 135,
+ 261,
+ 215,
+ 125,
+ 391,
+ 107,
+ 145,
+ 142,
+ 134,
+ 241,
+ 180,
+ 189,
+ 70,
+ 1087,
+ 62,
+ 323,
+ 111,
+ 197,
+ 224,
+ 557,
+ 150,
+ 388,
+ 194,
+ 209,
+ 188,
+ 84,
+ 530,
+ 365,
+ 285,
+ 352,
+ 316,
+ 79,
+ 126,
+ 76,
+ 253,
+ 622,
+ 133,
+ 178,
+ 404,
+ 109,
+ 134,
+ 225,
+ 129,
+ 93,
+ 20,
+ 247,
+ 324,
+ 163,
+ 279,
+ 251,
+ 125,
+ 282,
+ 344,
+ 67,
+ 167,
+ 395,
+ 137,
+ 118,
+ 128,
+ 174,
+ 195,
+ 412,
+ 127,
+ 79,
+ 13,
+ 61,
+ 286,
+ 274,
+ 144,
+ 1713,
+ 241,
+ 338,
+ 182,
+ 551,
+ 663,
+ 338,
+ 153,
+ 188,
+ 305,
+ 1080,
+ 1461,
+ 129,
+ 98,
+ 262,
+ 150,
+ 332,
+ 94,
+ 49,
+ 154,
+ 750,
+ 202,
+ 191,
+ 106,
+ 214,
+ 128,
+ 70,
+ 279,
+ 231,
+ 70,
+ 213,
+ 136,
+ 229,
+ 184,
+ 32,
+ 73,
+ 126,
+ 83,
+ 169,
+ 280,
+ 393,
+ 128,
+ 1178,
+ 178,
+ 177,
+ 245,
+ 460,
+ 432,
+ 176,
+ 162,
+ 237,
+ 44,
+ 483,
+ 116,
+ 182,
+ 122,
+ 232,
+ 51,
+ 214,
+ 389,
+ 31,
+ 145,
+ 878,
+ 268,
+ 101,
+ 119,
+ 162,
+ 18,
+ 43,
+ 86,
+ 83,
+ 97,
+ 263,
+ 180,
+ 322,
+ 64,
+ 71,
+ 284,
+ 166,
+ 210,
+ 164,
+ 155,
+ 91,
+ 213,
+ 257,
+ 315,
+ 102,
+ 35,
+ 83,
+ 834,
+ 244,
+ 143,
+ 1534,
+ 163,
+ 40,
+ 147,
+ 290,
+ 148,
+ 289,
+ 345,
+ 1002,
+ 76,
+ 111,
+ 150,
+ 115,
+ 149,
+ 327,
+ 111,
+ 88,
+ 592,
+ 62,
+ 59,
+ 144,
+ 346,
+ 57,
+ 396,
+ 59,
+ 38,
+ 167,
+ 409,
+ 117,
+ 177,
+ 36,
+ 94,
+ 122,
+ 225,
+ 165,
+ 186,
+ 405,
+ 207,
+ 325,
+ 288,
+ 102,
+ 136,
+ 53,
+ 202,
+ 130,
+ 523,
+ 231,
+ 217,
+ 281,
+ 1147,
+ 486,
+ 170,
+ 539,
+ 820,
+ 398,
+ 112,
+ 64,
+ 788,
+ 239,
+ 165,
+ 501,
+ 832,
+ 214,
+ 101,
+ 77,
+ 388,
+ 480,
+ 393,
+ 744,
+ 593,
+ 215,
+ 315,
+ 162,
+ 493,
+ 80,
+ 39,
+ 132,
+ 101,
+ 188,
+ 53,
+ 507,
+ 123,
+ 171,
+ 178,
+ 156,
+ 154,
+ 163,
+ 470,
+ 793,
+ 219,
+ 460,
+ 246,
+ 194,
+ 256,
+ 146,
+ 596,
+ 577,
+ 177,
+ 335,
+ 262,
+ 115,
+ 529,
+ 247,
+ 166,
+ 320,
+ 307,
+ 220,
+ 241,
+ 241,
+ 98,
+ 391,
+ 126,
+ 55,
+ 86,
+ 166,
+ 155,
+ 63,
+ 236,
+ 92,
+ 253,
+ 65,
+ 41,
+ 221,
+ 241,
+ 248,
+ 198,
+ 212,
+ 115,
+ 264,
+ 65,
+ 299,
+ 166,
+ 197,
+ 220,
+ 298,
+ 78,
+ 13,
+ 159,
+ 157,
+ 162,
+ 249,
+ 24,
+ 195,
+ 143,
+ 68,
+ 274,
+ 325,
+ 249,
+ 111,
+ 81,
+ 181,
+ 92,
+ 85,
+ 182,
+ 530,
+ 160,
+ 176,
+ 134,
+ 907,
+ 200,
+ 139,
+ 147,
+ 153,
+ 109,
+ 97,
+ 723,
+ 518,
+ 101,
+ 142,
+ 520,
+ 611,
+ 135,
+ 276,
+ 98,
+ 105,
+ 382,
+ 213,
+ 116,
+ 50,
+ 138,
+ 49,
+ 178,
+ 169,
+ 244,
+ 428,
+ 53,
+ 360,
+ 207,
+ 229,
+ 108,
+ 210,
+ 259,
+ 351,
+ 198,
+ 284,
+ 295,
+ 62,
+ 217,
+ 343,
+ 227,
+ 248,
+ 180,
+ 117,
+ 205,
+ 370,
+ 427,
+ 705,
+ 174,
+ 166,
+ 373,
+ 259,
+ 340,
+ 137,
+ 107,
+ 44,
+ 118,
+ 135,
+ 276,
+ 118,
+ 38,
+ 232,
+ 1167,
+ 325,
+ 311,
+ 147,
+ 125,
+ 98,
+ 67,
+ 174,
+ 260,
+ 122,
+ 334,
+ 609,
+ 302,
+ 121,
+ 156,
+ 92,
+ 766,
+ 137,
+ 110,
+ 135,
+ 102,
+ 65,
+ 76,
+ 60,
+ 100,
+ 82,
+ 149,
+ 36,
+ 95,
+ 120,
+ 349,
+ 768,
+ 277,
+ 473,
+ 133,
+ 386,
+ 76,
+ 214,
+ 355,
+ 194,
+ 208,
+ 113,
+ 93,
+ 119,
+ 916,
+ 60,
+ 225,
+ 262,
+ 103,
+ 255,
+ 434,
+ 59,
+ 155,
+ 242,
+ 93,
+ 211,
+ 31,
+ 104,
+ 172,
+ 160,
+ 276,
+ 176,
+ 161,
+ 245,
+ 93,
+ 332,
+ 188,
+ 94,
+ 54,
+ 29,
+ 271,
+ 95,
+ 227,
+ 190,
+ 60,
+ 296,
+ 125,
+ 78,
+ 119,
+ 3,
+ 297,
+ 342,
+ 420,
+ 91,
+ 768,
+ 184,
+ 108,
+ 195,
+ 141,
+ 87,
+ 129,
+ 215,
+ 142,
+ 411,
+ 93,
+ 65,
+ 531,
+ 34,
+ 788,
+ 851,
+ 315,
+ 214,
+ 92,
+ 159,
+ 58,
+ 1052,
+ 165,
+ 309,
+ 163,
+ 210,
+ 165,
+ 230,
+ 584,
+ 134,
+ 185,
+ 295,
+ 86,
+ 151,
+ 259,
+ 198,
+ 168,
+ 247,
+ 151,
+ 64,
+ 232,
+ 647,
+ 322,
+ 337,
+ 133,
+ 87,
+ 771,
+ 76,
+ 318,
+ 209,
+ 1093,
+ 326,
+ 273,
+ 1106,
+ 214,
+ 87,
+ 122,
+ 816,
+ 284,
+ 116,
+ 72,
+ 232,
+ 262,
+ 190,
+ 166,
+ 104,
+ 163,
+ 492,
+ 109,
+ 384,
+ 1032,
+ 65,
+ 360,
+ 20,
+ 323,
+ 735,
+ 151,
+ 158,
+ 73,
+ 438,
+ 328,
+ 97,
+ 455,
+ 103,
+ 72,
+ 89,
+ 387,
+ 160,
+ 381,
+ 109,
+ 178,
+ 260,
+ 231,
+ 188,
+ 145,
+ 27,
+ 282,
+ 48,
+ 220,
+ 606,
+ 451,
+ 168,
+ 230,
+ 170,
+ 142,
+ 283,
+ 110,
+ 138,
+ 158,
+ 105,
+ 106,
+ 217,
+ 243,
+ 488,
+ 148,
+ 124,
+ 452,
+ 114,
+ 92,
+ 686,
+ 300,
+ 71,
+ 534,
+ 243,
+ 158,
+ 456,
+ 298,
+ 483,
+ 213,
+ 51,
+ 44,
+ 164,
+ 178,
+ 452,
+ 87,
+ 122,
+ 120,
+ 122,
+ 262,
+ 179,
+ 68,
+ 75,
+ 191,
+ 461,
+ 188,
+ 117,
+ 351,
+ 429,
+ 249,
+ 568,
+ 299,
+ 282,
+ 211,
+ 77,
+ 283,
+ 263,
+ 189,
+ 91,
+ 32,
+ 139,
+ 347,
+ 58,
+ 152,
+ 869,
+ 267,
+ 34,
+ 153,
+ 28,
+ 216,
+ 199,
+ 139,
+ 322,
+ 189,
+ 197,
+ 224,
+ 180,
+ 191,
+ 57,
+ 849,
+ 260,
+ 181,
+ 125,
+ 749,
+ 166,
+ 407,
+ 152,
+ 438,
+ 387,
+ 100,
+ 413,
+ 191,
+ 109,
+ 38,
+ 214,
+ 98,
+ 225,
+ 230,
+ 364,
+ 57,
+ 160,
+ 210,
+ 222,
+ 265,
+ 161,
+ 350,
+ 155,
+ 162,
+ 337,
+ 416,
+ 102,
+ 977,
+ 70,
+ 71,
+ 230,
+ 369,
+ 136,
+ 174,
+ 80,
+ 144,
+ 380,
+ 108,
+ 389,
+ 192,
+ 273,
+ 8,
+ 90,
+ 217,
+ 302,
+ 411,
+ 179,
+ 245,
+ 746,
+ 220,
+ 232,
+ 106,
+ 115,
+ 274,
+ 106,
+ 107,
+ 1044,
+ 354,
+ 55,
+ 180,
+ 95,
+ 331,
+ 148,
+ 74,
+ 374,
+ 295,
+ 668,
+ 95,
+ 286,
+ 242,
+ 335,
+ 343,
+ 85,
+ 360,
+ 183,
+ 726,
+ 158,
+ 514,
+ 382,
+ 142,
+ 264,
+ 161,
+ 49,
+ 326,
+ 183,
+ 634,
+ 339,
+ 125,
+ 423,
+ 191,
+ 248,
+ 146,
+ 17,
+ 546,
+ 162,
+ 174,
+ 180,
+ 282,
+ 126,
+ 554,
+ 21,
+ 246,
+ 141,
+ 427,
+ 97,
+ 402,
+ 360,
+ 852,
+ 241,
+ 133,
+ 122,
+ 167,
+ 133,
+ 594,
+ 86,
+ 166,
+ 303,
+ 636,
+ 341,
+ 483,
+ 234,
+ 211,
+ 738,
+ 482,
+ 238,
+ 370,
+ 76,
+ 225,
+ 582,
+ 270,
+ 52,
+ 254,
+ 1118,
+ 79,
+ 166,
+ 256,
+ 276,
+ 349,
+ 856,
+ 278,
+ 143,
+ 249,
+ 37,
+ 187,
+ 211,
+ 266,
+ 159,
+ 318,
+ 747,
+ 319,
+ 114,
+ 362,
+ 86,
+ 90,
+ 1013,
+ 468,
+ 226,
+ 349,
+ 236,
+ 360,
+ 366,
+ 70,
+ 230,
+ 135,
+ 65,
+ 420,
+ 259,
+ 192,
+ 263,
+ 415,
+ 260,
+ 183,
+ 87,
+ 62,
+ 139,
+ 150,
+ 244,
+ 325,
+ 183,
+ 552,
+ 27,
+ 153,
+ 182,
+ 55,
+ 644,
+ 374,
+ 240,
+ 558,
+ 1088,
+ 41,
+ 436,
+ 463,
+ 265,
+ 234,
+ 113,
+ 158,
+ 160,
+ 504,
+ 36,
+ 109,
+ 134,
+ 326,
+ 347,
+ 116,
+ 77,
+ 1036,
+ 303,
+ 80,
+ 111,
+ 435,
+ 397,
+ 208,
+ 168,
+ 1000,
+ 112,
+ 599,
+ 30,
+ 165,
+ 55,
+ 127,
+ 75,
+ 221,
+ 285,
+ 71,
+ 290,
+ 164,
+ 207,
+ 295,
+ 106,
+ 219,
+ 145,
+ 120,
+ 101,
+ 417,
+ 191,
+ 221,
+ 229,
+ 104,
+ 122,
+ 186,
+ 23,
+ 402,
+ 68,
+ 182,
+ 348,
+ 203,
+ 74,
+ 464,
+ 738,
+ 126,
+ 452,
+ 187,
+ 136,
+ 80,
+ 431,
+ 301,
+ 133,
+ 218,
+ 355,
+ 49,
+ 117,
+ 155,
+ 477,
+ 99,
+ 200,
+ 187,
+ 51,
+ 253,
+ 71,
+ 127,
+ 74,
+ 122,
+ 173,
+ 918,
+ 544,
+ 309,
+ 138,
+ 73,
+ 193,
+ 198,
+ 243,
+ 105,
+ 98,
+ 243,
+ 135,
+ 597,
+ 168,
+ 43,
+ 122,
+ 504,
+ 192,
+ 51,
+ 178,
+ 99,
+ 224,
+ 236,
+ 815,
+ 134,
+ 118,
+ 238,
+ 225,
+ 490,
+ 199,
+ 644,
+ 286,
+ 176,
+ 422,
+ 22,
+ 465,
+ 973,
+ 190,
+ 84,
+ 59,
+ 294,
+ 237,
+ 399,
+ 132,
+ 279,
+ 484,
+ 30,
+ 561,
+ 388,
+ 100,
+ 589,
+ 160,
+ 69,
+ 52,
+ 486,
+ 73,
+ 523,
+ 73,
+ 420,
+ 584,
+ 155,
+ 619,
+ 298,
+ 515,
+ 21,
+ 404,
+ 241,
+ 302,
+ 440,
+ 172,
+ 276,
+ 213,
+ 194,
+ 19,
+ 546,
+ 419,
+ 156,
+ 184,
+ 548,
+ 760,
+ 244,
+ 171,
+ 92,
+ 17,
+ 301,
+ 475,
+ 770,
+ 126,
+ 114,
+ 136,
+ 196,
+ 129,
+ 192,
+ 118,
+ 160,
+ 430,
+ 242,
+ 317,
+ 7,
+ 493,
+ 112,
+ 523,
+ 309,
+ 850,
+ 420,
+ 71,
+ 314,
+ 196,
+ 78,
+ 124,
+ 190,
+ 53,
+ 278,
+ 263,
+ 214,
+ 88,
+ 255,
+ 311,
+ 426,
+ 302,
+ 448,
+ 70,
+ 347,
+ 320,
+ 175,
+ 98,
+ 734,
+ 543,
+ 374,
+ 241,
+ 137,
+ 297,
+ 377,
+ 122,
+ 248,
+ 336,
+ 28,
+ 371,
+ 329,
+ 597,
+ 247,
+ 266,
+ 159,
+ 206,
+ 228,
+ 144,
+ 29,
+ 512,
+ 247,
+ 601,
+ 73,
+ 230,
+ 456,
+ 75,
+ 387,
+ 286,
+ 448,
+ 178,
+ 111,
+ 150,
+ 297,
+ 656,
+ 88,
+ 118,
+ 104,
+ 103,
+ 213,
+ 122,
+ 130,
+ 627,
+ 207,
+ 114,
+ 216,
+ 250,
+ 91,
+ 159,
+ 37,
+ 46,
+ 356,
+ 242,
+ 274,
+ 355,
+ 149,
+ 346,
+ 261,
+ 63,
+ 125,
+ 167,
+ 25,
+ 244,
+ 122,
+ 130,
+ 345,
+ 145,
+ 214,
+ 132,
+ 117,
+ 754,
+ 211,
+ 192,
+ 203,
+ 76,
+ 24,
+ 171,
+ 343,
+ 77,
+ 217,
+ 196,
+ 178,
+ 410,
+ 265,
+ 172,
+ 359,
+ 123,
+ 169,
+ 241,
+ 22,
+ 326,
+ 196,
+ 270,
+ 679,
+ 576,
+ 102,
+ 161,
+ 206,
+ 230,
+ 322,
+ 107,
+ 379,
+ 95,
+ 320,
+ 230,
+ 489,
+ 98,
+ 38,
+ 323,
+ 335,
+ 161,
+ 410,
+ 280,
+ 374,
+ 193,
+ 136,
+ 381,
+ 412,
+ 376,
+ 56,
+ 112,
+ 155,
+ 703,
+ 141,
+ 121,
+ 121,
+ 177,
+ 404,
+ 433,
+ 323,
+ 132,
+ 221,
+ 200,
+ 80,
+ 123,
+ 90,
+ 461,
+ 193,
+ 428,
+ 291,
+ 136,
+ 214,
+ 239,
+ 94,
+ 107,
+ 51,
+ 109,
+ 378,
+ 136,
+ 386,
+ 290,
+ 764,
+ 16,
+ 148,
+ 269,
+ 208,
+ 274,
+ 326,
+ 337,
+ 788,
+ 353,
+ 14,
+ 698,
+ 180,
+ 257,
+ 467,
+ 233,
+ 218,
+ 304,
+ 315,
+ 76,
+ 355,
+ 557,
+ 148,
+ 128,
+ 130,
+ 152,
+ 283,
+ 523,
+ 1128,
+ 171,
+ 71,
+ 84,
+ 221,
+ 339,
+ 509,
+ 243,
+ 344,
+ 1135,
+ 1106,
+ 292,
+ 279,
+ 293,
+ 198,
+ 303,
+ 680,
+ 251,
+ 476,
+ 81,
+ 4,
+ 227,
+ 427,
+ 408,
+ 255,
+ 236,
+ 428,
+ 851,
+ 522,
+ 1144,
+ 730,
+ 167,
+ 385,
+ 169,
+ 409,
+ 437,
+ 89,
+ 294,
+ 498,
+ 134,
+ 230,
+ 192,
+ 65,
+ 237,
+ 239,
+ 243,
+ 393,
+ 218,
+ 215,
+ 186,
+ 299,
+ 107,
+ 90,
+ 102,
+ 1110,
+ 1187,
+ 119,
+ 79,
+ 145,
+ 39,
+ 311,
+ 134,
+ 594,
+ 55,
+ 92,
+ 19,
+ 114,
+ 221,
+ 219,
+ 221,
+ 166,
+ 128,
+ 35,
+ 668,
+ 77,
+ 134,
+ 258,
+ 71,
+ 131,
+ 468,
+ 326,
+ 412,
+ 277,
+ 380,
+ 169,
+ 124,
+ 83,
+ 318,
+ 29,
+ 218,
+ 144,
+ 130,
+ 27,
+ 343,
+ 167,
+ 95,
+ 112,
+ 198,
+ 165,
+ 134,
+ 298,
+ 188,
+ 241,
+ 201,
+ 68,
+ 82,
+ 97,
+ 138,
+ 135,
+ 267,
+ 382,
+ 234,
+ 95,
+ 798,
+ 168,
+ 85,
+ 143,
+ 23,
+ 182,
+ 351,
+ 179,
+ 237,
+ 122,
+ 198,
+ 67,
+ 238,
+ 81,
+ 496,
+ 114,
+ 156,
+ 48,
+ 287,
+ 336,
+ 202,
+ 228,
+ 192,
+ 23,
+ 260,
+ 387,
+ 70,
+ 257,
+ 214,
+ 105,
+ 197,
+ 174,
+ 144,
+ 222,
+ 136,
+ 546,
+ 335,
+ 105,
+ 1203,
+ 258,
+ 199,
+ 201,
+ 480,
+ 396,
+ 124,
+ 13,
+ 259,
+ 723,
+ 89,
+ 257,
+ 314,
+ 83,
+ 215,
+ 147,
+ 102,
+ 19,
+ 346,
+ 643,
+ 193,
+ 181,
+ 513,
+ 109,
+ 104,
+ 191,
+ 107,
+ 219,
+ 148,
+ 400,
+ 503,
+ 329,
+ 194,
+ 7,
+ 53,
+ 345,
+ 263,
+ 44,
+ 207,
+ 401,
+ 53,
+ 349,
+ 34,
+ 457,
+ 193,
+ 142,
+ 123,
+ 65,
+ 420,
+ 100,
+ 403,
+ 229,
+ 182,
+ 183,
+ 140,
+ 134,
+ 234,
+ 194,
+ 394,
+ 408,
+ 114,
+ 210,
+ 243,
+ 180,
+ 8,
+ 313,
+ 324,
+ 194,
+ 165,
+ 86,
+ 160,
+ 492,
+ 187,
+ 159,
+ 124,
+ 162,
+ 211,
+ 73,
+ 220,
+ 110,
+ 168,
+ 283,
+ 235,
+ 138,
+ 147,
+ 332,
+ 396,
+ 492,
+ 360,
+ 97,
+ 84,
+ 57,
+ 105,
+ 470,
+ 120,
+ 298,
+ 249,
+ 87,
+ 622,
+ 195,
+ 179,
+ 58,
+ 66,
+ 328,
+ 21,
+ 150,
+ 91,
+ 19,
+ 182,
+ 257,
+ 280,
+ 16,
+ 249,
+ 184,
+ 20,
+ 224,
+ 172,
+ 125,
+ 216,
+ 109,
+ 409,
+ 226,
+ 13,
+ 133,
+ 656,
+ 206,
+ 186,
+ 532,
+ 97,
+ 234,
+ 216,
+ 297,
+ 243,
+ 98,
+ 190,
+ 142,
+ 775,
+ 335,
+ 168,
+ 68,
+ 119,
+ 294,
+ 57,
+ 297,
+ 90,
+ 217,
+ 26,
+ 369,
+ 29,
+ 214,
+ 793,
+ 71,
+ 167,
+ 394,
+ 320,
+ 618,
+ 101,
+ 85,
+ 224,
+ 171,
+ 67,
+ 269,
+ 115,
+ 148,
+ 507,
+ 27,
+ 116,
+ 124,
+ 66,
+ 233,
+ 380,
+ 90,
+ 423,
+ 215,
+ 181,
+ 360,
+ 155,
+ 447,
+ 184,
+ 138,
+ 207,
+ 284,
+ 70,
+ 774,
+ 247,
+ 277,
+ 85,
+ 83,
+ 71,
+ 869,
+ 208,
+ 199,
+ 244,
+ 177,
+ 217,
+ 189,
+ 151,
+ 24,
+ 140,
+ 172,
+ 396,
+ 129,
+ 474,
+ 268,
+ 309,
+ 205,
+ 347,
+ 381,
+ 256,
+ 211,
+ 211,
+ 66,
+ 610,
+ 120,
+ 464,
+ 522,
+ 227,
+ 1376,
+ 51,
+ 834,
+ 106,
+ 194,
+ 535,
+ 182,
+ 296,
+ 76,
+ 359,
+ 592,
+ 166,
+ 369,
+ 261,
+ 131,
+ 592,
+ 412,
+ 137,
+ 266,
+ 235,
+ 697,
+ 1042,
+ 378,
+ 383,
+ 185,
+ 254,
+ 107,
+ 157,
+ 249,
+ 112,
+ 188,
+ 148,
+ 145,
+ 415,
+ 742,
+ 37,
+ 120,
+ 185,
+ 204,
+ 205,
+ 190,
+ 325,
+ 148,
+ 38,
+ 625,
+ 175,
+ 282,
+ 438,
+ 999,
+ 127,
+ 289,
+ 169,
+ 247,
+ 140,
+ 60,
+ 99,
+ 128,
+ 215,
+ 64,
+ 52,
+ 129,
+ 210,
+ 657,
+ 443,
+ 127,
+ 446,
+ 252,
+ 80,
+ 144,
+ 29,
+ 165,
+ 723,
+ 550,
+ 130,
+ 146,
+ 239,
+ 304,
+ 139,
+ 445,
+ 16,
+ 169,
+ 125,
+ 446,
+ 267,
+ 6,
+ 172,
+ 94,
+ 268,
+ 91,
+ 465,
+ 274,
+ 300,
+ 191,
+ 56,
+ 189,
+ 236,
+ 614,
+ 363,
+ 418,
+ 96,
+ 119,
+ 10,
+ 216,
+ 484,
+ 485,
+ 175,
+ 138,
+ 243,
+ 919,
+ 203,
+ 247,
+ 340,
+ 110,
+ 165,
+ 54,
+ 350,
+ 47,
+ 153,
+ 181,
+ 747,
+ 214,
+ 270,
+ 37,
+ 72,
+ 725,
+ 213,
+ 177,
+ 273,
+ 98,
+ 480,
+ 204,
+ 117,
+ 246,
+ 352,
+ 190,
+ 277,
+ 315,
+ 225,
+ 24,
+ 369,
+ 167,
+ 64,
+ 336,
+ 59,
+ 93,
+ 181,
+ 86,
+ 317,
+ 120,
+ 388,
+ 174,
+ 72,
+ 126,
+ 339,
+ 18,
+ 129,
+ 222,
+ 692,
+ 262,
+ 323,
+ 43,
+ 56,
+ 201,
+ 27,
+ 361,
+ 162,
+ 287,
+ 147,
+ 118,
+ 91,
+ 111,
+ 162,
+ 236,
+ 73,
+ 123,
+ 298,
+ 86,
+ 420,
+ 139,
+ 164,
+ 139,
+ 192,
+ 226,
+ 166,
+ 419,
+ 179,
+ 490,
+ 63,
+ 27,
+ 425,
+ 350,
+ 103,
+ 210,
+ 261,
+ 115,
+ 71,
+ 370,
+ 232,
+ 68,
+ 192,
+ 494,
+ 151,
+ 204,
+ 180,
+ 494,
+ 759,
+ 85,
+ 445,
+ 345,
+ 648,
+ 29,
+ 290,
+ 634,
+ 717,
+ 122,
+ 951,
+ 264,
+ 211,
+ 97,
+ 192,
+ 160,
+ 97,
+ 244,
+ 578,
+ 190,
+ 396,
+ 59,
+ 111,
+ 502,
+ 135,
+ 29,
+ 408,
+ 136,
+ 141,
+ 103,
+ 171,
+ 93,
+ 35,
+ 51,
+ 17,
+ 504,
+ 726,
+ 542,
+ 257,
+ 343,
+ 206,
+ 786,
+ 178,
+ 509,
+ 161,
+ 125,
+ 159,
+ 221,
+ 211,
+ 240,
+ 39,
+ 140,
+ 53,
+ 45,
+ 738,
+ 161,
+ 383,
+ 184,
+ 122,
+ 137,
+ 189,
+ 418,
+ 17,
+ 233,
+ 445,
+ 623,
+ 260,
+ 316,
+ 650,
+ 207,
+ 104,
+ 143,
+ 187,
+ 748,
+ 492,
+ 485,
+ 197,
+ 304,
+ 51,
+ 836,
+ 315,
+ 184,
+ 563,
+ 450,
+ 34,
+ 371,
+ 518,
+ 111,
+ 176,
+ 196,
+ 85,
+ 172,
+ 252,
+ 265,
+ 393,
+ 205,
+ 127,
+ 38,
+ 127,
+ 208,
+ 518,
+ 171,
+ 143,
+ 572,
+ 573,
+ 244,
+ 240,
+ 83,
+ 100,
+ 890,
+ 443,
+ 1162,
+ 244,
+ 295,
+ 86,
+ 154,
+ 394,
+ 312,
+ 189,
+ 91,
+ 446,
+ 153,
+ 111,
+ 72,
+ 205,
+ 237,
+ 230,
+ 96,
+ 162,
+ 69,
+ 273,
+ 281,
+ 175,
+ 465,
+ 87,
+ 292,
+ 49,
+ 248,
+ 108,
+ 373,
+ 112,
+ 229,
+ 135,
+ 357,
+ 152,
+ 36,
+ 206,
+ 66,
+ 489,
+ 117,
+ 149,
+ 634,
+ 173,
+ 151,
+ 987,
+ 66,
+ 139,
+ 281,
+ 369,
+ 88,
+ 189,
+ 81,
+ 59,
+ 233,
+ 265,
+ 173,
+ 178,
+ 45,
+ 86,
+ 131,
+ 239,
+ 165,
+ 260,
+ 150,
+ 155,
+ 202,
+ 214,
+ 206,
+ 362,
+ 15,
+ 250,
+ 700,
+ 154,
+ 190,
+ 20,
+ 363,
+ 110,
+ 142,
+ 291,
+ 293,
+ 304,
+ 78,
+ 407,
+ 405,
+ 417,
+ 101,
+ 350,
+ 433,
+ 253,
+ 110,
+ 259,
+ 260,
+ 363,
+ 149,
+ 174,
+ 83,
+ 92,
+ 245,
+ 346,
+ 203,
+ 206,
+ 218,
+ 509,
+ 128,
+ 136,
+ 132,
+ 3,
+ 359,
+ 121,
+ 154,
+ 98,
+ 189,
+ 302,
+ 145,
+ 203,
+ 254,
+ 373,
+ 534,
+ 225,
+ 193,
+ 76,
+ 298,
+ 286,
+ 442,
+ 206,
+ 162,
+ 139,
+ 124,
+ 425,
+ 290,
+ 152,
+ 168,
+ 164,
+ 322,
+ 360,
+ 57,
+ 700,
+ 601,
+ 231,
+ 135,
+ 86,
+ 256,
+ 415,
+ 293,
+ 816,
+ 435,
+ 100,
+ 191,
+ 58,
+ 533,
+ 28,
+ 63,
+ 135,
+ 202,
+ 181,
+ 240,
+ 354,
+ 210,
+ 223,
+ 263,
+ 85,
+ 242,
+ 236,
+ 246,
+ 391,
+ 293,
+ 245,
+ 317,
+ 134,
+ 110,
+ 37,
+ 188,
+ 911,
+ 206,
+ 160,
+ 260,
+ 78,
+ 115,
+ 99,
+ 95,
+ 14,
+ 438,
+ 35,
+ 111,
+ 252,
+ 691,
+ 81,
+ 153,
+ 65,
+ 249,
+ 161,
+ 162,
+ 118,
+ 397,
+ 227,
+ 7,
+ 465,
+ 98,
+ 665,
+ 80,
+ 145,
+ 76,
+ 152,
+ 27,
+ 281,
+ 284,
+ 83,
+ 104,
+ 50,
+ 139,
+ 59,
+ 258,
+ 110,
+ 466,
+ 254,
+ 250,
+ 79,
+ 125,
+ 556,
+ 119,
+ 268,
+ 332,
+ 148,
+ 160,
+ 240,
+ 811,
+ 221,
+ 108,
+ 288,
+ 1003,
+ 542,
+ 541,
+ 198,
+ 268,
+ 154,
+ 66,
+ 216,
+ 206,
+ 28,
+ 101,
+ 186,
+ 189,
+ 215,
+ 216,
+ 361,
+ 116,
+ 150,
+ 228,
+ 411,
+ 253,
+ 144,
+ 248,
+ 138,
+ 147,
+ 773,
+ 122,
+ 193,
+ 111,
+ 166,
+ 469,
+ 106,
+ 165,
+ 364,
+ 185,
+ 451,
+ 226,
+ 128,
+ 97,
+ 24,
+ 232,
+ 201,
+ 83,
+ 339,
+ 478,
+ 210,
+ 423,
+ 114,
+ 274,
+ 83,
+ 123,
+ 327,
+ 167,
+ 34,
+ 117,
+ 82,
+ 76,
+ 147,
+ 243,
+ 700,
+ 281,
+ 160,
+ 138,
+ 92,
+ 247,
+ 253,
+ 153,
+ 241,
+ 211,
+ 493,
+ 1438,
+ 172,
+ 159,
+ 29,
+ 76,
+ 185,
+ 569,
+ 95,
+ 209,
+ 372,
+ 277,
+ 178,
+ 95,
+ 138,
+ 63,
+ 77,
+ 292,
+ 151,
+ 298,
+ 188,
+ 368,
+ 203,
+ 61,
+ 297,
+ 219,
+ 129,
+ 247,
+ 266,
+ 559,
+ 75,
+ 82,
+ 352,
+ 703,
+ 100,
+ 348,
+ 146,
+ 34,
+ 297,
+ 22,
+ 106,
+ 465,
+ 74,
+ 245,
+ 93,
+ 386,
+ 283,
+ 215,
+ 260,
+ 267,
+ 107,
+ 164,
+ 427,
+ 426,
+ 456,
+ 105,
+ 27,
+ 137,
+ 100,
+ 320,
+ 159,
+ 353,
+ 331,
+ 52,
+ 117,
+ 146,
+ 260,
+ 60,
+ 193,
+ 373,
+ 336,
+ 200,
+ 501,
+ 80,
+ 207,
+ 125,
+ 237,
+ 185,
+ 224,
+ 312,
+ 188,
+ 168,
+ 322,
+ 511,
+ 155,
+ 161,
+ 368,
+ 247,
+ 142,
+ 118,
+ 158,
+ 129,
+ 136,
+ 122,
+ 120,
+ 180,
+ 329,
+ 204,
+ 437,
+ 76,
+ 422,
+ 41,
+ 131,
+ 130,
+ 165,
+ 80,
+ 470,
+ 281,
+ 391,
+ 228,
+ 290,
+ 153,
+ 76,
+ 111,
+ 168,
+ 14,
+ 262,
+ 96,
+ 208,
+ 483,
+ 130,
+ 754,
+ 113,
+ 364,
+ 227,
+ 266,
+ 232,
+ 172,
+ 164,
+ 103,
+ 297,
+ 388,
+ 63,
+ 212,
+ 149,
+ 161,
+ 165,
+ 170,
+ 974,
+ 96,
+ 140,
+ 61,
+ 252,
+ 262,
+ 206,
+ 248,
+ 367,
+ 116,
+ 115,
+ 77,
+ 200,
+ 90,
+ 470,
+ 302,
+ 81,
+ 247,
+ 16,
+ 863,
+ 104,
+ 592,
+ 85,
+ 153,
+ 127,
+ 190,
+ 112,
+ 130,
+ 167,
+ 293,
+ 97,
+ 596,
+ 134,
+ 108,
+ 65,
+ 312,
+ 237,
+ 130,
+ 314,
+ 175,
+ 87,
+ 123,
+ 240,
+ 109,
+ 243,
+ 536,
+ 120,
+ 182,
+ 280,
+ 215,
+ 147,
+ 222,
+ 404,
+ 306,
+ 255,
+ 252,
+ 127,
+ 140,
+ 200,
+ 127,
+ 171,
+ 629,
+ 155,
+ 290,
+ 159,
+ 111,
+ 434,
+ 218,
+ 107,
+ 272,
+ 574,
+ 89,
+ 133,
+ 114,
+ 175,
+ 257,
+ 208,
+ 327,
+ 99,
+ 293,
+ 68,
+ 124,
+ 150,
+ 504,
+ 16,
+ 100,
+ 321,
+ 614,
+ 93,
+ 355,
+ 177,
+ 245,
+ 121,
+ 192,
+ 110,
+ 160,
+ 249,
+ 131,
+ 349,
+ 114,
+ 445,
+ 144,
+ 341,
+ 796,
+ 126,
+ 101,
+ 91,
+ 52,
+ 78,
+ 471,
+ 333,
+ 695,
+ 70,
+ 113,
+ 372,
+ 603,
+ 85,
+ 76,
+ 535,
+ 48,
+ 114,
+ 169,
+ 116,
+ 100,
+ 212,
+ 304,
+ 102,
+ 207,
+ 197,
+ 125,
+ 114,
+ 319,
+ 157,
+ 160,
+ 83,
+ 98,
+ 133,
+ 451,
+ 34,
+ 79,
+ 109,
+ 251,
+ 122,
+ 87,
+ 375,
+ 51,
+ 178,
+ 165,
+ 155,
+ 173,
+ 304,
+ 583,
+ 138,
+ 83,
+ 543,
+ 158,
+ 365,
+ 118,
+ 469,
+ 488,
+ 232,
+ 411,
+ 63,
+ 207,
+ 84,
+ 162,
+ 159,
+ 147,
+ 90,
+ 409,
+ 175,
+ 219,
+ 96,
+ 113,
+ 232,
+ 251,
+ 253,
+ 118,
+ 140,
+ 102,
+ 763,
+ 97,
+ 41,
+ 51,
+ 241,
+ 308,
+ 118,
+ 14,
+ 125,
+ 193,
+ 200,
+ 349,
+ 282,
+ 633,
+ 560,
+ 114,
+ 172,
+ 292,
+ 269,
+ 73,
+ 121,
+ 59,
+ 64,
+ 322,
+ 163,
+ 99,
+ 119,
+ 148,
+ 222,
+ 265,
+ 214,
+ 75,
+ 62,
+ 112,
+ 220,
+ 160,
+ 129,
+ 578,
+ 183,
+ 565,
+ 154,
+ 125,
+ 111,
+ 231,
+ 195,
+ 193,
+ 287,
+ 84,
+ 47,
+ 130,
+ 24,
+ 955,
+ 336,
+ 159,
+ 180,
+ 163,
+ 197,
+ 218,
+ 34,
+ 386,
+ 154,
+ 159,
+ 157,
+ 227,
+ 116,
+ 205,
+ 133,
+ 59,
+ 229,
+ 147,
+ 179,
+ 185,
+ 427,
+ 171,
+ 237,
+ 156,
+ 162,
+ 674,
+ 275,
+ 142,
+ 340,
+ 260,
+ 35,
+ 121,
+ 143,
+ 472,
+ 207,
+ 597,
+ 274,
+ 420,
+ 62,
+ 185,
+ 275,
+ 111,
+ 271,
+ 776,
+ 90,
+ 330,
+ 243,
+ 148,
+ 514,
+ 224,
+ 118,
+ 255,
+ 70,
+ 296,
+ 313,
+ 257,
+ 77,
+ 114,
+ 73,
+ 126,
+ 168,
+ 188,
+ 106,
+ 45,
+ 25,
+ 114,
+ 33,
+ 446,
+ 121,
+ 78,
+ 213,
+ 115,
+ 305,
+ 19,
+ 643,
+ 371,
+ 384,
+ 492,
+ 144,
+ 181,
+ 174,
+ 293,
+ 316,
+ 106,
+ 255,
+ 189,
+ 173,
+ 155,
+ 137,
+ 470,
+ 139,
+ 169,
+ 223,
+ 596,
+ 253,
+ 600,
+ 133,
+ 659,
+ 112,
+ 124,
+ 175,
+ 202,
+ 185,
+ 170,
+ 184,
+ 261,
+ 103,
+ 170,
+ 235,
+ 169,
+ 125,
+ 265,
+ 233,
+ 246,
+ 290,
+ 259,
+ 290,
+ 148,
+ 174,
+ 537,
+ 316,
+ 35,
+ 173,
+ 144,
+ 474,
+ 313,
+ 147,
+ 395,
+ 93,
+ 166,
+ 410,
+ 139,
+ 95,
+ 211,
+ 318,
+ 207,
+ 95,
+ 319,
+ 27,
+ 237,
+ 129,
+ 116,
+ 99,
+ 151,
+ 376,
+ 485,
+ 99,
+ 305,
+ 298,
+ 125,
+ 219,
+ 222,
+ 513,
+ 321,
+ 240,
+ 383,
+ 301,
+ 367,
+ 179,
+ 160,
+ 177,
+ 181,
+ 377,
+ 240,
+ 1590,
+ 125,
+ 518,
+ 280,
+ 394,
+ 280,
+ 312,
+ 78,
+ 33,
+ 212,
+ 140,
+ 574,
+ 182,
+ 68,
+ 363,
+ 347,
+ 392,
+ 137,
+ 749,
+ 498,
+ 570,
+ 142,
+ 64,
+ 140,
+ 453,
+ 198,
+ 120,
+ 40,
+ 92,
+ 324,
+ 436,
+ 59,
+ 0,
+ 93,
+ 364,
+ 466,
+ 345,
+ 233,
+ 149,
+ 304,
+ 134,
+ 355,
+ 953,
+ 100,
+ 121,
+ 22,
+ 136,
+ 305,
+ 8,
+ 315,
+ 64,
+ 3,
+ 269,
+ 159,
+ 185,
+ 359,
+ 89,
+ 179,
+ 151,
+ 166,
+ 132,
+ 141,
+ 265,
+ 452,
+ 62,
+ 348,
+ 354,
+ 54,
+ 132,
+ 34,
+ 72,
+ 99,
+ 290,
+ 591,
+ 336,
+ 29,
+ 266,
+ 298,
+ 1043,
+ 83,
+ 282,
+ 209,
+ 106,
+ 157,
+ 197,
+ 319,
+ 371,
+ 383,
+ 110,
+ 97,
+ 15,
+ 4,
+ 256,
+ 124,
+ 239,
+ 20,
+ 98,
+ 112,
+ 350,
+ 127,
+ 157,
+ 165,
+ 63,
+ 101,
+ 133,
+ 145,
+ 110,
+ 349,
+ 676,
+ 197,
+ 235,
+ 291,
+ 132,
+ 165,
+ 196,
+ 177,
+ 342,
+ 77,
+ 160,
+ 22,
+ 206,
+ 143,
+ 102,
+ 224,
+ 73,
+ 42,
+ 144,
+ 1224,
+ 50,
+ 132,
+ 108,
+ 265,
+ 167,
+ 145,
+ 20,
+ 78,
+ 153,
+ 121,
+ 110,
+ 117,
+ 201,
+ 230,
+ 152,
+ 215,
+ 332,
+ 385,
+ 193,
+ 195,
+ 198,
+ 79,
+ 95,
+ 130,
+ 190,
+ 102,
+ 231,
+ 132,
+ 738,
+ 283,
+ 224,
+ 519,
+ 593,
+ 102,
+ 49,
+ 88,
+ 124,
+ 199,
+ 58,
+ 430,
+ 674,
+ 112,
+ 248,
+ 350,
+ 252,
+ 147,
+ 141,
+ 163,
+ 195,
+ 61,
+ 95,
+ 166,
+ 39,
+ 212,
+ 55,
+ 209,
+ 68,
+ 181,
+ 136,
+ 373,
+ 199,
+ 582,
+ 210,
+ 222,
+ 217,
+ 85,
+ 396,
+ 58,
+ 263,
+ 160,
+ 418,
+ 64,
+ 181,
+ 223,
+ 204,
+ 52,
+ 199,
+ 195,
+ 139,
+ 63,
+ 226,
+ 141,
+ 165,
+ 156,
+ 174,
+ 221,
+ 104,
+ 136,
+ 72,
+ 125,
+ 307,
+ 154,
+ 357,
+ 202,
+ 227,
+ 166,
+ 143,
+ 119,
+ 268,
+ 507,
+ 126,
+ 268,
+ 386,
+ 63,
+ 75,
+ 89,
+ 96,
+ 209,
+ 439,
+ 119,
+ 713,
+ 202,
+ 72,
+ 78,
+ 217,
+ 392,
+ 188,
+ 151,
+ 211,
+ 249,
+ 680,
+ 206,
+ 227,
+ 124,
+ 821,
+ 189,
+ 352,
+ 126,
+ 211,
+ 742,
+ 134,
+ 143,
+ 497,
+ 105,
+ 294,
+ 289,
+ 461,
+ 162,
+ 207,
+ 185,
+ 67,
+ 302,
+ 344,
+ 8,
+ 201,
+ 117,
+ 226,
+ 97,
+ 438,
+ 174,
+ 675,
+ 123,
+ 145,
+ 232,
+ 97,
+ 91,
+ 83,
+ 314,
+ 149,
+ 71,
+ 275,
+ 170,
+ 177,
+ 152,
+ 157,
+ 74,
+ 160,
+ 272,
+ 125,
+ 81,
+ 189,
+ 597,
+ 61,
+ 53,
+ 159,
+ 198,
+ 132,
+ 119,
+ 68,
+ 99,
+ 285,
+ 247,
+ 81,
+ 536,
+ 173,
+ 269,
+ 176,
+ 88,
+ 279,
+ 294,
+ 116,
+ 217,
+ 298,
+ 469,
+ 67,
+ 89,
+ 244,
+ 136,
+ 110,
+ 433,
+ 66,
+ 89,
+ 54,
+ 172,
+ 72,
+ 24,
+ 357,
+ 84,
+ 239,
+ 383,
+ 413,
+ 314,
+ 315,
+ 229,
+ 94,
+ 338,
+ 83,
+ 193,
+ 249,
+ 629,
+ 202,
+ 471,
+ 217,
+ 94,
+ 397,
+ 157,
+ 238,
+ 389,
+ 376,
+ 23,
+ 251,
+ 115,
+ 259,
+ 330,
+ 198,
+ 429,
+ 362,
+ 99,
+ 207,
+ 297,
+ 172,
+ 180,
+ 57,
+ 424,
+ 109,
+ 52,
+ 26,
+ 643,
+ 77,
+ 95,
+ 463,
+ 25,
+ 104,
+ 340,
+ 325,
+ 1277,
+ 363,
+ 245,
+ 313,
+ 140,
+ 25,
+ 157,
+ 386,
+ 593,
+ 176,
+ 48,
+ 51,
+ 99,
+ 452,
+ 187,
+ 110,
+ 85,
+ 234,
+ 264,
+ 233,
+ 611,
+ 600,
+ 92,
+ 158,
+ 438,
+ 205,
+ 342,
+ 249,
+ 75,
+ 314,
+ 109,
+ 456,
+ 92,
+ 223,
+ 148,
+ 205,
+ 80,
+ 357,
+ 23,
+ 171,
+ 90,
+ 55,
+ 51,
+ 245,
+ 318,
+ 105,
+ 191,
+ 300,
+ 82,
+ 153,
+ 194,
+ 212,
+ 185,
+ 87,
+ 145,
+ 585,
+ 136,
+ 146,
+ 180,
+ 376,
+ 100,
+ 75,
+ 334,
+ 92,
+ 750,
+ 333,
+ 118,
+ 620,
+ 193,
+ 138,
+ 155,
+ 140,
+ 127,
+ 54,
+ 203,
+ 128,
+ 184,
+ 148,
+ 244,
+ 107,
+ 217,
+ 78,
+ 129,
+ 52,
+ 41,
+ 285,
+ 14,
+ 182,
+ 37,
+ 162,
+ 285,
+ 74,
+ 203,
+ 186,
+ 283,
+ 44,
+ 205,
+ 291,
+ 159,
+ 148,
+ 57,
+ 193,
+ 744,
+ 84,
+ 254,
+ 135,
+ 247,
+ 119,
+ 619,
+ 514,
+ 111,
+ 418,
+ 56,
+ 413,
+ 257,
+ 199,
+ 471,
+ 155,
+ 66,
+ 103,
+ 358,
+ 514,
+ 27,
+ 544,
+ 134,
+ 135,
+ 359,
+ 322,
+ 144,
+ 445,
+ 356,
+ 102,
+ 187,
+ 152,
+ 49,
+ 177,
+ 106,
+ 146,
+ 404,
+ 413,
+ 177,
+ 201,
+ 609,
+ 251,
+ 35,
+ 473,
+ 596,
+ 370,
+ 691,
+ 70,
+ 77,
+ 212,
+ 245,
+ 544,
+ 117,
+ 410,
+ 179,
+ 896,
+ 365,
+ 158,
+ 82,
+ 206,
+ 162,
+ 936,
+ 162,
+ 344,
+ 71,
+ 178,
+ 52,
+ 409,
+ 272,
+ 87,
+ 441,
+ 175,
+ 164,
+ 932,
+ 13,
+ 139,
+ 263,
+ 26,
+ 455,
+ 180,
+ 200,
+ 1026,
+ 364,
+ 153,
+ 617,
+ 99,
+ 129,
+ 200,
+ 431,
+ 417,
+ 480,
+ 359,
+ 535,
+ 13,
+ 689,
+ 242,
+ 665,
+ 97,
+ 207,
+ 480,
+ 609,
+ 116,
+ 217,
+ 112,
+ 184,
+ 293,
+ 195,
+ 166,
+ 85,
+ 48,
+ 410,
+ 40,
+ 81,
+ 558,
+ 77,
+ 70,
+ 229,
+ 565,
+ 176,
+ 105,
+ 225,
+ 58,
+ 260,
+ 199,
+ 399,
+ 637,
+ 107,
+ 68,
+ 182,
+ 553,
+ 310,
+ 206,
+ 119,
+ 764,
+ 126,
+ 251,
+ 188,
+ 368,
+ 414,
+ 685,
+ 1611,
+ 203,
+ 74,
+ 118,
+ 752,
+ 241,
+ 430,
+ 67,
+ 294,
+ 110,
+ 58,
+ 191,
+ 130,
+ 76,
+ 336,
+ 59,
+ 72,
+ 127,
+ 347,
+ 286,
+ 29,
+ 55,
+ 228,
+ 128,
+ 96,
+ 147,
+ 56,
+ 39,
+ 384,
+ 240,
+ 238,
+ 194,
+ 273,
+ 57,
+ 859,
+ 245,
+ 238,
+ 53,
+ 364,
+ 106,
+ 382,
+ 191,
+ 483,
+ 253,
+ 328,
+ 155,
+ 233,
+ 66,
+ 134,
+ 197,
+ 645,
+ 81,
+ 201,
+ 248,
+ 660,
+ 182,
+ 30,
+ 101,
+ 76,
+ 152,
+ 86,
+ 95,
+ 23,
+ 151,
+ 95,
+ 52,
+ 52,
+ 421,
+ 52,
+ 139,
+ 231,
+ 120,
+ 67,
+ 50,
+ 86,
+ 139,
+ 43,
+ 233,
+ 230,
+ 177,
+ 149,
+ 324,
+ 287,
+ 58,
+ 226,
+ 151,
+ 57,
+ 133,
+ 171,
+ 62,
+ 91,
+ 172,
+ 498,
+ 85,
+ 224,
+ 242,
+ 192,
+ 160,
+ 147,
+ 87,
+ 199,
+ 65,
+ 150,
+ 57,
+ 234,
+ 521,
+ 555,
+ 86,
+ 204,
+ 222,
+ 162,
+ 648,
+ 659,
+ 96,
+ 56,
+ 152,
+ 25,
+ 491,
+ 108,
+ 198,
+ 135,
+ 69,
+ 138,
+ 327,
+ 295,
+ 255,
+ 523,
+ 103,
+ 107,
+ 65,
+ 556,
+ 115,
+ 180,
+ 87,
+ 435,
+ 132,
+ 312,
+ 283,
+ 182,
+ 91,
+ 417,
+ 160,
+ 171,
+ 210,
+ 135,
+ 461,
+ 171,
+ 68,
+ 120,
+ 381,
+ 278,
+ 149,
+ 197,
+ 61,
+ 275,
+ 201,
+ 724,
+ 197,
+ 143,
+ 153,
+ 197,
+ 120,
+ 254,
+ 118,
+ 151,
+ 114,
+ 274,
+ 156,
+ 251,
+ 104,
+ 65,
+ 75,
+ 157,
+ 165,
+ 314,
+ 109,
+ 219,
+ 868,
+ 448,
+ 58,
+ 127,
+ 170,
+ 208,
+ 134,
+ 129,
+ 184,
+ 371,
+ 145,
+ 136,
+ 363,
+ 143,
+ 56,
+ 298,
+ 47,
+ 827,
+ 83,
+ 570,
+ 557,
+ 59,
+ 170,
+ 422,
+ 76,
+ 238,
+ 111,
+ 84,
+ 371,
+ 103,
+ 206,
+ 265,
+ 254,
+ 33,
+ 1212,
+ 201,
+ 515,
+ 178,
+ 422,
+ 76,
+ 296,
+ 58,
+ 60,
+ 522,
+ 159,
+ 113,
+ 123,
+ 148,
+ 322,
+ 475,
+ 224,
+ 88,
+ 152,
+ 97,
+ 113,
+ 465,
+ 294,
+ 224,
+ 142,
+ 825,
+ 116,
+ 103,
+ 31,
+ 66,
+ 512,
+ 188,
+ 80,
+ 398,
+ 62,
+ 265,
+ 256,
+ 199,
+ 510,
+ 355,
+ 150,
+ 159,
+ 170,
+ 243,
+ 267,
+ 167,
+ 78,
+ 363,
+ 109,
+ 67,
+ 41,
+ 156,
+ 108,
+ 408,
+ 272,
+ 135,
+ 107,
+ 742,
+ 138,
+ 363,
+ 339,
+ 161,
+ 28,
+ 170,
+ 66,
+ 274,
+ 136,
+ 62,
+ 58,
+ 135,
+ 319,
+ 352,
+ 230,
+ 171,
+ 66,
+ 130,
+ 390,
+ 101,
+ 78,
+ 100,
+ 212,
+ 181,
+ 72,
+ 390,
+ 324,
+ 163,
+ 110,
+ 231,
+ 833,
+ 124,
+ 57,
+ 115,
+ 43,
+ 229,
+ 86,
+ 30,
+ 288,
+ 85,
+ 76,
+ 170,
+ 370,
+ 137,
+ 153,
+ 281,
+ 46,
+ 26,
+ 104,
+ 205,
+ 34,
+ 292,
+ 135,
+ 84,
+ 435,
+ 29,
+ 510,
+ 122,
+ 43,
+ 223,
+ 288,
+ 306,
+ 53,
+ 41,
+ 147,
+ 81,
+ 232,
+ 60,
+ 141,
+ 206,
+ 170,
+ 25,
+ 120,
+ 123,
+ 58,
+ 395,
+ 72,
+ 100,
+ 80,
+ 132,
+ 140,
+ 130,
+ 71,
+ 108,
+ 150,
+ 90,
+ 361,
+ 372,
+ 360,
+ 63,
+ 550,
+ 175,
+ 202,
+ 192,
+ 403,
+ 338,
+ 205,
+ 92,
+ 185,
+ 163,
+ 367,
+ 26,
+ 493,
+ 113,
+ 215,
+ 177,
+ 123,
+ 1075,
+ 163,
+ 245,
+ 258,
+ 651,
+ 409,
+ 283,
+ 144,
+ 67,
+ 64,
+ 384,
+ 60,
+ 26,
+ 151,
+ 464,
+ 68,
+ 185,
+ 128,
+ 88,
+ 266,
+ 490,
+ 232,
+ 537,
+ 464,
+ 447,
+ 164,
+ 184,
+ 373,
+ 42,
+ 132,
+ 579,
+ 180,
+ 159,
+ 239,
+ 95,
+ 156,
+ 174,
+ 59,
+ 273,
+ 223,
+ 76,
+ 920,
+ 152,
+ 113,
+ 369,
+ 445,
+ 142,
+ 317,
+ 184,
+ 82,
+ 83,
+ 209,
+ 210,
+ 278,
+ 69,
+ 143,
+ 302,
+ 148,
+ 481,
+ 121,
+ 180,
+ 312,
+ 147,
+ 154,
+ 326,
+ 362,
+ 72,
+ 121,
+ 101,
+ 306,
+ 94,
+ 250,
+ 562,
+ 302,
+ 46,
+ 149,
+ 88,
+ 426,
+ 123,
+ 221,
+ 169,
+ 102,
+ 214,
+ 572,
+ 105,
+ 171,
+ 50,
+ 31,
+ 304,
+ 469,
+ 45,
+ 249,
+ 85,
+ 79,
+ 70,
+ 758,
+ 200,
+ 87,
+ 966,
+ 430,
+ 147,
+ 131,
+ 541,
+ 281,
+ 158,
+ 201,
+ 56,
+ 187,
+ 409,
+ 269,
+ 221,
+ 276,
+ 282,
+ 198,
+ 102,
+ 60,
+ 252,
+ 23,
+ 200,
+ 1330,
+ 157,
+ 218,
+ 548,
+ 176,
+ 335,
+ 142,
+ 267,
+ 86,
+ 129,
+ 322,
+ 111,
+ 106,
+ 29,
+ 150,
+ 140,
+ 144,
+ 171,
+ 132,
+ 288,
+ 230,
+ 685,
+ 82,
+ 345,
+ 80,
+ 204,
+ 360,
+ 126,
+ 148,
+ 267,
+ 290,
+ 136,
+ 127,
+ 32,
+ 164,
+ 92,
+ 53,
+ 349,
+ 178,
+ 532,
+ 164,
+ 35,
+ 20,
+ 154,
+ 930,
+ 392,
+ 261,
+ 289,
+ 227,
+ 115,
+ 154,
+ 100,
+ 61,
+ 205,
+ 468,
+ 358,
+ 1576,
+ 83,
+ 28,
+ 92,
+ 217,
+ 134,
+ 110,
+ 16,
+ 402,
+ 689,
+ 716,
+ 43,
+ 39,
+ 194,
+ 984,
+ 59,
+ 20,
+ 359,
+ 180,
+ 94,
+ 232,
+ 152,
+ 70,
+ 48,
+ 201,
+ 209,
+ 67,
+ 87,
+ 450,
+ 174,
+ 20,
+ 73,
+ 267,
+ 69,
+ 542,
+ 301,
+ 207,
+ 159,
+ 117,
+ 159,
+ 161,
+ 206,
+ 438,
+ 250,
+ 46,
+ 147,
+ 275,
+ 236,
+ 112,
+ 361,
+ 953,
+ 148,
+ 233,
+ 103,
+ 579,
+ 183,
+ 117,
+ 175,
+ 186,
+ 68,
+ 157,
+ 131,
+ 56,
+ 447,
+ 342,
+ 22,
+ 150,
+ 110,
+ 166,
+ 404,
+ 170,
+ 80,
+ 164,
+ 291,
+ 126,
+ 349,
+ 384,
+ 440,
+ 143,
+ 284,
+ 123,
+ 771,
+ 132,
+ 45,
+ 21,
+ 243,
+ 145,
+ 288,
+ 23,
+ 406,
+ 393,
+ 116,
+ 25,
+ 75,
+ 54,
+ 404,
+ 179,
+ 102,
+ 110,
+ 227,
+ 194,
+ 303,
+ 366,
+ 220,
+ 231,
+ 119,
+ 41,
+ 495,
+ 128,
+ 185,
+ 138,
+ 418,
+ 208,
+ 177,
+ 249,
+ 84,
+ 338,
+ 299,
+ 282,
+ 435,
+ 51,
+ 188,
+ 231,
+ 58,
+ 615,
+ 192,
+ 319,
+ 860,
+ 680,
+ 165,
+ 356,
+ 235,
+ 173,
+ 216,
+ 177,
+ 220,
+ 633,
+ 94,
+ 35,
+ 35,
+ 263,
+ 108,
+ 245,
+ 327,
+ 320,
+ 236,
+ 201,
+ 443,
+ 59,
+ 72,
+ 199,
+ 589,
+ 199,
+ 113,
+ 179,
+ 61,
+ 107,
+ 1340,
+ 129,
+ 239,
+ 178,
+ 81,
+ 137,
+ 72,
+ 246,
+ 199,
+ 372,
+ 167,
+ 30,
+ 189,
+ 277,
+ 215,
+ 133,
+ 183,
+ 134,
+ 157,
+ 81,
+ 441,
+ 662,
+ 230,
+ 323,
+ 380,
+ 214,
+ 136,
+ 350,
+ 56,
+ 497,
+ 184,
+ 68,
+ 11,
+ 397,
+ 164,
+ 1030,
+ 266,
+ 143,
+ 229,
+ 342,
+ 340,
+ 59,
+ 77,
+ 157,
+ 199,
+ 118,
+ 254,
+ 281,
+ 269,
+ 203,
+ 140,
+ 148,
+ 583,
+ 172,
+ 68,
+ 267,
+ 19,
+ 604,
+ 290,
+ 78,
+ 88,
+ 550,
+ 52,
+ 235,
+ 159,
+ 120,
+ 1516,
+ 281,
+ 83,
+ 457,
+ 25,
+ 622,
+ 89,
+ 71,
+ 407,
+ 250,
+ 111,
+ 462,
+ 28,
+ 131,
+ 267,
+ 213,
+ 129,
+ 89,
+ 105,
+ 406,
+ 166,
+ 67,
+ 121,
+ 18,
+ 355,
+ 299,
+ 109,
+ 142,
+ 194,
+ 365,
+ 16,
+ 105,
+ 148,
+ 386,
+ 98,
+ 193,
+ 132,
+ 279,
+ 109,
+ 1045,
+ 361,
+ 204,
+ 83,
+ 105,
+ 73,
+ 29,
+ 355,
+ 153,
+ 87,
+ 178,
+ 174,
+ 605,
+ 89,
+ 121,
+ 216,
+ 83,
+ 184,
+ 161,
+ 301,
+ 276,
+ 182,
+ 87,
+ 377,
+ 211,
+ 357,
+ 119,
+ 264,
+ 165,
+ 148,
+ 121,
+ 90,
+ 367,
+ 444,
+ 141,
+ 283,
+ 123,
+ 85,
+ 71,
+ 525,
+ 238,
+ 217,
+ 433,
+ 52,
+ 149,
+ 357,
+ 140,
+ 154,
+ 219,
+ 251,
+ 544,
+ 79,
+ 103,
+ 97,
+ 205,
+ 344,
+ 204,
+ 156,
+ 213,
+ 153,
+ 29,
+ 15,
+ 654,
+ 139,
+ 85,
+ 187,
+ 188,
+ 298,
+ 113,
+ 201,
+ 264,
+ 23,
+ 180,
+ 95,
+ 69,
+ 324,
+ 298,
+ 134,
+ 245,
+ 121,
+ 49,
+ 606,
+ 489,
+ 184,
+ 106,
+ 91,
+ 249,
+ 92,
+ 404,
+ 135,
+ 37,
+ 117,
+ 174,
+ 285,
+ 112,
+ 208,
+ 135,
+ 179,
+ 126,
+ 126,
+ 209,
+ 192,
+ 341,
+ 52,
+ 84,
+ 341,
+ 244,
+ 423,
+ 65,
+ 87,
+ 34,
+ 169,
+ 39,
+ 69,
+ 299,
+ 80,
+ 729,
+ 389,
+ 165,
+ 216,
+ 201,
+ 172,
+ 702,
+ 112,
+ 140,
+ 382,
+ 128,
+ 175,
+ 147,
+ 292,
+ 156,
+ 570,
+ 399,
+ 222,
+ 243,
+ 74,
+ 243,
+ 38,
+ 178,
+ 80,
+ 75,
+ 65,
+ 168,
+ 221,
+ 119,
+ 773,
+ 104,
+ 870,
+ 400,
+ 112,
+ 283,
+ 56,
+ 224,
+ 172,
+ 636,
+ 63,
+ 487,
+ 221,
+ 92,
+ 48,
+ 97,
+ 69,
+ 333,
+ 78,
+ 131,
+ 155,
+ 41,
+ 133,
+ 57,
+ 21,
+ 47,
+ 89,
+ 163,
+ 327,
+ 73,
+ 428,
+ 41,
+ 271,
+ 175,
+ 647,
+ 21,
+ 463,
+ 141,
+ 166,
+ 67,
+ 263,
+ 133,
+ 124,
+ 331,
+ 174,
+ 190,
+ 145,
+ 139,
+ 90,
+ 52,
+ 170,
+ 91,
+ 47,
+ 52,
+ 81,
+ 39,
+ 36,
+ 627,
+ 83,
+ 166,
+ 72,
+ 22,
+ 272,
+ 152,
+ 109,
+ 290,
+ 257,
+ 21,
+ 153,
+ 202,
+ 265,
+ 234,
+ 53,
+ 370,
+ 355,
+ 280,
+ 237,
+ 147,
+ 83,
+ 103,
+ 118,
+ 80,
+ 127,
+ 160,
+ 57,
+ 227,
+ 115,
+ 267,
+ 227,
+ 113,
+ 23,
+ 64,
+ 71,
+ 168,
+ 581,
+ 52,
+ 511,
+ 201,
+ 170,
+ 61,
+ 256,
+ 137,
+ 20,
+ 387,
+ 140,
+ 400,
+ 190,
+ 432,
+ 82,
+ 94,
+ 221,
+ 741,
+ 40,
+ 313,
+ 128,
+ 163,
+ 21,
+ 17,
+ 197,
+ 622,
+ 175,
+ 423,
+ 181,
+ 181,
+ 77,
+ 158,
+ 517,
+ 26,
+ 127,
+ 105,
+ 152,
+ 337,
+ 955,
+ 729,
+ 159,
+ 330,
+ 130,
+ 314,
+ 193,
+ 53,
+ 231,
+ 353,
+ 805,
+ 102,
+ 869,
+ 65,
+ 115,
+ 460,
+ 561,
+ 93,
+ 989,
+ 209,
+ 295,
+ 110,
+ 18,
+ 221,
+ 138,
+ 214,
+ 75,
+ 718,
+ 394,
+ 27,
+ 1011,
+ 204,
+ 222,
+ 240,
+ 18,
+ 31,
+ 173,
+ 246,
+ 128,
+ 285,
+ 451,
+ 96,
+ 172,
+ 234,
+ 240,
+ 175,
+ 372,
+ 406,
+ 463,
+ 130,
+ 178,
+ 94,
+ 82,
+ 40,
+ 164,
+ 582,
+ 188,
+ 432,
+ 118,
+ 193,
+ 63,
+ 246,
+ 143,
+ 249,
+ 219,
+ 447,
+ 220,
+ 26,
+ 79,
+ 18,
+ 404,
+ 186,
+ 351,
+ 60,
+ 72,
+ 19,
+ 49,
+ 106,
+ 248,
+ 101,
+ 114,
+ 414,
+ 266,
+ 363,
+ 431,
+ 110,
+ 113,
+ 161,
+ 29,
+ 672,
+ 80,
+ 1994,
+ 183,
+ 250,
+ 223,
+ 100,
+ 188,
+ 64,
+ 83,
+ 122,
+ 51,
+ 330,
+ 272,
+ 307,
+ 24,
+ 386,
+ 56,
+ 358,
+ 227,
+ 52,
+ 360,
+ 106,
+ 141,
+ 28,
+ 97,
+ 107,
+ 168,
+ 260,
+ 78,
+ 262,
+ 84,
+ 173,
+ 968,
+ 71,
+ 136,
+ 464,
+ 176,
+ 193,
+ 118,
+ 185,
+ 247,
+ 800,
+ 216,
+ 46,
+ 434,
+ 230,
+ 516,
+ 78,
+ 1041,
+ 66,
+ 100,
+ 308,
+ 341,
+ 1288,
+ 178,
+ 163,
+ 172,
+ 140,
+ 311,
+ 212,
+ 264,
+ 319,
+ 186,
+ 473,
+ 18,
+ 639,
+ 129,
+ 426,
+ 229,
+ 252,
+ 292,
+ 44,
+ 384,
+ 213,
+ 94,
+ 72,
+ 36,
+ 316,
+ 217,
+ 180,
+ 562,
+ 422,
+ 17,
+ 174,
+ 261,
+ 122,
+ 165,
+ 59,
+ 103,
+ 187,
+ 286,
+ 52,
+ 197,
+ 262,
+ 100,
+ 350,
+ 30,
+ 213,
+ 207,
+ 24,
+ 36,
+ 139,
+ 322,
+ 190,
+ 159,
+ 191,
+ 10,
+ 1330,
+ 48,
+ 236,
+ 503,
+ 108,
+ 47,
+ 319,
+ 42,
+ 461,
+ 86,
+ 197,
+ 80,
+ 113,
+ 613,
+ 1271,
+ 155,
+ 466,
+ 298,
+ 306,
+ 85,
+ 298,
+ 143,
+ 21,
+ 354,
+ 56,
+ 354,
+ 164,
+ 136,
+ 303,
+ 158,
+ 118,
+ 145,
+ 39,
+ 82,
+ 355,
+ 151,
+ 59,
+ 342,
+ 207,
+ 128,
+ 304,
+ 42,
+ 27,
+ 396,
+ 520,
+ 93,
+ 70,
+ 95,
+ 392,
+ 25,
+ 94,
+ 197,
+ 446,
+ 100,
+ 252,
+ 100,
+ 112,
+ 28,
+ 145,
+ 82,
+ 152,
+ 606,
+ 288,
+ 135,
+ 50,
+ 119,
+ 160,
+ 23,
+ 75,
+ 383,
+ 26,
+ 174,
+ 61,
+ 59,
+ 33,
+ 31,
+ 109,
+ 19,
+ 68,
+ 491,
+ 127,
+ 1291,
+ 221,
+ 214,
+ 123,
+ 74,
+ 82,
+ 164,
+ 256,
+ 86,
+ 358,
+ 107,
+ 238,
+ 38,
+ 78,
+ 113,
+ 529,
+ 464,
+ 108,
+ 181,
+ 226,
+ 85,
+ 540,
+ 196,
+ 74,
+ 123,
+ 232,
+ 157,
+ 216,
+ 79,
+ 220,
+ 140,
+ 163,
+ 77,
+ 772,
+ 72,
+ 422,
+ 99,
+ 174,
+ 233,
+ 322,
+ 443,
+ 217,
+ 257,
+ 254,
+ 83,
+ 213,
+ 252,
+ 36,
+ 540,
+ 683,
+ 230,
+ 452,
+ 149,
+ 172,
+ 122,
+ 63,
+ 100,
+ 255,
+ 217,
+ 176,
+ 331,
+ 91,
+ 63,
+ 173,
+ 128,
+ 76,
+ 411,
+ 179,
+ 139,
+ 329,
+ 225,
+ 186,
+ 80,
+ 190,
+ 104,
+ 174,
+ 37,
+ 589,
+ 183,
+ 151,
+ 29,
+ 522,
+ 112,
+ 149,
+ 206,
+ 123,
+ 81,
+ 250,
+ 173,
+ 127,
+ 198,
+ 311,
+ 91,
+ 47,
+ 119,
+ 117,
+ 142,
+ 183,
+ 249,
+ 274,
+ 144,
+ 23,
+ 128,
+ 162,
+ 213,
+ 164,
+ 63,
+ 114,
+ 136,
+ 97,
+ 240,
+ 78,
+ 340,
+ 196,
+ 85,
+ 199,
+ 160,
+ 166,
+ 271,
+ 317,
+ 98,
+ 123,
+ 321,
+ 73,
+ 327,
+ 198,
+ 24,
+ 352,
+ 559,
+ 440,
+ 479,
+ 514,
+ 91,
+ 78,
+ 318,
+ 295,
+ 83,
+ 346,
+ 238,
+ 290,
+ 222,
+ 90,
+ 171,
+ 170,
+ 493,
+ 17,
+ 316,
+ 782,
+ 137,
+ 419,
+ 223,
+ 71,
+ 152,
+ 152,
+ 22,
+ 130,
+ 135,
+ 220,
+ 258,
+ 306,
+ 436,
+ 92,
+ 155,
+ 371,
+ 216,
+ 243,
+ 178,
+ 100,
+ 445,
+ 332,
+ 90,
+ 204,
+ 271,
+ 87,
+ 237,
+ 388,
+ 59,
+ 753,
+ 42,
+ 182,
+ 250,
+ 95,
+ 126,
+ 138,
+ 94,
+ 44,
+ 135,
+ 154,
+ 115,
+ 107,
+ 308,
+ 129,
+ 33,
+ 296,
+ 126,
+ 73,
+ 69,
+ 76,
+ 54,
+ 129,
+ 101,
+ 27,
+ 42,
+ 29,
+ 47,
+ 305,
+ 95,
+ 103,
+ 453,
+ 71,
+ 29,
+ 109,
+ 240,
+ 916,
+ 363,
+ 281,
+ 442,
+ 68,
+ 181,
+ 88,
+ 197,
+ 133,
+ 439,
+ 232,
+ 63,
+ 191,
+ 64,
+ 354,
+ 300,
+ 105,
+ 339,
+ 261,
+ 314,
+ 219,
+ 139,
+ 98,
+ 694,
+ 68,
+ 165,
+ 275,
+ 83,
+ 76,
+ 145,
+ 288,
+ 78,
+ 26,
+ 49,
+ 241,
+ 362,
+ 125,
+ 40,
+ 113,
+ 68,
+ 62,
+ 886,
+ 100,
+ 61,
+ 436,
+ 119,
+ 553,
+ 81,
+ 119,
+ 33,
+ 148,
+ 437,
+ 134,
+ 63,
+ 340,
+ 103,
+ 247,
+ 257,
+ 59,
+ 127,
+ 183,
+ 142,
+ 678,
+ 211,
+ 201,
+ 105,
+ 100,
+ 181,
+ 389,
+ 203,
+ 450,
+ 85,
+ 203,
+ 30,
+ 268,
+ 148,
+ 427,
+ 90,
+ 177,
+ 328,
+ 133,
+ 516,
+ 184,
+ 394,
+ 157,
+ 375,
+ 184,
+ 162,
+ 215,
+ 230,
+ 150,
+ 213,
+ 126,
+ 70,
+ 141,
+ 287,
+ 83,
+ 124,
+ 67,
+ 904,
+ 274,
+ 152,
+ 158,
+ 203,
+ 138,
+ 107,
+ 48,
+ 218,
+ 222,
+ 378,
+ 58,
+ 307,
+ 136,
+ 542,
+ 265,
+ 84,
+ 410,
+ 93,
+ 403,
+ 36,
+ 109,
+ 90,
+ 305,
+ 781,
+ 112,
+ 423,
+ 171,
+ 110,
+ 138,
+ 126,
+ 137,
+ 125,
+ 202,
+ 123,
+ 106,
+ 112,
+ 108,
+ 149,
+ 151,
+ 165,
+ 92,
+ 91,
+ 406,
+ 12,
+ 128,
+ 146,
+ 278,
+ 753,
+ 48,
+ 385,
+ 97,
+ 223,
+ 309,
+ 155,
+ 46,
+ 252,
+ 93,
+ 344,
+ 128,
+ 436,
+ 186,
+ 264,
+ 237,
+ 72,
+ 77,
+ 64,
+ 351,
+ 119,
+ 394,
+ 174,
+ 100,
+ 56,
+ 133,
+ 134,
+ 185,
+ 167,
+ 30,
+ 77,
+ 136,
+ 320,
+ 138,
+ 75,
+ 72,
+ 160,
+ 138,
+ 122,
+ 919,
+ 558,
+ 73,
+ 98,
+ 54,
+ 58,
+ 118,
+ 127,
+ 309,
+ 582,
+ 317,
+ 281,
+ 410,
+ 186,
+ 37,
+ 88,
+ 312,
+ 602,
+ 1178,
+ 130,
+ 226,
+ 640,
+ 340,
+ 138,
+ 298,
+ 462,
+ 320,
+ 69,
+ 190,
+ 130,
+ 316,
+ 166,
+ 168,
+ 247,
+ 153,
+ 238,
+ 211,
+ 111,
+ 161,
+ 361,
+ 700,
+ 83,
+ 247,
+ 252,
+ 559,
+ 190,
+ 10,
+ 109,
+ 82,
+ 143,
+ 61,
+ 424,
+ 140,
+ 157,
+ 157,
+ 110,
+ 69,
+ 241,
+ 757,
+ 68,
+ 171,
+ 182,
+ 270,
+ 192,
+ 104,
+ 325,
+ 144,
+ 57,
+ 184,
+ 109,
+ 100,
+ 114,
+ 109,
+ 186,
+ 187,
+ 580,
+ 81,
+ 93,
+ 106,
+ 78,
+ 55,
+ 204,
+ 408,
+ 147,
+ 119,
+ 133,
+ 195,
+ 108,
+ 92,
+ 146,
+ 206,
+ 452,
+ 163,
+ 35,
+ 96,
+ 119,
+ 265,
+ 179,
+ 162,
+ 223,
+ 210,
+ 193,
+ 822,
+ 163,
+ 339,
+ 140,
+ 77,
+ 73,
+ 42,
+ 24,
+ 147,
+ 145,
+ 141,
+ 263,
+ 123,
+ 208,
+ 100,
+ 644,
+ 289,
+ 124,
+ 157,
+ 226,
+ 136,
+ 541,
+ 50,
+ 250,
+ 181,
+ 32,
+ 235,
+ 121,
+ 215,
+ 320,
+ 382,
+ 286,
+ 1021,
+ 203,
+ 209,
+ 39,
+ 162,
+ 418,
+ 348,
+ 135,
+ 401,
+ 332,
+ 78,
+ 394,
+ 287,
+ 266,
+ 153,
+ 298,
+ 66,
+ 62,
+ 50,
+ 599,
+ 92,
+ 52,
+ 92,
+ 99,
+ 27,
+ 41,
+ 191,
+ 523,
+ 358,
+ 46,
+ 112,
+ 359,
+ 88,
+ 342,
+ 78,
+ 76,
+ 420,
+ 41,
+ 442,
+ 41,
+ 178,
+ 36,
+ 20,
+ 15,
+ 87,
+ 298,
+ 244,
+ 169,
+ 14,
+ 81,
+ 162,
+ 18,
+ 111,
+ 102,
+ 19,
+ 394,
+ 301,
+ 341,
+ 406,
+ 226,
+ 168,
+ 703,
+ 119,
+ 314,
+ 182,
+ 362,
+ 142,
+ 17,
+ 26,
+ 141,
+ 14,
+ 80,
+ 368,
+ 303,
+ 77,
+ 295,
+ 69,
+ 143,
+ 153,
+ 83,
+ 214,
+ 118,
+ 638,
+ 222,
+ 78,
+ 260,
+ 150,
+ 62,
+ 100,
+ 138,
+ 329,
+ 331,
+ 131,
+ 315,
+ 37,
+ 45,
+ 33,
+ 117,
+ 170,
+ 287,
+ 43,
+ 110,
+ 193,
+ 187,
+ 198,
+ 256,
+ 285,
+ 160,
+ 442,
+ 183,
+ 83,
+ 128,
+ 57,
+ 173,
+ 145,
+ 116,
+ 126,
+ 83,
+ 196,
+ 75,
+ 123,
+ 138,
+ 355,
+ 115,
+ 147,
+ 133,
+ 134,
+ 60,
+ 147,
+ 296,
+ 70,
+ 156,
+ 187,
+ 269,
+ 71,
+ 483,
+ 881,
+ 121,
+ 98,
+ 243,
+ 181,
+ 139,
+ 198,
+ 132,
+ 129,
+ 72,
+ 285,
+ 255,
+ 241,
+ 705,
+ 423,
+ 43,
+ 48,
+ 107,
+ 61,
+ 157,
+ 105,
+ 98,
+ 189,
+ 652,
+ 206,
+ 174,
+ 150,
+ 91,
+ 78,
+ 79,
+ 139,
+ 89,
+ 168,
+ 436,
+ 88,
+ 171,
+ 130,
+ 50,
+ 49,
+ 259,
+ 79,
+ 128,
+ 108,
+ 187,
+ 67,
+ 344,
+ 167,
+ 226,
+ 179,
+ 353,
+ 161,
+ 346,
+ 269,
+ 229,
+ 24,
+ 16,
+ 88,
+ 291,
+ 166,
+ 92,
+ 254,
+ 19,
+ 176,
+ 1162,
+ 74,
+ 291,
+ 370,
+ 495,
+ 57,
+ 107,
+ 66,
+ 167,
+ 668,
+ 204,
+ 170,
+ 63,
+ 133,
+ 153,
+ 118,
+ 117,
+ 572,
+ 59,
+ 42,
+ 408,
+ 314,
+ 277,
+ 140,
+ 424,
+ 159,
+ 96,
+ 167,
+ 200,
+ 75,
+ 249,
+ 134,
+ 50,
+ 173,
+ 854,
+ 236,
+ 183,
+ 185,
+ 41,
+ 138,
+ 411,
+ 394,
+ 209,
+ 266,
+ 134,
+ 311,
+ 93,
+ 213,
+ 641,
+ 61,
+ 136,
+ 187,
+ 76,
+ 406,
+ 544,
+ 363,
+ 271,
+ 70,
+ 198,
+ 398,
+ 979,
+ 89,
+ 135,
+ 420,
+ 235,
+ 169,
+ 343,
+ 88,
+ 68,
+ 77,
+ 116,
+ 363,
+ 116,
+ 637,
+ 117,
+ 128,
+ 269,
+ 150,
+ 132,
+ 1208,
+ 228,
+ 585,
+ 229,
+ 441,
+ 60,
+ 47,
+ 270,
+ 26,
+ 386,
+ 54,
+ 284,
+ 53,
+ 245,
+ 151,
+ 64,
+ 205,
+ 250,
+ 66,
+ 137,
+ 72,
+ 284,
+ 126,
+ 120,
+ 48,
+ 1062,
+ 283,
+ 295,
+ 37,
+ 18,
+ 18,
+ 350,
+ 421,
+ 112,
+ 744,
+ 102,
+ 261,
+ 190,
+ 114,
+ 680,
+ 185,
+ 156,
+ 394,
+ 37,
+ 417,
+ 154,
+ 533,
+ 122,
+ 113,
+ 220,
+ 15,
+ 97,
+ 199,
+ 142,
+ 417,
+ 192,
+ 443,
+ 115,
+ 54,
+ 159,
+ 335,
+ 104,
+ 236,
+ 300,
+ 163,
+ 156,
+ 103,
+ 187,
+ 310,
+ 147,
+ 129,
+ 208,
+ 124,
+ 67,
+ 1218,
+ 362,
+ 132,
+ 55,
+ 105,
+ 355,
+ 466,
+ 94,
+ 227,
+ 387,
+ 379,
+ 205,
+ 332,
+ 200,
+ 476,
+ 290,
+ 26,
+ 632,
+ 316,
+ 440,
+ 52,
+ 190,
+ 81,
+ 58,
+ 356,
+ 221,
+ 453,
+ 248,
+ 324,
+ 609,
+ 392,
+ 422,
+ 101,
+ 112,
+ 308,
+ 43,
+ 149,
+ 36,
+ 324,
+ 209,
+ 119,
+ 13,
+ 11,
+ 255,
+ 50,
+ 373,
+ 18,
+ 108,
+ 307,
+ 78,
+ 376,
+ 188,
+ 443,
+ 802,
+ 36,
+ 18,
+ 89,
+ 359,
+ 19,
+ 404,
+ 13,
+ 297,
+ 300,
+ 37,
+ 61,
+ 793,
+ 1195,
+ 61,
+ 96,
+ 399,
+ 121,
+ 84,
+ 108,
+ 48,
+ 129,
+ 230,
+ 37,
+ 25,
+ 77,
+ 313,
+ 114,
+ 119,
+ 305,
+ 49,
+ 99,
+ 378,
+ 491,
+ 203,
+ 135,
+ 626,
+ 16,
+ 125,
+ 354,
+ 507,
+ 140,
+ 113,
+ 249,
+ 255,
+ 55,
+ 340,
+ 156,
+ 375,
+ 43,
+ 604,
+ 29,
+ 160,
+ 136,
+ 82,
+ 122,
+ 185,
+ 147,
+ 575,
+ 172,
+ 394,
+ 176,
+ 37,
+ 297,
+ 593,
+ 340,
+ 149,
+ 348,
+ 446,
+ 111,
+ 34,
+ 197,
+ 144,
+ 430,
+ 268,
+ 252,
+ 395,
+ 170,
+ 147,
+ 127,
+ 22,
+ 109,
+ 677,
+ 167,
+ 105,
+ 57,
+ 220,
+ 1082,
+ 248,
+ 11,
+ 161,
+ 653,
+ 193,
+ 216,
+ 291,
+ 223,
+ 96,
+ 477,
+ 446,
+ 159,
+ 178,
+ 635,
+ 136,
+ 69,
+ 521,
+ 201,
+ 142,
+ 66,
+ 138,
+ 574,
+ 145,
+ 335,
+ 330,
+ 361,
+ 64,
+ 221,
+ 90,
+ 254,
+ 77,
+ 374,
+ 191,
+ 370,
+ 253,
+ 786,
+ 136,
+ 162,
+ 219,
+ 177,
+ 252,
+ 416,
+ 52,
+ 32,
+ 217,
+ 93,
+ 246,
+ 197,
+ 163,
+ 63,
+ 67,
+ 605,
+ 1411,
+ 83,
+ 419,
+ 498,
+ 202,
+ 21,
+ 40,
+ 207,
+ 238,
+ 318,
+ 232,
+ 153,
+ 97,
+ 216,
+ 142,
+ 290,
+ 559,
+ 67,
+ 107,
+ 74,
+ 359,
+ 73,
+ 16,
+ 65,
+ 722,
+ 133,
+ 288,
+ 120,
+ 43,
+ 30,
+ 219,
+ 164,
+ 148,
+ 11,
+ 130,
+ 140,
+ 559,
+ 224,
+ 177,
+ 405,
+ 69,
+ 1017,
+ 385,
+ 237,
+ 202,
+ 153,
+ 163,
+ 97,
+ 399,
+ 184,
+ 155,
+ 89,
+ 92,
+ 296,
+ 92,
+ 149,
+ 354,
+ 106,
+ 549,
+ 267,
+ 117,
+ 15,
+ 216,
+ 225,
+ 233,
+ 129,
+ 339,
+ 112,
+ 9,
+ 26,
+ 55,
+ 2635,
+ 138,
+ 326,
+ 179,
+ 262,
+ 168,
+ 193,
+ 241,
+ 37,
+ 189,
+ 89,
+ 112,
+ 489,
+ 241,
+ 60,
+ 61,
+ 62,
+ 43,
+ 170,
+ 22,
+ 99,
+ 394,
+ 42,
+ 98,
+ 114,
+ 167,
+ 206,
+ 160,
+ 156,
+ 512,
+ 109,
+ 99,
+ 241,
+ 59,
+ 63,
+ 54,
+ 87,
+ 122,
+ 375,
+ 50,
+ 124,
+ 157,
+ 45,
+ 577,
+ 134,
+ 170,
+ 124,
+ 111,
+ 368,
+ 25,
+ 41,
+ 361,
+ 493,
+ 470,
+ 282,
+ 48,
+ 606,
+ 74,
+ 79,
+ 153,
+ 513,
+ 139,
+ 273,
+ 115,
+ 280,
+ 109,
+ 64,
+ 235,
+ 95,
+ 231,
+ 31,
+ 64,
+ 1276,
+ 27,
+ 188,
+ 329,
+ 45,
+ 98,
+ 75,
+ 60,
+ 269,
+ 307,
+ 485,
+ 115,
+ 351,
+ 113,
+ 471,
+ 256,
+ 108,
+ 63,
+ 166,
+ 123,
+ 633,
+ 160,
+ 245,
+ 98,
+ 37,
+ 374,
+ 172,
+ 74,
+ 111,
+ 38,
+ 205,
+ 168,
+ 19,
+ 534,
+ 232,
+ 126,
+ 237,
+ 26,
+ 109,
+ 84,
+ 11,
+ 415,
+ 44,
+ 446,
+ 459,
+ 398,
+ 248,
+ 154,
+ 127,
+ 591,
+ 165,
+ 170,
+ 618,
+ 110,
+ 40,
+ 519,
+ 39,
+ 36,
+ 67,
+ 825,
+ 55,
+ 172,
+ 15,
+ 150,
+ 19,
+ 47,
+ 134,
+ 9,
+ 176,
+ 25,
+ 238,
+ 17,
+ 9,
+ 14,
+ 267,
+ 11,
+ 12,
+ 8,
+ 76,
+ 9,
+ 28,
+ 47,
+ 31,
+ 11,
+ 81,
+ 29,
+ 20,
+ 152,
+ 29,
+ 25,
+ 34,
+ 10,
+ 34,
+ 17,
+ 134,
+ 17,
+ 268,
+ 22,
+ 82,
+ 16,
+ 9,
+ 10,
+ 123,
+ 8,
+ 16,
+ 179,
+ 13,
+ 14,
+ 524,
+ 23,
+ 126,
+ 15,
+ 7,
+ 40,
+ 15,
+ 4,
+ 12,
+ 77,
+ 7,
+ 11,
+ 20,
+ 10,
+ 285,
+ 39,
+ 37,
+ 7,
+ 205,
+ 9,
+ 46,
+ 253,
+ 10,
+ 220,
+ 51,
+ 407,
+ 9,
+ 110,
+ 11,
+ 161,
+ 44,
+ 13,
+ 79,
+ 212,
+ 78,
+ 129,
+ 65,
+ 9,
+ 100,
+ 86,
+ 8,
+ 258,
+ 16,
+ 27,
+ 12,
+ 11,
+ 155,
+ 81,
+ 116,
+ 10,
+ 16,
+ 84,
+ 804,
+ 241,
+ 10,
+ 23,
+ 43,
+ 14,
+ 8,
+ 9,
+ 73,
+ 14,
+ 78,
+ 590,
+ 13,
+ 40,
+ 74,
+ 27,
+ 13,
+ 23,
+ 160,
+ 14,
+ 20,
+ 9,
+ 26,
+ 48,
+ 13,
+ 9,
+ 13,
+ 55,
+ 10,
+ 41,
+ 7,
+ 92,
+ 101,
+ 75,
+ 17,
+ 184,
+ 23,
+ 78,
+ 601,
+ 13,
+ 31,
+ 294,
+ 36,
+ 15,
+ 87,
+ 38,
+ 61,
+ 45,
+ 42,
+ 23,
+ 24,
+ 152,
+ 31,
+ 236,
+ 20,
+ 14,
+ 37,
+ 47,
+ 34,
+ 250,
+ 221,
+ 21,
+ 14,
+ 94,
+ 111,
+ 19,
+ 274,
+ 819,
+ 12,
+ 21,
+ 14,
+ 11,
+ 9,
+ 109,
+ 21,
+ 7,
+ 18,
+ 24,
+ 61,
+ 6,
+ 114,
+ 44,
+ 10,
+ 26,
+ 18,
+ 8,
+ 15,
+ 39,
+ 48,
+ 18,
+ 35,
+ 13,
+ 22,
+ 11,
+ 447,
+ 492,
+ 11,
+ 9,
+ 9,
+ 11,
+ 12,
+ 86,
+ 46,
+ 32,
+ 124,
+ 52,
+ 145,
+ 8,
+ 12,
+ 16,
+ 41,
+ 20,
+ 9,
+ 202,
+ 310,
+ 204,
+ 298,
+ 85,
+ 82,
+ 72,
+ 53,
+ 123,
+ 364,
+ 655,
+ 640,
+ 339,
+ 216,
+ 165,
+ 137,
+ 62,
+ 56,
+ 790,
+ 481,
+ 32,
+ 183,
+ 214,
+ 351,
+ 51,
+ 89,
+ 347,
+ 372,
+ 75,
+ 249,
+ 268,
+ 333,
+ 67,
+ 162,
+ 67,
+ 168,
+ 71,
+ 151,
+ 91,
+ 281,
+ 375,
+ 168,
+ 305,
+ 650,
+ 178,
+ 465,
+ 322,
+ 271,
+ 138,
+ 215,
+ 318,
+ 253,
+ 301,
+ 197,
+ 71,
+ 190,
+ 150,
+ 150,
+ 182,
+ 176,
+ 565,
+ 138,
+ 406,
+ 529,
+ 381,
+ 59,
+ 198,
+ 80,
+ 433,
+ 159,
+ 513,
+ 207,
+ 120,
+ 121,
+ 95,
+ 111,
+ 302,
+ 212,
+ 154,
+ 181,
+ 32,
+ 392,
+ 162,
+ 634,
+ 79,
+ 148,
+ 103,
+ 141,
+ 244,
+ 250,
+ 140,
+ 216,
+ 397,
+ 76,
+ 135,
+ 131,
+ 102,
+ 153,
+ 291,
+ 185,
+ 281,
+ 114,
+ 183,
+ 111,
+ 56,
+ 101,
+ 247,
+ 125,
+ 322,
+ 182,
+ 117,
+ 198,
+ 123,
+ 45,
+ 85,
+ 146,
+ 103,
+ 27,
+ 117,
+ 124,
+ 141,
+ 138,
+ 266,
+ 203,
+ 118,
+ 98,
+ 202,
+ 158,
+ 224,
+ 73,
+ 111,
+ 69,
+ 104,
+ 252,
+ 260,
+ 450,
+ 381,
+ 281,
+ 128,
+ 58,
+ 108,
+ 54,
+ 249,
+ 102,
+ 215,
+ 428,
+ 157,
+ 242,
+ 117,
+ 80,
+ 36,
+ 89,
+ 173,
+ 150,
+ 292,
+ 150,
+ 426,
+ 55,
+ 86,
+ 359,
+ 305,
+ 92,
+ 86,
+ 340,
+ 125,
+ 196,
+ 484,
+ 56,
+ 245,
+ 156,
+ 221,
+ 1992,
+ 143,
+ 157,
+ 420,
+ 289,
+ 307,
+ 723,
+ 660,
+ 63,
+ 96,
+ 220,
+ 144,
+ 97,
+ 44,
+ 79,
+ 71,
+ 348,
+ 144,
+ 203,
+ 106,
+ 60,
+ 134,
+ 108,
+ 33,
+ 957,
+ 83,
+ 158,
+ 269,
+ 202,
+ 149,
+ 111,
+ 188,
+ 211,
+ 24,
+ 109,
+ 452,
+ 269,
+ 206,
+ 228,
+ 183,
+ 267,
+ 414,
+ 60,
+ 125,
+ 172,
+ 84,
+ 412,
+ 130,
+ 115,
+ 51,
+ 89,
+ 108,
+ 97,
+ 203,
+ 42,
+ 991,
+ 652,
+ 178,
+ 306,
+ 354,
+ 100,
+ 501,
+ 93,
+ 381,
+ 251,
+ 515,
+ 389,
+ 155,
+ 225,
+ 172,
+ 202,
+ 155,
+ 277,
+ 167,
+ 194,
+ 566,
+ 111,
+ 43,
+ 433,
+ 49,
+ 634,
+ 52,
+ 64,
+ 99,
+ 133,
+ 169,
+ 68,
+ 30,
+ 246,
+ 219,
+ 165,
+ 105,
+ 217,
+ 538,
+ 164,
+ 46,
+ 64,
+ 105,
+ 253,
+ 260,
+ 126,
+ 121,
+ 101,
+ 400,
+ 178,
+ 134,
+ 104,
+ 692,
+ 85,
+ 678,
+ 96,
+ 106,
+ 137,
+ 53,
+ 89,
+ 45,
+ 407,
+ 426,
+ 286,
+ 1576,
+ 468,
+ 178,
+ 327,
+ 235,
+ 333,
+ 297,
+ 668,
+ 65,
+ 1044,
+ 141,
+ 39,
+ 53,
+ 548,
+ 95,
+ 273,
+ 304,
+ 425,
+ 339,
+ 92,
+ 107,
+ 148,
+ 125,
+ 181,
+ 99,
+ 518,
+ 164,
+ 397,
+ 148,
+ 89,
+ 181,
+ 111,
+ 227,
+ 107,
+ 1434,
+ 176,
+ 179,
+ 63,
+ 200,
+ 250,
+ 161,
+ 39,
+ 66,
+ 118,
+ 116,
+ 128,
+ 104,
+ 107,
+ 401,
+ 64,
+ 758,
+ 111,
+ 360,
+ 239,
+ 240,
+ 127,
+ 412,
+ 244,
+ 62,
+ 41,
+ 559,
+ 300,
+ 64,
+ 328,
+ 232,
+ 259,
+ 1103,
+ 66,
+ 190,
+ 61,
+ 74,
+ 94,
+ 69,
+ 497,
+ 21,
+ 223,
+ 207,
+ 137,
+ 459,
+ 217,
+ 247,
+ 289,
+ 173,
+ 130,
+ 332,
+ 183,
+ 94,
+ 385,
+ 118,
+ 199,
+ 240,
+ 128,
+ 199,
+ 199,
+ 39,
+ 256,
+ 161,
+ 461,
+ 187,
+ 201,
+ 206,
+ 297,
+ 130,
+ 480,
+ 445,
+ 554,
+ 46,
+ 254,
+ 224,
+ 118,
+ 295,
+ 174,
+ 243,
+ 111,
+ 451,
+ 154,
+ 162,
+ 933,
+ 110,
+ 448,
+ 120,
+ 151,
+ 199,
+ 97,
+ 531,
+ 41,
+ 130,
+ 236,
+ 532,
+ 136,
+ 337,
+ 1467,
+ 117,
+ 234,
+ 387,
+ 500,
+ 267,
+ 313,
+ 535,
+ 175,
+ 188,
+ 141,
+ 422,
+ 354,
+ 209,
+ 194,
+ 166,
+ 1165,
+ 113,
+ 98,
+ 190,
+ 104,
+ 88,
+ 316,
+ 211,
+ 208,
+ 167,
+ 108,
+ 299,
+ 238,
+ 281,
+ 270,
+ 234,
+ 68,
+ 107,
+ 159,
+ 247,
+ 97,
+ 228,
+ 293,
+ 88,
+ 143,
+ 273,
+ 152,
+ 87,
+ 339,
+ 98,
+ 70,
+ 264,
+ 280,
+ 164,
+ 25,
+ 196,
+ 95,
+ 116,
+ 305,
+ 263,
+ 210,
+ 333,
+ 627,
+ 100,
+ 75,
+ 416,
+ 51,
+ 576,
+ 160,
+ 96,
+ 543,
+ 182,
+ 104,
+ 13,
+ 167,
+ 317,
+ 74,
+ 422,
+ 447,
+ 380,
+ 371,
+ 122,
+ 159,
+ 79,
+ 261,
+ 234,
+ 146,
+ 407,
+ 416,
+ 756,
+ 500,
+ 352,
+ 164,
+ 100,
+ 245,
+ 95,
+ 88,
+ 78,
+ 422,
+ 167,
+ 336,
+ 112,
+ 221,
+ 624,
+ 53,
+ 279,
+ 136,
+ 242,
+ 185,
+ 9,
+ 205,
+ 131,
+ 15,
+ 192,
+ 118,
+ 219,
+ 342,
+ 140,
+ 161,
+ 259,
+ 491,
+ 220,
+ 141,
+ 109,
+ 259,
+ 183,
+ 24,
+ 216,
+ 58,
+ 123,
+ 146,
+ 191,
+ 175,
+ 395,
+ 144,
+ 425,
+ 59,
+ 208,
+ 85,
+ 82,
+ 523,
+ 144,
+ 152,
+ 119,
+ 136,
+ 85,
+ 524,
+ 377,
+ 286,
+ 42,
+ 711,
+ 238,
+ 136,
+ 367,
+ 217,
+ 260,
+ 116,
+ 176,
+ 130,
+ 130,
+ 272,
+ 71,
+ 185,
+ 253,
+ 154,
+ 154,
+ 201,
+ 46,
+ 191,
+ 362,
+ 287,
+ 220,
+ 249,
+ 120,
+ 113,
+ 359,
+ 443,
+ 402,
+ 165,
+ 143,
+ 186,
+ 145,
+ 125,
+ 156,
+ 630,
+ 116,
+ 188,
+ 199,
+ 545,
+ 156,
+ 483,
+ 165,
+ 197,
+ 245,
+ 113,
+ 173,
+ 214,
+ 206,
+ 143,
+ 259,
+ 154,
+ 163,
+ 123,
+ 297,
+ 86,
+ 122,
+ 116,
+ 338,
+ 212,
+ 586,
+ 413,
+ 293,
+ 528,
+ 220,
+ 604,
+ 159,
+ 220,
+ 285,
+ 96,
+ 215,
+ 163,
+ 121,
+ 185,
+ 297,
+ 266,
+ 491,
+ 303,
+ 112,
+ 306,
+ 1027,
+ 338,
+ 138,
+ 210,
+ 58,
+ 305,
+ 283,
+ 360,
+ 216,
+ 327,
+ 317,
+ 76,
+ 202,
+ 108,
+ 194,
+ 165,
+ 64,
+ 141,
+ 82,
+ 136,
+ 203,
+ 54,
+ 158,
+ 192,
+ 144,
+ 251,
+ 584,
+ 157,
+ 78,
+ 119,
+ 214,
+ 355,
+ 452,
+ 294,
+ 63,
+ 280,
+ 518,
+ 336,
+ 302,
+ 346,
+ 291,
+ 426,
+ 107,
+ 289,
+ 262,
+ 52,
+ 517,
+ 71,
+ 554,
+ 96,
+ 59,
+ 228,
+ 242,
+ 154,
+ 117,
+ 124,
+ 145,
+ 237,
+ 378,
+ 171,
+ 286,
+ 218,
+ 21,
+ 116,
+ 520,
+ 82,
+ 212,
+ 243,
+ 49,
+ 65,
+ 376,
+ 476,
+ 155,
+ 90,
+ 17,
+ 140,
+ 187,
+ 136,
+ 389,
+ 22,
+ 38,
+ 480,
+ 141,
+ 212,
+ 249,
+ 256,
+ 141,
+ 153,
+ 120,
+ 333,
+ 279,
+ 241,
+ 103,
+ 861,
+ 127,
+ 136,
+ 529,
+ 104,
+ 191,
+ 369,
+ 161,
+ 89,
+ 195,
+ 214,
+ 71,
+ 183,
+ 173,
+ 329,
+ 225,
+ 320,
+ 280,
+ 184,
+ 75,
+ 353,
+ 126,
+ 95,
+ 477,
+ 134,
+ 85,
+ 157,
+ 254,
+ 394,
+ 53,
+ 129,
+ 136,
+ 154,
+ 265,
+ 250,
+ 82,
+ 158,
+ 1272,
+ 182,
+ 207,
+ 95,
+ 259,
+ 261,
+ 205,
+ 323,
+ 64,
+ 42,
+ 63,
+ 618,
+ 183,
+ 296,
+ 206,
+ 317,
+ 107,
+ 97,
+ 75,
+ 296,
+ 74,
+ 402,
+ 126,
+ 65,
+ 389,
+ 99,
+ 99,
+ 194,
+ 420,
+ 191,
+ 697,
+ 96,
+ 138,
+ 110,
+ 55,
+ 45,
+ 175,
+ 139,
+ 153,
+ 80,
+ 185,
+ 128,
+ 349,
+ 51,
+ 99,
+ 173,
+ 184,
+ 272,
+ 166,
+ 42,
+ 127,
+ 85,
+ 225,
+ 42,
+ 206,
+ 113,
+ 92,
+ 16,
+ 51,
+ 205,
+ 125,
+ 91,
+ 194,
+ 85,
+ 61,
+ 174,
+ 130,
+ 238,
+ 160,
+ 64,
+ 115,
+ 126,
+ 124,
+ 321,
+ 215,
+ 189,
+ 127,
+ 196,
+ 87,
+ 112,
+ 310,
+ 389,
+ 294,
+ 611,
+ 156,
+ 275,
+ 143,
+ 92,
+ 82,
+ 222,
+ 175,
+ 148,
+ 366,
+ 138,
+ 337,
+ 236,
+ 52,
+ 332,
+ 127,
+ 72,
+ 186,
+ 219,
+ 180,
+ 273,
+ 349,
+ 90,
+ 96,
+ 899,
+ 81,
+ 118,
+ 119,
+ 97,
+ 171,
+ 1156,
+ 71,
+ 668,
+ 183,
+ 128,
+ 171,
+ 76,
+ 89,
+ 188,
+ 242,
+ 98,
+ 175,
+ 87,
+ 100,
+ 89,
+ 31,
+ 205,
+ 167,
+ 108,
+ 31,
+ 494,
+ 96,
+ 161,
+ 130,
+ 145,
+ 80,
+ 108,
+ 532,
+ 145,
+ 178,
+ 71,
+ 90,
+ 144,
+ 332,
+ 693,
+ 225,
+ 289,
+ 224,
+ 224,
+ 118,
+ 362,
+ 125,
+ 672,
+ 219,
+ 192,
+ 160,
+ 360,
+ 173,
+ 94,
+ 102,
+ 378,
+ 70,
+ 294,
+ 728,
+ 643,
+ 111,
+ 203,
+ 1317,
+ 313,
+ 364,
+ 171,
+ 290,
+ 77,
+ 140,
+ 83,
+ 87,
+ 176,
+ 736,
+ 458,
+ 384,
+ 174,
+ 161,
+ 295,
+ 312,
+ 206,
+ 49,
+ 181,
+ 106,
+ 601,
+ 113,
+ 219,
+ 388,
+ 397,
+ 431,
+ 71,
+ 480,
+ 218,
+ 676,
+ 74,
+ 240,
+ 292,
+ 391,
+ 233,
+ 293,
+ 391,
+ 432,
+ 411,
+ 208,
+ 197,
+ 156,
+ 266,
+ 211,
+ 263,
+ 226,
+ 231,
+ 60,
+ 171,
+ 243,
+ 137,
+ 593,
+ 156,
+ 246,
+ 445,
+ 337,
+ 399,
+ 85,
+ 19,
+ 173,
+ 17,
+ 281,
+ 193,
+ 76,
+ 128,
+ 16,
+ 20,
+ 115,
+ 607,
+ 56,
+ 799,
+ 372,
+ 120,
+ 119,
+ 497,
+ 170,
+ 630,
+ 196,
+ 134,
+ 121,
+ 75,
+ 151,
+ 143,
+ 317,
+ 668,
+ 496,
+ 315,
+ 88,
+ 141,
+ 305,
+ 111,
+ 241,
+ 185,
+ 235,
+ 144,
+ 75,
+ 266,
+ 121,
+ 162,
+ 192,
+ 124,
+ 108,
+ 93,
+ 196,
+ 1019,
+ 165,
+ 140,
+ 211,
+ 119,
+ 30,
+ 402,
+ 132,
+ 1065,
+ 371,
+ 226,
+ 105,
+ 168,
+ 129,
+ 76,
+ 192,
+ 272,
+ 364,
+ 624,
+ 128,
+ 75,
+ 384,
+ 268,
+ 165,
+ 42,
+ 181,
+ 234,
+ 121,
+ 298,
+ 356,
+ 783,
+ 228,
+ 104,
+ 1102,
+ 441,
+ 370,
+ 489,
+ 103,
+ 67,
+ 277,
+ 154,
+ 214,
+ 176,
+ 37,
+ 473,
+ 140,
+ 964,
+ 503,
+ 439,
+ 71,
+ 174,
+ 347,
+ 660,
+ 221,
+ 324,
+ 171,
+ 149,
+ 147,
+ 45,
+ 165,
+ 150,
+ 117,
+ 95,
+ 349,
+ 96,
+ 292,
+ 792,
+ 100,
+ 369,
+ 184,
+ 285,
+ 418,
+ 532,
+ 467,
+ 185,
+ 613,
+ 152,
+ 542,
+ 210,
+ 132,
+ 108,
+ 481,
+ 815,
+ 212,
+ 154,
+ 68,
+ 182,
+ 123,
+ 185,
+ 136,
+ 173,
+ 259,
+ 157,
+ 506,
+ 66,
+ 421,
+ 301,
+ 742,
+ 188,
+ 123,
+ 633,
+ 288,
+ 111,
+ 133,
+ 268,
+ 262,
+ 307,
+ 58,
+ 446,
+ 252,
+ 102,
+ 143,
+ 380,
+ 114,
+ 207,
+ 139,
+ 421,
+ 165,
+ 313,
+ 328,
+ 361,
+ 45,
+ 85,
+ 645,
+ 486,
+ 180,
+ 83,
+ 190,
+ 445,
+ 81,
+ 161,
+ 245,
+ 228,
+ 293,
+ 92,
+ 244,
+ 363,
+ 144,
+ 197,
+ 604,
+ 269,
+ 71,
+ 310,
+ 189,
+ 573,
+ 136,
+ 227,
+ 525,
+ 559,
+ 57,
+ 351,
+ 270,
+ 227,
+ 125,
+ 121,
+ 186,
+ 107,
+ 82,
+ 229,
+ 839,
+ 189,
+ 72,
+ 99,
+ 340,
+ 151,
+ 90,
+ 363,
+ 192,
+ 119,
+ 359,
+ 154,
+ 171,
+ 480,
+ 156,
+ 194,
+ 834,
+ 164,
+ 326,
+ 290,
+ 377,
+ 524,
+ 85,
+ 61,
+ 180,
+ 374,
+ 460,
+ 270,
+ 171,
+ 721,
+ 182,
+ 229,
+ 140,
+ 113,
+ 109,
+ 184,
+ 148,
+ 144,
+ 150,
+ 535,
+ 465,
+ 154,
+ 311,
+ 123,
+ 924,
+ 296,
+ 200,
+ 117,
+ 122,
+ 166,
+ 89,
+ 159,
+ 545,
+ 264,
+ 191,
+ 104,
+ 504,
+ 252,
+ 23,
+ 48,
+ 116,
+ 67,
+ 159,
+ 57,
+ 484,
+ 378,
+ 772,
+ 304,
+ 55,
+ 143,
+ 684,
+ 170,
+ 131,
+ 102,
+ 151,
+ 143,
+ 196,
+ 479,
+ 211,
+ 347,
+ 128,
+ 183,
+ 439,
+ 165,
+ 188,
+ 106,
+ 321,
+ 80,
+ 1242,
+ 45,
+ 138,
+ 132,
+ 100,
+ 318,
+ 141,
+ 906,
+ 72,
+ 41,
+ 564,
+ 16,
+ 306,
+ 518,
+ 87,
+ 130,
+ 98,
+ 98,
+ 82,
+ 188,
+ 59,
+ 186,
+ 249,
+ 60,
+ 126,
+ 659,
+ 52,
+ 222,
+ 112,
+ 173,
+ 42,
+ 131,
+ 455,
+ 431,
+ 286,
+ 50,
+ 83,
+ 117,
+ 85,
+ 256,
+ 348,
+ 154,
+ 71,
+ 47,
+ 314,
+ 228,
+ 123,
+ 94,
+ 144,
+ 330,
+ 146,
+ 712,
+ 366,
+ 502,
+ 106,
+ 252,
+ 251,
+ 128,
+ 239,
+ 347,
+ 271,
+ 970,
+ 64,
+ 117,
+ 706,
+ 241,
+ 141,
+ 232,
+ 187,
+ 249,
+ 178,
+ 90,
+ 176,
+ 255,
+ 324,
+ 1389,
+ 213,
+ 80,
+ 919,
+ 210,
+ 452,
+ 260,
+ 666,
+ 498,
+ 344,
+ 221,
+ 189,
+ 184,
+ 70,
+ 154,
+ 271,
+ 159,
+ 134,
+ 470,
+ 221,
+ 1164,
+ 595,
+ 254,
+ 207,
+ 143,
+ 69,
+ 94,
+ 271,
+ 396,
+ 71,
+ 145,
+ 215,
+ 94,
+ 271,
+ 165,
+ 196,
+ 437,
+ 1180,
+ 103,
+ 128,
+ 328,
+ 261,
+ 119,
+ 425,
+ 163,
+ 773,
+ 188,
+ 549,
+ 172,
+ 161,
+ 1187,
+ 135,
+ 151,
+ 324,
+ 77,
+ 122,
+ 51,
+ 246,
+ 330,
+ 104,
+ 114,
+ 125,
+ 236,
+ 79,
+ 65,
+ 216,
+ 114,
+ 324,
+ 68,
+ 61,
+ 179,
+ 243,
+ 90,
+ 41,
+ 221,
+ 329,
+ 96,
+ 227,
+ 102,
+ 158,
+ 194,
+ 285,
+ 231,
+ 276,
+ 505,
+ 211,
+ 116,
+ 135,
+ 172,
+ 47,
+ 84,
+ 244,
+ 103,
+ 158,
+ 611,
+ 78,
+ 306,
+ 79,
+ 110,
+ 289,
+ 126,
+ 84,
+ 66,
+ 120,
+ 72,
+ 64,
+ 767,
+ 105,
+ 214,
+ 189,
+ 550,
+ 331,
+ 155,
+ 137,
+ 173,
+ 122,
+ 238,
+ 363,
+ 64,
+ 226,
+ 97,
+ 80,
+ 141,
+ 187,
+ 467,
+ 549,
+ 254,
+ 460,
+ 247,
+ 121,
+ 138,
+ 154,
+ 151,
+ 228,
+ 132,
+ 126,
+ 68,
+ 69,
+ 650,
+ 251,
+ 125,
+ 183,
+ 119,
+ 74,
+ 138,
+ 74,
+ 53,
+ 634,
+ 51,
+ 58,
+ 219,
+ 19,
+ 310,
+ 144,
+ 174,
+ 41,
+ 397,
+ 101,
+ 305,
+ 105,
+ 111,
+ 319,
+ 673,
+ 86,
+ 388,
+ 334,
+ 77,
+ 129,
+ 162,
+ 292,
+ 331,
+ 134,
+ 64,
+ 171,
+ 105,
+ 106,
+ 64,
+ 126,
+ 122,
+ 124,
+ 464,
+ 201,
+ 194,
+ 146,
+ 68,
+ 245,
+ 79,
+ 130,
+ 699,
+ 140,
+ 768,
+ 80,
+ 259,
+ 192,
+ 417,
+ 154,
+ 455,
+ 85,
+ 225,
+ 85,
+ 149,
+ 568,
+ 334,
+ 250,
+ 118,
+ 115,
+ 144,
+ 103,
+ 299,
+ 99,
+ 245,
+ 140,
+ 124,
+ 93,
+ 465,
+ 216,
+ 392,
+ 407,
+ 81,
+ 619,
+ 81,
+ 248,
+ 214,
+ 425,
+ 108,
+ 460,
+ 256,
+ 377,
+ 184,
+ 119,
+ 123,
+ 250,
+ 109,
+ 257,
+ 136,
+ 340,
+ 387,
+ 512,
+ 197,
+ 97,
+ 109,
+ 298,
+ 101,
+ 643,
+ 1271,
+ 149,
+ 244,
+ 111,
+ 157,
+ 218,
+ 118,
+ 138,
+ 304,
+ 171,
+ 43,
+ 167,
+ 240,
+ 149,
+ 615,
+ 149,
+ 424,
+ 364,
+ 179,
+ 403,
+ 745,
+ 164,
+ 235,
+ 330,
+ 160,
+ 12,
+ 77,
+ 552,
+ 35,
+ 36,
+ 46,
+ 821,
+ 198,
+ 250,
+ 110,
+ 133,
+ 78,
+ 227,
+ 76,
+ 223,
+ 131,
+ 172,
+ 399,
+ 252,
+ 109,
+ 457,
+ 400,
+ 171,
+ 196,
+ 123,
+ 546,
+ 231,
+ 31,
+ 170,
+ 376,
+ 122,
+ 56,
+ 129,
+ 125,
+ 285,
+ 106,
+ 101,
+ 169,
+ 110,
+ 179,
+ 649,
+ 231,
+ 442,
+ 439,
+ 249,
+ 92,
+ 131,
+ 184,
+ 126,
+ 56,
+ 274,
+ 131,
+ 75,
+ 101,
+ 138,
+ 416,
+ 92,
+ 368,
+ 265,
+ 80,
+ 401,
+ 101,
+ 134,
+ 280,
+ 63,
+ 501,
+ 76,
+ 80,
+ 317,
+ 129,
+ 237,
+ 295,
+ 61,
+ 188,
+ 101,
+ 109,
+ 226,
+ 280,
+ 83,
+ 121,
+ 778,
+ 350,
+ 368,
+ 103,
+ 232,
+ 156,
+ 132,
+ 152,
+ 646,
+ 81,
+ 56,
+ 364,
+ 200,
+ 59,
+ 126,
+ 174,
+ 321,
+ 201,
+ 571,
+ 503,
+ 277,
+ 377,
+ 83,
+ 53,
+ 82,
+ 135,
+ 135,
+ 387,
+ 372,
+ 128,
+ 162,
+ 462,
+ 182,
+ 280,
+ 218,
+ 274,
+ 130,
+ 116,
+ 98,
+ 442,
+ 92,
+ 37,
+ 794,
+ 90,
+ 70,
+ 280,
+ 193,
+ 148,
+ 513,
+ 172,
+ 89,
+ 355,
+ 158,
+ 103,
+ 348,
+ 122,
+ 129,
+ 192,
+ 331,
+ 779,
+ 91,
+ 555,
+ 157,
+ 580,
+ 83,
+ 603,
+ 105,
+ 479,
+ 111,
+ 149,
+ 257,
+ 98,
+ 408,
+ 134,
+ 306,
+ 275,
+ 68,
+ 135,
+ 257,
+ 826,
+ 35,
+ 1083,
+ 235,
+ 194,
+ 123,
+ 612,
+ 85,
+ 237,
+ 196,
+ 144,
+ 85,
+ 179,
+ 155,
+ 107,
+ 232,
+ 272,
+ 197,
+ 275,
+ 419,
+ 146,
+ 115,
+ 347,
+ 357,
+ 374,
+ 120,
+ 323,
+ 98,
+ 84,
+ 395,
+ 209,
+ 107,
+ 462,
+ 216,
+ 166,
+ 490,
+ 498,
+ 166,
+ 232,
+ 270,
+ 118,
+ 159,
+ 265,
+ 419,
+ 812,
+ 97,
+ 84,
+ 114,
+ 32,
+ 1142,
+ 62,
+ 160,
+ 1412,
+ 61,
+ 41,
+ 75,
+ 208,
+ 174,
+ 350,
+ 52,
+ 510,
+ 81,
+ 220,
+ 1147,
+ 130,
+ 95,
+ 161,
+ 469,
+ 51,
+ 154,
+ 46,
+ 715,
+ 525,
+ 229,
+ 130,
+ 151,
+ 46,
+ 79,
+ 56,
+ 153,
+ 401,
+ 138,
+ 145,
+ 156,
+ 191,
+ 195,
+ 49,
+ 90,
+ 269,
+ 239,
+ 129,
+ 98,
+ 130,
+ 124,
+ 29,
+ 83,
+ 60,
+ 251,
+ 1150,
+ 294,
+ 155,
+ 130,
+ 57,
+ 464,
+ 57,
+ 76,
+ 39,
+ 166,
+ 227,
+ 202,
+ 109,
+ 243,
+ 329,
+ 214,
+ 142,
+ 151,
+ 335,
+ 143,
+ 122,
+ 48,
+ 198,
+ 183,
+ 45,
+ 684,
+ 255,
+ 143,
+ 885,
+ 520,
+ 128,
+ 156,
+ 325,
+ 419,
+ 226,
+ 705,
+ 649,
+ 77,
+ 231,
+ 513,
+ 87,
+ 102,
+ 111,
+ 177,
+ 680,
+ 350,
+ 124,
+ 359,
+ 128,
+ 68,
+ 192,
+ 128,
+ 158,
+ 547,
+ 93,
+ 332,
+ 131,
+ 198,
+ 157,
+ 254,
+ 199,
+ 101,
+ 98,
+ 217,
+ 293,
+ 378,
+ 129,
+ 240,
+ 1432,
+ 141,
+ 322,
+ 455,
+ 69,
+ 173,
+ 101,
+ 110,
+ 128,
+ 156,
+ 231,
+ 191,
+ 240,
+ 118,
+ 164,
+ 73,
+ 77,
+ 282,
+ 169,
+ 202,
+ 357,
+ 159,
+ 1389,
+ 1056,
+ 166,
+ 168,
+ 212,
+ 201,
+ 191,
+ 1339,
+ 30,
+ 127,
+ 319,
+ 284,
+ 264,
+ 204,
+ 255,
+ 108,
+ 26,
+ 184,
+ 613,
+ 268,
+ 93,
+ 98,
+ 63,
+ 185,
+ 66,
+ 102,
+ 199,
+ 293,
+ 59,
+ 330,
+ 209,
+ 59,
+ 63,
+ 298,
+ 309,
+ 257,
+ 36,
+ 55,
+ 53,
+ 71,
+ 80,
+ 261,
+ 201,
+ 109,
+ 397,
+ 69,
+ 48,
+ 90,
+ 72,
+ 94,
+ 539,
+ 144,
+ 126,
+ 302,
+ 123,
+ 235,
+ 196,
+ 84,
+ 106,
+ 521,
+ 181,
+ 50,
+ 158,
+ 205,
+ 114,
+ 228,
+ 20,
+ 628,
+ 418,
+ 302,
+ 17,
+ 50,
+ 72,
+ 72,
+ 258,
+ 45,
+ 544,
+ 124,
+ 391,
+ 72,
+ 84,
+ 686,
+ 277,
+ 64,
+ 388,
+ 324,
+ 295,
+ 284,
+ 86,
+ 504,
+ 1171,
+ 430,
+ 201,
+ 50,
+ 224,
+ 272,
+ 344,
+ 818,
+ 534,
+ 402,
+ 127,
+ 89,
+ 324,
+ 156,
+ 234,
+ 54,
+ 167,
+ 509,
+ 354,
+ 143,
+ 28,
+ 410,
+ 109,
+ 11,
+ 692,
+ 158,
+ 120,
+ 109,
+ 143,
+ 536,
+ 490,
+ 80,
+ 202,
+ 301,
+ 105,
+ 509,
+ 49,
+ 134,
+ 115,
+ 179,
+ 68,
+ 225,
+ 219,
+ 119,
+ 232,
+ 245,
+ 260,
+ 109,
+ 172,
+ 393,
+ 130,
+ 79,
+ 655,
+ 123,
+ 96,
+ 654,
+ 747,
+ 54,
+ 312,
+ 630,
+ 360,
+ 22,
+ 184,
+ 345,
+ 388,
+ 377,
+ 683,
+ 796,
+ 804,
+ 127,
+ 168,
+ 309,
+ 504,
+ 353,
+ 18,
+ 275,
+ 378,
+ 54,
+ 174,
+ 420,
+ 62,
+ 104,
+ 695,
+ 271,
+ 1151,
+ 277,
+ 186,
+ 271,
+ 207,
+ 197,
+ 202,
+ 1390,
+ 231,
+ 738,
+ 614,
+ 275,
+ 268,
+ 275,
+ 538,
+ 147,
+ 410,
+ 209,
+ 234,
+ 124,
+ 147,
+ 278,
+ 174,
+ 46,
+ 257,
+ 728,
+ 1018,
+ 654,
+ 1673,
+ 330,
+ 171,
+ 248,
+ 170,
+ 408,
+ 81,
+ 770,
+ 57,
+ 77,
+ 610,
+ 122,
+ 395,
+ 444,
+ 207,
+ 230,
+ 169,
+ 51,
+ 43,
+ 143,
+ 27,
+ 546,
+ 91,
+ 75,
+ 602,
+ 125,
+ 188,
+ 487,
+ 735,
+ 172,
+ 138,
+ 64,
+ 157,
+ 185,
+ 121,
+ 21,
+ 156,
+ 74,
+ 302,
+ 95,
+ 100,
+ 76,
+ 113,
+ 69,
+ 455,
+ 142,
+ 165,
+ 91,
+ 53,
+ 85,
+ 67,
+ 127,
+ 145,
+ 59,
+ 287,
+ 85,
+ 292,
+ 85,
+ 146,
+ 83,
+ 103,
+ 14,
+ 354,
+ 91,
+ 199,
+ 91,
+ 149,
+ 72,
+ 11,
+ 222,
+ 135,
+ 383,
+ 41,
+ 800,
+ 84,
+ 178,
+ 90,
+ 33,
+ 274,
+ 116,
+ 71,
+ 226,
+ 377,
+ 225,
+ 274,
+ 467,
+ 262,
+ 191,
+ 110,
+ 115,
+ 102,
+ 411,
+ 143,
+ 164,
+ 203,
+ 482,
+ 569,
+ 167,
+ 110,
+ 383,
+ 286,
+ 106,
+ 223,
+ 313,
+ 108,
+ 116,
+ 60,
+ 359,
+ 238,
+ 337,
+ 75,
+ 174,
+ 483,
+ 47,
+ 308,
+ 269,
+ 384,
+ 292,
+ 147,
+ 287,
+ 159,
+ 65,
+ 90,
+ 439,
+ 133,
+ 494,
+ 96,
+ 381,
+ 354,
+ 239,
+ 508,
+ 56,
+ 130,
+ 263,
+ 362,
+ 199,
+ 342,
+ 207,
+ 115,
+ 104,
+ 111,
+ 95,
+ 259,
+ 503,
+ 187,
+ 140,
+ 642,
+ 141,
+ 179,
+ 144,
+ 169,
+ 199,
+ 143,
+ 835,
+ 83,
+ 54,
+ 146,
+ 70,
+ 595,
+ 328,
+ 49,
+ 215,
+ 352,
+ 652,
+ 317,
+ 92,
+ 102,
+ 297,
+ 183,
+ 1503,
+ 168,
+ 73,
+ 129,
+ 216,
+ 55,
+ 706,
+ 728,
+ 351,
+ 134,
+ 127,
+ 579,
+ 96,
+ 252,
+ 118,
+ 139,
+ 464,
+ 570,
+ 905,
+ 30,
+ 180,
+ 440,
+ 225,
+ 112,
+ 300,
+ 409,
+ 247,
+ 177,
+ 320,
+ 89,
+ 200,
+ 166,
+ 453,
+ 379,
+ 37,
+ 191,
+ 70,
+ 127,
+ 462,
+ 305,
+ 99,
+ 35,
+ 113,
+ 243,
+ 277,
+ 127,
+ 197,
+ 414,
+ 154,
+ 227,
+ 83,
+ 212,
+ 280,
+ 124,
+ 241,
+ 120,
+ 190,
+ 200,
+ 165,
+ 239,
+ 200,
+ 463,
+ 144,
+ 50,
+ 192,
+ 75,
+ 93,
+ 114,
+ 335,
+ 589,
+ 322,
+ 78,
+ 72,
+ 168,
+ 110,
+ 120,
+ 489,
+ 1425,
+ 218,
+ 93,
+ 100,
+ 90,
+ 122,
+ 97,
+ 357,
+ 118,
+ 166,
+ 203,
+ 84,
+ 118,
+ 176,
+ 195,
+ 101,
+ 519,
+ 236,
+ 88,
+ 89,
+ 317,
+ 172,
+ 553,
+ 538,
+ 808,
+ 91,
+ 130,
+ 96,
+ 76,
+ 554,
+ 184,
+ 126,
+ 124,
+ 316,
+ 405,
+ 521,
+ 93,
+ 42,
+ 455,
+ 93,
+ 156,
+ 66,
+ 323,
+ 226,
+ 472,
+ 357,
+ 295,
+ 581,
+ 113,
+ 191,
+ 193,
+ 38,
+ 77,
+ 212,
+ 225,
+ 120,
+ 304,
+ 230,
+ 856,
+ 396,
+ 853,
+ 53,
+ 475,
+ 141,
+ 101,
+ 54,
+ 730,
+ 105,
+ 177,
+ 296,
+ 304,
+ 31,
+ 90,
+ 170,
+ 99,
+ 111,
+ 115,
+ 158,
+ 100,
+ 19,
+ 65,
+ 71,
+ 92,
+ 156,
+ 177,
+ 218,
+ 369,
+ 206,
+ 320,
+ 101,
+ 171,
+ 101,
+ 171,
+ 149,
+ 72,
+ 65,
+ 61,
+ 521,
+ 51,
+ 237,
+ 357,
+ 449,
+ 356,
+ 204,
+ 71,
+ 163,
+ 111,
+ 353,
+ 119,
+ 79,
+ 808,
+ 507,
+ 93,
+ 333,
+ 240,
+ 1156,
+ 761,
+ 471,
+ 80,
+ 137,
+ 881,
+ 200,
+ 116,
+ 151,
+ 333,
+ 202,
+ 125,
+ 580,
+ 178,
+ 61,
+ 742,
+ 167,
+ 295,
+ 181,
+ 292,
+ 171,
+ 46,
+ 112,
+ 588,
+ 145,
+ 149,
+ 129,
+ 208,
+ 249,
+ 292,
+ 407,
+ 50,
+ 89,
+ 107,
+ 332,
+ 132,
+ 71,
+ 149,
+ 392,
+ 68,
+ 195,
+ 260,
+ 474,
+ 231,
+ 936,
+ 690,
+ 381,
+ 1089,
+ 312,
+ 211,
+ 147,
+ 378,
+ 60,
+ 366,
+ 71,
+ 172,
+ 291,
+ 91,
+ 509,
+ 256,
+ 363,
+ 522,
+ 168,
+ 306,
+ 354,
+ 106,
+ 87,
+ 930,
+ 342,
+ 564,
+ 157,
+ 181,
+ 418,
+ 199,
+ 251,
+ 833,
+ 452,
+ 241,
+ 564,
+ 132,
+ 250,
+ 313,
+ 138,
+ 338,
+ 67,
+ 121,
+ 929,
+ 126,
+ 90,
+ 173,
+ 86,
+ 130,
+ 83,
+ 482,
+ 88,
+ 150,
+ 185,
+ 167,
+ 105,
+ 86,
+ 34,
+ 105,
+ 898,
+ 549,
+ 177,
+ 357,
+ 595,
+ 24,
+ 100,
+ 145,
+ 184,
+ 189,
+ 322,
+ 54,
+ 722,
+ 68,
+ 166,
+ 78,
+ 126,
+ 80,
+ 72,
+ 125,
+ 85,
+ 383,
+ 93,
+ 152,
+ 87,
+ 46,
+ 17,
+ 68,
+ 261,
+ 102,
+ 95,
+ 420,
+ 75,
+ 312,
+ 29,
+ 82,
+ 153,
+ 376,
+ 135,
+ 77,
+ 211,
+ 314,
+ 278,
+ 263,
+ 344,
+ 72,
+ 137,
+ 214,
+ 178,
+ 123,
+ 90,
+ 80,
+ 259,
+ 132,
+ 66,
+ 185,
+ 422,
+ 168,
+ 255,
+ 139,
+ 81,
+ 702,
+ 168,
+ 254,
+ 176,
+ 89,
+ 305,
+ 107,
+ 268,
+ 196,
+ 367,
+ 152,
+ 490,
+ 125,
+ 807,
+ 274,
+ 108,
+ 56,
+ 114,
+ 273,
+ 189,
+ 271,
+ 115,
+ 152,
+ 599,
+ 204,
+ 215,
+ 88,
+ 285,
+ 200,
+ 246,
+ 68,
+ 292,
+ 89,
+ 117,
+ 89,
+ 455,
+ 65,
+ 27,
+ 272,
+ 120,
+ 605,
+ 630,
+ 151,
+ 62,
+ 90,
+ 164,
+ 106,
+ 127,
+ 1288,
+ 59,
+ 124,
+ 29,
+ 156,
+ 73,
+ 129,
+ 52,
+ 283,
+ 81,
+ 261,
+ 614,
+ 114,
+ 77,
+ 369,
+ 86,
+ 431,
+ 1220,
+ 214,
+ 639,
+ 1281,
+ 246,
+ 654,
+ 204,
+ 364,
+ 85,
+ 211,
+ 135,
+ 115,
+ 443,
+ 153,
+ 578,
+ 101,
+ 632,
+ 662,
+ 263,
+ 867,
+ 50,
+ 96,
+ 124,
+ 563,
+ 385,
+ 196,
+ 264,
+ 124,
+ 165,
+ 405,
+ 289,
+ 182,
+ 92,
+ 160,
+ 139,
+ 134,
+ 487,
+ 82,
+ 681,
+ 60,
+ 206,
+ 445,
+ 90,
+ 370,
+ 1408,
+ 514,
+ 135,
+ 608,
+ 145,
+ 160,
+ 236,
+ 241,
+ 387,
+ 211,
+ 1206,
+ 248,
+ 139,
+ 181,
+ 237,
+ 477,
+ 312,
+ 727,
+ 249,
+ 186,
+ 459,
+ 240,
+ 107,
+ 124,
+ 270,
+ 470,
+ 96,
+ 100,
+ 137,
+ 246,
+ 493,
+ 345,
+ 216,
+ 187,
+ 191,
+ 184,
+ 443,
+ 400,
+ 289,
+ 149,
+ 503,
+ 97,
+ 102,
+ 88,
+ 233,
+ 44,
+ 246,
+ 209,
+ 728,
+ 249,
+ 282,
+ 210,
+ 1287,
+ 32,
+ 437,
+ 36,
+ 464,
+ 314,
+ 279,
+ 119,
+ 162,
+ 209,
+ 136,
+ 624,
+ 38,
+ 203,
+ 143,
+ 1226,
+ 282,
+ 84,
+ 85,
+ 487,
+ 217,
+ 439,
+ 411,
+ 285,
+ 40,
+ 187,
+ 70,
+ 89,
+ 75,
+ 284,
+ 221,
+ 364,
+ 194,
+ 73,
+ 164,
+ 92,
+ 73,
+ 51,
+ 500,
+ 318,
+ 38,
+ 137,
+ 175,
+ 181,
+ 390,
+ 105,
+ 411,
+ 226,
+ 141,
+ 187,
+ 245,
+ 190,
+ 58,
+ 115,
+ 429,
+ 256,
+ 271,
+ 157,
+ 114,
+ 107,
+ 285,
+ 161,
+ 40,
+ 237,
+ 74,
+ 126,
+ 244,
+ 730,
+ 223,
+ 498,
+ 376,
+ 94,
+ 137,
+ 379,
+ 108,
+ 232,
+ 302,
+ 77,
+ 229,
+ 281,
+ 142,
+ 136,
+ 105,
+ 160,
+ 84,
+ 167,
+ 235,
+ 272,
+ 55,
+ 1089,
+ 43,
+ 87,
+ 471,
+ 18,
+ 184,
+ 178,
+ 250,
+ 115,
+ 18,
+ 115,
+ 61,
+ 36,
+ 421,
+ 178,
+ 156,
+ 238,
+ 319,
+ 371,
+ 194,
+ 35,
+ 284,
+ 182,
+ 194,
+ 56,
+ 31,
+ 73,
+ 952,
+ 111,
+ 158,
+ 163,
+ 150,
+ 423,
+ 368,
+ 280,
+ 40,
+ 122,
+ 123,
+ 183,
+ 639,
+ 123,
+ 157,
+ 190,
+ 172,
+ 143,
+ 70,
+ 387,
+ 74,
+ 155,
+ 81,
+ 159,
+ 73,
+ 465,
+ 312,
+ 717,
+ 355,
+ 191,
+ 538,
+ 102,
+ 118,
+ 197,
+ 97,
+ 98,
+ 273,
+ 179,
+ 135,
+ 135,
+ 511,
+ 435,
+ 36,
+ 207,
+ 366,
+ 216,
+ 96,
+ 76,
+ 103,
+ 158,
+ 90,
+ 55,
+ 335,
+ 126,
+ 439,
+ 169,
+ 979,
+ 256,
+ 134,
+ 172,
+ 383,
+ 152,
+ 25,
+ 874,
+ 396,
+ 322,
+ 545,
+ 34,
+ 586,
+ 698,
+ 73,
+ 212,
+ 1331,
+ 1776,
+ 638,
+ 98,
+ 271,
+ 100,
+ 206,
+ 166,
+ 259,
+ 296,
+ 85,
+ 438,
+ 332,
+ 125,
+ 91,
+ 168,
+ 203,
+ 118,
+ 361,
+ 248,
+ 711,
+ 55,
+ 90,
+ 239,
+ 1090,
+ 82,
+ 67,
+ 339,
+ 185,
+ 203,
+ 1118,
+ 400,
+ 580,
+ 179,
+ 475,
+ 58,
+ 229,
+ 530,
+ 497,
+ 81,
+ 362,
+ 206,
+ 185,
+ 673,
+ 180,
+ 510,
+ 162,
+ 413,
+ 421,
+ 350,
+ 322,
+ 201,
+ 437,
+ 147,
+ 248,
+ 110,
+ 328,
+ 1066,
+ 305,
+ 293,
+ 329,
+ 609,
+ 652,
+ 252,
+ 127,
+ 205,
+ 158,
+ 74,
+ 419,
+ 165,
+ 83,
+ 144,
+ 161,
+ 156,
+ 122,
+ 36,
+ 53,
+ 279,
+ 107,
+ 85,
+ 97,
+ 505,
+ 495,
+ 111,
+ 84,
+ 547,
+ 103,
+ 236,
+ 71,
+ 192,
+ 476,
+ 50,
+ 54,
+ 42,
+ 57,
+ 265,
+ 202,
+ 537,
+ 219,
+ 48,
+ 241,
+ 63,
+ 357,
+ 21,
+ 32,
+ 73,
+ 148,
+ 46,
+ 119,
+ 92,
+ 200,
+ 42,
+ 187,
+ 208,
+ 125,
+ 162,
+ 281,
+ 139,
+ 481,
+ 65,
+ 311,
+ 186,
+ 66,
+ 137,
+ 91,
+ 544,
+ 129,
+ 78,
+ 67,
+ 71,
+ 326,
+ 70,
+ 130,
+ 196,
+ 212,
+ 458,
+ 77,
+ 164,
+ 380,
+ 467,
+ 55,
+ 168,
+ 528,
+ 464,
+ 152,
+ 211,
+ 313,
+ 335,
+ 209,
+ 561,
+ 197,
+ 329,
+ 70,
+ 43,
+ 142,
+ 523,
+ 604,
+ 144,
+ 302,
+ 205,
+ 100,
+ 239,
+ 77,
+ 169,
+ 71,
+ 191,
+ 149,
+ 186,
+ 223,
+ 154,
+ 60,
+ 151,
+ 188,
+ 185,
+ 224,
+ 134,
+ 164,
+ 15,
+ 386,
+ 137,
+ 92,
+ 168,
+ 305,
+ 205,
+ 179,
+ 212,
+ 39,
+ 576,
+ 94,
+ 147,
+ 604,
+ 211,
+ 169,
+ 175,
+ 308,
+ 119,
+ 604,
+ 208,
+ 72,
+ 498,
+ 204,
+ 90,
+ 539,
+ 650,
+ 48,
+ 91,
+ 304,
+ 129,
+ 537,
+ 915,
+ 58,
+ 122,
+ 149,
+ 147,
+ 85,
+ 72,
+ 28,
+ 148,
+ 150,
+ 90,
+ 1869,
+ 575,
+ 823,
+ 112,
+ 81,
+ 56,
+ 151,
+ 132,
+ 218,
+ 773,
+ 953,
+ 43,
+ 1259,
+ 267,
+ 736,
+ 362,
+ 89,
+ 196,
+ 346,
+ 79,
+ 217,
+ 119,
+ 347,
+ 559,
+ 126,
+ 101,
+ 464,
+ 631,
+ 203,
+ 810,
+ 844,
+ 947,
+ 328,
+ 448,
+ 258,
+ 161,
+ 82,
+ 870,
+ 1820,
+ 144,
+ 303,
+ 553,
+ 137,
+ 268,
+ 828,
+ 136,
+ 180,
+ 513,
+ 347,
+ 1173,
+ 153,
+ 73,
+ 123,
+ 77,
+ 263,
+ 91,
+ 577,
+ 417,
+ 393,
+ 568,
+ 237,
+ 257,
+ 447,
+ 552,
+ 241,
+ 52,
+ 441,
+ 219,
+ 72,
+ 210,
+ 203,
+ 154,
+ 150,
+ 13,
+ 186,
+ 57,
+ 159,
+ 123,
+ 102,
+ 65,
+ 78,
+ 303,
+ 43,
+ 44,
+ 212,
+ 591,
+ 295,
+ 359,
+ 153,
+ 198,
+ 136,
+ 294,
+ 310,
+ 107,
+ 298,
+ 110,
+ 361,
+ 335,
+ 75,
+ 57,
+ 159,
+ 337,
+ 337,
+ 267,
+ 803,
+ 115,
+ 168,
+ 54,
+ 256,
+ 112,
+ 324,
+ 65,
+ 250,
+ 198,
+ 241,
+ 112,
+ 127,
+ 71,
+ 61,
+ 40,
+ 720,
+ 175,
+ 234,
+ 226,
+ 214,
+ 110,
+ 246,
+ 63,
+ 188,
+ 133,
+ 98,
+ 286,
+ 49,
+ 102,
+ 18,
+ 795,
+ 172,
+ 99,
+ 168,
+ 46,
+ 1106,
+ 81,
+ 132,
+ 94,
+ 184,
+ 146,
+ 102,
+ 184,
+ 367,
+ 426,
+ 800,
+ 96,
+ 165,
+ 357,
+ 177,
+ 72,
+ 132,
+ 67,
+ 204,
+ 149,
+ 214,
+ 796,
+ 51,
+ 106,
+ 311,
+ 483,
+ 605,
+ 120,
+ 39,
+ 127,
+ 87,
+ 66,
+ 163,
+ 102,
+ 53,
+ 657,
+ 199,
+ 261,
+ 442,
+ 241,
+ 147,
+ 730,
+ 1161,
+ 90,
+ 95,
+ 102,
+ 374,
+ 468,
+ 155,
+ 147,
+ 268,
+ 84,
+ 134,
+ 270,
+ 396,
+ 273,
+ 72,
+ 87,
+ 161,
+ 124,
+ 356,
+ 293,
+ 135,
+ 200,
+ 194,
+ 238,
+ 171,
+ 936,
+ 210,
+ 83,
+ 1319,
+ 250,
+ 93,
+ 99,
+ 143,
+ 50,
+ 87,
+ 400,
+ 185,
+ 164,
+ 188,
+ 237,
+ 114,
+ 96,
+ 144,
+ 163,
+ 63,
+ 481,
+ 460,
+ 41,
+ 395,
+ 190,
+ 32,
+ 147,
+ 63,
+ 230,
+ 177,
+ 52,
+ 49,
+ 123,
+ 44,
+ 243,
+ 60,
+ 52,
+ 108,
+ 95,
+ 119,
+ 180,
+ 56,
+ 70,
+ 62,
+ 295,
+ 117,
+ 69,
+ 48,
+ 57,
+ 31,
+ 55,
+ 108,
+ 110,
+ 89,
+ 131,
+ 30,
+ 124,
+ 307,
+ 82,
+ 151,
+ 115,
+ 340,
+ 319,
+ 219,
+ 200,
+ 108,
+ 87,
+ 68,
+ 139,
+ 84,
+ 240,
+ 330,
+ 173,
+ 551,
+ 130,
+ 97,
+ 73,
+ 50,
+ 24,
+ 84,
+ 112,
+ 388,
+ 59,
+ 263,
+ 19,
+ 63,
+ 101,
+ 337,
+ 296,
+ 180,
+ 359,
+ 54,
+ 86,
+ 404,
+ 435,
+ 231,
+ 40,
+ 73,
+ 300,
+ 502,
+ 83,
+ 289,
+ 89,
+ 157,
+ 438,
+ 155,
+ 189,
+ 96,
+ 25,
+ 395,
+ 60,
+ 470,
+ 85,
+ 60,
+ 719,
+ 234,
+ 81,
+ 89,
+ 82,
+ 76,
+ 86,
+ 1339,
+ 359,
+ 102,
+ 128,
+ 112,
+ 674,
+ 158,
+ 534,
+ 117,
+ 78,
+ 247,
+ 75,
+ 63,
+ 318,
+ 41,
+ 234,
+ 310,
+ 283,
+ 179,
+ 419,
+ 88,
+ 121,
+ 141,
+ 320,
+ 154,
+ 339,
+ 493,
+ 106,
+ 239,
+ 322,
+ 124,
+ 180,
+ 160,
+ 192,
+ 76,
+ 120,
+ 290,
+ 118,
+ 58,
+ 149,
+ 114,
+ 398,
+ 101,
+ 159,
+ 127,
+ 90,
+ 155,
+ 264,
+ 377,
+ 73,
+ 499,
+ 213,
+ 262,
+ 22,
+ 138,
+ 609,
+ 313,
+ 170,
+ 165,
+ 314,
+ 306,
+ 83,
+ 320,
+ 39,
+ 151,
+ 377,
+ 76,
+ 118,
+ 168,
+ 76,
+ 167,
+ 472,
+ 276,
+ 147,
+ 131,
+ 123,
+ 50,
+ 209,
+ 97,
+ 152,
+ 107,
+ 265,
+ 127,
+ 136,
+ 164,
+ 243,
+ 120,
+ 206,
+ 90,
+ 210,
+ 126,
+ 215,
+ 173,
+ 193,
+ 393,
+ 62,
+ 121,
+ 345,
+ 88,
+ 178,
+ 858,
+ 82,
+ 119,
+ 480,
+ 179,
+ 62,
+ 47,
+ 62,
+ 60,
+ 114,
+ 192,
+ 118,
+ 186,
+ 82,
+ 148,
+ 215,
+ 54,
+ 36,
+ 146,
+ 604,
+ 303,
+ 50,
+ 44,
+ 71,
+ 101,
+ 109,
+ 76,
+ 90,
+ 218,
+ 164,
+ 7,
+ 69,
+ 122,
+ 301,
+ 117,
+ 165,
+ 318,
+ 241,
+ 80,
+ 609,
+ 149,
+ 206,
+ 124,
+ 43,
+ 70,
+ 293,
+ 184,
+ 135,
+ 24,
+ 497,
+ 55,
+ 60,
+ 48,
+ 132,
+ 197,
+ 98,
+ 345,
+ 69,
+ 647,
+ 105,
+ 33,
+ 100,
+ 214,
+ 155,
+ 64,
+ 305,
+ 446,
+ 248,
+ 57,
+ 221,
+ 247,
+ 146,
+ 213,
+ 137,
+ 104,
+ 57,
+ 100,
+ 208,
+ 735,
+ 94,
+ 121,
+ 65,
+ 394,
+ 797,
+ 212,
+ 255,
+ 196,
+ 145,
+ 81,
+ 47,
+ 538,
+ 520,
+ 283,
+ 153,
+ 82,
+ 60,
+ 569,
+ 300,
+ 422,
+ 100,
+ 129,
+ 57,
+ 199,
+ 56,
+ 281,
+ 207,
+ 1186,
+ 337,
+ 63,
+ 20,
+ 52,
+ 328,
+ 86,
+ 114,
+ 121,
+ 45,
+ 187,
+ 180,
+ 108,
+ 104,
+ 665,
+ 125,
+ 246,
+ 33,
+ 95,
+ 277,
+ 127,
+ 790,
+ 635,
+ 597,
+ 77,
+ 62,
+ 171,
+ 110,
+ 77,
+ 226,
+ 367,
+ 509,
+ 228,
+ 935,
+ 129,
+ 313,
+ 94,
+ 197,
+ 403,
+ 207,
+ 99,
+ 114,
+ 123,
+ 162,
+ 69,
+ 205,
+ 316,
+ 259,
+ 110,
+ 110,
+ 119,
+ 336,
+ 327,
+ 316,
+ 284,
+ 543,
+ 52,
+ 223,
+ 322,
+ 61,
+ 347,
+ 399,
+ 340,
+ 60,
+ 234,
+ 75,
+ 242,
+ 128,
+ 53,
+ 234,
+ 186,
+ 333,
+ 333,
+ 79,
+ 101,
+ 193,
+ 863,
+ 590,
+ 92,
+ 225,
+ 49,
+ 88,
+ 825,
+ 254,
+ 11,
+ 520,
+ 44,
+ 142,
+ 78,
+ 329,
+ 353,
+ 125,
+ 334,
+ 28,
+ 142,
+ 189,
+ 70,
+ 18,
+ 158,
+ 59,
+ 31,
+ 150,
+ 90,
+ 258,
+ 305,
+ 128,
+ 99,
+ 39,
+ 70,
+ 112,
+ 120,
+ 312,
+ 89,
+ 150,
+ 834,
+ 528,
+ 516,
+ 129,
+ 652,
+ 102,
+ 38,
+ 160,
+ 77,
+ 65,
+ 132,
+ 192,
+ 73,
+ 120,
+ 47,
+ 93,
+ 32,
+ 119,
+ 229,
+ 25,
+ 64,
+ 270,
+ 173,
+ 695,
+ 594,
+ 115,
+ 101,
+ 605,
+ 537,
+ 51,
+ 71,
+ 141,
+ 351,
+ 50,
+ 76,
+ 58,
+ 187,
+ 55,
+ 164,
+ 111,
+ 292,
+ 71,
+ 14,
+ 220,
+ 340,
+ 148,
+ 154,
+ 597,
+ 161,
+ 81,
+ 153,
+ 65,
+ 29,
+ 86,
+ 255,
+ 218,
+ 380,
+ 55,
+ 129,
+ 622,
+ 38,
+ 86,
+ 227,
+ 120,
+ 144,
+ 126,
+ 185,
+ 197,
+ 156,
+ 94,
+ 82,
+ 77,
+ 444,
+ 34,
+ 287,
+ 73,
+ 152,
+ 69,
+ 74,
+ 535,
+ 209,
+ 72,
+ 44,
+ 72,
+ 117,
+ 341,
+ 186,
+ 96,
+ 166,
+ 1078,
+ 27,
+ 698,
+ 114,
+ 106,
+ 436,
+ 159,
+ 208,
+ 96,
+ 359,
+ 69,
+ 259,
+ 65,
+ 266,
+ 50,
+ 130,
+ 109,
+ 120,
+ 136,
+ 438,
+ 225,
+ 112,
+ 31,
+ 216,
+ 156,
+ 52,
+ 154,
+ 1165,
+ 117,
+ 89,
+ 266,
+ 107,
+ 486,
+ 72,
+ 63,
+ 100,
+ 174,
+ 62,
+ 520,
+ 103,
+ 233,
+ 109,
+ 41,
+ 335,
+ 246,
+ 86,
+ 85,
+ 104,
+ 149,
+ 85,
+ 115,
+ 109,
+ 155,
+ 242,
+ 288,
+ 339,
+ 29,
+ 139,
+ 72,
+ 352,
+ 173,
+ 168,
+ 50,
+ 22,
+ 245,
+ 251,
+ 139,
+ 207,
+ 100,
+ 638,
+ 142,
+ 90,
+ 53,
+ 269,
+ 251,
+ 251,
+ 411,
+ 100,
+ 184,
+ 130,
+ 300,
+ 70,
+ 126,
+ 141,
+ 95,
+ 1259,
+ 70,
+ 239,
+ 79,
+ 121,
+ 71,
+ 103,
+ 230,
+ 192,
+ 54,
+ 154,
+ 184,
+ 196,
+ 185,
+ 98,
+ 590,
+ 342,
+ 151,
+ 249,
+ 93,
+ 134,
+ 215,
+ 60,
+ 188,
+ 83,
+ 187,
+ 84,
+ 21,
+ 160,
+ 61,
+ 53,
+ 82,
+ 208,
+ 84,
+ 166,
+ 111,
+ 106,
+ 101,
+ 75,
+ 24,
+ 234,
+ 15,
+ 13,
+ 81,
+ 435,
+ 175,
+ 150,
+ 43,
+ 52,
+ 85,
+ 11,
+ 13,
+ 153,
+ 87,
+ 46,
+ 283,
+ 69,
+ 616,
+ 160,
+ 165,
+ 346,
+ 79,
+ 175,
+ 11,
+ 98,
+ 5,
+ 8,
+ 194,
+ 130,
+ 68,
+ 110,
+ 87,
+ 350,
+ 217,
+ 749,
+ 85,
+ 468,
+ 28,
+ 207,
+ 27,
+ 570,
+ 404,
+ 232,
+ 190,
+ 92,
+ 321,
+ 451,
+ 117,
+ 508,
+ 60,
+ 207,
+ 107,
+ 196,
+ 106,
+ 413,
+ 15,
+ 125,
+ 543,
+ 91,
+ 151,
+ 104,
+ 468,
+ 69,
+ 102,
+ 183,
+ 65,
+ 395,
+ 291,
+ 49,
+ 474,
+ 30,
+ 216,
+ 149,
+ 110,
+ 108,
+ 244,
+ 196,
+ 74,
+ 81,
+ 129,
+ 51,
+ 61,
+ 100,
+ 181,
+ 23,
+ 242,
+ 167,
+ 35,
+ 203,
+ 140,
+ 128,
+ 128,
+ 119,
+ 234,
+ 56,
+ 27,
+ 47,
+ 46,
+ 144,
+ 180,
+ 307,
+ 73,
+ 120,
+ 127,
+ 114,
+ 115,
+ 114,
+ 92,
+ 6,
+ 123,
+ 22,
+ 253,
+ 57,
+ 126,
+ 38,
+ 77,
+ 543,
+ 114,
+ 49,
+ 77,
+ 81,
+ 122,
+ 126,
+ 118,
+ 60,
+ 231,
+ 201,
+ 221,
+ 168,
+ 258,
+ 240,
+ 119,
+ 156,
+ 131,
+ 189,
+ 122,
+ 73,
+ 216,
+ 148,
+ 145,
+ 52,
+ 166,
+ 106,
+ 45,
+ 53,
+ 225,
+ 52,
+ 609,
+ 83,
+ 79,
+ 462,
+ 80,
+ 50,
+ 255,
+ 92,
+ 245,
+ 83,
+ 548,
+ 281,
+ 81,
+ 69,
+ 51,
+ 25,
+ 184,
+ 284,
+ 187,
+ 128,
+ 150,
+ 124,
+ 47,
+ 74,
+ 119,
+ 434,
+ 288,
+ 109,
+ 388,
+ 155,
+ 172,
+ 465,
+ 91,
+ 166,
+ 33,
+ 266,
+ 228,
+ 36,
+ 74,
+ 294,
+ 109,
+ 223,
+ 362,
+ 300,
+ 66,
+ 169,
+ 391,
+ 155,
+ 345,
+ 843,
+ 81,
+ 198,
+ 81,
+ 34,
+ 156,
+ 1739,
+ 345,
+ 111,
+ 28,
+ 119,
+ 209,
+ 733,
+ 18,
+ 444,
+ 744,
+ 196,
+ 245,
+ 22,
+ 13,
+ 59,
+ 134,
+ 58,
+ 32,
+ 9,
+ 90,
+ 33,
+ 18,
+ 66,
+ 23,
+ 19,
+ 37,
+ 51,
+ 21,
+ 294,
+ 65,
+ 70,
+ 18,
+ 77,
+ 9,
+ 22,
+ 10,
+ 89,
+ 11,
+ 37,
+ 58,
+ 272,
+ 164,
+ 55,
+ 17,
+ 16,
+ 14,
+ 153,
+ 69,
+ 8,
+ 43,
+ 106,
+ 30,
+ 21,
+ 9,
+ 237,
+ 58,
+ 115,
+ 56,
+ 114,
+ 213,
+ 70,
+ 368,
+ 10,
+ 135,
+ 48,
+ 35,
+ 14,
+ 22,
+ 5,
+ 21,
+ 5,
+ 6,
+ 9,
+ 39,
+ 280,
+ 37,
+ 49,
+ 262,
+ 124,
+ 576,
+ 67,
+ 16,
+ 24,
+ 18,
+ 299,
+ 42,
+ 40,
+ 10,
+ 9,
+ 92,
+ 92,
+ 18,
+ 83,
+ 28,
+ 14,
+ 8,
+ 443,
+ 214,
+ 258,
+ 86,
+ 248,
+ 536,
+ 148,
+ 18,
+ 90,
+ 78,
+ 60,
+ 50,
+ 9,
+ 61,
+ 5,
+ 12,
+ 22,
+ 576,
+ 55,
+ 76,
+ 39,
+ 85,
+ 32,
+ 9,
+ 52,
+ 45,
+ 84,
+ 17,
+ 34,
+ 48,
+ 29,
+ 652,
+ 19,
+ 12,
+ 143,
+ 14,
+ 153,
+ 35,
+ 73,
+ 135,
+ 50,
+ 7,
+ 78,
+ 156,
+ 160,
+ 104,
+ 116,
+ 149,
+ 272,
+ 208,
+ 163,
+ 89,
+ 53,
+ 71,
+ 227,
+ 96,
+ 436,
+ 157,
+ 498,
+ 147,
+ 164,
+ 117,
+ 160,
+ 243,
+ 221,
+ 629,
+ 240,
+ 70,
+ 157,
+ 72,
+ 94,
+ 149,
+ 151,
+ 302,
+ 408,
+ 270,
+ 73,
+ 121,
+ 130,
+ 167,
+ 39,
+ 142,
+ 417,
+ 216,
+ 119,
+ 606,
+ 200,
+ 96,
+ 244,
+ 134,
+ 93,
+ 90,
+ 64,
+ 138,
+ 79,
+ 58,
+ 68,
+ 96,
+ 413,
+ 679,
+ 20,
+ 177,
+ 488,
+ 506,
+ 50,
+ 432,
+ 184,
+ 148,
+ 551,
+ 422,
+ 68,
+ 122,
+ 44,
+ 157,
+ 58,
+ 86,
+ 91,
+ 108,
+ 112,
+ 165,
+ 357,
+ 282,
+ 144,
+ 341,
+ 178,
+ 298,
+ 154,
+ 151,
+ 333,
+ 135,
+ 182,
+ 378,
+ 230,
+ 958,
+ 99,
+ 170,
+ 482,
+ 130,
+ 151,
+ 190,
+ 140,
+ 84,
+ 67,
+ 370,
+ 337,
+ 230,
+ 686,
+ 597,
+ 857,
+ 753,
+ 101,
+ 186,
+ 357,
+ 211,
+ 177,
+ 145,
+ 428,
+ 133,
+ 142,
+ 250,
+ 125,
+ 276,
+ 377,
+ 126,
+ 519,
+ 76,
+ 222,
+ 91,
+ 314,
+ 114,
+ 122,
+ 86,
+ 36,
+ 145,
+ 139,
+ 241,
+ 69,
+ 58,
+ 269,
+ 67,
+ 448,
+ 335,
+ 140,
+ 171,
+ 356,
+ 130,
+ 188,
+ 164,
+ 409,
+ 328,
+ 131,
+ 88,
+ 175,
+ 124,
+ 54,
+ 109,
+ 114,
+ 115,
+ 348,
+ 198,
+ 111,
+ 123,
+ 790,
+ 142,
+ 163,
+ 174,
+ 482,
+ 92,
+ 297,
+ 138,
+ 231,
+ 105,
+ 238,
+ 178,
+ 278,
+ 156,
+ 334,
+ 177,
+ 104,
+ 195,
+ 56,
+ 68,
+ 297,
+ 231,
+ 126,
+ 67,
+ 316,
+ 149,
+ 168,
+ 683,
+ 176,
+ 165,
+ 199,
+ 158,
+ 141,
+ 414,
+ 339,
+ 68,
+ 27,
+ 85,
+ 112,
+ 704,
+ 104,
+ 409,
+ 223,
+ 166,
+ 109,
+ 291,
+ 451,
+ 33,
+ 101,
+ 80,
+ 193,
+ 153,
+ 132,
+ 203,
+ 344,
+ 197,
+ 101,
+ 155,
+ 1110,
+ 445,
+ 385,
+ 425,
+ 134,
+ 56,
+ 121,
+ 129,
+ 146,
+ 211,
+ 513,
+ 210,
+ 459,
+ 263,
+ 332,
+ 150,
+ 608,
+ 295,
+ 178,
+ 109,
+ 1197,
+ 223,
+ 996,
+ 92,
+ 115,
+ 78,
+ 116,
+ 314,
+ 384,
+ 146,
+ 81,
+ 205,
+ 192,
+ 103,
+ 84,
+ 175,
+ 273,
+ 92,
+ 347,
+ 120,
+ 80,
+ 153,
+ 218,
+ 898,
+ 71,
+ 115,
+ 142,
+ 224,
+ 254,
+ 90,
+ 89,
+ 81,
+ 165,
+ 50,
+ 58,
+ 182,
+ 499,
+ 224,
+ 113,
+ 38,
+ 81,
+ 102,
+ 184,
+ 159,
+ 117,
+ 194,
+ 281,
+ 585,
+ 65,
+ 71,
+ 358,
+ 81,
+ 133,
+ 131,
+ 467,
+ 225,
+ 91,
+ 184,
+ 123,
+ 103,
+ 88,
+ 221,
+ 126,
+ 166,
+ 165,
+ 68,
+ 127,
+ 169,
+ 78,
+ 302,
+ 375,
+ 329,
+ 119,
+ 341,
+ 246,
+ 181,
+ 127,
+ 124,
+ 113,
+ 68,
+ 232,
+ 199,
+ 179,
+ 150,
+ 2191,
+ 166,
+ 165,
+ 254,
+ 90,
+ 244,
+ 84,
+ 290,
+ 136,
+ 384,
+ 732,
+ 100,
+ 301,
+ 118,
+ 44,
+ 45,
+ 411,
+ 188,
+ 72,
+ 128,
+ 135,
+ 90,
+ 265,
+ 170,
+ 312,
+ 438,
+ 601,
+ 39,
+ 127,
+ 64,
+ 378,
+ 432,
+ 240,
+ 115,
+ 851,
+ 224,
+ 126,
+ 83,
+ 536,
+ 171,
+ 203,
+ 588,
+ 175,
+ 72,
+ 101,
+ 192,
+ 275,
+ 269,
+ 209,
+ 130,
+ 276,
+ 54,
+ 83,
+ 160,
+ 21,
+ 252,
+ 322,
+ 406,
+ 127,
+ 395,
+ 286,
+ 433,
+ 57,
+ 292,
+ 176,
+ 293,
+ 543,
+ 685,
+ 45,
+ 61,
+ 79,
+ 426,
+ 236,
+ 626,
+ 105,
+ 54,
+ 226,
+ 181,
+ 131,
+ 132,
+ 135,
+ 210,
+ 107,
+ 40,
+ 122,
+ 108,
+ 110,
+ 186,
+ 297,
+ 157,
+ 187,
+ 420,
+ 117,
+ 82,
+ 122,
+ 91,
+ 64,
+ 67,
+ 267,
+ 74,
+ 131,
+ 318,
+ 402,
+ 51,
+ 51,
+ 163,
+ 326,
+ 292,
+ 387,
+ 108,
+ 142,
+ 287,
+ 253,
+ 228,
+ 358,
+ 239,
+ 22,
+ 128,
+ 131,
+ 159,
+ 111,
+ 30,
+ 1462,
+ 205,
+ 165,
+ 152,
+ 225,
+ 228,
+ 199,
+ 154,
+ 105,
+ 1834,
+ 398,
+ 131,
+ 148,
+ 306,
+ 196,
+ 46,
+ 235,
+ 177,
+ 359,
+ 71,
+ 173,
+ 140,
+ 95,
+ 86,
+ 144,
+ 92,
+ 155,
+ 137,
+ 85,
+ 251,
+ 73,
+ 92,
+ 257,
+ 100,
+ 87,
+ 493,
+ 169,
+ 181,
+ 156,
+ 296,
+ 57,
+ 14,
+ 185,
+ 306,
+ 61,
+ 150,
+ 64,
+ 197,
+ 119,
+ 88,
+ 231,
+ 112,
+ 216,
+ 89,
+ 84,
+ 84,
+ 266,
+ 155,
+ 99,
+ 643,
+ 107,
+ 90,
+ 122,
+ 89,
+ 228,
+ 30,
+ 76,
+ 407,
+ 276,
+ 59,
+ 168,
+ 205,
+ 436,
+ 254,
+ 73,
+ 107,
+ 214,
+ 82,
+ 65,
+ 194,
+ 67,
+ 139,
+ 118,
+ 140,
+ 3422,
+ 159,
+ 20,
+ 152,
+ 314,
+ 414,
+ 122,
+ 83,
+ 1230,
+ 118,
+ 101,
+ 110,
+ 117,
+ 201,
+ 105,
+ 408,
+ 198,
+ 184,
+ 339,
+ 291,
+ 117,
+ 162,
+ 402,
+ 235,
+ 321,
+ 72,
+ 524,
+ 122,
+ 235,
+ 248,
+ 61,
+ 84,
+ 181,
+ 1934,
+ 88,
+ 452,
+ 524,
+ 124,
+ 365,
+ 82,
+ 448,
+ 262,
+ 217,
+ 123,
+ 336,
+ 242,
+ 161,
+ 260,
+ 107,
+ 158,
+ 256,
+ 259,
+ 173,
+ 430,
+ 258,
+ 163,
+ 265,
+ 35,
+ 191,
+ 152,
+ 93,
+ 385,
+ 82,
+ 112,
+ 419,
+ 82,
+ 390,
+ 185,
+ 160,
+ 218,
+ 201,
+ 215,
+ 36,
+ 90,
+ 94,
+ 231,
+ 138,
+ 188,
+ 191,
+ 96,
+ 188,
+ 130,
+ 58,
+ 117,
+ 52,
+ 550,
+ 130,
+ 50,
+ 207,
+ 282,
+ 299,
+ 146,
+ 147,
+ 31,
+ 292,
+ 161,
+ 161,
+ 169,
+ 102,
+ 106,
+ 243,
+ 60,
+ 166,
+ 207,
+ 193,
+ 129,
+ 502,
+ 126,
+ 31,
+ 155,
+ 85,
+ 215,
+ 75,
+ 118,
+ 111,
+ 261,
+ 150,
+ 258,
+ 241,
+ 94,
+ 97,
+ 175,
+ 112,
+ 75,
+ 172,
+ 198,
+ 151,
+ 197,
+ 130,
+ 84,
+ 118,
+ 89,
+ 172,
+ 151,
+ 183,
+ 80,
+ 472,
+ 31,
+ 353,
+ 104,
+ 75,
+ 385,
+ 233,
+ 124,
+ 95,
+ 235,
+ 151,
+ 109,
+ 138,
+ 112,
+ 94,
+ 108,
+ 321,
+ 224,
+ 309,
+ 177,
+ 109,
+ 348,
+ 433,
+ 124,
+ 167,
+ 103,
+ 417,
+ 111,
+ 200,
+ 189,
+ 201,
+ 50,
+ 107,
+ 192,
+ 63,
+ 73,
+ 118,
+ 385,
+ 100,
+ 117,
+ 82,
+ 133,
+ 125,
+ 81,
+ 236,
+ 194,
+ 445,
+ 129,
+ 124,
+ 91,
+ 362,
+ 16,
+ 108,
+ 176,
+ 51,
+ 255,
+ 153,
+ 87,
+ 62,
+ 71,
+ 147,
+ 335,
+ 100,
+ 178,
+ 156,
+ 173,
+ 74,
+ 79,
+ 193,
+ 93,
+ 494,
+ 172,
+ 167,
+ 88,
+ 191,
+ 63,
+ 204,
+ 83,
+ 136,
+ 52,
+ 448,
+ 528,
+ 93,
+ 80,
+ 72,
+ 258,
+ 173,
+ 406,
+ 229,
+ 604,
+ 899,
+ 420,
+ 515,
+ 79,
+ 358,
+ 327,
+ 306,
+ 455,
+ 390,
+ 231,
+ 219,
+ 424,
+ 492,
+ 174,
+ 59,
+ 263,
+ 57,
+ 329,
+ 166,
+ 72,
+ 334,
+ 108,
+ 1567,
+ 765,
+ 89,
+ 314,
+ 14,
+ 148,
+ 116,
+ 293,
+ 445,
+ 45,
+ 120,
+ 46,
+ 697,
+ 67,
+ 171,
+ 57,
+ 326,
+ 70,
+ 67,
+ 209,
+ 367,
+ 255,
+ 258,
+ 72,
+ 99,
+ 92,
+ 177,
+ 413,
+ 144,
+ 102,
+ 155,
+ 145,
+ 77,
+ 210,
+ 106,
+ 105,
+ 98,
+ 588,
+ 73,
+ 104,
+ 73,
+ 111,
+ 217,
+ 55,
+ 667,
+ 347,
+ 212,
+ 165,
+ 382,
+ 226,
+ 47,
+ 45,
+ 121,
+ 116,
+ 126,
+ 269,
+ 505,
+ 82,
+ 71,
+ 218,
+ 270,
+ 565,
+ 226,
+ 172,
+ 72,
+ 164,
+ 55,
+ 69,
+ 323,
+ 123,
+ 166,
+ 82,
+ 187,
+ 257,
+ 90,
+ 111,
+ 57,
+ 101,
+ 72,
+ 104,
+ 210,
+ 71,
+ 97,
+ 237,
+ 116,
+ 72,
+ 170,
+ 217,
+ 169,
+ 97,
+ 79,
+ 119,
+ 86,
+ 56,
+ 149,
+ 246,
+ 160,
+ 356,
+ 135,
+ 128,
+ 135,
+ 309,
+ 250,
+ 316,
+ 168,
+ 230,
+ 72,
+ 204,
+ 61,
+ 242,
+ 194,
+ 111,
+ 90,
+ 126,
+ 317,
+ 105,
+ 228,
+ 76,
+ 149,
+ 331,
+ 86,
+ 209,
+ 452,
+ 225,
+ 65,
+ 53,
+ 102,
+ 389,
+ 275,
+ 247,
+ 63,
+ 104,
+ 55,
+ 1099,
+ 331,
+ 79,
+ 83,
+ 79,
+ 177,
+ 146,
+ 104,
+ 103,
+ 230,
+ 289,
+ 216,
+ 189,
+ 185,
+ 163,
+ 214,
+ 105,
+ 121,
+ 80,
+ 566,
+ 468,
+ 182,
+ 317,
+ 370,
+ 103,
+ 63,
+ 27,
+ 69,
+ 92,
+ 153,
+ 133,
+ 262,
+ 382,
+ 55,
+ 383,
+ 280,
+ 93,
+ 76,
+ 121,
+ 176,
+ 187,
+ 246,
+ 107,
+ 132,
+ 381,
+ 445,
+ 71,
+ 64,
+ 173,
+ 190,
+ 549,
+ 61,
+ 67,
+ 429,
+ 117,
+ 154,
+ 77,
+ 118,
+ 80,
+ 214,
+ 248,
+ 385,
+ 249,
+ 104,
+ 117,
+ 312,
+ 271,
+ 95,
+ 157,
+ 1144,
+ 67,
+ 345,
+ 101,
+ 304,
+ 268,
+ 133,
+ 106,
+ 209,
+ 94,
+ 862,
+ 236,
+ 239,
+ 277,
+ 231,
+ 157,
+ 277,
+ 101,
+ 154,
+ 247,
+ 270,
+ 217,
+ 40,
+ 179,
+ 1504,
+ 48,
+ 342,
+ 566,
+ 356,
+ 159,
+ 91,
+ 154,
+ 509,
+ 161,
+ 64,
+ 219,
+ 96,
+ 246,
+ 92,
+ 359,
+ 72,
+ 138,
+ 614,
+ 327,
+ 439,
+ 144,
+ 56,
+ 106,
+ 112,
+ 75,
+ 348,
+ 132,
+ 191,
+ 428,
+ 172,
+ 127,
+ 336,
+ 76,
+ 81,
+ 120,
+ 64,
+ 178,
+ 158,
+ 51,
+ 256,
+ 364,
+ 168,
+ 138,
+ 68,
+ 96,
+ 237,
+ 181,
+ 106,
+ 110,
+ 122,
+ 52,
+ 126,
+ 73,
+ 116,
+ 365,
+ 63,
+ 250,
+ 126,
+ 63,
+ 68,
+ 74,
+ 77,
+ 29,
+ 147,
+ 867,
+ 124,
+ 117,
+ 139,
+ 196,
+ 105,
+ 193,
+ 227,
+ 232,
+ 95,
+ 80,
+ 101,
+ 138,
+ 121,
+ 174,
+ 603,
+ 87,
+ 106,
+ 138,
+ 155,
+ 123,
+ 338,
+ 85,
+ 207,
+ 150,
+ 105,
+ 126,
+ 130,
+ 603,
+ 66,
+ 109,
+ 252,
+ 61,
+ 80,
+ 197,
+ 171,
+ 436,
+ 119,
+ 129,
+ 152,
+ 131,
+ 150,
+ 56,
+ 64,
+ 108,
+ 84,
+ 312,
+ 231,
+ 370,
+ 201,
+ 433,
+ 92,
+ 536,
+ 398,
+ 297,
+ 193,
+ 127,
+ 72,
+ 58,
+ 117,
+ 121,
+ 226,
+ 355,
+ 139,
+ 83,
+ 632,
+ 186,
+ 112,
+ 225,
+ 253,
+ 284,
+ 66,
+ 114,
+ 105,
+ 578,
+ 116,
+ 158,
+ 246,
+ 304,
+ 264,
+ 100,
+ 174,
+ 127,
+ 128,
+ 127,
+ 218,
+ 153,
+ 168,
+ 588,
+ 75,
+ 145,
+ 50,
+ 454,
+ 141,
+ 136,
+ 864,
+ 216,
+ 459,
+ 128,
+ 418,
+ 226,
+ 252,
+ 134,
+ 140,
+ 180,
+ 483,
+ 409,
+ 222,
+ 612,
+ 129,
+ 243,
+ 124,
+ 284,
+ 129,
+ 228,
+ 460,
+ 136,
+ 465,
+ 204,
+ 711,
+ 121,
+ 321,
+ 1476,
+ 204,
+ 161,
+ 120,
+ 77,
+ 767,
+ 106,
+ 168,
+ 239,
+ 139,
+ 224,
+ 317,
+ 176,
+ 244,
+ 114,
+ 132,
+ 128,
+ 78,
+ 128,
+ 100,
+ 159,
+ 303,
+ 295,
+ 157,
+ 58,
+ 225,
+ 460,
+ 93,
+ 214,
+ 139,
+ 57,
+ 239,
+ 142,
+ 86,
+ 258,
+ 185,
+ 458,
+ 211,
+ 900,
+ 123,
+ 106,
+ 73,
+ 71,
+ 110,
+ 334,
+ 105,
+ 109,
+ 233,
+ 58,
+ 104,
+ 206,
+ 91,
+ 170,
+ 460,
+ 100,
+ 127,
+ 114,
+ 159,
+ 183,
+ 80,
+ 132,
+ 269,
+ 409,
+ 100,
+ 165,
+ 94,
+ 325,
+ 201,
+ 182,
+ 130,
+ 119,
+ 286,
+ 271,
+ 169,
+ 143,
+ 62,
+ 87,
+ 202,
+ 270,
+ 180,
+ 203,
+ 66,
+ 78,
+ 79,
+ 250,
+ 324,
+ 156,
+ 112,
+ 328,
+ 156,
+ 376,
+ 260,
+ 89,
+ 110,
+ 79,
+ 15,
+ 559,
+ 136,
+ 733,
+ 517,
+ 195,
+ 343,
+ 116,
+ 96,
+ 111,
+ 327,
+ 160,
+ 152,
+ 144,
+ 363,
+ 76,
+ 342,
+ 75,
+ 68,
+ 257,
+ 99,
+ 356,
+ 212,
+ 139,
+ 78,
+ 168,
+ 388,
+ 99,
+ 222,
+ 73,
+ 109,
+ 163,
+ 86,
+ 274,
+ 150,
+ 209,
+ 67,
+ 75,
+ 58,
+ 399,
+ 48,
+ 275,
+ 449,
+ 536,
+ 158,
+ 113,
+ 127,
+ 75,
+ 178,
+ 65,
+ 152,
+ 464,
+ 96,
+ 64,
+ 106,
+ 169,
+ 103,
+ 90,
+ 115,
+ 67,
+ 175,
+ 110,
+ 123,
+ 719,
+ 125,
+ 259,
+ 373,
+ 144,
+ 360,
+ 55,
+ 87,
+ 266,
+ 366,
+ 87,
+ 96,
+ 85,
+ 250,
+ 109,
+ 206,
+ 184,
+ 41,
+ 252,
+ 154,
+ 137,
+ 238,
+ 55,
+ 98,
+ 71,
+ 50,
+ 47,
+ 98,
+ 260,
+ 127,
+ 273,
+ 465,
+ 145,
+ 93,
+ 141,
+ 155,
+ 370,
+ 111,
+ 159,
+ 1217,
+ 313,
+ 38,
+ 213,
+ 356,
+ 605,
+ 935,
+ 143,
+ 92,
+ 95,
+ 127,
+ 103,
+ 90,
+ 515,
+ 214,
+ 457,
+ 421,
+ 374,
+ 95,
+ 67,
+ 93,
+ 230,
+ 113,
+ 103,
+ 106,
+ 294,
+ 165,
+ 59,
+ 51,
+ 56,
+ 108,
+ 89,
+ 174,
+ 112,
+ 168,
+ 260,
+ 85,
+ 87,
+ 104,
+ 511,
+ 197,
+ 78,
+ 118,
+ 221,
+ 280,
+ 265,
+ 158,
+ 133,
+ 924,
+ 85,
+ 64,
+ 214,
+ 3322,
+ 136,
+ 366,
+ 260,
+ 107,
+ 208,
+ 11,
+ 80,
+ 189,
+ 168,
+ 61,
+ 388,
+ 122,
+ 448,
+ 60,
+ 167,
+ 92,
+ 350,
+ 449,
+ 158,
+ 388,
+ 217,
+ 153,
+ 337,
+ 94,
+ 425,
+ 168,
+ 41,
+ 347,
+ 789,
+ 636,
+ 34,
+ 65,
+ 63,
+ 170,
+ 277,
+ 219,
+ 38,
+ 244,
+ 155,
+ 365,
+ 248,
+ 101,
+ 85,
+ 178,
+ 138,
+ 234,
+ 478,
+ 124,
+ 226,
+ 306,
+ 89,
+ 137,
+ 244,
+ 64,
+ 386,
+ 110,
+ 136,
+ 286,
+ 119,
+ 86,
+ 211,
+ 126,
+ 253,
+ 204,
+ 45,
+ 109,
+ 76,
+ 96,
+ 1871,
+ 92,
+ 90,
+ 139,
+ 181,
+ 54,
+ 59,
+ 299,
+ 92,
+ 105,
+ 180,
+ 140,
+ 195,
+ 87,
+ 197,
+ 203,
+ 251,
+ 68,
+ 114,
+ 124,
+ 105,
+ 108,
+ 161,
+ 115,
+ 341,
+ 145,
+ 26,
+ 151,
+ 230,
+ 157,
+ 393,
+ 51,
+ 71,
+ 70,
+ 146,
+ 266,
+ 347,
+ 34,
+ 113,
+ 122,
+ 48,
+ 80,
+ 104,
+ 94,
+ 70,
+ 121,
+ 145,
+ 61,
+ 143,
+ 172,
+ 91,
+ 513,
+ 92,
+ 89,
+ 96,
+ 115,
+ 119,
+ 176,
+ 69,
+ 104,
+ 515,
+ 40,
+ 100,
+ 97,
+ 166,
+ 124,
+ 207,
+ 90,
+ 100,
+ 219,
+ 129,
+ 128,
+ 75,
+ 203,
+ 96,
+ 111,
+ 245,
+ 140,
+ 240,
+ 98,
+ 315,
+ 147,
+ 134,
+ 95,
+ 431,
+ 29,
+ 93,
+ 168,
+ 80,
+ 209,
+ 201,
+ 119,
+ 306,
+ 36,
+ 79,
+ 192,
+ 199,
+ 144,
+ 702,
+ 331,
+ 111,
+ 471,
+ 68,
+ 79,
+ 87,
+ 128,
+ 170,
+ 263,
+ 80,
+ 52,
+ 254,
+ 173,
+ 150,
+ 130,
+ 191,
+ 65,
+ 781,
+ 80,
+ 66,
+ 91,
+ 280,
+ 212,
+ 93,
+ 119,
+ 271,
+ 223,
+ 199,
+ 514,
+ 75,
+ 150,
+ 151,
+ 215,
+ 547,
+ 100,
+ 85,
+ 180,
+ 22,
+ 75,
+ 984,
+ 249,
+ 62,
+ 725,
+ 377,
+ 417,
+ 201,
+ 155,
+ 103,
+ 178,
+ 135,
+ 37,
+ 35,
+ 1364,
+ 286,
+ 59,
+ 207,
+ 304,
+ 89,
+ 124,
+ 174,
+ 457,
+ 123,
+ 395,
+ 92,
+ 374,
+ 119,
+ 296,
+ 193,
+ 87,
+ 835,
+ 159,
+ 244,
+ 212,
+ 119,
+ 176,
+ 314,
+ 729,
+ 285,
+ 129,
+ 195,
+ 298,
+ 273,
+ 575,
+ 99,
+ 247,
+ 139,
+ 97,
+ 151,
+ 192,
+ 120,
+ 607,
+ 141,
+ 102,
+ 58,
+ 208,
+ 203,
+ 173,
+ 122,
+ 286,
+ 177,
+ 158,
+ 83,
+ 125,
+ 74,
+ 133,
+ 245,
+ 134,
+ 56,
+ 269,
+ 124,
+ 78,
+ 162,
+ 118,
+ 331,
+ 103,
+ 55,
+ 173,
+ 215,
+ 104,
+ 223,
+ 210,
+ 276,
+ 671,
+ 156,
+ 83,
+ 189,
+ 144,
+ 51,
+ 161,
+ 91,
+ 344,
+ 284,
+ 75,
+ 298,
+ 141,
+ 134,
+ 295,
+ 198,
+ 199,
+ 113,
+ 189,
+ 264,
+ 150,
+ 74,
+ 129,
+ 125,
+ 323,
+ 101,
+ 193,
+ 128,
+ 260,
+ 133,
+ 242,
+ 501,
+ 109,
+ 339,
+ 149,
+ 76,
+ 111,
+ 290,
+ 58,
+ 80,
+ 186,
+ 195,
+ 119,
+ 115,
+ 145,
+ 145,
+ 126,
+ 100,
+ 178,
+ 202,
+ 125,
+ 225,
+ 139,
+ 127,
+ 391,
+ 130,
+ 398,
+ 276,
+ 452,
+ 129,
+ 195,
+ 167,
+ 194,
+ 133,
+ 156,
+ 190,
+ 409,
+ 176,
+ 122,
+ 406,
+ 598,
+ 92,
+ 113,
+ 222,
+ 183,
+ 90,
+ 275,
+ 96,
+ 163,
+ 56,
+ 679,
+ 99,
+ 129,
+ 35,
+ 74,
+ 94,
+ 224,
+ 158,
+ 292,
+ 208,
+ 121,
+ 155,
+ 73,
+ 469,
+ 115,
+ 146,
+ 1241,
+ 299,
+ 128,
+ 209,
+ 166,
+ 131,
+ 58,
+ 191,
+ 274,
+ 80,
+ 95,
+ 128,
+ 220,
+ 168,
+ 360,
+ 66,
+ 133,
+ 12,
+ 120,
+ 69,
+ 119,
+ 258,
+ 195,
+ 696,
+ 105,
+ 172,
+ 387,
+ 377,
+ 243,
+ 91,
+ 103,
+ 111,
+ 205,
+ 116,
+ 120,
+ 102,
+ 92,
+ 108,
+ 124,
+ 142,
+ 79,
+ 41,
+ 551,
+ 98,
+ 386,
+ 135,
+ 358,
+ 154,
+ 153,
+ 197,
+ 245,
+ 168,
+ 111,
+ 288,
+ 69,
+ 438,
+ 28,
+ 15,
+ 824,
+ 451,
+ 385,
+ 99,
+ 471,
+ 486,
+ 156,
+ 53,
+ 139,
+ 19,
+ 144,
+ 42,
+ 117,
+ 149,
+ 231,
+ 80,
+ 141,
+ 474,
+ 153,
+ 98,
+ 405,
+ 202,
+ 294,
+ 178,
+ 264,
+ 729,
+ 18,
+ 285,
+ 367,
+ 155,
+ 88,
+ 220,
+ 174,
+ 88,
+ 199,
+ 178,
+ 373,
+ 211,
+ 44,
+ 302,
+ 171,
+ 271,
+ 59,
+ 61,
+ 105,
+ 118,
+ 392,
+ 82,
+ 78,
+ 121,
+ 97,
+ 221,
+ 329,
+ 268,
+ 160,
+ 599,
+ 109,
+ 238,
+ 249,
+ 629,
+ 231,
+ 119,
+ 308,
+ 123,
+ 199,
+ 219,
+ 386,
+ 112,
+ 706,
+ 173,
+ 207,
+ 256,
+ 85,
+ 117,
+ 60,
+ 207,
+ 187,
+ 166,
+ 152,
+ 93,
+ 242,
+ 235,
+ 303,
+ 343,
+ 159,
+ 173,
+ 46,
+ 125,
+ 108,
+ 129,
+ 118,
+ 113,
+ 80,
+ 582,
+ 68,
+ 264,
+ 216,
+ 43,
+ 154,
+ 155,
+ 72,
+ 162,
+ 30,
+ 81,
+ 50,
+ 134,
+ 86,
+ 142,
+ 64,
+ 377,
+ 73,
+ 55,
+ 76,
+ 240,
+ 160,
+ 120,
+ 68,
+ 104,
+ 87,
+ 256,
+ 50,
+ 132,
+ 64,
+ 18,
+ 212,
+ 64,
+ 329,
+ 239,
+ 90,
+ 129,
+ 295,
+ 25,
+ 133,
+ 127,
+ 138,
+ 391,
+ 128,
+ 140,
+ 88,
+ 243,
+ 97,
+ 192,
+ 340,
+ 157,
+ 142,
+ 84,
+ 113,
+ 500,
+ 179,
+ 53,
+ 195,
+ 155,
+ 72,
+ 70,
+ 312,
+ 152,
+ 124,
+ 158,
+ 82,
+ 90,
+ 428,
+ 97,
+ 339,
+ 351,
+ 202,
+ 153,
+ 203,
+ 79,
+ 117,
+ 322,
+ 60,
+ 93,
+ 387,
+ 162,
+ 108,
+ 414,
+ 552,
+ 209,
+ 263,
+ 185,
+ 105,
+ 75,
+ 360,
+ 219,
+ 102,
+ 113,
+ 196,
+ 118,
+ 94,
+ 138,
+ 204,
+ 535,
+ 112,
+ 107,
+ 160,
+ 103,
+ 123,
+ 277,
+ 88,
+ 332,
+ 184,
+ 237,
+ 49,
+ 122,
+ 215,
+ 25,
+ 211,
+ 172,
+ 113,
+ 111,
+ 214,
+ 95,
+ 195,
+ 210,
+ 97,
+ 472,
+ 157,
+ 352,
+ 171,
+ 78,
+ 72,
+ 76,
+ 112,
+ 161,
+ 140,
+ 599,
+ 75,
+ 1740,
+ 513,
+ 744,
+ 177,
+ 184,
+ 62,
+ 194,
+ 94,
+ 398,
+ 259,
+ 77,
+ 329,
+ 239,
+ 414,
+ 252,
+ 90,
+ 116,
+ 113,
+ 127,
+ 447,
+ 157,
+ 15,
+ 173,
+ 203,
+ 471,
+ 82,
+ 162,
+ 174,
+ 188,
+ 293,
+ 102,
+ 118,
+ 584,
+ 174,
+ 58,
+ 69,
+ 797,
+ 95,
+ 94,
+ 174,
+ 245,
+ 443,
+ 176,
+ 552,
+ 280,
+ 243,
+ 358,
+ 430,
+ 380,
+ 327,
+ 251,
+ 175,
+ 696,
+ 175,
+ 304,
+ 129,
+ 132,
+ 291,
+ 420,
+ 975,
+ 157,
+ 92,
+ 135,
+ 252,
+ 68,
+ 174,
+ 165,
+ 89,
+ 141,
+ 237,
+ 67,
+ 896,
+ 53,
+ 147,
+ 63,
+ 76,
+ 79,
+ 113,
+ 133,
+ 559,
+ 273,
+ 83,
+ 37,
+ 113,
+ 50,
+ 209,
+ 345,
+ 78,
+ 210,
+ 41,
+ 134,
+ 208,
+ 109,
+ 66,
+ 125,
+ 173,
+ 188,
+ 160,
+ 124,
+ 99,
+ 381,
+ 83,
+ 126,
+ 181,
+ 221,
+ 195,
+ 678,
+ 44,
+ 162,
+ 225,
+ 153,
+ 77,
+ 96,
+ 135,
+ 1464,
+ 320,
+ 220,
+ 111,
+ 462,
+ 92,
+ 432,
+ 286,
+ 182,
+ 96,
+ 398,
+ 163,
+ 444,
+ 310,
+ 209,
+ 444,
+ 151,
+ 66,
+ 115,
+ 246,
+ 137,
+ 98,
+ 218,
+ 152,
+ 102,
+ 211,
+ 238,
+ 164,
+ 250,
+ 150,
+ 82,
+ 396,
+ 273,
+ 103,
+ 121,
+ 429,
+ 167,
+ 139,
+ 120,
+ 118,
+ 101,
+ 133,
+ 180,
+ 676,
+ 84,
+ 40,
+ 62,
+ 384,
+ 82,
+ 134,
+ 120,
+ 115,
+ 234,
+ 129,
+ 126,
+ 161,
+ 139,
+ 168,
+ 111,
+ 173,
+ 93,
+ 153,
+ 62,
+ 159,
+ 104,
+ 136,
+ 376,
+ 140,
+ 117,
+ 126,
+ 65,
+ 76,
+ 588,
+ 121,
+ 151,
+ 656,
+ 265,
+ 119,
+ 97,
+ 76,
+ 243,
+ 321,
+ 162,
+ 183,
+ 179,
+ 64,
+ 124,
+ 335,
+ 115,
+ 90,
+ 244,
+ 134,
+ 139,
+ 104,
+ 91,
+ 135,
+ 123,
+ 136,
+ 166,
+ 545,
+ 230,
+ 86,
+ 140,
+ 168,
+ 898,
+ 241,
+ 176,
+ 43,
+ 12,
+ 119,
+ 172,
+ 419,
+ 575,
+ 238,
+ 76,
+ 107,
+ 175,
+ 156,
+ 188,
+ 181,
+ 660,
+ 435,
+ 202,
+ 120,
+ 67,
+ 1026,
+ 93,
+ 88,
+ 508,
+ 91,
+ 719,
+ 71,
+ 177,
+ 133,
+ 144,
+ 114,
+ 870,
+ 70,
+ 87,
+ 129,
+ 511,
+ 500,
+ 48,
+ 362,
+ 132,
+ 154,
+ 190,
+ 396,
+ 274,
+ 151,
+ 150,
+ 200,
+ 126,
+ 224,
+ 256,
+ 415,
+ 183,
+ 301,
+ 94,
+ 294,
+ 764,
+ 231,
+ 77,
+ 310,
+ 142,
+ 184,
+ 102,
+ 169,
+ 120,
+ 314,
+ 126,
+ 142,
+ 148,
+ 368,
+ 299,
+ 280,
+ 42,
+ 300,
+ 122,
+ 379,
+ 195,
+ 494,
+ 129,
+ 163,
+ 36,
+ 46,
+ 153,
+ 269,
+ 159,
+ 202,
+ 92,
+ 239,
+ 64,
+ 82,
+ 202,
+ 242,
+ 360,
+ 168,
+ 169,
+ 152,
+ 203,
+ 136,
+ 122,
+ 76,
+ 142,
+ 122,
+ 127,
+ 87,
+ 57,
+ 167,
+ 111,
+ 78,
+ 34,
+ 83,
+ 306,
+ 67,
+ 644,
+ 136,
+ 313,
+ 1241,
+ 136,
+ 73,
+ 119,
+ 65,
+ 326,
+ 80,
+ 158,
+ 164,
+ 86,
+ 246,
+ 77,
+ 393,
+ 296,
+ 234,
+ 90,
+ 82,
+ 54,
+ 254,
+ 192,
+ 16,
+ 107,
+ 146,
+ 705,
+ 33,
+ 94,
+ 77,
+ 177,
+ 944,
+ 139,
+ 492,
+ 82,
+ 125,
+ 190,
+ 188,
+ 82,
+ 115,
+ 78,
+ 73,
+ 136,
+ 119,
+ 314,
+ 129,
+ 358,
+ 73,
+ 55,
+ 268,
+ 63,
+ 111,
+ 72,
+ 160,
+ 67,
+ 65,
+ 192,
+ 73,
+ 85,
+ 78,
+ 64,
+ 197,
+ 64,
+ 278,
+ 1197,
+ 164,
+ 171,
+ 168,
+ 114,
+ 72,
+ 58,
+ 131,
+ 80,
+ 92,
+ 205,
+ 168,
+ 572,
+ 336,
+ 232,
+ 251,
+ 243,
+ 147,
+ 91,
+ 149,
+ 128,
+ 742,
+ 55,
+ 22,
+ 239,
+ 137,
+ 119,
+ 47,
+ 65,
+ 102,
+ 180,
+ 243,
+ 187,
+ 101,
+ 163,
+ 27,
+ 651,
+ 71,
+ 247,
+ 379,
+ 295,
+ 212,
+ 115,
+ 77,
+ 238,
+ 81,
+ 374,
+ 361,
+ 72,
+ 171,
+ 66,
+ 209,
+ 239,
+ 152,
+ 198,
+ 629,
+ 10,
+ 132,
+ 217,
+ 219,
+ 28,
+ 61,
+ 117,
+ 607,
+ 337,
+ 527,
+ 73,
+ 173,
+ 81,
+ 291,
+ 222,
+ 277,
+ 175,
+ 309,
+ 97,
+ 511,
+ 55,
+ 173,
+ 82,
+ 346,
+ 215,
+ 347,
+ 618,
+ 203,
+ 460,
+ 105,
+ 157,
+ 122,
+ 129,
+ 661,
+ 296,
+ 323,
+ 112,
+ 78,
+ 79,
+ 30,
+ 602,
+ 75,
+ 332,
+ 121,
+ 436,
+ 186,
+ 270,
+ 123,
+ 192,
+ 263,
+ 143,
+ 153,
+ 289,
+ 239,
+ 78,
+ 309,
+ 353,
+ 101,
+ 222,
+ 166,
+ 98,
+ 140,
+ 58,
+ 132,
+ 155,
+ 182,
+ 195,
+ 177,
+ 90,
+ 263,
+ 398,
+ 160,
+ 82,
+ 160,
+ 109,
+ 142,
+ 197,
+ 148,
+ 209,
+ 1366,
+ 124,
+ 121,
+ 306,
+ 173,
+ 268,
+ 155,
+ 176,
+ 112,
+ 208,
+ 138,
+ 148,
+ 200,
+ 311,
+ 56,
+ 139,
+ 87,
+ 116,
+ 162,
+ 109,
+ 48,
+ 540,
+ 122,
+ 342,
+ 191,
+ 288,
+ 209,
+ 91,
+ 196,
+ 110,
+ 115,
+ 57,
+ 88,
+ 68,
+ 78,
+ 160,
+ 472,
+ 205,
+ 63,
+ 132,
+ 85,
+ 425,
+ 50,
+ 66,
+ 121,
+ 145,
+ 99,
+ 112,
+ 337,
+ 87,
+ 73,
+ 463,
+ 67,
+ 103,
+ 234,
+ 220,
+ 79,
+ 80,
+ 83,
+ 417,
+ 343,
+ 119,
+ 149,
+ 129,
+ 113,
+ 147,
+ 101,
+ 125,
+ 90,
+ 167,
+ 96,
+ 91,
+ 84,
+ 342,
+ 108,
+ 62,
+ 67,
+ 143,
+ 104,
+ 110,
+ 40,
+ 176,
+ 122,
+ 59,
+ 301,
+ 343,
+ 508,
+ 102,
+ 72,
+ 14,
+ 157,
+ 116,
+ 115,
+ 146,
+ 72,
+ 72,
+ 150,
+ 159,
+ 177,
+ 250,
+ 248,
+ 132,
+ 93,
+ 121,
+ 94,
+ 65,
+ 201,
+ 154,
+ 362,
+ 124,
+ 140,
+ 14,
+ 386,
+ 42,
+ 74,
+ 23,
+ 228,
+ 112,
+ 57,
+ 15,
+ 728,
+ 72,
+ 9,
+ 99,
+ 11,
+ 9,
+ 211,
+ 422,
+ 105,
+ 69,
+ 111,
+ 169,
+ 205,
+ 734,
+ 484,
+ 14,
+ 235,
+ 256,
+ 69,
+ 69,
+ 692,
+ 296,
+ 232,
+ 151,
+ 164,
+ 198,
+ 114,
+ 64,
+ 203,
+ 433,
+ 361,
+ 97,
+ 340,
+ 54,
+ 251,
+ 87,
+ 171,
+ 134,
+ 265,
+ 62,
+ 318,
+ 365,
+ 207,
+ 105,
+ 99,
+ 197,
+ 484,
+ 81,
+ 141,
+ 73,
+ 106,
+ 160,
+ 50,
+ 163,
+ 770,
+ 313,
+ 348,
+ 256,
+ 56,
+ 335,
+ 342,
+ 109,
+ 159,
+ 378,
+ 139,
+ 68,
+ 56,
+ 43,
+ 168,
+ 67,
+ 36,
+ 119,
+ 153,
+ 63,
+ 202,
+ 226,
+ 56,
+ 121,
+ 390,
+ 75,
+ 99,
+ 108,
+ 153,
+ 63,
+ 308,
+ 163,
+ 45,
+ 230,
+ 90,
+ 98,
+ 83,
+ 194,
+ 90,
+ 19,
+ 69,
+ 127,
+ 122,
+ 179,
+ 160,
+ 106,
+ 137,
+ 109,
+ 435,
+ 110,
+ 170,
+ 479,
+ 254,
+ 427,
+ 49,
+ 102,
+ 62,
+ 73,
+ 109,
+ 0,
+ 85,
+ 42,
+ 23,
+ 146,
+ 100,
+ 67,
+ 94,
+ 60,
+ 159,
+ 64,
+ 247,
+ 102,
+ 87,
+ 106,
+ 108,
+ 312,
+ 92,
+ 178,
+ 81,
+ 317,
+ 221,
+ 97,
+ 67,
+ 80,
+ 185,
+ 17,
+ 76,
+ 64,
+ 131,
+ 252,
+ 155,
+ 14,
+ 92,
+ 748,
+ 104,
+ 65,
+ 181,
+ 176,
+ 28,
+ 610,
+ 279,
+ 345,
+ 191,
+ 82,
+ 541,
+ 67,
+ 137,
+ 259,
+ 87,
+ 103,
+ 179,
+ 239,
+ 358,
+ 312,
+ 80,
+ 126,
+ 85,
+ 131,
+ 392,
+ 85,
+ 24,
+ 119,
+ 66,
+ 460,
+ 183,
+ 189,
+ 73,
+ 130,
+ 139,
+ 168,
+ 99,
+ 43,
+ 173,
+ 260,
+ 83,
+ 95,
+ 264,
+ 124,
+ 130,
+ 128,
+ 484,
+ 80,
+ 174,
+ 249,
+ 384,
+ 71,
+ 111,
+ 211,
+ 22,
+ 101,
+ 194,
+ 124,
+ 31,
+ 17,
+ 301,
+ 12,
+ 333,
+ 219,
+ 241,
+ 55,
+ 74,
+ 300,
+ 520,
+ 96,
+ 320,
+ 36,
+ 234,
+ 75,
+ 78,
+ 162,
+ 76,
+ 39,
+ 59,
+ 140,
+ 63,
+ 358,
+ 120,
+ 11,
+ 175,
+ 157,
+ 112,
+ 264,
+ 172,
+ 435,
+ 84,
+ 653,
+ 205,
+ 100,
+ 133,
+ 277,
+ 303,
+ 263,
+ 265,
+ 77,
+ 130,
+ 377,
+ 155,
+ 454,
+ 183,
+ 218,
+ 384,
+ 57,
+ 209,
+ 89,
+ 82,
+ 168,
+ 84,
+ 369,
+ 109,
+ 35,
+ 100,
+ 133,
+ 240,
+ 130,
+ 361,
+ 99,
+ 98,
+ 58,
+ 52,
+ 157,
+ 94,
+ 108,
+ 116,
+ 87,
+ 128,
+ 20,
+ 113,
+ 18,
+ 106,
+ 154,
+ 130,
+ 146,
+ 56,
+ 185,
+ 503,
+ 95,
+ 105,
+ 219,
+ 281,
+ 57,
+ 97,
+ 84,
+ 13,
+ 130,
+ 136,
+ 360,
+ 68,
+ 153,
+ 156,
+ 199,
+ 181,
+ 39,
+ 147,
+ 113,
+ 105,
+ 87,
+ 114,
+ 219,
+ 236,
+ 130,
+ 111,
+ 85,
+ 69,
+ 134,
+ 63,
+ 352,
+ 127,
+ 254,
+ 100,
+ 88,
+ 91,
+ 217,
+ 164,
+ 121,
+ 220,
+ 9,
+ 82,
+ 129,
+ 549,
+ 342,
+ 79,
+ 63,
+ 15,
+ 308,
+ 103,
+ 312,
+ 129,
+ 28,
+ 50,
+ 508,
+ 116,
+ 335,
+ 38,
+ 14,
+ 176,
+ 15,
+ 10,
+ 114,
+ 13,
+ 96,
+ 86,
+ 516,
+ 300,
+ 125,
+ 125,
+ 12,
+ 178,
+ 19,
+ 85,
+ 122,
+ 27,
+ 60,
+ 34,
+ 561,
+ 120,
+ 74,
+ 214,
+ 107,
+ 160,
+ 16,
+ 184,
+ 138,
+ 79,
+ 78,
+ 89,
+ 88,
+ 11,
+ 157,
+ 186,
+ 569,
+ 218,
+ 43,
+ 37,
+ 85,
+ 202,
+ 316,
+ 35,
+ 26,
+ 118,
+ 72,
+ 106,
+ 263,
+ 231,
+ 101,
+ 141,
+ 97,
+ 88,
+ 22,
+ 101,
+ 78,
+ 293,
+ 67,
+ 25,
+ 145,
+ 167,
+ 126,
+ 267,
+ 23,
+ 206,
+ 95,
+ 345,
+ 81,
+ 46,
+ 154,
+ 85,
+ 448,
+ 53,
+ 296,
+ 202,
+ 155,
+ 70,
+ 787,
+ 27,
+ 183,
+ 115,
+ 62,
+ 554,
+ 112,
+ 95,
+ 61,
+ 63,
+ 118,
+ 34,
+ 82,
+ 81,
+ 55,
+ 73,
+ 131,
+ 118,
+ 81,
+ 66,
+ 77,
+ 52,
+ 236,
+ 74,
+ 94,
+ 211,
+ 536,
+ 210,
+ 85,
+ 13,
+ 192,
+ 17,
+ 116,
+ 110,
+ 148,
+ 67,
+ 146,
+ 51,
+ 101,
+ 107,
+ 65,
+ 85,
+ 26,
+ 13,
+ 47,
+ 38,
+ 137,
+ 84,
+ 94,
+ 91,
+ 71,
+ 210,
+ 121,
+ 96,
+ 165,
+ 82,
+ 100,
+ 180,
+ 108,
+ 84,
+ 161,
+ 262,
+ 72,
+ 23,
+ 125,
+ 12,
+ 12,
+ 19,
+ 87,
+ 17,
+ 56,
+ 80,
+ 80,
+ 105,
+ 81,
+ 46,
+ 147,
+ 126,
+ 331,
+ 13,
+ 44,
+ 271,
+ 86,
+ 54,
+ 82,
+ 77,
+ 14,
+ 63,
+ 110,
+ 59,
+ 205,
+ 99,
+ 151,
+ 56,
+ 81,
+ 122,
+ 180,
+ 82,
+ 49,
+ 82,
+ 71,
+ 121,
+ 66,
+ 12,
+ 13,
+ 183,
+ 82,
+ 72,
+ 20,
+ 117,
+ 28,
+ 203,
+ 22,
+ 31,
+ 16,
+ 86,
+ 308,
+ 93,
+ 203,
+ 68,
+ 19,
+ 98,
+ 9,
+ 11,
+ 85,
+ 16,
+ 276,
+ 146,
+ 183,
+ 1037,
+ 507,
+ 17,
+ 19,
+ 12,
+ 32,
+ 715,
+ 56,
+ 195,
+ 95,
+ 83,
+ 66,
+ 8,
+ 46,
+ 25,
+ 85,
+ 26,
+ 958,
+ 20,
+ 50,
+ 45,
+ 18,
+ 49,
+ 16,
+ 258,
+ 13,
+ 104,
+ 23,
+ 35,
+ 69,
+ 77,
+ 65,
+ 76,
+ 97,
+ 140,
+ 131,
+ 171,
+ 162,
+ 289,
+ 77,
+ 68,
+ 42,
+ 142,
+ 12,
+ 402,
+ 13,
+ 77,
+ 35,
+ 88,
+ 50,
+ 54,
+ 66,
+ 29,
+ 259,
+ 165,
+ 74,
+ 90,
+ 158,
+ 22,
+ 44,
+ 122,
+ 46,
+ 140,
+ 59,
+ 26,
+ 77,
+ 45,
+ 103,
+ 99,
+ 270,
+ 74,
+ 214,
+ 460,
+ 95,
+ 602,
+ 13,
+ 9,
+ 52,
+ 142,
+ 126,
+ 17,
+ 15,
+ 21,
+ 8,
+ 48,
+ 51,
+ 70,
+ 23,
+ 12,
+ 37,
+ 48,
+ 159,
+ 245,
+ 18,
+ 189,
+ 36,
+ 56,
+ 62,
+ 64,
+ 39,
+ 133,
+ 32,
+ 125,
+ 161,
+ 76,
+ 24,
+ 7,
+ 260,
+ 136,
+ 58,
+ 433,
+ 247,
+ 787,
+ 201,
+ 89,
+ 19,
+ 15,
+ 55,
+ 58,
+ 688,
+ 160,
+ 193,
+ 207,
+ 106,
+ 65,
+ 45,
+ 92,
+ 47,
+ 59,
+ 24,
+ 56,
+ 105,
+ 144,
+ 85,
+ 57,
+ 71,
+ 82,
+ 162,
+ 120,
+ 247,
+ 119,
+ 88,
+ 50,
+ 73,
+ 62,
+ 24,
+ 168,
+ 183,
+ 25,
+ 83,
+ 41,
+ 204,
+ 150,
+ 90,
+ 643,
+ 153,
+ 40,
+ 488,
+ 214,
+ 204,
+ 69,
+ 36,
+ 108,
+ 135,
+ 462,
+ 97,
+ 28,
+ 179,
+ 109,
+ 139,
+ 103,
+ 213,
+ 112,
+ 255,
+ 131,
+ 77,
+ 159,
+ 103,
+ 156,
+ 81,
+ 94,
+ 113,
+ 35,
+ 96,
+ 345,
+ 245,
+ 79,
+ 67,
+ 91,
+ 58,
+ 245,
+ 141,
+ 71,
+ 168,
+ 63,
+ 122,
+ 90,
+ 141,
+ 180,
+ 60,
+ 130,
+ 264,
+ 95,
+ 307,
+ 210,
+ 77,
+ 116,
+ 186,
+ 115,
+ 85,
+ 59,
+ 186,
+ 299,
+ 161,
+ 91,
+ 133,
+ 111,
+ 38,
+ 19,
+ 436,
+ 64,
+ 511,
+ 961,
+ 76,
+ 124,
+ 66,
+ 54,
+ 56,
+ 709,
+ 95,
+ 251,
+ 59,
+ 398,
+ 47,
+ 173,
+ 69,
+ 77,
+ 300,
+ 94,
+ 39,
+ 81,
+ 18,
+ 36,
+ 24,
+ 92,
+ 162,
+ 94,
+ 58,
+ 76,
+ 90,
+ 14,
+ 129,
+ 157,
+ 145,
+ 122,
+ 133,
+ 493,
+ 451,
+ 168,
+ 370,
+ 93,
+ 201,
+ 85,
+ 301,
+ 60,
+ 27,
+ 20,
+ 81,
+ 74,
+ 53,
+ 35,
+ 215,
+ 43,
+ 73,
+ 106,
+ 120,
+ 51,
+ 669,
+ 46,
+ 127,
+ 17,
+ 68,
+ 215,
+ 63,
+ 8,
+ 6,
+ 515,
+ 89,
+ 77,
+ 159,
+ 147,
+ 24,
+ 3253,
+ 164,
+ 309,
+ 2429,
+ 19,
+ 4,
+ 49,
+ 73,
+ 41,
+ 12,
+ 5,
+ 27,
+ 51,
+ 3284,
+ 10,
+ 11,
+ 167,
+ 81,
+ 18,
+ 44,
+ 98,
+ 95,
+ 5,
+ 15,
+ 21,
+ 217,
+ 6,
+ 449,
+ 5,
+ 68,
+ 23,
+ 26,
+ 132,
+ 83,
+ 1239,
+ 4918,
+ 125,
+ 107,
+ 98,
+ 74,
+ 133,
+ 119,
+ 320,
+ 129,
+ 24,
+ 238,
+ 119,
+ 109,
+ 75,
+ 168,
+ 72,
+ 86,
+ 51,
+ 24,
+ 76,
+ 200,
+ 92,
+ 156,
+ 53,
+ 215,
+ 238,
+ 128,
+ 98,
+ 238,
+ 82,
+ 303,
+ 221,
+ 80,
+ 130,
+ 139,
+ 669,
+ 161,
+ 163,
+ 147,
+ 252,
+ 113,
+ 375,
+ 121,
+ 52,
+ 81,
+ 70,
+ 64,
+ 115,
+ 550,
+ 75,
+ 57,
+ 68,
+ 59,
+ 55,
+ 61,
+ 113,
+ 134,
+ 123,
+ 297,
+ 353,
+ 146,
+ 59,
+ 210,
+ 92,
+ 595,
+ 57,
+ 118,
+ 78,
+ 74,
+ 93,
+ 178,
+ 69,
+ 223,
+ 178,
+ 75,
+ 92,
+ 396,
+ 334,
+ 236,
+ 231,
+ 44,
+ 85,
+ 56,
+ 64,
+ 44,
+ 65,
+ 265,
+ 49,
+ 219,
+ 155,
+ 81,
+ 89,
+ 192,
+ 288,
+ 99,
+ 33,
+ 125,
+ 214,
+ 121,
+ 40,
+ 57,
+ 76,
+ 364,
+ 63,
+ 378,
+ 151,
+ 81,
+ 89,
+ 479,
+ 68,
+ 135,
+ 90,
+ 38,
+ 77,
+ 81,
+ 127,
+ 55,
+ 79,
+ 238,
+ 179,
+ 120,
+ 84,
+ 309,
+ 130,
+ 38,
+ 70,
+ 110,
+ 206,
+ 160,
+ 176,
+ 85,
+ 483,
+ 292,
+ 107,
+ 112,
+ 58,
+ 97,
+ 55,
+ 150,
+ 149,
+ 96,
+ 112,
+ 58,
+ 259,
+ 119,
+ 527,
+ 88,
+ 140,
+ 149,
+ 76,
+ 124,
+ 90,
+ 96,
+ 591,
+ 99,
+ 118,
+ 80,
+ 165,
+ 93,
+ 64,
+ 545,
+ 346,
+ 164,
+ 407,
+ 61,
+ 191,
+ 110,
+ 56,
+ 412,
+ 193,
+ 180,
+ 1070,
+ 349,
+ 266,
+ 330,
+ 59,
+ 132,
+ 125,
+ 435,
+ 216,
+ 59,
+ 214,
+ 78,
+ 275,
+ 279,
+ 173,
+ 89,
+ 215,
+ 53,
+ 161,
+ 97,
+ 581,
+ 116,
+ 155,
+ 70,
+ 41,
+ 104,
+ 578,
+ 534,
+ 52,
+ 62,
+ 169,
+ 52,
+ 150,
+ 34,
+ 49,
+ 213,
+ 104,
+ 386,
+ 73,
+ 58,
+ 138,
+ 64,
+ 112,
+ 80,
+ 42,
+ 74,
+ 148,
+ 164,
+ 67,
+ 190,
+ 294,
+ 86,
+ 96,
+ 49,
+ 94,
+ 103,
+ 257,
+ 89,
+ 190,
+ 77,
+ 104,
+ 68,
+ 42,
+ 98,
+ 73,
+ 186,
+ 69,
+ 249,
+ 336,
+ 73,
+ 55,
+ 345,
+ 65,
+ 62,
+ 137,
+ 213,
+ 1449,
+ 391,
+ 160,
+ 407,
+ 406,
+ 104,
+ 560,
+ 167,
+ 623,
+ 102,
+ 71,
+ 264,
+ 199,
+ 96,
+ 529,
+ 64,
+ 165,
+ 141,
+ 94,
+ 64,
+ 107,
+ 76,
+ 1081,
+ 251,
+ 101,
+ 504,
+ 111,
+ 215,
+ 622,
+ 325,
+ 181,
+ 166,
+ 105,
+ 54,
+ 89,
+ 240,
+ 92,
+ 124,
+ 86,
+ 55,
+ 52,
+ 105,
+ 63,
+ 48,
+ 287,
+ 253,
+ 142,
+ 131,
+ 62,
+ 352,
+ 62,
+ 128,
+ 120,
+ 240,
+ 375,
+ 131,
+ 117,
+ 101,
+ 114,
+ 318,
+ 76,
+ 168,
+ 348,
+ 200,
+ 135,
+ 44,
+ 165,
+ 70,
+ 166,
+ 191,
+ 134,
+ 58,
+ 277,
+ 155,
+ 183,
+ 554,
+ 218,
+ 51,
+ 182,
+ 187,
+ 139,
+ 581,
+ 268,
+ 37,
+ 53,
+ 396,
+ 131,
+ 369,
+ 161,
+ 111,
+ 78,
+ 184,
+ 136,
+ 44,
+ 48,
+ 128,
+ 146,
+ 127,
+ 256,
+ 58,
+ 223,
+ 115,
+ 143,
+ 62,
+ 171,
+ 56,
+ 113,
+ 69,
+ 60,
+ 578,
+ 355,
+ 332,
+ 113,
+ 52,
+ 106,
+ 66,
+ 116,
+ 501,
+ 179,
+ 40,
+ 310,
+ 148,
+ 88,
+ 158,
+ 65,
+ 199,
+ 48,
+ 711,
+ 747,
+ 690,
+ 48,
+ 159,
+ 563,
+ 90,
+ 109,
+ 295,
+ 196,
+ 171,
+ 590,
+ 136,
+ 569,
+ 70,
+ 124,
+ 555,
+ 231,
+ 226,
+ 173,
+ 333,
+ 131,
+ 92,
+ 118,
+ 224,
+ 283,
+ 326,
+ 113,
+ 101,
+ 60,
+ 78,
+ 291,
+ 55,
+ 609,
+ 1121,
+ 564,
+ 673,
+ 62,
+ 98,
+ 242,
+ 148,
+ 204,
+ 124,
+ 85,
+ 148,
+ 193,
+ 309,
+ 242,
+ 170,
+ 130,
+ 221,
+ 117,
+ 116,
+ 178,
+ 488,
+ 49,
+ 142,
+ 63,
+ 69,
+ 176,
+ 507,
+ 1735,
+ 340,
+ 126,
+ 501,
+ 286,
+ 110,
+ 99,
+ 198,
+ 308,
+ 156,
+ 212,
+ 35,
+ 127,
+ 70,
+ 330,
+ 272,
+ 397,
+ 222,
+ 333,
+ 212,
+ 215,
+ 57,
+ 113,
+ 107,
+ 86,
+ 188,
+ 85,
+ 140,
+ 681,
+ 139,
+ 61,
+ 149,
+ 102,
+ 99,
+ 966,
+ 49,
+ 132,
+ 329,
+ 22,
+ 200,
+ 179,
+ 93,
+ 68,
+ 353,
+ 107,
+ 247,
+ 211,
+ 762,
+ 181,
+ 414,
+ 446,
+ 189,
+ 172,
+ 151,
+ 487,
+ 249,
+ 108,
+ 295,
+ 92,
+ 94,
+ 104,
+ 318,
+ 408,
+ 293,
+ 154,
+ 166,
+ 127,
+ 82,
+ 105,
+ 41,
+ 143,
+ 189,
+ 41,
+ 150,
+ 41,
+ 237,
+ 42,
+ 99,
+ 46,
+ 204,
+ 295,
+ 88,
+ 79,
+ 64,
+ 233,
+ 94,
+ 139,
+ 65,
+ 55,
+ 283,
+ 326,
+ 465,
+ 67,
+ 119,
+ 140,
+ 386,
+ 228,
+ 114,
+ 57,
+ 130,
+ 93,
+ 176,
+ 79,
+ 101,
+ 95,
+ 64,
+ 91,
+ 40,
+ 54,
+ 67,
+ 164,
+ 95,
+ 72,
+ 114,
+ 116,
+ 105,
+ 348,
+ 155,
+ 290,
+ 94,
+ 39,
+ 76,
+ 36,
+ 132,
+ 333,
+ 155,
+ 106,
+ 184,
+ 271,
+ 224,
+ 55,
+ 52,
+ 341,
+ 47,
+ 55,
+ 71,
+ 52,
+ 46,
+ 132,
+ 79,
+ 42,
+ 295,
+ 134,
+ 76,
+ 194,
+ 214,
+ 51,
+ 278,
+ 188,
+ 154,
+ 79,
+ 89,
+ 58,
+ 84,
+ 145,
+ 346,
+ 75,
+ 181,
+ 213,
+ 353,
+ 104,
+ 1268,
+ 47,
+ 59,
+ 108,
+ 132,
+ 273,
+ 50,
+ 636,
+ 466,
+ 132,
+ 111,
+ 135,
+ 281,
+ 276,
+ 74,
+ 71,
+ 79,
+ 196,
+ 175,
+ 71,
+ 67,
+ 149,
+ 635,
+ 95,
+ 280,
+ 107,
+ 51,
+ 850,
+ 253,
+ 118,
+ 141,
+ 169,
+ 835,
+ 200,
+ 95,
+ 122,
+ 148,
+ 51,
+ 132,
+ 180,
+ 144,
+ 90,
+ 129,
+ 54,
+ 613,
+ 150,
+ 296,
+ 66,
+ 155,
+ 145,
+ 117,
+ 435,
+ 266,
+ 963,
+ 385,
+ 257,
+ 99,
+ 82,
+ 130,
+ 127,
+ 84,
+ 131,
+ 183,
+ 198,
+ 37,
+ 188,
+ 99,
+ 197,
+ 464,
+ 242,
+ 134,
+ 62,
+ 91,
+ 82,
+ 128,
+ 638,
+ 113,
+ 78,
+ 84,
+ 250,
+ 288,
+ 34,
+ 352,
+ 119,
+ 89,
+ 93,
+ 305,
+ 109,
+ 205,
+ 122,
+ 107,
+ 17,
+ 103,
+ 272,
+ 145,
+ 233,
+ 172,
+ 154,
+ 109,
+ 103,
+ 50,
+ 95,
+ 48,
+ 15,
+ 122,
+ 505,
+ 106,
+ 125,
+ 191,
+ 75,
+ 159,
+ 204,
+ 82,
+ 389,
+ 162,
+ 152,
+ 417,
+ 208,
+ 52,
+ 59,
+ 346,
+ 100,
+ 35,
+ 2,
+ 288,
+ 220,
+ 77,
+ 97,
+ 118,
+ 530,
+ 118,
+ 69,
+ 91,
+ 52,
+ 226,
+ 172,
+ 78,
+ 90,
+ 70,
+ 103,
+ 199,
+ 110,
+ 92,
+ 206,
+ 91,
+ 48,
+ 131,
+ 79,
+ 349,
+ 322,
+ 125,
+ 105,
+ 328,
+ 67,
+ 432,
+ 224,
+ 74,
+ 109,
+ 89,
+ 124,
+ 117,
+ 61,
+ 191,
+ 68,
+ 90,
+ 67,
+ 37,
+ 267,
+ 73,
+ 61,
+ 60,
+ 232,
+ 143,
+ 251,
+ 90,
+ 155,
+ 65,
+ 329,
+ 130,
+ 398,
+ 18,
+ 708,
+ 655,
+ 100,
+ 126,
+ 140,
+ 140,
+ 98,
+ 84,
+ 756,
+ 51,
+ 600,
+ 120,
+ 102,
+ 69,
+ 53,
+ 281,
+ 72,
+ 339,
+ 201,
+ 134,
+ 133,
+ 79,
+ 61,
+ 46,
+ 84,
+ 63,
+ 95,
+ 182,
+ 257,
+ 71,
+ 295,
+ 67,
+ 401,
+ 137,
+ 97,
+ 98,
+ 435,
+ 368,
+ 152,
+ 107,
+ 97,
+ 52,
+ 475,
+ 164,
+ 86,
+ 68,
+ 236,
+ 142,
+ 157,
+ 87,
+ 137,
+ 123,
+ 60,
+ 190,
+ 51,
+ 52,
+ 164,
+ 63,
+ 131,
+ 127,
+ 432,
+ 94,
+ 76,
+ 475,
+ 348,
+ 309,
+ 112,
+ 66,
+ 91,
+ 72,
+ 73,
+ 199,
+ 165,
+ 163,
+ 124,
+ 178,
+ 93,
+ 265,
+ 77,
+ 96,
+ 140,
+ 179,
+ 155,
+ 384,
+ 98,
+ 90,
+ 110,
+ 62,
+ 120,
+ 154,
+ 157,
+ 177,
+ 82,
+ 244,
+ 137,
+ 110,
+ 125,
+ 40,
+ 97,
+ 69,
+ 123,
+ 188,
+ 172,
+ 114,
+ 55,
+ 54,
+ 120,
+ 174,
+ 250,
+ 45,
+ 251,
+ 234,
+ 219,
+ 240,
+ 32,
+ 94,
+ 139,
+ 79,
+ 107,
+ 399,
+ 231,
+ 129,
+ 597,
+ 464,
+ 166,
+ 196,
+ 71,
+ 146,
+ 123,
+ 203,
+ 102,
+ 175,
+ 86,
+ 87,
+ 75,
+ 313,
+ 244,
+ 355,
+ 74,
+ 145,
+ 141,
+ 51,
+ 192,
+ 464,
+ 125,
+ 67,
+ 79,
+ 72,
+ 47,
+ 722,
+ 175,
+ 133,
+ 163,
+ 147,
+ 170,
+ 727,
+ 96,
+ 187,
+ 135,
+ 633,
+ 55,
+ 231,
+ 715,
+ 135,
+ 116,
+ 191,
+ 103,
+ 255,
+ 204,
+ 354,
+ 61,
+ 148,
+ 878,
+ 138,
+ 89,
+ 271,
+ 171,
+ 361,
+ 244,
+ 218,
+ 658,
+ 136,
+ 54,
+ 154,
+ 242,
+ 275,
+ 217,
+ 84,
+ 110,
+ 373,
+ 115,
+ 259,
+ 202,
+ 286,
+ 98,
+ 97,
+ 170,
+ 129,
+ 400,
+ 282,
+ 241,
+ 267,
+ 972,
+ 194,
+ 87,
+ 143,
+ 372,
+ 86,
+ 58,
+ 117,
+ 177,
+ 84,
+ 171,
+ 131,
+ 115,
+ 174,
+ 238,
+ 61,
+ 139,
+ 810,
+ 296,
+ 218,
+ 390,
+ 271,
+ 195,
+ 173,
+ 100,
+ 192,
+ 411,
+ 108,
+ 163,
+ 167,
+ 1014,
+ 486,
+ 140,
+ 160,
+ 425,
+ 84,
+ 79,
+ 920,
+ 893,
+ 240,
+ 33,
+ 203,
+ 394,
+ 515,
+ 285,
+ 65,
+ 62,
+ 200,
+ 55,
+ 39,
+ 493,
+ 40,
+ 99,
+ 189,
+ 581,
+ 154,
+ 166,
+ 105,
+ 188,
+ 491,
+ 263,
+ 64,
+ 139,
+ 105,
+ 80,
+ 180,
+ 158,
+ 111,
+ 246,
+ 83,
+ 247,
+ 173,
+ 193,
+ 141,
+ 176,
+ 106,
+ 66,
+ 110,
+ 201,
+ 366,
+ 82,
+ 129,
+ 136,
+ 251,
+ 203,
+ 34,
+ 1476,
+ 216,
+ 252,
+ 436,
+ 288,
+ 164,
+ 91,
+ 679,
+ 400,
+ 372,
+ 90,
+ 77,
+ 139,
+ 59,
+ 167,
+ 427,
+ 187,
+ 308,
+ 178,
+ 206,
+ 89,
+ 62,
+ 308,
+ 56,
+ 209,
+ 103,
+ 98,
+ 180,
+ 84,
+ 113,
+ 135,
+ 157,
+ 299,
+ 100,
+ 347,
+ 126,
+ 108,
+ 740,
+ 364,
+ 706,
+ 43,
+ 375,
+ 125,
+ 112,
+ 184,
+ 140,
+ 189,
+ 192,
+ 305,
+ 167,
+ 207,
+ 104,
+ 30,
+ 133,
+ 577,
+ 305,
+ 204,
+ 210,
+ 126,
+ 137,
+ 530,
+ 400,
+ 295,
+ 221,
+ 158,
+ 58,
+ 193,
+ 187,
+ 499,
+ 125,
+ 277,
+ 194,
+ 210,
+ 70,
+ 192,
+ 162,
+ 140,
+ 134,
+ 67,
+ 351,
+ 143,
+ 197,
+ 82,
+ 369,
+ 130,
+ 114,
+ 112,
+ 289,
+ 36,
+ 145,
+ 589,
+ 168,
+ 493,
+ 265,
+ 905,
+ 97,
+ 682,
+ 244,
+ 355,
+ 161,
+ 296,
+ 278,
+ 286,
+ 224,
+ 215,
+ 155,
+ 236,
+ 110,
+ 770,
+ 441,
+ 77,
+ 139,
+ 648,
+ 902,
+ 470,
+ 106,
+ 89,
+ 72,
+ 288,
+ 140,
+ 61,
+ 202,
+ 64,
+ 109,
+ 336,
+ 239,
+ 473,
+ 424,
+ 298,
+ 183,
+ 70,
+ 169,
+ 808,
+ 298,
+ 436,
+ 108,
+ 225,
+ 86,
+ 723,
+ 311,
+ 122,
+ 85,
+ 154,
+ 133,
+ 103,
+ 69,
+ 578,
+ 217,
+ 177,
+ 182,
+ 203,
+ 375,
+ 157,
+ 630,
+ 223,
+ 361,
+ 125,
+ 426,
+ 117,
+ 185,
+ 582,
+ 466,
+ 222,
+ 44,
+ 76,
+ 154,
+ 164,
+ 102,
+ 111,
+ 98,
+ 226,
+ 256,
+ 210,
+ 233,
+ 211,
+ 130,
+ 248,
+ 52,
+ 249,
+ 419,
+ 117,
+ 202,
+ 206,
+ 201,
+ 144,
+ 137,
+ 75,
+ 140,
+ 212,
+ 219,
+ 122,
+ 20,
+ 75,
+ 94,
+ 264,
+ 118,
+ 46,
+ 59,
+ 94,
+ 79,
+ 79,
+ 66,
+ 363,
+ 242,
+ 20,
+ 308,
+ 274,
+ 84,
+ 631,
+ 244,
+ 86,
+ 123,
+ 117,
+ 186,
+ 352,
+ 39,
+ 325,
+ 145,
+ 100,
+ 72,
+ 53,
+ 190,
+ 200,
+ 47,
+ 388,
+ 498,
+ 149,
+ 171,
+ 357,
+ 138,
+ 118,
+ 149,
+ 402,
+ 154,
+ 68,
+ 66,
+ 87,
+ 661,
+ 95,
+ 270,
+ 142,
+ 74,
+ 60,
+ 258,
+ 222,
+ 132,
+ 103,
+ 122,
+ 93,
+ 133,
+ 40,
+ 292,
+ 58,
+ 63,
+ 198,
+ 63,
+ 51,
+ 392,
+ 122,
+ 405,
+ 291,
+ 137,
+ 90,
+ 46,
+ 64,
+ 87,
+ 196,
+ 161,
+ 96,
+ 75,
+ 60,
+ 69,
+ 41,
+ 162,
+ 341,
+ 332,
+ 126,
+ 187,
+ 281,
+ 37,
+ 138,
+ 141,
+ 135,
+ 274,
+ 169,
+ 205,
+ 113,
+ 114,
+ 60,
+ 161,
+ 128,
+ 187,
+ 134,
+ 87,
+ 133,
+ 152,
+ 133,
+ 68,
+ 50,
+ 565,
+ 405,
+ 134,
+ 416,
+ 17,
+ 201,
+ 374,
+ 581,
+ 105,
+ 1548,
+ 150,
+ 210,
+ 131,
+ 97,
+ 124,
+ 742,
+ 151,
+ 360,
+ 96,
+ 117,
+ 70,
+ 89,
+ 69,
+ 414,
+ 323,
+ 168,
+ 111,
+ 227,
+ 72,
+ 76,
+ 448,
+ 514,
+ 482,
+ 50,
+ 101,
+ 77,
+ 638,
+ 59,
+ 779,
+ 198,
+ 190,
+ 363,
+ 155,
+ 130,
+ 19,
+ 319,
+ 116,
+ 1283,
+ 293,
+ 62,
+ 148,
+ 111,
+ 186,
+ 164,
+ 220,
+ 296,
+ 267,
+ 231,
+ 178,
+ 547,
+ 161,
+ 59,
+ 121,
+ 477,
+ 384,
+ 149,
+ 59,
+ 125,
+ 201,
+ 230,
+ 180,
+ 98,
+ 391,
+ 131,
+ 174,
+ 147,
+ 126,
+ 265,
+ 67,
+ 136,
+ 174,
+ 299,
+ 392,
+ 780,
+ 159,
+ 127,
+ 418,
+ 259,
+ 295,
+ 138,
+ 124,
+ 146,
+ 145,
+ 57,
+ 69,
+ 166,
+ 82,
+ 277,
+ 194,
+ 138,
+ 175,
+ 117,
+ 134,
+ 117,
+ 187,
+ 107,
+ 40,
+ 161,
+ 71,
+ 772,
+ 128,
+ 195,
+ 353,
+ 175,
+ 55,
+ 137,
+ 98,
+ 208,
+ 131,
+ 47,
+ 140,
+ 286,
+ 690,
+ 102,
+ 93,
+ 120,
+ 570,
+ 456,
+ 49,
+ 54,
+ 160,
+ 385,
+ 250,
+ 164,
+ 234,
+ 177,
+ 50,
+ 457,
+ 20,
+ 1206,
+ 559,
+ 205,
+ 1065,
+ 401,
+ 50,
+ 113,
+ 213,
+ 340,
+ 90,
+ 286,
+ 342,
+ 394,
+ 63,
+ 214,
+ 88,
+ 96,
+ 171,
+ 434,
+ 54,
+ 86,
+ 104,
+ 251,
+ 328,
+ 88,
+ 220,
+ 118,
+ 520,
+ 139,
+ 501,
+ 408,
+ 292,
+ 95,
+ 77,
+ 62,
+ 359,
+ 640,
+ 178,
+ 112,
+ 433,
+ 122,
+ 236,
+ 60,
+ 216,
+ 70,
+ 541,
+ 199,
+ 191,
+ 300,
+ 362,
+ 208,
+ 377,
+ 54,
+ 157,
+ 47,
+ 625,
+ 88,
+ 89,
+ 616,
+ 56,
+ 238,
+ 112,
+ 748,
+ 184,
+ 202,
+ 273,
+ 223,
+ 382,
+ 278,
+ 294,
+ 1662,
+ 79,
+ 115,
+ 101,
+ 223,
+ 73,
+ 163,
+ 299,
+ 107,
+ 70,
+ 223,
+ 184,
+ 523,
+ 77,
+ 252,
+ 174,
+ 354,
+ 231,
+ 130,
+ 111,
+ 130,
+ 374,
+ 95,
+ 191,
+ 193,
+ 221,
+ 59,
+ 314,
+ 154,
+ 432,
+ 584,
+ 140,
+ 635,
+ 108,
+ 53,
+ 287,
+ 266,
+ 105,
+ 225,
+ 221,
+ 209,
+ 356,
+ 259,
+ 91,
+ 729,
+ 744,
+ 222,
+ 406,
+ 307,
+ 1337,
+ 178,
+ 1307,
+ 93,
+ 225,
+ 515,
+ 312,
+ 243,
+ 117,
+ 207,
+ 67,
+ 581,
+ 676,
+ 611,
+ 52,
+ 188,
+ 130,
+ 46,
+ 143,
+ 214,
+ 159,
+ 307,
+ 37,
+ 193,
+ 167,
+ 590,
+ 196,
+ 228,
+ 575,
+ 322,
+ 546,
+ 1435,
+ 332,
+ 214,
+ 501,
+ 723,
+ 89,
+ 284,
+ 214,
+ 64,
+ 146,
+ 281,
+ 182,
+ 291,
+ 616,
+ 186,
+ 248,
+ 380,
+ 314,
+ 206,
+ 519,
+ 209,
+ 185,
+ 335,
+ 131,
+ 71,
+ 323,
+ 62,
+ 596,
+ 517,
+ 208,
+ 11,
+ 206,
+ 107,
+ 54,
+ 107,
+ 102,
+ 201,
+ 844,
+ 1311,
+ 255,
+ 599,
+ 558,
+ 800,
+ 854,
+ 635,
+ 72,
+ 14,
+ 274,
+ 291,
+ 82,
+ 97,
+ 130,
+ 88,
+ 132,
+ 36,
+ 348,
+ 161,
+ 77,
+ 80,
+ 366,
+ 298,
+ 51,
+ 75,
+ 69,
+ 37,
+ 48,
+ 57,
+ 48,
+ 42,
+ 91,
+ 78,
+ 105,
+ 340,
+ 379,
+ 114,
+ 667,
+ 286,
+ 21,
+ 104,
+ 186,
+ 136,
+ 145,
+ 179,
+ 466,
+ 834,
+ 26,
+ 459,
+ 113,
+ 997,
+ 284,
+ 281,
+ 107,
+ 209,
+ 125,
+ 149,
+ 308,
+ 191,
+ 373,
+ 100,
+ 66,
+ 291,
+ 93,
+ 86,
+ 49,
+ 251,
+ 137,
+ 120,
+ 25,
+ 220,
+ 174,
+ 370,
+ 116,
+ 68,
+ 125,
+ 358,
+ 428,
+ 81,
+ 322,
+ 46,
+ 140,
+ 408,
+ 68,
+ 110,
+ 415,
+ 166,
+ 245,
+ 228,
+ 114,
+ 463,
+ 329,
+ 364,
+ 199,
+ 145,
+ 110,
+ 52,
+ 34,
+ 232,
+ 505,
+ 140,
+ 884,
+ 319,
+ 71,
+ 157,
+ 405,
+ 93,
+ 42,
+ 231,
+ 107,
+ 30,
+ 90,
+ 106,
+ 166,
+ 114,
+ 85,
+ 59,
+ 180,
+ 101,
+ 370,
+ 103,
+ 422,
+ 23,
+ 120,
+ 45,
+ 20,
+ 99,
+ 173,
+ 47,
+ 67,
+ 126,
+ 46,
+ 163,
+ 1058,
+ 485,
+ 176,
+ 103,
+ 277,
+ 74,
+ 137,
+ 88,
+ 158,
+ 234,
+ 258,
+ 523,
+ 640,
+ 60,
+ 1816,
+ 203,
+ 63,
+ 155,
+ 146,
+ 91,
+ 112,
+ 333,
+ 124,
+ 172,
+ 34,
+ 318,
+ 1040,
+ 103,
+ 8,
+ 88,
+ 25,
+ 26,
+ 168,
+ 67,
+ 60,
+ 167,
+ 59,
+ 73,
+ 302,
+ 541,
+ 92,
+ 85,
+ 128,
+ 278,
+ 316,
+ 278,
+ 202,
+ 171,
+ 352,
+ 252,
+ 114,
+ 53,
+ 223,
+ 57,
+ 91,
+ 59,
+ 90,
+ 228,
+ 148,
+ 199,
+ 1031,
+ 147,
+ 82,
+ 60,
+ 204,
+ 500,
+ 70,
+ 18,
+ 174,
+ 189,
+ 222,
+ 290,
+ 220,
+ 22,
+ 35,
+ 365,
+ 106,
+ 244,
+ 290,
+ 48,
+ 302,
+ 151,
+ 88,
+ 95,
+ 113,
+ 70,
+ 178,
+ 96,
+ 308,
+ 29,
+ 73,
+ 88,
+ 86,
+ 94,
+ 26,
+ 78,
+ 186,
+ 321,
+ 220,
+ 77,
+ 81,
+ 19,
+ 83,
+ 40,
+ 640,
+ 371,
+ 151,
+ 88,
+ 73,
+ 111,
+ 757,
+ 62,
+ 149,
+ 164,
+ 67,
+ 232,
+ 385,
+ 301,
+ 69,
+ 183,
+ 80,
+ 117,
+ 89,
+ 49,
+ 24,
+ 162,
+ 1256,
+ 244,
+ 82,
+ 39,
+ 133,
+ 45,
+ 139,
+ 116,
+ 410,
+ 45,
+ 125,
+ 80,
+ 145,
+ 86,
+ 180,
+ 775,
+ 207,
+ 89,
+ 283,
+ 107,
+ 59,
+ 85,
+ 200,
+ 90,
+ 227,
+ 119,
+ 71,
+ 292,
+ 69,
+ 120,
+ 160,
+ 340,
+ 352,
+ 475,
+ 322,
+ 153,
+ 178,
+ 73,
+ 281,
+ 80,
+ 96,
+ 62,
+ 240,
+ 197,
+ 150,
+ 200,
+ 42,
+ 88,
+ 356,
+ 150,
+ 283,
+ 69,
+ 30,
+ 59,
+ 487,
+ 418,
+ 287,
+ 147,
+ 282,
+ 70,
+ 187,
+ 554,
+ 282,
+ 454,
+ 95,
+ 324,
+ 120,
+ 256,
+ 197,
+ 104,
+ 377,
+ 128,
+ 124,
+ 90,
+ 329,
+ 141,
+ 50,
+ 161,
+ 224,
+ 188,
+ 395,
+ 145,
+ 252,
+ 475,
+ 363,
+ 172,
+ 305,
+ 743,
+ 62,
+ 81,
+ 89,
+ 139,
+ 452,
+ 75,
+ 661,
+ 174,
+ 278,
+ 184,
+ 73,
+ 184,
+ 123,
+ 124,
+ 359,
+ 60,
+ 249,
+ 164,
+ 64,
+ 244,
+ 70,
+ 96,
+ 250,
+ 211,
+ 74,
+ 259,
+ 339,
+ 195,
+ 168,
+ 96,
+ 144,
+ 51,
+ 111,
+ 214,
+ 188,
+ 352,
+ 118,
+ 597,
+ 190,
+ 193,
+ 55,
+ 125,
+ 113,
+ 10,
+ 94,
+ 176,
+ 277,
+ 105,
+ 197,
+ 80,
+ 75,
+ 382,
+ 486,
+ 151,
+ 80,
+ 340,
+ 223,
+ 212,
+ 151,
+ 136,
+ 258,
+ 51,
+ 140,
+ 790,
+ 75,
+ 72,
+ 604,
+ 154,
+ 131,
+ 733,
+ 266,
+ 130,
+ 98,
+ 143,
+ 559,
+ 350,
+ 293,
+ 138,
+ 105,
+ 195,
+ 215,
+ 311,
+ 633,
+ 191,
+ 239,
+ 125,
+ 63,
+ 219,
+ 65,
+ 61,
+ 123,
+ 141,
+ 51,
+ 149,
+ 547,
+ 337,
+ 47,
+ 35,
+ 48,
+ 230,
+ 109,
+ 361,
+ 67,
+ 107,
+ 435,
+ 140,
+ 294,
+ 205,
+ 470,
+ 427,
+ 175,
+ 380,
+ 215,
+ 98,
+ 267,
+ 51,
+ 207,
+ 20,
+ 186,
+ 120,
+ 319,
+ 52,
+ 154,
+ 267,
+ 113,
+ 159,
+ 249,
+ 195,
+ 16,
+ 330,
+ 25,
+ 340,
+ 158,
+ 192,
+ 426,
+ 260,
+ 539,
+ 230,
+ 9,
+ 44,
+ 142,
+ 315,
+ 326,
+ 240,
+ 517,
+ 73,
+ 77,
+ 279,
+ 40,
+ 93,
+ 102,
+ 144,
+ 265,
+ 115,
+ 61,
+ 201,
+ 106,
+ 37,
+ 418,
+ 106,
+ 187,
+ 101,
+ 619,
+ 93,
+ 127,
+ 88,
+ 104,
+ 808,
+ 600,
+ 627,
+ 329,
+ 399,
+ 87,
+ 911,
+ 352,
+ 20,
+ 108,
+ 262,
+ 196,
+ 43,
+ 128,
+ 104,
+ 111,
+ 61,
+ 119,
+ 105,
+ 133,
+ 179,
+ 206,
+ 240,
+ 129,
+ 182,
+ 642,
+ 434,
+ 163,
+ 214,
+ 1145,
+ 148,
+ 329,
+ 221,
+ 339,
+ 135,
+ 41,
+ 159,
+ 75,
+ 155,
+ 147,
+ 167,
+ 268,
+ 16,
+ 533,
+ 264,
+ 303,
+ 91,
+ 225,
+ 90,
+ 283,
+ 208,
+ 56,
+ 319,
+ 57,
+ 354,
+ 165,
+ 88,
+ 180,
+ 218,
+ 248,
+ 75,
+ 986,
+ 172,
+ 315,
+ 117,
+ 151,
+ 513,
+ 281,
+ 317,
+ 116,
+ 115,
+ 303,
+ 97,
+ 104,
+ 68,
+ 136,
+ 251,
+ 231,
+ 341,
+ 106,
+ 361,
+ 212,
+ 131,
+ 60,
+ 378,
+ 282,
+ 197,
+ 217,
+ 250,
+ 172,
+ 210,
+ 332,
+ 194,
+ 233,
+ 197,
+ 168,
+ 688,
+ 205,
+ 713,
+ 176,
+ 215,
+ 90,
+ 232,
+ 88,
+ 693,
+ 430,
+ 134,
+ 761,
+ 233,
+ 134,
+ 290,
+ 370,
+ 766,
+ 279,
+ 298,
+ 157,
+ 324,
+ 537,
+ 182,
+ 96,
+ 59,
+ 222,
+ 178,
+ 146,
+ 769,
+ 192,
+ 156,
+ 1329,
+ 76,
+ 310,
+ 56,
+ 40,
+ 104,
+ 843,
+ 185,
+ 1476,
+ 476,
+ 139,
+ 283,
+ 165,
+ 738,
+ 265,
+ 442,
+ 164,
+ 422,
+ 91,
+ 489,
+ 391,
+ 1855,
+ 21,
+ 83,
+ 86,
+ 91,
+ 149,
+ 249,
+ 10,
+ 358,
+ 81,
+ 138,
+ 275,
+ 312,
+ 69,
+ 37,
+ 159,
+ 116,
+ 21,
+ 358,
+ 144,
+ 41,
+ 124,
+ 271,
+ 152,
+ 322,
+ 336,
+ 441,
+ 149,
+ 118,
+ 85,
+ 65,
+ 239,
+ 267,
+ 225,
+ 54,
+ 108,
+ 49,
+ 1221,
+ 71,
+ 289,
+ 127,
+ 846,
+ 215,
+ 75,
+ 248,
+ 163,
+ 337,
+ 179,
+ 111,
+ 63,
+ 569,
+ 153,
+ 208,
+ 261,
+ 43,
+ 321,
+ 104,
+ 63,
+ 81,
+ 423,
+ 113,
+ 71,
+ 348,
+ 588,
+ 76,
+ 73,
+ 567,
+ 13,
+ 470,
+ 228,
+ 22,
+ 91,
+ 345,
+ 346,
+ 107,
+ 86,
+ 40,
+ 195,
+ 183,
+ 195,
+ 585,
+ 501,
+ 222,
+ 158,
+ 215,
+ 30,
+ 263,
+ 344,
+ 74,
+ 206,
+ 132,
+ 175,
+ 140,
+ 148,
+ 66,
+ 149,
+ 1166,
+ 161,
+ 262,
+ 60,
+ 106,
+ 59,
+ 181,
+ 218,
+ 429,
+ 327,
+ 216,
+ 201,
+ 102,
+ 65,
+ 58,
+ 221,
+ 202,
+ 161,
+ 167,
+ 89,
+ 306,
+ 56,
+ 189,
+ 74,
+ 154,
+ 89,
+ 79,
+ 169,
+ 80,
+ 44,
+ 133,
+ 49,
+ 586,
+ 218,
+ 235,
+ 105,
+ 5,
+ 271,
+ 230,
+ 68,
+ 74,
+ 115,
+ 100,
+ 1182,
+ 144,
+ 189,
+ 169,
+ 42,
+ 81,
+ 199,
+ 184,
+ 18,
+ 451,
+ 51,
+ 70,
+ 44,
+ 54,
+ 13,
+ 401,
+ 484,
+ 59,
+ 64,
+ 526,
+ 105,
+ 128,
+ 115,
+ 573,
+ 996,
+ 206,
+ 135,
+ 36,
+ 425,
+ 288,
+ 244,
+ 378,
+ 252,
+ 283,
+ 109,
+ 162,
+ 144,
+ 49,
+ 70,
+ 71,
+ 306,
+ 70,
+ 221,
+ 44,
+ 202,
+ 552,
+ 97,
+ 48,
+ 89,
+ 171,
+ 744,
+ 79,
+ 233,
+ 70,
+ 38,
+ 8,
+ 18,
+ 164,
+ 100,
+ 18,
+ 165,
+ 296,
+ 203,
+ 55,
+ 186,
+ 532,
+ 79,
+ 197,
+ 84,
+ 35,
+ 26,
+ 102,
+ 100,
+ 164,
+ 67,
+ 180,
+ 182,
+ 450,
+ 66,
+ 119,
+ 135,
+ 661,
+ 492,
+ 43,
+ 28,
+ 82,
+ 63,
+ 264,
+ 118,
+ 124,
+ 218,
+ 232,
+ 190,
+ 10,
+ 456,
+ 176,
+ 45,
+ 124,
+ 42,
+ 189,
+ 126,
+ 11,
+ 64,
+ 28,
+ 148,
+ 104,
+ 45,
+ 62,
+ 10,
+ 102,
+ 52,
+ 226,
+ 58,
+ 224,
+ 48,
+ 207,
+ 24,
+ 103,
+ 219,
+ 152,
+ 171,
+ 94,
+ 104,
+ 62,
+ 220,
+ 50,
+ 112,
+ 381,
+ 226,
+ 157,
+ 673,
+ 347,
+ 58,
+ 85,
+ 224,
+ 127,
+ 366,
+ 162,
+ 197,
+ 47,
+ 98,
+ 72,
+ 182,
+ 183,
+ 158,
+ 57,
+ 36,
+ 380,
+ 78,
+ 161,
+ 455,
+ 83,
+ 184,
+ 295,
+ 551,
+ 101,
+ 294,
+ 13,
+ 51,
+ 93,
+ 48,
+ 50,
+ 718,
+ 161,
+ 41,
+ 240,
+ 75,
+ 108,
+ 47,
+ 408,
+ 290,
+ 229,
+ 148,
+ 185,
+ 68,
+ 54,
+ 906,
+ 186,
+ 124,
+ 319,
+ 157,
+ 106,
+ 94,
+ 123,
+ 12,
+ 75,
+ 408,
+ 119,
+ 159,
+ 297,
+ 61,
+ 142,
+ 34,
+ 79,
+ 7,
+ 186,
+ 105,
+ 661,
+ 45,
+ 14,
+ 155,
+ 78,
+ 10,
+ 379,
+ 21,
+ 85,
+ 106,
+ 50,
+ 757,
+ 103,
+ 570,
+ 139,
+ 157,
+ 328,
+ 366,
+ 150,
+ 139,
+ 51,
+ 175,
+ 128,
+ 11,
+ 82,
+ 33,
+ 52,
+ 289,
+ 43,
+ 101,
+ 402,
+ 59,
+ 39,
+ 57,
+ 608,
+ 430,
+ 240,
+ 173,
+ 137,
+ 379,
+ 1036,
+ 675,
+ 139,
+ 377,
+ 394,
+ 70,
+ 61,
+ 163,
+ 302,
+ 41,
+ 39,
+ 360,
+ 230,
+ 155,
+ 32,
+ 61,
+ 251,
+ 38,
+ 36,
+ 165,
+ 11,
+ 98,
+ 544,
+ 122,
+ 695,
+ 369,
+ 88,
+ 64,
+ 90,
+ 164,
+ 147,
+ 268,
+ 169,
+ 585,
+ 36,
+ 129,
+ 33,
+ 888,
+ 14,
+ 305,
+ 18,
+ 77,
+ 382,
+ 13,
+ 1032,
+ 64,
+ 634,
+ 138,
+ 225,
+ 855,
+ 258,
+ 484,
+ 229,
+ 330,
+ 41,
+ 395,
+ 39,
+ 639,
+ 711,
+ 178,
+ 104,
+ 432,
+ 1195,
+ 168,
+ 229,
+ 322,
+ 127,
+ 59,
+ 246,
+ 140,
+ 11,
+ 208,
+ 358,
+ 407,
+ 903,
+ 66,
+ 127,
+ 307,
+ 27,
+ 163,
+ 136,
+ 95,
+ 505,
+ 170,
+ 1162,
+ 122,
+ 72,
+ 294,
+ 15,
+ 7,
+ 21,
+ 118,
+ 21,
+ 345,
+ 96,
+ 211,
+ 73,
+ 6,
+ 110,
+ 321,
+ 56,
+ 125,
+ 328,
+ 13,
+ 296,
+ 48,
+ 77,
+ 8,
+ 182,
+ 12,
+ 9,
+ 11,
+ 24,
+ 175,
+ 69,
+ 37,
+ 240,
+ 11,
+ 13,
+ 234,
+ 30,
+ 8,
+ 80,
+ 12,
+ 85,
+ 143,
+ 14,
+ 12,
+ 51,
+ 12,
+ 33,
+ 72,
+ 1067,
+ 10,
+ 273,
+ 11,
+ 189,
+ 61,
+ 10,
+ 10,
+ 47,
+ 38,
+ 219,
+ 205,
+ 49,
+ 114,
+ 8,
+ 24,
+ 36,
+ 11,
+ 18,
+ 12,
+ 291,
+ 170,
+ 183,
+ 234,
+ 136,
+ 42,
+ 169,
+ 213,
+ 78,
+ 76,
+ 139,
+ 142,
+ 145,
+ 69,
+ 54,
+ 170,
+ 59,
+ 56,
+ 76,
+ 131,
+ 136,
+ 889,
+ 88,
+ 39,
+ 225,
+ 92,
+ 66,
+ 92,
+ 61,
+ 86,
+ 64,
+ 218,
+ 53,
+ 90,
+ 41,
+ 119,
+ 115,
+ 84,
+ 167,
+ 136,
+ 119,
+ 101,
+ 161,
+ 78,
+ 70,
+ 75,
+ 93,
+ 97,
+ 164,
+ 179,
+ 56,
+ 100,
+ 119,
+ 59,
+ 113,
+ 103,
+ 59,
+ 137,
+ 70,
+ 230,
+ 60,
+ 48,
+ 74,
+ 231,
+ 101,
+ 96,
+ 74,
+ 85,
+ 103,
+ 82,
+ 56,
+ 71,
+ 85,
+ 186,
+ 61,
+ 41,
+ 114,
+ 432,
+ 61,
+ 422,
+ 80,
+ 104,
+ 93,
+ 44,
+ 147,
+ 83,
+ 74,
+ 163,
+ 325,
+ 159,
+ 81,
+ 136,
+ 236,
+ 140,
+ 163,
+ 181,
+ 47,
+ 233,
+ 269,
+ 83,
+ 81,
+ 74,
+ 115,
+ 58,
+ 116,
+ 125,
+ 152,
+ 78,
+ 141,
+ 91,
+ 143,
+ 94,
+ 131,
+ 267,
+ 86,
+ 73,
+ 278,
+ 181,
+ 173,
+ 101,
+ 124,
+ 78,
+ 102,
+ 184,
+ 277,
+ 166,
+ 77,
+ 689,
+ 101,
+ 558,
+ 111,
+ 144,
+ 166,
+ 253,
+ 171,
+ 96,
+ 114,
+ 167,
+ 78,
+ 52,
+ 138,
+ 684,
+ 257,
+ 829,
+ 544,
+ 484,
+ 131,
+ 394,
+ 73,
+ 202,
+ 247,
+ 154,
+ 110,
+ 427,
+ 212,
+ 274,
+ 479,
+ 513,
+ 295,
+ 117,
+ 286,
+ 161,
+ 498,
+ 625,
+ 74,
+ 203,
+ 647,
+ 80,
+ 173,
+ 2870,
+ 90,
+ 82,
+ 101,
+ 340,
+ 121,
+ 177,
+ 73,
+ 253,
+ 311,
+ 148,
+ 598,
+ 477,
+ 144,
+ 333,
+ 240,
+ 444,
+ 824,
+ 104,
+ 293,
+ 249,
+ 204,
+ 173,
+ 399,
+ 74,
+ 285,
+ 225,
+ 96,
+ 254,
+ 206,
+ 48,
+ 326,
+ 187,
+ 456,
+ 93,
+ 0,
+ 376,
+ 224,
+ 297,
+ 115,
+ 103,
+ 697,
+ 445,
+ 314,
+ 84,
+ 277,
+ 170,
+ 285,
+ 119,
+ 484,
+ 240,
+ 420,
+ 66,
+ 213,
+ 273,
+ 239,
+ 362,
+ 190,
+ 345,
+ 65,
+ 1090,
+ 203,
+ 383,
+ 100,
+ 224,
+ 439,
+ 205,
+ 230,
+ 1091,
+ 596,
+ 148,
+ 514,
+ 583,
+ 579,
+ 309,
+ 151,
+ 219,
+ 278,
+ 322,
+ 272,
+ 185,
+ 254,
+ 112,
+ 275,
+ 247,
+ 332,
+ 916,
+ 551,
+ 90,
+ 172,
+ 147,
+ 599,
+ 232,
+ 376,
+ 271,
+ 86,
+ 437,
+ 211,
+ 263,
+ 173,
+ 129,
+ 197,
+ 139,
+ 139,
+ 399,
+ 190,
+ 216,
+ 75,
+ 371,
+ 230,
+ 41,
+ 272,
+ 223,
+ 377,
+ 2316,
+ 357,
+ 441,
+ 276,
+ 583,
+ 72,
+ 43,
+ 60,
+ 355,
+ 226,
+ 327,
+ 231,
+ 208,
+ 91,
+ 381,
+ 183,
+ 194,
+ 103,
+ 479,
+ 354,
+ 345,
+ 329,
+ 226,
+ 389,
+ 97,
+ 197,
+ 196,
+ 254,
+ 366,
+ 274,
+ 189,
+ 411,
+ 157,
+ 272,
+ 615,
+ 255,
+ 93,
+ 49,
+ 124,
+ 99,
+ 83,
+ 139,
+ 1063,
+ 487,
+ 304,
+ 66,
+ 253,
+ 145,
+ 98,
+ 104,
+ 88,
+ 1,
+ 158,
+ 245,
+ 161,
+ 542,
+ 265,
+ 562,
+ 277,
+ 239,
+ 172,
+ 221,
+ 376,
+ 353,
+ 216,
+ 43,
+ 736,
+ 581,
+ 163,
+ 79,
+ 325,
+ 98,
+ 131,
+ 149,
+ 169,
+ 87,
+ 628,
+ 98,
+ 205,
+ 95,
+ 58,
+ 59,
+ 123,
+ 95,
+ 97,
+ 268,
+ 88,
+ 120,
+ 182,
+ 335,
+ 218,
+ 2129,
+ 462,
+ 284,
+ 241,
+ 291,
+ 281,
+ 125,
+ 261,
+ 233,
+ 67,
+ 663,
+ 195,
+ 180,
+ 34,
+ 201,
+ 167,
+ 58,
+ 518,
+ 74,
+ 250,
+ 201,
+ 110,
+ 405,
+ 84,
+ 612,
+ 229,
+ 188,
+ 543,
+ 216,
+ 180,
+ 174,
+ 249,
+ 169,
+ 303,
+ 56,
+ 179,
+ 65,
+ 91,
+ 274,
+ 690,
+ 281,
+ 213,
+ 171,
+ 417,
+ 101,
+ 124,
+ 162,
+ 68,
+ 87,
+ 374,
+ 312,
+ 820,
+ 328,
+ 528,
+ 168,
+ 264,
+ 207,
+ 125,
+ 150,
+ 85,
+ 220,
+ 113,
+ 241,
+ 765,
+ 126,
+ 304,
+ 161,
+ 236,
+ 259,
+ 230,
+ 96,
+ 109,
+ 71,
+ 159,
+ 104,
+ 184,
+ 188,
+ 466,
+ 327,
+ 290,
+ 464,
+ 221,
+ 152,
+ 132,
+ 106,
+ 98,
+ 337,
+ 133,
+ 90,
+ 322,
+ 385,
+ 208,
+ 275,
+ 188,
+ 236,
+ 563,
+ 136,
+ 142,
+ 129,
+ 86,
+ 259,
+ 255,
+ 82,
+ 565,
+ 251,
+ 262,
+ 283,
+ 255,
+ 110,
+ 62,
+ 145,
+ 213,
+ 111,
+ 266,
+ 118,
+ 855,
+ 85,
+ 441,
+ 104,
+ 179,
+ 114,
+ 114,
+ 226,
+ 94,
+ 461,
+ 163,
+ 62,
+ 49,
+ 72,
+ 314,
+ 178,
+ 232,
+ 332,
+ 308,
+ 129,
+ 247,
+ 259,
+ 119,
+ 108,
+ 101,
+ 422,
+ 61,
+ 108,
+ 225,
+ 608,
+ 201,
+ 47,
+ 226,
+ 431,
+ 1372,
+ 343,
+ 141,
+ 141,
+ 139,
+ 389,
+ 651,
+ 692,
+ 217,
+ 93,
+ 253,
+ 139,
+ 154,
+ 601,
+ 44,
+ 349,
+ 225,
+ 103,
+ 75,
+ 251,
+ 609,
+ 134,
+ 166,
+ 301,
+ 177,
+ 126,
+ 56,
+ 85,
+ 194,
+ 122,
+ 187,
+ 114,
+ 310,
+ 48,
+ 125,
+ 412,
+ 120,
+ 86,
+ 72,
+ 437,
+ 358,
+ 82,
+ 469,
+ 99,
+ 121,
+ 442,
+ 54,
+ 117,
+ 85,
+ 171,
+ 103,
+ 397,
+ 142,
+ 185,
+ 520,
+ 244,
+ 221,
+ 266,
+ 623,
+ 162,
+ 80,
+ 540,
+ 140,
+ 87,
+ 55,
+ 206,
+ 137,
+ 122,
+ 827,
+ 218,
+ 67,
+ 199,
+ 71,
+ 220,
+ 124,
+ 198,
+ 82,
+ 284,
+ 35,
+ 291,
+ 201,
+ 297,
+ 384,
+ 250,
+ 404,
+ 156,
+ 240,
+ 60,
+ 114,
+ 35,
+ 188,
+ 528,
+ 104,
+ 622,
+ 91,
+ 743,
+ 39,
+ 474,
+ 275,
+ 361,
+ 124,
+ 309,
+ 339,
+ 77,
+ 58,
+ 125,
+ 34,
+ 191,
+ 228,
+ 316,
+ 150,
+ 617,
+ 352,
+ 211,
+ 177,
+ 270,
+ 94,
+ 54,
+ 670,
+ 168,
+ 1122,
+ 172,
+ 884,
+ 229,
+ 284,
+ 272,
+ 165,
+ 150,
+ 80,
+ 126,
+ 693,
+ 83,
+ 144,
+ 257,
+ 76,
+ 218,
+ 174,
+ 76,
+ 1087,
+ 178,
+ 62,
+ 114,
+ 60,
+ 563,
+ 79,
+ 118,
+ 314,
+ 66,
+ 77,
+ 178,
+ 483,
+ 308,
+ 289,
+ 44,
+ 168,
+ 130,
+ 100,
+ 75,
+ 357,
+ 285,
+ 257,
+ 487,
+ 290,
+ 125,
+ 772,
+ 657,
+ 123,
+ 255,
+ 375,
+ 386,
+ 280,
+ 772,
+ 380,
+ 302,
+ 453,
+ 567,
+ 91,
+ 44,
+ 640,
+ 417,
+ 194,
+ 63,
+ 433,
+ 127,
+ 472,
+ 1007,
+ 383,
+ 256,
+ 668,
+ 211,
+ 792,
+ 55,
+ 282,
+ 198,
+ 104,
+ 370,
+ 48,
+ 316,
+ 279,
+ 225,
+ 193,
+ 804,
+ 211,
+ 274,
+ 399,
+ 344,
+ 539,
+ 137,
+ 580,
+ 296,
+ 179,
+ 137,
+ 263,
+ 75,
+ 287,
+ 442,
+ 304,
+ 772,
+ 647,
+ 127,
+ 71,
+ 332,
+ 1410,
+ 234,
+ 340,
+ 579,
+ 561,
+ 192,
+ 71,
+ 377,
+ 360,
+ 141,
+ 430,
+ 282,
+ 125,
+ 620,
+ 141,
+ 50,
+ 180,
+ 345,
+ 118,
+ 233,
+ 249,
+ 179,
+ 52,
+ 112,
+ 392,
+ 119,
+ 85,
+ 515,
+ 76,
+ 420,
+ 198,
+ 108,
+ 238,
+ 548,
+ 416,
+ 86,
+ 210,
+ 344,
+ 329,
+ 82,
+ 416,
+ 612,
+ 177,
+ 150,
+ 199,
+ 112,
+ 704,
+ 372,
+ 135,
+ 486,
+ 462,
+ 156,
+ 203,
+ 77,
+ 486,
+ 341,
+ 267,
+ 313,
+ 115,
+ 377,
+ 135,
+ 351,
+ 126,
+ 456,
+ 306,
+ 178,
+ 292,
+ 406,
+ 239,
+ 514,
+ 51,
+ 468,
+ 172,
+ 122,
+ 185,
+ 196,
+ 88,
+ 31,
+ 268,
+ 111,
+ 151,
+ 73,
+ 832,
+ 101,
+ 113,
+ 237,
+ 531,
+ 158,
+ 58,
+ 299,
+ 69,
+ 351,
+ 471,
+ 47,
+ 57,
+ 183,
+ 515,
+ 132,
+ 83,
+ 921,
+ 519,
+ 299,
+ 97,
+ 84,
+ 73,
+ 107,
+ 193,
+ 248,
+ 332,
+ 362,
+ 161,
+ 334,
+ 183,
+ 245,
+ 218,
+ 754,
+ 609,
+ 146,
+ 518,
+ 345,
+ 218,
+ 52,
+ 82,
+ 140,
+ 68,
+ 707,
+ 212,
+ 51,
+ 53,
+ 198,
+ 137,
+ 9,
+ 191,
+ 98,
+ 777,
+ 161,
+ 117,
+ 329,
+ 155,
+ 106,
+ 76,
+ 382,
+ 464,
+ 82,
+ 75,
+ 43,
+ 95,
+ 175,
+ 208,
+ 26,
+ 218,
+ 342,
+ 85,
+ 73,
+ 171,
+ 372,
+ 108,
+ 153,
+ 138,
+ 175,
+ 362,
+ 286,
+ 316,
+ 274,
+ 324,
+ 206,
+ 191,
+ 200,
+ 279,
+ 214,
+ 122,
+ 649,
+ 14,
+ 263,
+ 433,
+ 407,
+ 216,
+ 33,
+ 55,
+ 419,
+ 113,
+ 157,
+ 40,
+ 53,
+ 100,
+ 317,
+ 294,
+ 77,
+ 492,
+ 70,
+ 401,
+ 238,
+ 212,
+ 36,
+ 611,
+ 280,
+ 107,
+ 654,
+ 156,
+ 41,
+ 211,
+ 54,
+ 301,
+ 401,
+ 237,
+ 346,
+ 508,
+ 115,
+ 463,
+ 73,
+ 775,
+ 140,
+ 727,
+ 160,
+ 222,
+ 402,
+ 297,
+ 207,
+ 1034,
+ 326,
+ 91,
+ 326,
+ 99,
+ 240,
+ 158,
+ 365,
+ 219,
+ 188,
+ 96,
+ 412,
+ 65,
+ 114,
+ 93,
+ 69,
+ 165,
+ 395,
+ 345,
+ 815,
+ 147,
+ 224,
+ 74,
+ 124,
+ 771,
+ 460,
+ 300,
+ 17,
+ 254,
+ 239,
+ 73,
+ 473,
+ 139,
+ 128,
+ 405,
+ 52,
+ 370,
+ 642,
+ 333,
+ 413,
+ 163,
+ 246,
+ 232,
+ 95,
+ 181,
+ 186,
+ 115,
+ 598,
+ 323,
+ 273,
+ 160,
+ 134,
+ 606,
+ 105,
+ 246,
+ 1130,
+ 156,
+ 276,
+ 185,
+ 278,
+ 171,
+ 166,
+ 1426,
+ 795,
+ 441,
+ 398,
+ 340,
+ 308,
+ 218,
+ 647,
+ 57,
+ 170,
+ 244,
+ 146,
+ 318,
+ 426,
+ 229,
+ 74,
+ 1184,
+ 334,
+ 2053,
+ 69,
+ 277,
+ 1064,
+ 501,
+ 245,
+ 738,
+ 204,
+ 140,
+ 179,
+ 151,
+ 65,
+ 174,
+ 489,
+ 758,
+ 469,
+ 48,
+ 368,
+ 48,
+ 342,
+ 73,
+ 14,
+ 100,
+ 238,
+ 317,
+ 202,
+ 99,
+ 321,
+ 202,
+ 177,
+ 108,
+ 672,
+ 952,
+ 131,
+ 171,
+ 239,
+ 193,
+ 544,
+ 625,
+ 756,
+ 191,
+ 1013,
+ 392,
+ 324,
+ 427,
+ 180,
+ 200,
+ 660,
+ 114,
+ 291,
+ 72,
+ 479,
+ 114,
+ 196,
+ 148,
+ 12,
+ 345,
+ 95,
+ 9,
+ 152,
+ 384,
+ 322,
+ 287,
+ 390,
+ 173,
+ 430,
+ 263,
+ 383,
+ 360,
+ 311,
+ 124,
+ 390,
+ 105,
+ 37,
+ 14,
+ 506,
+ 257,
+ 150,
+ 156,
+ 142,
+ 169,
+ 339,
+ 220,
+ 525,
+ 374,
+ 210,
+ 390,
+ 122,
+ 249,
+ 136,
+ 186,
+ 406,
+ 566,
+ 223,
+ 421,
+ 83,
+ 354,
+ 207,
+ 17,
+ 89,
+ 386,
+ 239,
+ 61,
+ 234,
+ 185,
+ 19,
+ 96,
+ 218,
+ 26,
+ 159,
+ 386,
+ 279,
+ 245,
+ 201,
+ 428,
+ 128,
+ 7,
+ 304,
+ 185,
+ 108,
+ 90,
+ 122,
+ 365,
+ 285,
+ 275,
+ 7,
+ 285,
+ 158,
+ 178,
+ 199,
+ 65,
+ 199,
+ 198,
+ 352,
+ 210,
+ 62,
+ 401,
+ 59,
+ 17,
+ 319,
+ 142,
+ 314,
+ 317,
+ 79,
+ 222,
+ 277,
+ 9,
+ 7,
+ 13,
+ 714,
+ 257,
+ 658,
+ 98,
+ 42,
+ 12,
+ 254,
+ 9,
+ 123,
+ 97,
+ 274,
+ 72,
+ 207,
+ 37,
+ 517,
+ 24,
+ 18,
+ 238,
+ 163,
+ 982,
+ 231,
+ 164,
+ 94,
+ 450,
+ 274,
+ 200,
+ 250,
+ 79,
+ 538,
+ 257,
+ 21,
+ 96,
+ 72,
+ 166,
+ 508,
+ 51,
+ 19,
+ 41,
+ 611,
+ 45,
+ 92,
+ 473,
+ 110,
+ 87,
+ 92,
+ 178,
+ 84,
+ 123,
+ 16,
+ 617,
+ 205,
+ 62,
+ 33,
+ 246,
+ 44,
+ 83,
+ 443,
+ 379,
+ 330,
+ 40,
+ 293,
+ 240,
+ 190,
+ 15,
+ 111,
+ 128,
+ 637,
+ 140,
+ 222,
+ 20,
+ 151,
+ 272,
+ 15,
+ 64,
+ 147,
+ 170,
+ 217,
+ 53,
+ 187,
+ 60,
+ 180,
+ 75,
+ 818,
+ 293,
+ 54,
+ 64,
+ 22,
+ 239,
+ 145,
+ 95,
+ 400,
+ 221,
+ 318,
+ 96,
+ 6,
+ 91,
+ 44,
+ 48,
+ 157,
+ 715,
+ 87,
+ 334,
+ 238,
+ 245,
+ 297,
+ 38,
+ 59,
+ 23,
+ 148,
+ 181,
+ 190,
+ 82,
+ 151,
+ 180,
+ 253,
+ 202,
+ 211,
+ 63,
+ 170,
+ 151,
+ 224,
+ 430,
+ 379,
+ 42,
+ 129,
+ 20,
+ 379,
+ 180,
+ 116,
+ 153,
+ 291,
+ 268,
+ 143,
+ 174,
+ 247,
+ 98,
+ 121,
+ 326,
+ 281,
+ 345,
+ 53,
+ 113,
+ 207,
+ 177,
+ 111,
+ 44,
+ 237,
+ 666,
+ 137,
+ 305,
+ 87,
+ 131,
+ 110,
+ 333,
+ 48,
+ 86,
+ 419,
+ 16,
+ 325,
+ 169,
+ 97,
+ 58,
+ 267,
+ 476,
+ 115,
+ 257,
+ 340,
+ 436,
+ 53,
+ 172,
+ 861,
+ 74,
+ 28,
+ 170,
+ 393,
+ 168,
+ 230,
+ 48,
+ 243,
+ 150,
+ 239,
+ 45,
+ 528,
+ 55,
+ 72,
+ 16,
+ 228,
+ 687,
+ 90,
+ 233,
+ 258,
+ 334,
+ 143,
+ 400,
+ 289,
+ 81,
+ 155,
+ 1010,
+ 137,
+ 67,
+ 151,
+ 92,
+ 724,
+ 58,
+ 304,
+ 401,
+ 246,
+ 108,
+ 643,
+ 76,
+ 91,
+ 87,
+ 89,
+ 81,
+ 93,
+ 226,
+ 172,
+ 121,
+ 249,
+ 8,
+ 10,
+ 132,
+ 890,
+ 10,
+ 534,
+ 529,
+ 8,
+ 7,
+ 8,
+ 9,
+ 400,
+ 200,
+ 22,
+ 32,
+ 52,
+ 69,
+ 562,
+ 26,
+ 124,
+ 11,
+ 21,
+ 140,
+ 87,
+ 116,
+ 316,
+ 102,
+ 72,
+ 31,
+ 9,
+ 190,
+ 152,
+ 13,
+ 404,
+ 7,
+ 277,
+ 93,
+ 23,
+ 281,
+ 20,
+ 233,
+ 197,
+ 220,
+ 104,
+ 179,
+ 12,
+ 69,
+ 579,
+ 173,
+ 231,
+ 259,
+ 780,
+ 405,
+ 20,
+ 204,
+ 242,
+ 505,
+ 355,
+ 307,
+ 250,
+ 164,
+ 57,
+ 8,
+ 39,
+ 22,
+ 21,
+ 31,
+ 554,
+ 34,
+ 639,
+ 106,
+ 94,
+ 6,
+ 8,
+ 7,
+ 1156,
+ 178,
+ 208,
+ 43,
+ 25,
+ 6,
+ 659,
+ 5,
+ 149,
+ 627,
+ 305,
+ 186,
+ 159,
+ 142,
+ 336,
+ 219,
+ 252,
+ 75,
+ 63,
+ 95,
+ 110,
+ 645,
+ 446,
+ 946,
+ 126,
+ 183,
+ 94,
+ 154,
+ 71,
+ 220,
+ 186,
+ 343,
+ 156,
+ 101,
+ 164,
+ 102,
+ 87,
+ 91,
+ 108,
+ 382,
+ 164,
+ 67,
+ 201,
+ 141,
+ 117,
+ 155,
+ 106,
+ 333,
+ 77,
+ 86,
+ 191,
+ 115,
+ 65,
+ 143,
+ 78,
+ 117,
+ 105,
+ 111,
+ 222,
+ 173,
+ 44,
+ 89,
+ 54,
+ 98,
+ 218,
+ 107,
+ 227,
+ 88,
+ 160,
+ 167,
+ 62,
+ 81,
+ 66,
+ 90,
+ 151,
+ 139,
+ 165,
+ 118,
+ 186,
+ 50,
+ 56,
+ 101,
+ 89,
+ 80,
+ 75,
+ 153,
+ 164,
+ 169,
+ 85,
+ 170,
+ 211,
+ 192,
+ 179,
+ 358,
+ 185,
+ 67,
+ 108,
+ 109,
+ 63,
+ 243,
+ 364,
+ 243,
+ 353,
+ 268,
+ 264,
+ 62,
+ 41,
+ 85,
+ 121,
+ 160,
+ 401,
+ 239,
+ 155,
+ 152,
+ 104,
+ 119,
+ 706,
+ 110,
+ 222,
+ 41,
+ 126,
+ 267,
+ 187,
+ 200,
+ 156,
+ 116,
+ 132,
+ 127,
+ 321,
+ 279,
+ 584,
+ 878,
+ 195,
+ 99,
+ 222,
+ 78,
+ 58,
+ 160,
+ 115,
+ 193,
+ 216,
+ 135,
+ 126,
+ 455,
+ 53,
+ 524,
+ 258,
+ 104,
+ 124,
+ 103,
+ 24,
+ 132,
+ 141,
+ 207,
+ 284,
+ 204,
+ 85,
+ 472,
+ 99,
+ 196,
+ 586,
+ 270,
+ 127,
+ 113,
+ 130,
+ 97,
+ 311,
+ 171,
+ 209,
+ 64,
+ 146,
+ 94,
+ 173,
+ 171,
+ 198,
+ 76,
+ 280,
+ 249,
+ 68,
+ 97,
+ 102,
+ 48,
+ 226,
+ 88,
+ 228,
+ 156,
+ 130,
+ 96,
+ 285,
+ 666,
+ 209,
+ 69,
+ 27,
+ 81,
+ 107,
+ 398,
+ 79,
+ 214,
+ 114,
+ 211,
+ 441,
+ 149,
+ 168,
+ 319,
+ 184,
+ 71,
+ 354,
+ 116,
+ 488,
+ 63,
+ 121,
+ 296,
+ 329,
+ 147,
+ 113,
+ 264,
+ 115,
+ 82,
+ 44,
+ 56,
+ 510,
+ 513,
+ 301,
+ 243,
+ 109,
+ 126,
+ 96,
+ 144,
+ 92,
+ 236,
+ 193,
+ 210,
+ 73,
+ 108,
+ 95,
+ 369,
+ 132,
+ 136,
+ 374,
+ 117,
+ 347,
+ 157,
+ 1958,
+ 119,
+ 87,
+ 208,
+ 47,
+ 104,
+ 60,
+ 390,
+ 312,
+ 244,
+ 160,
+ 130,
+ 74,
+ 364,
+ 63,
+ 200,
+ 16,
+ 45,
+ 170,
+ 136,
+ 133,
+ 47,
+ 275,
+ 90,
+ 437,
+ 101,
+ 195,
+ 59,
+ 95,
+ 233,
+ 64,
+ 77,
+ 98,
+ 15,
+ 127,
+ 106,
+ 174,
+ 212,
+ 52,
+ 297,
+ 77,
+ 378,
+ 7,
+ 34,
+ 347,
+ 291,
+ 190,
+ 90,
+ 222,
+ 74,
+ 383,
+ 172,
+ 54,
+ 96,
+ 334,
+ 76,
+ 101,
+ 238,
+ 79,
+ 190,
+ 257,
+ 370,
+ 306,
+ 130,
+ 77,
+ 90,
+ 336,
+ 72,
+ 110,
+ 392,
+ 124,
+ 115,
+ 107,
+ 77,
+ 220,
+ 75,
+ 198,
+ 191,
+ 434,
+ 497,
+ 312,
+ 186,
+ 25,
+ 78,
+ 264,
+ 290,
+ 79,
+ 313,
+ 104,
+ 20,
+ 675,
+ 134,
+ 126,
+ 159,
+ 1121,
+ 230,
+ 172,
+ 417,
+ 240,
+ 104,
+ 89,
+ 13,
+ 174,
+ 8,
+ 6,
+ 150,
+ 36,
+ 79,
+ 8,
+ 21,
+ 99,
+ 72,
+ 354,
+ 520,
+ 254,
+ 76,
+ 108,
+ 10,
+ 196,
+ 78,
+ 83,
+ 143,
+ 40,
+ 14,
+ 230,
+ 15,
+ 7,
+ 846,
+ 9,
+ 124,
+ 16,
+ 362,
+ 520,
+ 75,
+ 157,
+ 205,
+ 574,
+ 159,
+ 85,
+ 171,
+ 136,
+ 813,
+ 88,
+ 142,
+ 94,
+ 35,
+ 11,
+ 17,
+ 148,
+ 155,
+ 43,
+ 19,
+ 146,
+ 15,
+ 272,
+ 10,
+ 245,
+ 84,
+ 24,
+ 337,
+ 184,
+ 632,
+ 326,
+ 222,
+ 169,
+ 363,
+ 332,
+ 334,
+ 72,
+ 106,
+ 461,
+ 51,
+ 133,
+ 301,
+ 415,
+ 151,
+ 259,
+ 181,
+ 98,
+ 123,
+ 243,
+ 57,
+ 234,
+ 17,
+ 129,
+ 154,
+ 29,
+ 266,
+ 163,
+ 382,
+ 225,
+ 358,
+ 180,
+ 121,
+ 391,
+ 145,
+ 118,
+ 175,
+ 301,
+ 55,
+ 286,
+ 242,
+ 163,
+ 173,
+ 86,
+ 227,
+ 479,
+ 28,
+ 17,
+ 62,
+ 80,
+ 48,
+ 459,
+ 358,
+ 187,
+ 188,
+ 604,
+ 381,
+ 103,
+ 168,
+ 225,
+ 269,
+ 252,
+ 620,
+ 239,
+ 44,
+ 98,
+ 188,
+ 1130,
+ 325,
+ 173,
+ 201,
+ 143,
+ 39,
+ 456,
+ 196,
+ 150,
+ 236,
+ 125,
+ 675,
+ 258,
+ 60,
+ 18,
+ 151,
+ 154,
+ 399,
+ 34,
+ 295,
+ 659,
+ 345,
+ 227,
+ 323,
+ 294,
+ 388,
+ 123,
+ 141,
+ 106,
+ 79,
+ 67,
+ 206,
+ 394,
+ 272,
+ 65,
+ 145,
+ 442,
+ 220,
+ 59,
+ 42,
+ 313,
+ 29,
+ 13,
+ 231,
+ 235,
+ 157,
+ 359,
+ 470,
+ 11,
+ 495,
+ 383,
+ 295,
+ 155,
+ 107,
+ 93,
+ 277,
+ 166,
+ 542,
+ 58,
+ 184,
+ 325,
+ 360,
+ 67,
+ 131,
+ 57,
+ 37,
+ 257,
+ 247,
+ 348,
+ 335,
+ 217,
+ 127,
+ 93,
+ 71,
+ 414,
+ 64,
+ 352,
+ 399,
+ 253,
+ 227,
+ 160,
+ 160,
+ 316,
+ 69,
+ 41,
+ 76,
+ 284,
+ 90,
+ 206,
+ 157,
+ 162,
+ 43,
+ 585,
+ 209,
+ 290,
+ 387,
+ 67,
+ 253,
+ 301,
+ 179,
+ 283,
+ 114,
+ 159,
+ 64,
+ 198,
+ 200,
+ 552,
+ 228,
+ 223,
+ 496,
+ 88,
+ 876,
+ 305,
+ 101,
+ 334,
+ 183,
+ 118,
+ 69,
+ 355,
+ 1101,
+ 150,
+ 442,
+ 160,
+ 85,
+ 281,
+ 159,
+ 71,
+ 263,
+ 219,
+ 342,
+ 335,
+ 334,
+ 414,
+ 200,
+ 297,
+ 279,
+ 318,
+ 322,
+ 63,
+ 306,
+ 214,
+ 81,
+ 378,
+ 333,
+ 1100,
+ 180,
+ 477,
+ 240,
+ 122,
+ 351,
+ 180,
+ 211,
+ 169,
+ 319,
+ 75,
+ 674,
+ 209,
+ 185,
+ 211,
+ 203,
+ 205,
+ 469,
+ 523,
+ 36,
+ 371,
+ 52,
+ 475,
+ 233,
+ 328,
+ 118,
+ 102,
+ 206,
+ 176,
+ 370,
+ 111,
+ 275,
+ 320,
+ 305,
+ 259,
+ 399,
+ 165,
+ 189,
+ 193,
+ 104,
+ 418,
+ 74,
+ 195,
+ 221,
+ 84,
+ 368,
+ 614,
+ 199,
+ 105,
+ 148,
+ 88,
+ 87,
+ 147,
+ 121,
+ 438,
+ 219,
+ 210,
+ 113,
+ 241,
+ 194,
+ 814,
+ 327,
+ 275,
+ 248,
+ 207,
+ 197,
+ 197,
+ 87,
+ 207,
+ 215,
+ 62,
+ 293,
+ 372,
+ 345,
+ 473,
+ 133,
+ 285,
+ 128,
+ 26,
+ 401,
+ 38,
+ 74,
+ 473,
+ 219,
+ 178,
+ 362,
+ 152,
+ 236,
+ 249,
+ 227,
+ 139,
+ 142,
+ 376,
+ 132,
+ 438,
+ 100,
+ 94,
+ 50,
+ 403,
+ 439,
+ 119,
+ 36,
+ 644,
+ 109,
+ 34,
+ 200,
+ 145,
+ 72,
+ 272,
+ 177,
+ 90,
+ 125,
+ 339,
+ 153,
+ 291,
+ 223,
+ 208,
+ 54,
+ 503,
+ 174,
+ 465,
+ 168,
+ 253,
+ 128,
+ 274,
+ 278,
+ 55,
+ 101,
+ 115,
+ 366,
+ 129,
+ 90,
+ 209,
+ 274,
+ 137,
+ 305,
+ 151,
+ 340,
+ 109,
+ 209,
+ 170,
+ 569,
+ 234,
+ 156,
+ 339,
+ 124,
+ 597,
+ 226,
+ 143,
+ 181,
+ 96,
+ 238,
+ 236,
+ 158,
+ 26,
+ 159,
+ 338,
+ 187,
+ 159,
+ 116,
+ 196,
+ 49,
+ 410,
+ 990,
+ 244,
+ 258,
+ 267,
+ 37,
+ 186,
+ 333,
+ 144,
+ 225,
+ 472,
+ 45,
+ 94,
+ 161,
+ 199,
+ 68,
+ 60,
+ 187,
+ 146,
+ 364,
+ 10,
+ 39,
+ 66,
+ 78,
+ 155,
+ 318,
+ 175,
+ 413,
+ 167,
+ 251,
+ 270,
+ 211,
+ 107,
+ 124,
+ 17,
+ 477,
+ 265,
+ 159,
+ 221,
+ 318,
+ 51,
+ 184,
+ 52,
+ 128,
+ 57,
+ 50,
+ 457,
+ 37,
+ 148,
+ 72,
+ 203,
+ 204,
+ 334,
+ 428,
+ 289,
+ 317,
+ 150,
+ 123,
+ 92,
+ 189,
+ 728,
+ 127,
+ 179,
+ 98,
+ 251,
+ 1131,
+ 156,
+ 343,
+ 64,
+ 903,
+ 106,
+ 459,
+ 109,
+ 100,
+ 47,
+ 161,
+ 322,
+ 45,
+ 197,
+ 89,
+ 231,
+ 230,
+ 389,
+ 125,
+ 174,
+ 89,
+ 288,
+ 305,
+ 353,
+ 127,
+ 204,
+ 137,
+ 827,
+ 402,
+ 319,
+ 203,
+ 109,
+ 110,
+ 207,
+ 48,
+ 164,
+ 90,
+ 191,
+ 130,
+ 317,
+ 138,
+ 194,
+ 811,
+ 125,
+ 184,
+ 79,
+ 289,
+ 198,
+ 145,
+ 116,
+ 346,
+ 181,
+ 309,
+ 91,
+ 323,
+ 82,
+ 316,
+ 283,
+ 133,
+ 120,
+ 189,
+ 127,
+ 84,
+ 222,
+ 302,
+ 136,
+ 97,
+ 206,
+ 51,
+ 281,
+ 62,
+ 253,
+ 155,
+ 96,
+ 311,
+ 90,
+ 402,
+ 89,
+ 350,
+ 175,
+ 549,
+ 133,
+ 160,
+ 192,
+ 103,
+ 422,
+ 74,
+ 149,
+ 87,
+ 233,
+ 523,
+ 147,
+ 265,
+ 57,
+ 246,
+ 328,
+ 151,
+ 85,
+ 345,
+ 168,
+ 239,
+ 169,
+ 358,
+ 116,
+ 222,
+ 349,
+ 593,
+ 69,
+ 307,
+ 143,
+ 129,
+ 320,
+ 206,
+ 270,
+ 1369,
+ 456,
+ 231,
+ 293,
+ 215,
+ 273,
+ 606,
+ 142,
+ 261,
+ 309,
+ 232,
+ 335,
+ 437,
+ 167,
+ 140,
+ 91,
+ 284,
+ 467,
+ 187,
+ 362,
+ 445,
+ 227,
+ 281,
+ 157,
+ 276,
+ 117,
+ 232,
+ 940,
+ 337,
+ 796,
+ 31,
+ 86,
+ 219,
+ 315,
+ 175,
+ 82,
+ 83,
+ 57,
+ 124,
+ 240,
+ 413,
+ 755,
+ 106,
+ 187,
+ 633,
+ 247,
+ 370,
+ 205,
+ 195,
+ 531,
+ 512,
+ 155,
+ 263,
+ 204,
+ 98,
+ 82,
+ 31,
+ 47,
+ 22,
+ 149,
+ 62,
+ 102,
+ 191,
+ 27,
+ 203,
+ 277,
+ 449,
+ 224,
+ 189,
+ 45,
+ 127,
+ 189,
+ 549,
+ 104,
+ 252,
+ 121,
+ 197,
+ 348,
+ 265,
+ 333,
+ 84,
+ 132,
+ 104,
+ 19,
+ 187,
+ 197,
+ 171,
+ 113,
+ 317,
+ 329,
+ 95,
+ 144,
+ 1957,
+ 556,
+ 393,
+ 141,
+ 70,
+ 327,
+ 375,
+ 46,
+ 146,
+ 184,
+ 176,
+ 148,
+ 429,
+ 213,
+ 402,
+ 130,
+ 155,
+ 290,
+ 107,
+ 87,
+ 29,
+ 345,
+ 48,
+ 92,
+ 193,
+ 252,
+ 69,
+ 198,
+ 63,
+ 83,
+ 397,
+ 229,
+ 1145,
+ 159,
+ 609,
+ 133,
+ 502,
+ 162,
+ 245,
+ 123,
+ 128,
+ 93,
+ 189,
+ 217,
+ 302,
+ 223,
+ 102,
+ 11,
+ 1191,
+ 406,
+ 16,
+ 551,
+ 158,
+ 278,
+ 192,
+ 79,
+ 273,
+ 346,
+ 272,
+ 282,
+ 147,
+ 60,
+ 239,
+ 356,
+ 229,
+ 208,
+ 426,
+ 259,
+ 122,
+ 35,
+ 213,
+ 128,
+ 93,
+ 49,
+ 168,
+ 141,
+ 31,
+ 232,
+ 279,
+ 314,
+ 63,
+ 199,
+ 176,
+ 281,
+ 143,
+ 362,
+ 165,
+ 320,
+ 166,
+ 248,
+ 54,
+ 569,
+ 57,
+ 490,
+ 59,
+ 158,
+ 147,
+ 195,
+ 134,
+ 447,
+ 304,
+ 293,
+ 130,
+ 242,
+ 113,
+ 199,
+ 105,
+ 332,
+ 271,
+ 142,
+ 491,
+ 141,
+ 176,
+ 154,
+ 290,
+ 309,
+ 69,
+ 230,
+ 207,
+ 326,
+ 468,
+ 125,
+ 118,
+ 172,
+ 6,
+ 188,
+ 55,
+ 245,
+ 213,
+ 361,
+ 160,
+ 51,
+ 183,
+ 174,
+ 66,
+ 191,
+ 332,
+ 162,
+ 55,
+ 304,
+ 141,
+ 213,
+ 56,
+ 219,
+ 263,
+ 267,
+ 135,
+ 118,
+ 193,
+ 247,
+ 122,
+ 103,
+ 121,
+ 182,
+ 101,
+ 156,
+ 652,
+ 258,
+ 72,
+ 104,
+ 287,
+ 154,
+ 193,
+ 94,
+ 356,
+ 122,
+ 140,
+ 135,
+ 590,
+ 87,
+ 633,
+ 92,
+ 370,
+ 560,
+ 352,
+ 121,
+ 360,
+ 195,
+ 225,
+ 589,
+ 228,
+ 101,
+ 102,
+ 178,
+ 235,
+ 253,
+ 430,
+ 100,
+ 127,
+ 56,
+ 1254,
+ 270,
+ 325,
+ 279,
+ 539,
+ 643,
+ 54,
+ 115,
+ 95,
+ 425,
+ 266,
+ 57,
+ 304,
+ 308,
+ 50,
+ 247,
+ 437,
+ 458,
+ 96,
+ 253,
+ 271,
+ 227,
+ 423,
+ 422,
+ 49,
+ 244,
+ 924,
+ 126,
+ 188,
+ 190,
+ 580,
+ 227,
+ 600,
+ 639,
+ 244,
+ 245,
+ 178,
+ 212,
+ 227,
+ 201,
+ 158,
+ 198,
+ 146,
+ 202,
+ 556,
+ 189,
+ 262,
+ 132,
+ 166,
+ 217,
+ 202,
+ 252,
+ 350,
+ 93,
+ 908,
+ 140,
+ 603,
+ 592,
+ 195,
+ 245,
+ 739,
+ 225,
+ 429,
+ 293,
+ 434,
+ 128,
+ 269,
+ 273,
+ 291,
+ 364,
+ 109,
+ 337,
+ 219,
+ 700,
+ 181,
+ 589,
+ 84,
+ 174,
+ 253,
+ 127,
+ 265,
+ 272,
+ 37,
+ 239,
+ 376,
+ 255,
+ 324,
+ 228,
+ 20,
+ 209,
+ 831,
+ 541,
+ 892,
+ 123,
+ 146,
+ 463,
+ 43,
+ 190,
+ 62,
+ 245,
+ 411,
+ 251,
+ 177,
+ 239,
+ 100,
+ 138,
+ 10,
+ 1051,
+ 235,
+ 42,
+ 59,
+ 369,
+ 212,
+ 490,
+ 227,
+ 388,
+ 702,
+ 1297,
+ 201,
+ 155,
+ 208,
+ 189,
+ 181,
+ 873,
+ 170,
+ 141,
+ 128,
+ 156,
+ 262,
+ 328,
+ 150,
+ 130,
+ 302,
+ 253,
+ 132,
+ 164,
+ 906,
+ 131,
+ 127,
+ 104,
+ 317,
+ 263,
+ 11,
+ 165,
+ 795,
+ 98,
+ 80,
+ 138,
+ 85,
+ 159,
+ 298,
+ 57,
+ 76,
+ 166,
+ 68,
+ 88,
+ 168,
+ 440,
+ 81,
+ 126,
+ 380,
+ 157,
+ 293,
+ 106,
+ 72,
+ 364,
+ 108,
+ 7,
+ 105,
+ 26,
+ 197,
+ 103,
+ 328,
+ 285,
+ 63,
+ 132,
+ 211,
+ 53,
+ 94,
+ 213,
+ 475,
+ 240,
+ 198,
+ 340,
+ 247,
+ 191,
+ 154,
+ 122,
+ 232,
+ 65,
+ 279,
+ 130,
+ 557,
+ 63,
+ 395,
+ 275,
+ 171,
+ 17,
+ 208,
+ 163,
+ 240,
+ 74,
+ 70,
+ 208,
+ 103,
+ 302,
+ 75,
+ 97,
+ 137,
+ 144,
+ 158,
+ 182,
+ 1281,
+ 153,
+ 389,
+ 290,
+ 134,
+ 851,
+ 139,
+ 500,
+ 168,
+ 101,
+ 299,
+ 6,
+ 159,
+ 318,
+ 263,
+ 291,
+ 209,
+ 86,
+ 80,
+ 52,
+ 346,
+ 1014,
+ 144,
+ 232,
+ 203,
+ 268,
+ 210,
+ 312,
+ 364,
+ 561,
+ 44,
+ 212,
+ 49,
+ 278,
+ 763,
+ 50,
+ 402,
+ 349,
+ 134,
+ 343,
+ 120,
+ 128,
+ 111,
+ 93,
+ 92,
+ 301,
+ 88,
+ 87,
+ 108,
+ 396,
+ 98,
+ 86,
+ 39,
+ 80,
+ 525,
+ 127,
+ 99,
+ 105,
+ 318,
+ 445,
+ 374,
+ 191,
+ 51,
+ 145,
+ 136,
+ 1243,
+ 52,
+ 77,
+ 217,
+ 197,
+ 125,
+ 90,
+ 131,
+ 478,
+ 70,
+ 424,
+ 120,
+ 326,
+ 398,
+ 157,
+ 87,
+ 196,
+ 164,
+ 137,
+ 56,
+ 269,
+ 159,
+ 340,
+ 94,
+ 132,
+ 56,
+ 66,
+ 254,
+ 157,
+ 468,
+ 451,
+ 55,
+ 191,
+ 87,
+ 301,
+ 101,
+ 248,
+ 273,
+ 78,
+ 18,
+ 82,
+ 207,
+ 53,
+ 364,
+ 67,
+ 186,
+ 212,
+ 198,
+ 129,
+ 161,
+ 579,
+ 491,
+ 176,
+ 99,
+ 69,
+ 392,
+ 142,
+ 428,
+ 209,
+ 81,
+ 171,
+ 291,
+ 435,
+ 272,
+ 121,
+ 243,
+ 164,
+ 144,
+ 339,
+ 154,
+ 319,
+ 218,
+ 125,
+ 124,
+ 87,
+ 151,
+ 67,
+ 89,
+ 183,
+ 270,
+ 196,
+ 247,
+ 180,
+ 76,
+ 279,
+ 462,
+ 238,
+ 81,
+ 279,
+ 127,
+ 238,
+ 158,
+ 1642,
+ 25,
+ 146,
+ 264,
+ 345,
+ 474,
+ 75,
+ 254,
+ 219,
+ 175,
+ 261,
+ 456,
+ 241,
+ 297,
+ 95,
+ 198,
+ 226,
+ 123,
+ 473,
+ 26,
+ 238,
+ 316,
+ 408,
+ 144,
+ 428,
+ 44,
+ 294,
+ 311,
+ 273,
+ 91,
+ 36,
+ 37,
+ 376,
+ 44,
+ 104,
+ 309,
+ 247,
+ 217,
+ 47,
+ 207,
+ 130,
+ 455,
+ 202,
+ 147,
+ 86,
+ 318,
+ 262,
+ 83,
+ 334,
+ 274,
+ 154,
+ 286,
+ 187,
+ 557,
+ 134,
+ 237,
+ 104,
+ 612,
+ 40,
+ 506,
+ 191,
+ 187,
+ 174,
+ 224,
+ 235,
+ 128,
+ 156,
+ 1954,
+ 211,
+ 129,
+ 13,
+ 38,
+ 456,
+ 216,
+ 152,
+ 438,
+ 129,
+ 311,
+ 348,
+ 53,
+ 283,
+ 583,
+ 146,
+ 114,
+ 487,
+ 1049,
+ 213,
+ 466,
+ 348,
+ 263,
+ 324,
+ 267,
+ 418,
+ 553,
+ 546,
+ 156,
+ 364,
+ 129,
+ 282,
+ 152,
+ 323,
+ 548,
+ 199,
+ 63,
+ 383,
+ 72,
+ 26,
+ 713,
+ 15,
+ 81,
+ 211,
+ 322,
+ 349,
+ 142,
+ 102,
+ 82,
+ 84,
+ 9,
+ 13,
+ 21,
+ 62,
+ 240,
+ 61,
+ 30,
+ 88,
+ 14,
+ 156,
+ 50,
+ 15,
+ 80,
+ 304,
+ 108,
+ 295,
+ 54,
+ 573,
+ 443,
+ 55,
+ 206,
+ 249,
+ 94,
+ 26,
+ 309,
+ 194,
+ 313,
+ 577,
+ 457,
+ 210,
+ 27,
+ 502,
+ 139,
+ 57,
+ 212,
+ 590,
+ 7,
+ 81,
+ 528,
+ 195,
+ 106,
+ 9,
+ 156,
+ 94,
+ 351,
+ 73,
+ 313,
+ 66,
+ 143,
+ 255,
+ 164,
+ 55,
+ 197,
+ 189,
+ 261,
+ 165,
+ 84,
+ 117,
+ 288,
+ 58,
+ 496,
+ 87,
+ 108,
+ 285,
+ 69,
+ 207,
+ 128,
+ 277,
+ 346,
+ 94,
+ 65,
+ 32,
+ 344,
+ 195,
+ 469,
+ 58,
+ 155,
+ 42,
+ 12,
+ 460,
+ 183,
+ 242,
+ 112,
+ 8,
+ 15,
+ 182,
+ 422,
+ 152,
+ 248,
+ 141,
+ 67,
+ 279,
+ 188,
+ 135,
+ 231,
+ 212,
+ 227,
+ 85,
+ 75,
+ 220,
+ 80,
+ 202,
+ 340,
+ 549,
+ 472,
+ 409,
+ 479,
+ 308,
+ 90,
+ 200,
+ 161,
+ 262,
+ 49,
+ 369,
+ 471,
+ 198,
+ 568,
+ 410,
+ 116,
+ 686,
+ 28,
+ 114,
+ 200,
+ 170,
+ 214,
+ 106,
+ 231,
+ 14,
+ 240,
+ 231,
+ 712,
+ 239,
+ 219,
+ 75,
+ 190,
+ 181,
+ 178,
+ 204,
+ 405,
+ 274,
+ 227,
+ 360,
+ 74,
+ 490,
+ 105,
+ 226,
+ 189,
+ 87,
+ 386,
+ 149,
+ 131,
+ 225,
+ 40,
+ 151,
+ 105,
+ 8,
+ 281,
+ 347,
+ 103,
+ 95,
+ 214,
+ 197,
+ 465,
+ 133,
+ 553,
+ 225,
+ 49,
+ 59,
+ 86,
+ 21,
+ 99,
+ 165,
+ 123,
+ 54,
+ 41,
+ 1487,
+ 327,
+ 177,
+ 68,
+ 125,
+ 42,
+ 79,
+ 214,
+ 85,
+ 82,
+ 239,
+ 187,
+ 329,
+ 234,
+ 282,
+ 75,
+ 622,
+ 102,
+ 278,
+ 66,
+ 68,
+ 432,
+ 78,
+ 275,
+ 292,
+ 134,
+ 313,
+ 333,
+ 1114,
+ 50,
+ 207,
+ 552,
+ 249,
+ 72,
+ 299,
+ 124,
+ 109,
+ 251,
+ 101,
+ 82,
+ 146,
+ 262,
+ 177,
+ 124,
+ 239,
+ 158,
+ 91,
+ 52,
+ 159,
+ 294,
+ 175,
+ 132,
+ 282,
+ 295,
+ 505,
+ 580,
+ 90,
+ 261,
+ 148,
+ 26,
+ 76,
+ 255,
+ 193,
+ 643,
+ 74,
+ 41,
+ 93,
+ 228,
+ 161,
+ 215,
+ 758,
+ 371,
+ 426,
+ 246,
+ 329,
+ 159,
+ 77,
+ 262,
+ 386,
+ 101,
+ 35,
+ 629,
+ 186,
+ 174,
+ 296,
+ 79,
+ 240,
+ 261,
+ 47,
+ 63,
+ 112,
+ 57,
+ 77,
+ 190,
+ 200,
+ 161,
+ 188,
+ 254,
+ 232,
+ 97,
+ 296,
+ 98,
+ 228,
+ 274,
+ 306,
+ 429,
+ 776,
+ 150,
+ 153,
+ 146,
+ 142,
+ 430,
+ 189,
+ 236,
+ 798,
+ 66,
+ 34,
+ 333,
+ 128,
+ 102,
+ 400,
+ 175,
+ 69,
+ 126,
+ 285,
+ 168,
+ 127,
+ 147,
+ 472,
+ 246,
+ 213,
+ 220,
+ 299,
+ 247,
+ 111,
+ 195,
+ 148,
+ 286,
+ 75,
+ 386,
+ 544,
+ 127,
+ 155,
+ 184,
+ 193,
+ 70,
+ 206,
+ 243,
+ 437,
+ 259,
+ 238,
+ 410,
+ 254,
+ 56,
+ 102,
+ 217,
+ 145,
+ 271,
+ 0,
+ 258,
+ 196,
+ 135,
+ 347,
+ 72,
+ 50,
+ 171,
+ 211,
+ 298,
+ 120,
+ 219,
+ 214,
+ 82,
+ 304,
+ 273,
+ 471,
+ 301,
+ 86,
+ 508,
+ 503,
+ 142,
+ 276,
+ 201,
+ 222,
+ 168,
+ 192,
+ 439,
+ 284,
+ 288,
+ 136,
+ 66,
+ 445,
+ 123,
+ 285,
+ 164,
+ 81,
+ 89,
+ 214,
+ 16,
+ 167,
+ 72,
+ 75,
+ 14,
+ 200,
+ 13,
+ 134,
+ 34,
+ 15,
+ 188,
+ 788,
+ 103,
+ 106,
+ 25,
+ 52,
+ 234,
+ 255,
+ 200,
+ 217,
+ 9,
+ 315,
+ 10,
+ 352,
+ 97,
+ 63,
+ 117,
+ 34,
+ 104,
+ 15,
+ 14,
+ 208,
+ 11,
+ 160,
+ 197,
+ 131,
+ 12,
+ 114,
+ 304,
+ 20,
+ 109,
+ 138,
+ 6,
+ 63,
+ 200,
+ 271,
+ 42,
+ 341,
+ 100,
+ 40,
+ 114,
+ 150,
+ 431,
+ 91,
+ 52,
+ 99,
+ 49,
+ 7,
+ 158,
+ 259,
+ 206,
+ 25,
+ 300,
+ 246,
+ 178,
+ 318,
+ 201,
+ 105,
+ 214,
+ 67,
+ 82,
+ 187,
+ 69,
+ 58,
+ 64,
+ 631,
+ 942,
+ 207,
+ 104,
+ 377,
+ 66,
+ 128,
+ 291,
+ 115,
+ 524,
+ 358,
+ 366,
+ 23,
+ 52,
+ 347,
+ 107,
+ 48,
+ 74,
+ 305,
+ 104,
+ 176,
+ 507,
+ 103,
+ 242,
+ 137,
+ 223,
+ 124,
+ 63,
+ 137,
+ 22,
+ 59,
+ 179,
+ 11,
+ 69,
+ 300,
+ 256,
+ 7,
+ 43,
+ 22,
+ 429,
+ 494,
+ 296,
+ 17,
+ 243,
+ 184,
+ 245,
+ 360,
+ 139,
+ 54,
+ 232,
+ 517,
+ 153,
+ 116,
+ 168,
+ 261,
+ 69,
+ 121,
+ 23,
+ 306,
+ 202,
+ 342,
+ 22,
+ 455,
+ 245,
+ 33,
+ 58,
+ 41,
+ 360,
+ 179,
+ 174,
+ 43,
+ 68,
+ 212,
+ 38,
+ 639,
+ 483,
+ 344,
+ 141,
+ 113,
+ 87,
+ 238,
+ 155,
+ 337,
+ 24,
+ 365,
+ 37,
+ 25,
+ 109,
+ 152,
+ 179,
+ 118,
+ 30,
+ 79,
+ 324,
+ 151,
+ 366,
+ 43,
+ 816,
+ 189,
+ 131,
+ 78,
+ 97,
+ 337,
+ 185,
+ 78,
+ 442,
+ 74,
+ 179,
+ 225,
+ 15,
+ 279,
+ 416,
+ 83,
+ 25,
+ 542,
+ 256,
+ 189,
+ 251,
+ 1100,
+ 451,
+ 184,
+ 232,
+ 209,
+ 16,
+ 340,
+ 313,
+ 7,
+ 493,
+ 184,
+ 161,
+ 61,
+ 267,
+ 393,
+ 286,
+ 87,
+ 277,
+ 200,
+ 204,
+ 175,
+ 247,
+ 218,
+ 146,
+ 77,
+ 245,
+ 482,
+ 56,
+ 396,
+ 136,
+ 549,
+ 17,
+ 439,
+ 561,
+ 175,
+ 139,
+ 395,
+ 145,
+ 119,
+ 88,
+ 57,
+ 300,
+ 200,
+ 293,
+ 262,
+ 137,
+ 211,
+ 246,
+ 357,
+ 322,
+ 584,
+ 240,
+ 374,
+ 215,
+ 22,
+ 207,
+ 183,
+ 100,
+ 146,
+ 31,
+ 334,
+ 271,
+ 223,
+ 95,
+ 106,
+ 36,
+ 53,
+ 223,
+ 127,
+ 158,
+ 165,
+ 536,
+ 380,
+ 107,
+ 406,
+ 240,
+ 278,
+ 706,
+ 161,
+ 370,
+ 157,
+ 209,
+ 1925,
+ 328,
+ 242,
+ 450,
+ 485,
+ 76,
+ 289,
+ 163,
+ 118,
+ 53,
+ 324,
+ 301,
+ 139,
+ 32,
+ 278,
+ 112,
+ 34,
+ 80,
+ 276,
+ 291,
+ 217,
+ 192,
+ 208,
+ 415,
+ 278,
+ 173,
+ 350,
+ 224,
+ 668,
+ 474,
+ 143,
+ 317,
+ 106,
+ 234,
+ 314,
+ 422,
+ 130,
+ 61,
+ 255,
+ 259,
+ 29,
+ 306,
+ 266,
+ 314,
+ 181,
+ 178,
+ 351,
+ 373,
+ 180,
+ 85,
+ 325,
+ 187,
+ 463,
+ 142,
+ 280,
+ 398,
+ 149,
+ 191,
+ 193,
+ 302,
+ 317,
+ 211,
+ 172,
+ 464,
+ 343,
+ 98,
+ 198,
+ 361,
+ 345,
+ 114,
+ 210,
+ 68,
+ 239,
+ 112,
+ 34,
+ 181,
+ 206,
+ 194,
+ 209,
+ 206,
+ 355,
+ 339,
+ 191,
+ 175,
+ 286,
+ 93,
+ 170,
+ 173,
+ 541,
+ 89,
+ 194,
+ 472,
+ 304,
+ 125,
+ 96,
+ 175,
+ 134,
+ 807,
+ 235,
+ 124,
+ 57,
+ 225,
+ 144,
+ 177,
+ 455,
+ 264,
+ 285,
+ 166,
+ 456,
+ 101,
+ 256,
+ 497,
+ 600,
+ 339,
+ 220,
+ 700,
+ 150,
+ 147,
+ 236,
+ 133,
+ 58,
+ 1388,
+ 57,
+ 70,
+ 50,
+ 94,
+ 83,
+ 29,
+ 46,
+ 152,
+ 61,
+ 389,
+ 1108,
+ 8,
+ 310,
+ 197,
+ 21,
+ 117,
+ 413,
+ 65,
+ 53,
+ 321,
+ 82,
+ 133,
+ 77,
+ 129,
+ 26,
+ 200,
+ 95,
+ 49,
+ 15,
+ 15,
+ 348,
+ 129,
+ 44,
+ 231,
+ 155,
+ 135,
+ 217,
+ 22,
+ 32,
+ 435,
+ 25,
+ 370,
+ 201,
+ 152,
+ 66,
+ 213,
+ 150,
+ 364,
+ 329,
+ 282,
+ 51,
+ 68,
+ 109,
+ 23,
+ 207,
+ 193,
+ 224,
+ 173,
+ 67,
+ 149,
+ 29,
+ 118,
+ 95,
+ 84,
+ 43,
+ 93,
+ 172,
+ 161,
+ 628,
+ 172,
+ 200,
+ 134,
+ 51,
+ 140,
+ 87,
+ 318,
+ 9,
+ 157,
+ 9,
+ 19,
+ 39,
+ 502,
+ 113,
+ 30,
+ 355,
+ 43,
+ 17,
+ 47,
+ 296,
+ 69,
+ 323,
+ 167,
+ 220,
+ 177,
+ 61,
+ 699,
+ 133,
+ 6,
+ 96,
+ 318,
+ 413,
+ 66,
+ 15,
+ 152,
+ 294,
+ 15,
+ 290,
+ 12,
+ 31,
+ 135,
+ 142,
+ 123,
+ 93,
+ 133,
+ 99,
+ 67,
+ 131,
+ 149,
+ 27,
+ 152,
+ 41,
+ 128,
+ 78,
+ 11,
+ 101,
+ 147,
+ 262,
+ 46,
+ 104,
+ 119,
+ 423,
+ 315,
+ 78,
+ 9,
+ 44,
+ 75,
+ 66,
+ 7,
+ 529,
+ 349,
+ 127,
+ 83,
+ 158,
+ 276,
+ 264,
+ 109,
+ 234,
+ 272,
+ 329,
+ 589,
+ 363,
+ 172,
+ 53,
+ 34,
+ 82,
+ 155,
+ 788,
+ 528,
+ 114,
+ 314,
+ 112,
+ 204,
+ 60,
+ 80,
+ 281,
+ 321,
+ 149,
+ 155,
+ 49,
+ 354,
+ 294,
+ 137,
+ 191,
+ 172,
+ 55,
+ 167,
+ 92,
+ 444,
+ 132,
+ 10,
+ 315,
+ 64,
+ 110,
+ 421,
+ 174,
+ 228,
+ 296,
+ 9,
+ 337,
+ 185,
+ 104,
+ 244,
+ 152,
+ 231,
+ 184,
+ 124,
+ 21,
+ 96,
+ 99,
+ 117,
+ 53,
+ 261,
+ 201,
+ 155,
+ 43,
+ 53,
+ 14,
+ 108,
+ 425,
+ 200,
+ 223,
+ 413,
+ 177,
+ 66,
+ 253,
+ 14,
+ 316,
+ 152,
+ 137,
+ 155,
+ 165,
+ 466,
+ 368,
+ 201,
+ 146,
+ 77,
+ 157,
+ 96,
+ 104,
+ 38,
+ 154,
+ 342,
+ 43,
+ 68,
+ 179,
+ 427,
+ 63,
+ 197,
+ 409,
+ 299,
+ 323,
+ 215,
+ 147,
+ 143,
+ 541,
+ 172,
+ 309,
+ 69,
+ 79,
+ 299,
+ 213,
+ 196,
+ 54,
+ 54,
+ 404,
+ 80,
+ 135,
+ 162,
+ 341,
+ 118,
+ 168,
+ 308,
+ 176,
+ 223,
+ 199,
+ 721,
+ 641,
+ 234,
+ 86,
+ 180,
+ 68,
+ 103,
+ 102,
+ 239,
+ 325,
+ 234,
+ 194,
+ 134,
+ 77,
+ 216,
+ 122,
+ 109,
+ 1966,
+ 131,
+ 140,
+ 281,
+ 156,
+ 161,
+ 44,
+ 240,
+ 172,
+ 127,
+ 248,
+ 115,
+ 38,
+ 201,
+ 341,
+ 298,
+ 52,
+ 77,
+ 417,
+ 361,
+ 156,
+ 44,
+ 166,
+ 58,
+ 76,
+ 312,
+ 298,
+ 484,
+ 204,
+ 437,
+ 37,
+ 193,
+ 230,
+ 204,
+ 163,
+ 358,
+ 195,
+ 154,
+ 246,
+ 151,
+ 297,
+ 172,
+ 74,
+ 187,
+ 124,
+ 186,
+ 252,
+ 248,
+ 85,
+ 199,
+ 226,
+ 98,
+ 358,
+ 158,
+ 194,
+ 340,
+ 325,
+ 88,
+ 323,
+ 275,
+ 177,
+ 53,
+ 396,
+ 157,
+ 251,
+ 402,
+ 191,
+ 94,
+ 499,
+ 66,
+ 197,
+ 56,
+ 195,
+ 65,
+ 38,
+ 168,
+ 154,
+ 45,
+ 121,
+ 318,
+ 255,
+ 174,
+ 53,
+ 196,
+ 173,
+ 65,
+ 136,
+ 444,
+ 308,
+ 562,
+ 272,
+ 419,
+ 107,
+ 173,
+ 62,
+ 129,
+ 65,
+ 202,
+ 378,
+ 185,
+ 1805,
+ 367,
+ 12,
+ 222,
+ 122,
+ 237,
+ 102,
+ 281,
+ 80,
+ 36,
+ 143,
+ 259,
+ 221,
+ 177,
+ 84,
+ 406,
+ 185,
+ 155,
+ 53,
+ 99,
+ 254,
+ 256,
+ 25,
+ 253,
+ 277,
+ 125,
+ 151,
+ 127,
+ 449,
+ 16,
+ 134,
+ 32,
+ 285,
+ 383,
+ 179,
+ 51,
+ 446,
+ 136,
+ 133,
+ 513,
+ 225,
+ 204,
+ 240,
+ 135,
+ 245,
+ 119,
+ 38,
+ 331,
+ 992,
+ 75,
+ 72,
+ 418,
+ 324,
+ 69,
+ 96,
+ 310,
+ 149,
+ 182,
+ 364,
+ 36,
+ 426,
+ 196,
+ 126,
+ 201,
+ 300,
+ 48,
+ 189,
+ 305,
+ 68,
+ 65,
+ 247,
+ 164,
+ 178,
+ 19,
+ 9,
+ 165,
+ 14,
+ 36,
+ 8,
+ 121,
+ 921,
+ 436,
+ 119,
+ 13,
+ 181,
+ 7,
+ 16,
+ 259,
+ 102,
+ 19,
+ 113,
+ 21,
+ 17,
+ 18,
+ 99,
+ 24,
+ 164,
+ 78,
+ 29,
+ 9,
+ 465,
+ 94,
+ 178,
+ 25,
+ 348,
+ 30,
+ 222,
+ 325,
+ 254,
+ 925,
+ 15,
+ 186,
+ 580,
+ 40,
+ 350,
+ 720,
+ 11,
+ 10,
+ 21,
+ 146,
+ 189,
+ 365,
+ 91,
+ 84,
+ 22,
+ 166,
+ 182,
+ 638,
+ 161,
+ 119,
+ 61,
+ 362,
+ 83,
+ 151,
+ 566,
+ 141,
+ 64,
+ 244,
+ 123,
+ 16,
+ 201,
+ 212,
+ 317,
+ 145,
+ 532,
+ 248,
+ 158,
+ 141,
+ 190,
+ 23,
+ 276,
+ 7,
+ 201,
+ 20,
+ 51,
+ 603,
+ 283,
+ 283,
+ 341,
+ 102,
+ 267,
+ 143,
+ 22,
+ 428,
+ 484,
+ 149,
+ 338,
+ 73,
+ 584,
+ 260,
+ 185,
+ 223,
+ 76,
+ 214,
+ 103,
+ 273,
+ 451,
+ 12,
+ 1166,
+ 105,
+ 8,
+ 7,
+ 159,
+ 210,
+ 17,
+ 365,
+ 255,
+ 377,
+ 165,
+ 133,
+ 125,
+ 67,
+ 279,
+ 112,
+ 152,
+ 21,
+ 14,
+ 243,
+ 17,
+ 12,
+ 535,
+ 188,
+ 149,
+ 62,
+ 204,
+ 210,
+ 159,
+ 258,
+ 57,
+ 107,
+ 64,
+ 116,
+ 318,
+ 47,
+ 183,
+ 343,
+ 230,
+ 138,
+ 155,
+ 47,
+ 201,
+ 289,
+ 11,
+ 273,
+ 91,
+ 43,
+ 121,
+ 8,
+ 524,
+ 13,
+ 157,
+ 72,
+ 112,
+ 50,
+ 225,
+ 42,
+ 35,
+ 123,
+ 255,
+ 334,
+ 104,
+ 235,
+ 64,
+ 137,
+ 200,
+ 433,
+ 215,
+ 287,
+ 93,
+ 16,
+ 523,
+ 225,
+ 24,
+ 298,
+ 200,
+ 234,
+ 797,
+ 419,
+ 87,
+ 83,
+ 30,
+ 135,
+ 97,
+ 128,
+ 586,
+ 240,
+ 703,
+ 1106,
+ 151,
+ 282,
+ 377,
+ 174,
+ 199,
+ 437,
+ 233,
+ 74,
+ 184,
+ 111,
+ 168,
+ 156,
+ 66,
+ 97,
+ 97,
+ 160,
+ 149,
+ 202,
+ 112,
+ 154,
+ 337,
+ 95,
+ 294,
+ 162,
+ 20,
+ 73,
+ 136,
+ 138,
+ 118,
+ 30,
+ 444,
+ 466,
+ 97,
+ 172,
+ 146,
+ 16,
+ 150,
+ 163,
+ 88,
+ 277,
+ 96,
+ 175,
+ 22,
+ 164,
+ 88,
+ 136,
+ 17,
+ 155,
+ 159,
+ 36,
+ 43,
+ 70,
+ 107,
+ 806,
+ 104,
+ 217,
+ 216,
+ 143,
+ 106,
+ 226,
+ 166,
+ 87,
+ 64,
+ 105,
+ 99,
+ 130,
+ 256,
+ 121,
+ 285,
+ 140,
+ 167,
+ 311,
+ 164,
+ 109,
+ 444,
+ 265,
+ 175,
+ 292,
+ 239,
+ 59,
+ 471,
+ 182,
+ 432,
+ 50,
+ 111,
+ 685,
+ 134,
+ 423,
+ 165,
+ 42,
+ 177,
+ 99,
+ 108,
+ 291,
+ 170,
+ 117,
+ 161,
+ 330,
+ 480,
+ 24,
+ 172,
+ 143,
+ 88,
+ 157,
+ 553,
+ 25,
+ 433,
+ 632,
+ 115,
+ 228,
+ 142,
+ 172,
+ 246,
+ 329,
+ 46,
+ 95,
+ 185,
+ 229,
+ 293,
+ 46,
+ 169,
+ 226,
+ 113,
+ 284,
+ 151,
+ 68,
+ 56,
+ 196,
+ 332,
+ 24,
+ 218,
+ 131,
+ 400,
+ 164,
+ 123,
+ 99,
+ 362,
+ 111,
+ 366,
+ 367,
+ 464,
+ 158,
+ 29,
+ 221,
+ 113,
+ 228,
+ 535,
+ 91,
+ 265,
+ 43,
+ 299,
+ 196,
+ 162,
+ 304,
+ 251,
+ 261,
+ 8,
+ 171,
+ 112,
+ 374,
+ 60,
+ 176,
+ 241,
+ 303,
+ 649,
+ 134,
+ 353,
+ 72,
+ 337,
+ 291,
+ 546,
+ 252,
+ 204,
+ 267,
+ 406,
+ 320,
+ 210,
+ 198,
+ 241,
+ 16,
+ 72,
+ 350,
+ 93,
+ 176,
+ 118,
+ 387,
+ 336,
+ 205,
+ 135,
+ 240,
+ 512,
+ 41,
+ 181,
+ 306,
+ 90,
+ 15,
+ 136,
+ 154,
+ 305,
+ 47,
+ 172,
+ 170,
+ 204,
+ 294,
+ 367,
+ 173,
+ 62,
+ 136,
+ 292,
+ 80,
+ 90,
+ 144,
+ 28,
+ 178,
+ 386,
+ 493,
+ 33,
+ 167,
+ 125,
+ 185,
+ 341,
+ 223,
+ 415,
+ 908,
+ 166,
+ 67,
+ 167,
+ 10,
+ 151,
+ 384,
+ 192,
+ 212,
+ 308,
+ 54,
+ 30,
+ 340,
+ 225,
+ 346,
+ 290,
+ 8,
+ 382,
+ 100,
+ 506,
+ 168,
+ 253,
+ 195,
+ 165,
+ 100,
+ 49,
+ 103,
+ 19,
+ 296,
+ 145,
+ 69,
+ 26,
+ 9,
+ 460,
+ 111,
+ 165,
+ 10,
+ 113,
+ 12,
+ 9,
+ 14,
+ 194,
+ 14,
+ 115,
+ 14,
+ 289,
+ 14,
+ 10,
+ 354,
+ 236,
+ 62,
+ 103,
+ 172,
+ 164,
+ 778,
+ 39,
+ 1181,
+ 124,
+ 45,
+ 16,
+ 347,
+ 233,
+ 136,
+ 452,
+ 56,
+ 33,
+ 35,
+ 227,
+ 197,
+ 191,
+ 85,
+ 642,
+ 173,
+ 607,
+ 67,
+ 239,
+ 54,
+ 144,
+ 123,
+ 270,
+ 160,
+ 208,
+ 300,
+ 259,
+ 21,
+ 128,
+ 146,
+ 71,
+ 169,
+ 198,
+ 302,
+ 49,
+ 20,
+ 1452,
+ 95,
+ 16,
+ 241,
+ 7,
+ 432,
+ 153,
+ 67,
+ 48,
+ 72,
+ 158,
+ 148,
+ 377,
+ 367,
+ 195,
+ 64,
+ 612,
+ 7,
+ 14,
+ 55,
+ 58,
+ 180,
+ 13,
+ 68,
+ 64,
+ 132,
+ 391,
+ 26,
+ 493,
+ 157,
+ 282,
+ 8,
+ 101,
+ 133,
+ 39,
+ 23,
+ 12,
+ 217,
+ 77,
+ 11,
+ 8,
+ 24,
+ 233,
+ 82,
+ 283,
+ 159,
+ 58,
+ 181,
+ 301,
+ 151,
+ 146,
+ 44,
+ 358,
+ 1286,
+ 73,
+ 55,
+ 454,
+ 12,
+ 99,
+ 123,
+ 102,
+ 282,
+ 514,
+ 25,
+ 7,
+ 76,
+ 82,
+ 298,
+ 386,
+ 457,
+ 18,
+ 193,
+ 262,
+ 22,
+ 45,
+ 34,
+ 272,
+ 48,
+ 301,
+ 164,
+ 133,
+ 52,
+ 325,
+ 36,
+ 56,
+ 174,
+ 322,
+ 333,
+ 311,
+ 290,
+ 27,
+ 256,
+ 173,
+ 134,
+ 26,
+ 74,
+ 239,
+ 109,
+ 178,
+ 71,
+ 16,
+ 45,
+ 22,
+ 178,
+ 41,
+ 142,
+ 45,
+ 166,
+ 100,
+ 358,
+ 84,
+ 66,
+ 79,
+ 456,
+ 676,
+ 472,
+ 78,
+ 354,
+ 117,
+ 265,
+ 251,
+ 98,
+ 13,
+ 268,
+ 144,
+ 166,
+ 138,
+ 192,
+ 210,
+ 133,
+ 261,
+ 81,
+ 65,
+ 217,
+ 63,
+ 74,
+ 212,
+ 20,
+ 16,
+ 894,
+ 152,
+ 116,
+ 133,
+ 95,
+ 56,
+ 564,
+ 188,
+ 48,
+ 342,
+ 6,
+ 170,
+ 119,
+ 80,
+ 15,
+ 265,
+ 67,
+ 77,
+ 358,
+ 303,
+ 47,
+ 228,
+ 169,
+ 394,
+ 1380,
+ 36,
+ 201,
+ 199,
+ 58,
+ 141,
+ 139,
+ 82,
+ 86,
+ 42,
+ 229,
+ 175,
+ 757,
+ 521,
+ 264,
+ 401,
+ 13,
+ 200,
+ 42,
+ 167,
+ 58,
+ 11,
+ 167,
+ 237,
+ 173,
+ 165,
+ 114,
+ 406,
+ 13,
+ 73,
+ 160,
+ 372,
+ 206,
+ 137,
+ 13,
+ 320,
+ 223,
+ 57,
+ 109,
+ 221,
+ 117,
+ 44,
+ 187,
+ 50,
+ 10,
+ 135,
+ 31,
+ 296,
+ 239,
+ 22,
+ 212,
+ 150,
+ 582,
+ 199,
+ 102,
+ 140,
+ 15,
+ 61,
+ 20,
+ 152,
+ 245,
+ 23,
+ 197,
+ 63,
+ 103,
+ 427,
+ 80,
+ 232,
+ 255,
+ 8,
+ 284,
+ 550,
+ 536,
+ 193,
+ 124,
+ 12,
+ 134,
+ 10,
+ 17,
+ 895,
+ 212,
+ 364,
+ 14,
+ 122,
+ 21,
+ 144,
+ 16,
+ 13,
+ 128,
+ 67,
+ 266,
+ 411,
+ 391,
+ 195,
+ 74,
+ 340,
+ 350,
+ 309,
+ 12,
+ 136,
+ 223,
+ 215,
+ 156,
+ 233,
+ 59,
+ 49,
+ 167,
+ 113,
+ 48,
+ 54,
+ 306,
+ 61,
+ 20,
+ 16,
+ 69,
+ 218,
+ 18,
+ 47,
+ 333,
+ 102,
+ 64,
+ 101,
+ 800,
+ 131,
+ 476,
+ 65,
+ 262,
+ 75,
+ 51,
+ 208,
+ 53,
+ 162,
+ 34,
+ 73,
+ 22,
+ 172,
+ 258,
+ 71,
+ 11,
+ 93,
+ 92,
+ 138,
+ 69,
+ 204,
+ 28,
+ 68,
+ 109,
+ 1223,
+ 136,
+ 101,
+ 126,
+ 137,
+ 509,
+ 143,
+ 641,
+ 104,
+ 211,
+ 131,
+ 15,
+ 69,
+ 63,
+ 58,
+ 22,
+ 1326,
+ 34,
+ 204,
+ 44,
+ 376,
+ 133,
+ 439,
+ 73,
+ 104,
+ 504,
+ 121,
+ 49,
+ 258,
+ 12,
+ 126,
+ 166,
+ 11,
+ 157,
+ 57,
+ 543,
+ 20,
+ 59,
+ 33,
+ 126,
+ 87,
+ 15,
+ 45,
+ 17,
+ 7,
+ 16,
+ 201,
+ 8,
+ 58,
+ 28,
+ 11,
+ 17,
+ 114,
+ 159,
+ 359,
+ 17,
+ 11,
+ 193,
+ 116,
+ 157,
+ 73,
+ 18,
+ 26,
+ 126,
+ 97,
+ 144,
+ 59,
+ 19,
+ 44,
+ 22,
+ 44,
+ 16,
+ 7,
+ 21,
+ 15,
+ 30,
+ 13,
+ 8,
+ 259,
+ 90,
+ 51,
+ 10,
+ 380,
+ 33,
+ 30,
+ 557,
+ 173,
+ 87,
+ 97,
+ 333,
+ 55,
+ 213,
+ 192,
+ 57,
+ 16,
+ 245,
+ 115,
+ 410,
+ 158,
+ 283,
+ 217,
+ 97,
+ 420,
+ 325,
+ 161,
+ 166,
+ 97,
+ 74,
+ 15,
+ 216,
+ 288,
+ 17,
+ 28,
+ 169,
+ 88,
+ 12,
+ 52,
+ 155,
+ 205,
+ 68,
+ 63,
+ 114,
+ 297,
+ 185,
+ 222,
+ 284,
+ 195,
+ 119,
+ 261,
+ 113,
+ 11,
+ 42,
+ 110,
+ 455,
+ 119,
+ 110,
+ 170,
+ 245,
+ 268,
+ 108,
+ 182,
+ 165,
+ 18,
+ 250,
+ 154,
+ 169,
+ 176,
+ 69,
+ 119,
+ 295,
+ 11,
+ 33,
+ 152,
+ 41,
+ 252,
+ 40,
+ 156,
+ 55,
+ 18,
+ 379,
+ 128,
+ 86,
+ 98,
+ 8,
+ 261,
+ 133,
+ 398,
+ 287,
+ 208,
+ 434,
+ 119,
+ 140,
+ 191,
+ 380,
+ 115,
+ 325,
+ 167,
+ 63,
+ 21,
+ 47,
+ 9,
+ 82,
+ 212,
+ 78,
+ 546,
+ 79,
+ 74,
+ 229,
+ 156,
+ 114,
+ 435,
+ 326,
+ 170,
+ 143,
+ 111,
+ 184,
+ 233,
+ 110,
+ 116,
+ 178,
+ 144,
+ 177,
+ 21,
+ 163,
+ 91,
+ 78,
+ 239,
+ 169,
+ 87,
+ 37,
+ 113,
+ 24,
+ 213,
+ 380,
+ 153,
+ 192,
+ 66,
+ 57,
+ 123,
+ 276,
+ 317,
+ 105,
+ 103,
+ 73,
+ 504,
+ 182,
+ 336,
+ 248,
+ 504,
+ 82,
+ 182,
+ 78,
+ 222,
+ 1010,
+ 180,
+ 207,
+ 46,
+ 432,
+ 517,
+ 180,
+ 465,
+ 98,
+ 599,
+ 15,
+ 18,
+ 196,
+ 309,
+ 194,
+ 336,
+ 104,
+ 98,
+ 236,
+ 146,
+ 665,
+ 181,
+ 197,
+ 9,
+ 36,
+ 87,
+ 16,
+ 8,
+ 11,
+ 166,
+ 33,
+ 227,
+ 375,
+ 241,
+ 190,
+ 213,
+ 412,
+ 31,
+ 173,
+ 74,
+ 92,
+ 166,
+ 368,
+ 221,
+ 113,
+ 577,
+ 12,
+ 428,
+ 142,
+ 68,
+ 61,
+ 239,
+ 297,
+ 202,
+ 194,
+ 566,
+ 207,
+ 179,
+ 572,
+ 217,
+ 13,
+ 112,
+ 466,
+ 109,
+ 22,
+ 267,
+ 54,
+ 895,
+ 83,
+ 11,
+ 32,
+ 6,
+ 410,
+ 53,
+ 4,
+ 23,
+ 27,
+ 170,
+ 453,
+ 16,
+ 324,
+ 663,
+ 36,
+ 14,
+ 342,
+ 291,
+ 128,
+ 22,
+ 82,
+ 146,
+ 9,
+ 64,
+ 18,
+ 29,
+ 26,
+ 11,
+ 50,
+ 22,
+ 687,
+ 80,
+ 12,
+ 197,
+ 126,
+ 424,
+ 28,
+ 305,
+ 236,
+ 232,
+ 80,
+ 11,
+ 953,
+ 267,
+ 34,
+ 214,
+ 56,
+ 109,
+ 45,
+ 226,
+ 171,
+ 150,
+ 263,
+ 32,
+ 8,
+ 28,
+ 135,
+ 114,
+ 394,
+ 169,
+ 121,
+ 190,
+ 150,
+ 119,
+ 230,
+ 94,
+ 89,
+ 563,
+ 86,
+ 120,
+ 680,
+ 235,
+ 74,
+ 158,
+ 168,
+ 152,
+ 210,
+ 81,
+ 239,
+ 100,
+ 259,
+ 44,
+ 320,
+ 807,
+ 190,
+ 251,
+ 181,
+ 81,
+ 83,
+ 566,
+ 80,
+ 50,
+ 137,
+ 169,
+ 253,
+ 105,
+ 157,
+ 43,
+ 249,
+ 23,
+ 46,
+ 97,
+ 65,
+ 644,
+ 86,
+ 304,
+ 186,
+ 582,
+ 365,
+ 354,
+ 112,
+ 101,
+ 174,
+ 128,
+ 70,
+ 91,
+ 109,
+ 64,
+ 104,
+ 327,
+ 106,
+ 90,
+ 179,
+ 69,
+ 112,
+ 265,
+ 54,
+ 344,
+ 70,
+ 195,
+ 92,
+ 613,
+ 485,
+ 185,
+ 200,
+ 160,
+ 111,
+ 305,
+ 77,
+ 144,
+ 159,
+ 74,
+ 115,
+ 176,
+ 54,
+ 205,
+ 180,
+ 324,
+ 159,
+ 87,
+ 93,
+ 217,
+ 109,
+ 143,
+ 115,
+ 754,
+ 123,
+ 85,
+ 166,
+ 217,
+ 243,
+ 142,
+ 170,
+ 100,
+ 111,
+ 164,
+ 133,
+ 105,
+ 108,
+ 527,
+ 135,
+ 107,
+ 314,
+ 65,
+ 61,
+ 78,
+ 135,
+ 293,
+ 84,
+ 309,
+ 111,
+ 119,
+ 159,
+ 109,
+ 217,
+ 71,
+ 260,
+ 333,
+ 228,
+ 256,
+ 302,
+ 500,
+ 172,
+ 137,
+ 244,
+ 134,
+ 376,
+ 911,
+ 240,
+ 122,
+ 167,
+ 351,
+ 58,
+ 56,
+ 145,
+ 94,
+ 68,
+ 171,
+ 3509,
+ 81,
+ 128,
+ 304,
+ 55,
+ 140,
+ 83,
+ 222,
+ 145,
+ 118,
+ 85,
+ 251,
+ 69,
+ 245,
+ 135,
+ 88,
+ 125,
+ 132,
+ 187,
+ 139,
+ 109,
+ 161,
+ 100,
+ 223,
+ 141,
+ 149,
+ 136,
+ 323,
+ 197,
+ 222,
+ 58,
+ 407,
+ 252,
+ 80,
+ 112,
+ 87,
+ 176,
+ 103,
+ 260,
+ 108,
+ 91,
+ 41,
+ 89,
+ 82,
+ 132,
+ 147,
+ 362,
+ 212,
+ 118,
+ 264,
+ 94,
+ 258,
+ 137,
+ 245,
+ 752,
+ 175,
+ 480,
+ 532,
+ 163,
+ 71,
+ 82,
+ 121,
+ 188,
+ 282,
+ 130,
+ 483,
+ 108,
+ 81,
+ 128,
+ 283,
+ 138,
+ 119,
+ 93,
+ 159,
+ 133,
+ 140,
+ 136,
+ 145,
+ 224,
+ 95,
+ 90,
+ 123,
+ 297,
+ 76,
+ 114,
+ 113,
+ 62,
+ 1576,
+ 107,
+ 204,
+ 146,
+ 424,
+ 103,
+ 161,
+ 242,
+ 207,
+ 73,
+ 156,
+ 112,
+ 78,
+ 110,
+ 183,
+ 74,
+ 123,
+ 76,
+ 128,
+ 141,
+ 89,
+ 99,
+ 236,
+ 99,
+ 186,
+ 86,
+ 158,
+ 162,
+ 681,
+ 322,
+ 210,
+ 568,
+ 294,
+ 77,
+ 85,
+ 93,
+ 121,
+ 95,
+ 135,
+ 414,
+ 60,
+ 151,
+ 68,
+ 361,
+ 142,
+ 45,
+ 95,
+ 44,
+ 61,
+ 32,
+ 141,
+ 81,
+ 71,
+ 68,
+ 108,
+ 201,
+ 71,
+ 110,
+ 70,
+ 346,
+ 212,
+ 129,
+ 154,
+ 175,
+ 814,
+ 65,
+ 67,
+ 353,
+ 210,
+ 277,
+ 244,
+ 208,
+ 59,
+ 285,
+ 161,
+ 165,
+ 233,
+ 223,
+ 144,
+ 145,
+ 93,
+ 153,
+ 164,
+ 128,
+ 223,
+ 62,
+ 151,
+ 180,
+ 84,
+ 87,
+ 194,
+ 761,
+ 89,
+ 164,
+ 492,
+ 352,
+ 470,
+ 336,
+ 195,
+ 373,
+ 78,
+ 89,
+ 134,
+ 181,
+ 55,
+ 187,
+ 113,
+ 206,
+ 93,
+ 111,
+ 96,
+ 101,
+ 198,
+ 143,
+ 154,
+ 126,
+ 145,
+ 118,
+ 115,
+ 368,
+ 62,
+ 64,
+ 297,
+ 144,
+ 88,
+ 99,
+ 418,
+ 59,
+ 167,
+ 74,
+ 253,
+ 225,
+ 162,
+ 136,
+ 92,
+ 271,
+ 309,
+ 189,
+ 163,
+ 74,
+ 108,
+ 91,
+ 310,
+ 128,
+ 80,
+ 392,
+ 392,
+ 369,
+ 217,
+ 194,
+ 495,
+ 116,
+ 135,
+ 116,
+ 211,
+ 142,
+ 444,
+ 673,
+ 154,
+ 159,
+ 118,
+ 210,
+ 224,
+ 221,
+ 147,
+ 130,
+ 53,
+ 72,
+ 306,
+ 112,
+ 80,
+ 123,
+ 212,
+ 96,
+ 132,
+ 76,
+ 262,
+ 146,
+ 189,
+ 69,
+ 269,
+ 102,
+ 122,
+ 145,
+ 130,
+ 142,
+ 71,
+ 553,
+ 225,
+ 78,
+ 136,
+ 68,
+ 123,
+ 137,
+ 96,
+ 200,
+ 171,
+ 334,
+ 86,
+ 252,
+ 37,
+ 101,
+ 138,
+ 88,
+ 116,
+ 95,
+ 88,
+ 90,
+ 2219,
+ 467,
+ 107,
+ 95,
+ 342,
+ 252,
+ 170,
+ 74,
+ 65,
+ 151,
+ 273,
+ 1361,
+ 254,
+ 180,
+ 136,
+ 123,
+ 167,
+ 74,
+ 80,
+ 102,
+ 192,
+ 97,
+ 343,
+ 156,
+ 150,
+ 42,
+ 175,
+ 124,
+ 656,
+ 77,
+ 334,
+ 230,
+ 178,
+ 161,
+ 150,
+ 213,
+ 266,
+ 114,
+ 203,
+ 595,
+ 63,
+ 295,
+ 218,
+ 125,
+ 94,
+ 106,
+ 176,
+ 79,
+ 111,
+ 151,
+ 80,
+ 144,
+ 78,
+ 221,
+ 105,
+ 390,
+ 77,
+ 112,
+ 218,
+ 207,
+ 113,
+ 138,
+ 442,
+ 352,
+ 143,
+ 247,
+ 216,
+ 156,
+ 66,
+ 73,
+ 119,
+ 125,
+ 114,
+ 111,
+ 117,
+ 207,
+ 1094,
+ 133,
+ 264,
+ 169,
+ 136,
+ 146,
+ 247,
+ 109,
+ 227,
+ 398,
+ 317,
+ 77,
+ 329,
+ 188,
+ 215,
+ 145,
+ 213,
+ 153,
+ 76,
+ 471,
+ 92,
+ 329,
+ 263,
+ 57,
+ 271,
+ 455,
+ 333,
+ 89,
+ 58,
+ 95,
+ 96,
+ 138,
+ 614,
+ 303,
+ 110,
+ 151,
+ 800,
+ 200,
+ 113,
+ 143,
+ 130,
+ 97,
+ 86,
+ 152,
+ 252,
+ 197,
+ 127,
+ 110,
+ 84,
+ 431,
+ 106,
+ 100,
+ 337,
+ 217,
+ 105,
+ 127,
+ 230,
+ 382,
+ 175,
+ 336,
+ 136,
+ 177,
+ 139,
+ 39,
+ 94,
+ 263,
+ 54,
+ 143,
+ 268,
+ 439,
+ 292,
+ 92,
+ 114,
+ 147,
+ 181,
+ 135,
+ 92,
+ 41,
+ 74,
+ 157,
+ 24,
+ 104,
+ 64,
+ 88,
+ 170,
+ 74,
+ 95,
+ 333,
+ 94,
+ 60,
+ 175,
+ 108,
+ 60,
+ 108,
+ 75,
+ 29,
+ 79,
+ 318,
+ 205,
+ 298,
+ 161,
+ 214,
+ 202,
+ 399,
+ 281,
+ 250,
+ 66,
+ 102,
+ 64,
+ 459,
+ 119,
+ 229,
+ 30,
+ 79,
+ 276,
+ 404,
+ 569,
+ 55,
+ 65,
+ 49,
+ 181,
+ 54,
+ 151,
+ 94,
+ 84,
+ 390,
+ 88,
+ 754,
+ 133,
+ 112,
+ 63,
+ 241,
+ 140,
+ 177,
+ 457,
+ 177,
+ 100,
+ 136,
+ 111,
+ 271,
+ 67,
+ 115,
+ 570,
+ 238,
+ 524,
+ 187,
+ 68,
+ 60,
+ 208,
+ 295,
+ 248,
+ 191,
+ 971,
+ 201,
+ 140,
+ 128,
+ 224,
+ 108,
+ 103,
+ 42,
+ 166,
+ 160,
+ 1057,
+ 291,
+ 92,
+ 97,
+ 248,
+ 74,
+ 82,
+ 146,
+ 109,
+ 226,
+ 317,
+ 229,
+ 98,
+ 590,
+ 153,
+ 86,
+ 122,
+ 147,
+ 603,
+ 897,
+ 531,
+ 473,
+ 320,
+ 67,
+ 67,
+ 318,
+ 59,
+ 236,
+ 413,
+ 207,
+ 826,
+ 422,
+ 94,
+ 106,
+ 98,
+ 185,
+ 82,
+ 112,
+ 611,
+ 445,
+ 282,
+ 58,
+ 98,
+ 148,
+ 404,
+ 321,
+ 432,
+ 207,
+ 112,
+ 123,
+ 665,
+ 87,
+ 194,
+ 115,
+ 181,
+ 188,
+ 625,
+ 106,
+ 74,
+ 243,
+ 90,
+ 281,
+ 72,
+ 122,
+ 72,
+ 537,
+ 430,
+ 286,
+ 475,
+ 182,
+ 64,
+ 359,
+ 315,
+ 123,
+ 219,
+ 226,
+ 166,
+ 58,
+ 91,
+ 258,
+ 305,
+ 106,
+ 64,
+ 195,
+ 82,
+ 105,
+ 132,
+ 73,
+ 51,
+ 148,
+ 72,
+ 67,
+ 109,
+ 258,
+ 186,
+ 383,
+ 292,
+ 141,
+ 151,
+ 205,
+ 92,
+ 313,
+ 320,
+ 138,
+ 248,
+ 204,
+ 138,
+ 220,
+ 259,
+ 270,
+ 370,
+ 251,
+ 79,
+ 397,
+ 206,
+ 40,
+ 106,
+ 526,
+ 156,
+ 416,
+ 813,
+ 131,
+ 99,
+ 331,
+ 89,
+ 49,
+ 126,
+ 107,
+ 90,
+ 121,
+ 148,
+ 161,
+ 87,
+ 305,
+ 146,
+ 144,
+ 190,
+ 100,
+ 472,
+ 174,
+ 142,
+ 135,
+ 789,
+ 116,
+ 250,
+ 471,
+ 169,
+ 107,
+ 116,
+ 115,
+ 79,
+ 140,
+ 107,
+ 131,
+ 78,
+ 258,
+ 258,
+ 88,
+ 292,
+ 173,
+ 325,
+ 239,
+ 121,
+ 305,
+ 136,
+ 100,
+ 83,
+ 70,
+ 99,
+ 119,
+ 140,
+ 378,
+ 140,
+ 384,
+ 390,
+ 88,
+ 135,
+ 121,
+ 103,
+ 122,
+ 255,
+ 1225,
+ 54,
+ 268,
+ 88,
+ 131,
+ 133,
+ 489,
+ 120,
+ 158,
+ 246,
+ 156,
+ 1529,
+ 155,
+ 153,
+ 411,
+ 107,
+ 89,
+ 85,
+ 151,
+ 96,
+ 540,
+ 247,
+ 162,
+ 121,
+ 71,
+ 157,
+ 373,
+ 425,
+ 48,
+ 329,
+ 90,
+ 265,
+ 151,
+ 181,
+ 138,
+ 157,
+ 89,
+ 387,
+ 249,
+ 123,
+ 156,
+ 155,
+ 115,
+ 88,
+ 85,
+ 110,
+ 982,
+ 168,
+ 287,
+ 75,
+ 93,
+ 225,
+ 280,
+ 66,
+ 371,
+ 201,
+ 97,
+ 91,
+ 526,
+ 477,
+ 198,
+ 120,
+ 162,
+ 163,
+ 373,
+ 113,
+ 71,
+ 172,
+ 162,
+ 345,
+ 1117,
+ 159,
+ 701,
+ 174,
+ 74,
+ 121,
+ 127,
+ 90,
+ 169,
+ 115,
+ 249,
+ 150,
+ 90,
+ 100,
+ 119,
+ 90,
+ 236,
+ 93,
+ 87,
+ 77,
+ 82,
+ 161,
+ 150,
+ 305,
+ 202,
+ 153,
+ 113,
+ 96,
+ 71,
+ 192,
+ 363,
+ 96,
+ 188,
+ 44,
+ 222,
+ 246,
+ 96,
+ 120,
+ 243,
+ 543,
+ 162,
+ 298,
+ 331,
+ 111,
+ 255,
+ 73,
+ 101,
+ 181,
+ 1175,
+ 220,
+ 402,
+ 105,
+ 150,
+ 485,
+ 307,
+ 164,
+ 1152,
+ 138,
+ 138,
+ 328,
+ 72,
+ 136,
+ 78,
+ 347,
+ 189,
+ 160,
+ 233,
+ 105,
+ 100,
+ 57,
+ 129,
+ 74,
+ 103,
+ 213,
+ 284,
+ 73,
+ 726,
+ 75,
+ 344,
+ 135,
+ 112,
+ 99,
+ 185,
+ 143,
+ 99,
+ 146,
+ 284,
+ 75,
+ 135,
+ 92,
+ 53,
+ 236,
+ 238,
+ 158,
+ 275,
+ 319,
+ 126,
+ 182,
+ 233,
+ 176,
+ 185,
+ 126,
+ 180,
+ 98,
+ 117,
+ 257,
+ 230,
+ 415,
+ 260,
+ 92,
+ 253,
+ 78,
+ 260,
+ 190,
+ 107,
+ 105,
+ 553,
+ 482,
+ 88,
+ 153,
+ 148,
+ 142,
+ 99,
+ 70,
+ 140,
+ 224,
+ 159,
+ 313,
+ 297,
+ 110,
+ 80,
+ 138,
+ 116,
+ 75,
+ 152,
+ 133,
+ 551,
+ 123,
+ 80,
+ 156,
+ 97,
+ 473,
+ 122,
+ 237,
+ 109,
+ 123,
+ 123,
+ 366,
+ 123,
+ 628,
+ 241,
+ 192,
+ 300,
+ 109,
+ 33,
+ 212,
+ 243,
+ 177,
+ 543,
+ 147,
+ 113,
+ 90,
+ 96,
+ 108,
+ 210,
+ 101,
+ 360,
+ 66,
+ 363,
+ 307,
+ 197,
+ 280,
+ 396,
+ 431,
+ 220,
+ 206,
+ 578,
+ 250,
+ 207,
+ 65,
+ 89,
+ 98,
+ 170,
+ 67,
+ 328,
+ 484,
+ 321,
+ 196,
+ 65,
+ 80,
+ 82,
+ 262,
+ 84,
+ 97,
+ 68,
+ 83,
+ 188,
+ 69,
+ 131,
+ 147,
+ 157,
+ 99,
+ 201,
+ 64,
+ 75,
+ 139,
+ 102,
+ 146,
+ 406,
+ 61,
+ 69,
+ 92,
+ 96,
+ 64,
+ 90,
+ 200,
+ 53,
+ 44,
+ 298,
+ 72,
+ 419,
+ 73,
+ 62,
+ 323,
+ 227,
+ 315,
+ 420,
+ 100,
+ 401,
+ 55,
+ 349,
+ 143,
+ 79,
+ 497,
+ 109,
+ 103,
+ 50,
+ 188,
+ 79,
+ 585,
+ 133,
+ 83,
+ 41,
+ 186,
+ 360,
+ 159,
+ 161,
+ 89,
+ 78,
+ 240,
+ 187,
+ 75,
+ 76,
+ 103,
+ 359,
+ 146,
+ 64,
+ 148,
+ 1112,
+ 148,
+ 294,
+ 118,
+ 67,
+ 630,
+ 65,
+ 359,
+ 255,
+ 133,
+ 283,
+ 94,
+ 36,
+ 368,
+ 72,
+ 69,
+ 102,
+ 115,
+ 245,
+ 54,
+ 62,
+ 114,
+ 83,
+ 121,
+ 81,
+ 106,
+ 98,
+ 139,
+ 79,
+ 89,
+ 197,
+ 69,
+ 157,
+ 28,
+ 91,
+ 99,
+ 137,
+ 115,
+ 490,
+ 76,
+ 368,
+ 86,
+ 77,
+ 106,
+ 207,
+ 61,
+ 172,
+ 95,
+ 420,
+ 225,
+ 144,
+ 104,
+ 259,
+ 531,
+ 167,
+ 2055,
+ 56,
+ 73,
+ 104,
+ 166,
+ 351,
+ 181,
+ 384,
+ 204,
+ 101,
+ 205,
+ 128,
+ 123,
+ 313,
+ 171,
+ 154,
+ 93,
+ 639,
+ 112,
+ 172,
+ 589,
+ 182,
+ 221,
+ 669,
+ 133,
+ 99,
+ 289,
+ 92,
+ 89,
+ 97,
+ 394,
+ 147,
+ 510,
+ 274,
+ 98,
+ 57,
+ 201,
+ 221,
+ 76,
+ 191,
+ 421,
+ 71,
+ 180,
+ 837,
+ 105,
+ 372,
+ 595,
+ 307,
+ 511,
+ 277,
+ 223,
+ 105,
+ 276,
+ 90,
+ 324,
+ 122,
+ 96,
+ 129,
+ 339,
+ 355,
+ 336,
+ 158,
+ 113,
+ 240,
+ 155,
+ 103,
+ 85,
+ 394,
+ 161,
+ 133,
+ 208,
+ 103,
+ 39,
+ 188,
+ 111,
+ 106,
+ 169,
+ 177,
+ 994,
+ 99,
+ 657,
+ 246,
+ 92,
+ 134,
+ 613,
+ 192,
+ 1551,
+ 159,
+ 1353,
+ 62,
+ 63,
+ 794,
+ 105,
+ 49,
+ 168,
+ 491,
+ 144,
+ 105,
+ 81,
+ 399,
+ 139,
+ 114,
+ 64,
+ 85,
+ 500,
+ 80,
+ 115,
+ 79,
+ 75,
+ 213,
+ 161,
+ 134,
+ 195,
+ 585,
+ 86,
+ 760,
+ 302,
+ 66,
+ 199,
+ 120,
+ 321,
+ 177,
+ 258,
+ 250,
+ 99,
+ 67,
+ 82,
+ 152,
+ 462,
+ 91,
+ 160,
+ 131,
+ 117,
+ 88,
+ 89,
+ 205,
+ 408,
+ 63,
+ 526,
+ 96,
+ 125,
+ 304,
+ 572,
+ 133,
+ 323,
+ 953,
+ 157,
+ 867,
+ 90,
+ 301,
+ 73,
+ 180,
+ 88,
+ 525,
+ 223,
+ 1386,
+ 173,
+ 113,
+ 189,
+ 676,
+ 181,
+ 268,
+ 134,
+ 120,
+ 92,
+ 99,
+ 837,
+ 135,
+ 306,
+ 61,
+ 78,
+ 167,
+ 120,
+ 845,
+ 227,
+ 49,
+ 182,
+ 213,
+ 285,
+ 200,
+ 169,
+ 75,
+ 1573,
+ 115,
+ 82,
+ 123,
+ 120,
+ 146,
+ 237,
+ 113,
+ 104,
+ 727,
+ 79,
+ 108,
+ 68,
+ 122,
+ 166,
+ 632,
+ 130,
+ 262,
+ 86,
+ 73,
+ 280,
+ 138,
+ 172,
+ 634,
+ 522,
+ 76,
+ 244,
+ 68,
+ 96,
+ 126,
+ 246,
+ 227,
+ 138,
+ 55,
+ 109,
+ 131,
+ 141,
+ 95,
+ 132,
+ 128,
+ 193,
+ 169,
+ 104,
+ 141,
+ 165,
+ 317,
+ 87,
+ 283,
+ 147,
+ 143,
+ 131,
+ 94,
+ 238,
+ 599,
+ 1020,
+ 123,
+ 113,
+ 534,
+ 82,
+ 116,
+ 120,
+ 217,
+ 54,
+ 169,
+ 109,
+ 167,
+ 323,
+ 79,
+ 104,
+ 233,
+ 187,
+ 270,
+ 1745,
+ 626,
+ 2187,
+ 59,
+ 164,
+ 92,
+ 107,
+ 76,
+ 251,
+ 72,
+ 110,
+ 180,
+ 129,
+ 1206,
+ 164,
+ 197,
+ 196,
+ 287,
+ 334,
+ 391,
+ 102,
+ 94,
+ 622,
+ 133,
+ 91,
+ 76,
+ 131,
+ 56,
+ 61,
+ 183,
+ 87,
+ 633,
+ 127,
+ 110,
+ 151,
+ 99,
+ 87,
+ 67,
+ 126,
+ 298,
+ 156,
+ 96,
+ 157,
+ 120,
+ 79,
+ 515,
+ 89,
+ 88,
+ 521,
+ 376,
+ 219,
+ 259,
+ 253,
+ 65,
+ 189,
+ 114,
+ 83,
+ 113,
+ 246,
+ 219,
+ 108,
+ 143,
+ 149,
+ 300,
+ 73,
+ 1118,
+ 210,
+ 1092,
+ 190,
+ 197,
+ 133,
+ 172,
+ 185,
+ 408,
+ 343,
+ 269,
+ 76,
+ 247,
+ 76,
+ 72,
+ 103,
+ 679,
+ 262,
+ 68,
+ 250,
+ 174,
+ 185,
+ 133,
+ 631,
+ 70,
+ 176,
+ 62,
+ 160,
+ 155,
+ 183,
+ 152,
+ 177,
+ 105,
+ 131,
+ 101,
+ 131,
+ 69,
+ 91,
+ 75,
+ 59,
+ 53,
+ 66,
+ 235,
+ 154,
+ 173,
+ 128,
+ 459,
+ 272,
+ 204,
+ 144,
+ 227,
+ 109,
+ 180,
+ 117,
+ 725,
+ 83,
+ 85,
+ 179,
+ 46,
+ 551,
+ 786,
+ 68,
+ 88,
+ 222,
+ 193,
+ 402,
+ 258,
+ 90,
+ 116,
+ 298,
+ 70,
+ 138,
+ 101,
+ 85,
+ 158,
+ 199,
+ 112,
+ 156,
+ 272,
+ 572,
+ 88,
+ 96,
+ 143,
+ 111,
+ 509,
+ 136,
+ 312,
+ 126,
+ 371,
+ 257,
+ 178,
+ 564,
+ 71,
+ 345,
+ 185,
+ 280,
+ 208,
+ 98,
+ 516,
+ 93,
+ 158,
+ 133,
+ 106,
+ 79,
+ 359,
+ 98,
+ 187,
+ 54,
+ 248,
+ 116,
+ 66,
+ 39,
+ 96,
+ 177,
+ 702,
+ 427,
+ 463,
+ 150,
+ 771,
+ 443,
+ 124,
+ 191,
+ 189,
+ 366,
+ 237,
+ 350,
+ 202,
+ 180,
+ 122,
+ 122,
+ 201,
+ 632,
+ 264,
+ 53,
+ 332,
+ 139,
+ 141,
+ 61,
+ 95,
+ 1011,
+ 124,
+ 135,
+ 176,
+ 124,
+ 163,
+ 84,
+ 843,
+ 365,
+ 62,
+ 107,
+ 244,
+ 136,
+ 137,
+ 175,
+ 986,
+ 57,
+ 79,
+ 93,
+ 94,
+ 446,
+ 104,
+ 69,
+ 77,
+ 116,
+ 75,
+ 111,
+ 202,
+ 168,
+ 320,
+ 140,
+ 408,
+ 108,
+ 107,
+ 56,
+ 190,
+ 492,
+ 187,
+ 141,
+ 166,
+ 112,
+ 283,
+ 295,
+ 84,
+ 106,
+ 1092,
+ 421,
+ 134,
+ 103,
+ 250,
+ 99,
+ 170,
+ 87,
+ 237,
+ 142,
+ 92,
+ 90,
+ 341,
+ 65,
+ 110,
+ 337,
+ 210,
+ 152,
+ 151,
+ 123,
+ 152,
+ 107,
+ 113,
+ 258,
+ 187,
+ 96,
+ 1804,
+ 421,
+ 237,
+ 110,
+ 127,
+ 377,
+ 78,
+ 55,
+ 1139,
+ 254,
+ 720,
+ 85,
+ 334,
+ 371,
+ 358,
+ 91,
+ 67,
+ 347,
+ 245,
+ 1002,
+ 390,
+ 124,
+ 87,
+ 135,
+ 220,
+ 112,
+ 208,
+ 501,
+ 263,
+ 388,
+ 352,
+ 269,
+ 122,
+ 88,
+ 446,
+ 72,
+ 325,
+ 155,
+ 97,
+ 103,
+ 110,
+ 454,
+ 248,
+ 127,
+ 52,
+ 104,
+ 116,
+ 796,
+ 77,
+ 94,
+ 396,
+ 158,
+ 520,
+ 956,
+ 105,
+ 62,
+ 273,
+ 83,
+ 193,
+ 433,
+ 256,
+ 137,
+ 195,
+ 207,
+ 215,
+ 109,
+ 554,
+ 158,
+ 110,
+ 112,
+ 646,
+ 10,
+ 107,
+ 147,
+ 18,
+ 105,
+ 328,
+ 19,
+ 114,
+ 700,
+ 194,
+ 364,
+ 431,
+ 117,
+ 220,
+ 141,
+ 262,
+ 252,
+ 158,
+ 116,
+ 154,
+ 172,
+ 84,
+ 284,
+ 185,
+ 150,
+ 111,
+ 154,
+ 139,
+ 265,
+ 138,
+ 217,
+ 152,
+ 625,
+ 78,
+ 129,
+ 93,
+ 184,
+ 228,
+ 282,
+ 117,
+ 275,
+ 169,
+ 102,
+ 121,
+ 119,
+ 144,
+ 209,
+ 261,
+ 106,
+ 151,
+ 247,
+ 109,
+ 549,
+ 287,
+ 341,
+ 195,
+ 129,
+ 189,
+ 294,
+ 244,
+ 384,
+ 618,
+ 184,
+ 395,
+ 181,
+ 133,
+ 370,
+ 125,
+ 165,
+ 245,
+ 96,
+ 153,
+ 158,
+ 247,
+ 189,
+ 94,
+ 128,
+ 169,
+ 454,
+ 81,
+ 156,
+ 139,
+ 157,
+ 201,
+ 698,
+ 198,
+ 88,
+ 164,
+ 135,
+ 231,
+ 317,
+ 113,
+ 361,
+ 371,
+ 382,
+ 30,
+ 158,
+ 220,
+ 127,
+ 122,
+ 208,
+ 126,
+ 198,
+ 236,
+ 161,
+ 337,
+ 169,
+ 284,
+ 366,
+ 158,
+ 339,
+ 271,
+ 143,
+ 147,
+ 119,
+ 143,
+ 113,
+ 220,
+ 191,
+ 98,
+ 699,
+ 177,
+ 148,
+ 237,
+ 220,
+ 184,
+ 268,
+ 930,
+ 381,
+ 354,
+ 234,
+ 247,
+ 292,
+ 109,
+ 164,
+ 207,
+ 92,
+ 378,
+ 116,
+ 128,
+ 102,
+ 166,
+ 234,
+ 125,
+ 117,
+ 135,
+ 135,
+ 147,
+ 345,
+ 252,
+ 605,
+ 157,
+ 165,
+ 115,
+ 835,
+ 211,
+ 242,
+ 97,
+ 148,
+ 106,
+ 131,
+ 85,
+ 113,
+ 165,
+ 104,
+ 126,
+ 203,
+ 104,
+ 100,
+ 329,
+ 173,
+ 720,
+ 174,
+ 54,
+ 121,
+ 16,
+ 109,
+ 227,
+ 220,
+ 111,
+ 218,
+ 201,
+ 110,
+ 113,
+ 165,
+ 269,
+ 128,
+ 522,
+ 113,
+ 172,
+ 333,
+ 208,
+ 144,
+ 177,
+ 267,
+ 18,
+ 457,
+ 698,
+ 7,
+ 389,
+ 338,
+ 62,
+ 492,
+ 312,
+ 564,
+ 157,
+ 30,
+ 165,
+ 339,
+ 321,
+ 145,
+ 122,
+ 131,
+ 341,
+ 260,
+ 267,
+ 188,
+ 57,
+ 137,
+ 24,
+ 74,
+ 196,
+ 43,
+ 101,
+ 35,
+ 581,
+ 309,
+ 29,
+ 589,
+ 114,
+ 85,
+ 113,
+ 158,
+ 178,
+ 8,
+ 113,
+ 119,
+ 209,
+ 1563,
+ 165,
+ 12,
+ 8,
+ 8,
+ 52,
+ 5,
+ 36,
+ 7,
+ 147,
+ 161,
+ 35,
+ 32,
+ 148,
+ 346,
+ 106,
+ 6,
+ 13,
+ 54,
+ 29,
+ 149,
+ 544,
+ 30,
+ 198,
+ 49,
+ 29,
+ 118,
+ 294,
+ 722,
+ 46,
+ 138,
+ 135,
+ 141,
+ 168,
+ 516,
+ 215,
+ 30,
+ 20,
+ 472,
+ 262,
+ 237,
+ 250,
+ 126,
+ 270,
+ 58,
+ 15,
+ 101,
+ 247,
+ 21,
+ 344,
+ 530,
+ 91,
+ 80,
+ 201,
+ 23,
+ 100,
+ 130,
+ 136,
+ 154,
+ 292,
+ 79,
+ 193,
+ 883,
+ 66,
+ 181,
+ 133,
+ 112,
+ 442,
+ 355,
+ 369,
+ 316,
+ 185,
+ 134,
+ 167,
+ 122,
+ 124,
+ 288,
+ 220,
+ 180,
+ 15,
+ 11,
+ 22,
+ 52,
+ 9,
+ 131,
+ 171,
+ 427,
+ 195,
+ 12,
+ 249,
+ 359,
+ 348,
+ 54,
+ 132,
+ 197,
+ 150,
+ 181,
+ 133,
+ 279,
+ 135,
+ 238,
+ 189,
+ 385,
+ 189,
+ 264,
+ 12,
+ 286,
+ 13,
+ 8,
+ 255,
+ 428,
+ 6,
+ 108,
+ 119,
+ 241,
+ 114,
+ 494,
+ 165,
+ 12,
+ 28,
+ 113,
+ 12,
+ 10,
+ 25,
+ 96,
+ 844,
+ 129,
+ 9,
+ 101,
+ 29,
+ 17,
+ 175,
+ 182,
+ 255,
+ 212,
+ 257,
+ 42,
+ 295,
+ 156,
+ 214,
+ 14,
+ 202,
+ 230,
+ 312,
+ 119,
+ 582,
+ 1185,
+ 116,
+ 15,
+ 25,
+ 23,
+ 9,
+ 410,
+ 305,
+ 101,
+ 154,
+ 194,
+ 236,
+ 289,
+ 256,
+ 35,
+ 88,
+ 316,
+ 538,
+ 151,
+ 18,
+ 91,
+ 133,
+ 86,
+ 343,
+ 71,
+ 185,
+ 178,
+ 250,
+ 210,
+ 561,
+ 392,
+ 261,
+ 129,
+ 184,
+ 136,
+ 44,
+ 106,
+ 7,
+ 237,
+ 73,
+ 12,
+ 222,
+ 84,
+ 128,
+ 146,
+ 192,
+ 296,
+ 175,
+ 7,
+ 7,
+ 5,
+ 288,
+ 104,
+ 338,
+ 5,
+ 115,
+ 23,
+ 24,
+ 427,
+ 171,
+ 125,
+ 110,
+ 7,
+ 7,
+ 84,
+ 4,
+ 9,
+ 768,
+ 206,
+ 9,
+ 5,
+ 5,
+ 139,
+ 167,
+ 235,
+ 106,
+ 211,
+ 129,
+ 95,
+ 331,
+ 117,
+ 99,
+ 90,
+ 221,
+ 76,
+ 269,
+ 9,
+ 240,
+ 273,
+ 160,
+ 428,
+ 132,
+ 159,
+ 87,
+ 1013,
+ 300,
+ 25,
+ 90,
+ 100,
+ 245,
+ 209,
+ 486,
+ 135,
+ 109,
+ 141,
+ 226,
+ 258,
+ 224,
+ 326,
+ 172,
+ 156,
+ 199,
+ 261,
+ 153,
+ 111,
+ 510,
+ 329,
+ 382,
+ 492,
+ 250,
+ 200,
+ 134,
+ 163,
+ 98,
+ 270,
+ 47,
+ 252,
+ 101,
+ 6,
+ 6,
+ 370,
+ 440,
+ 145,
+ 182,
+ 361,
+ 11,
+ 188,
+ 122,
+ 168,
+ 365,
+ 6,
+ 170,
+ 61,
+ 443,
+ 176,
+ 192,
+ 176,
+ 187,
+ 126,
+ 18,
+ 183,
+ 75,
+ 166,
+ 161,
+ 9,
+ 12,
+ 143,
+ 140,
+ 111,
+ 200,
+ 8,
+ 6,
+ 95,
+ 171,
+ 212,
+ 173,
+ 45,
+ 107,
+ 6,
+ 4,
+ 5,
+ 10,
+ 220,
+ 5,
+ 26,
+ 6,
+ 5,
+ 17,
+ 4,
+ 3785,
+ 26,
+ 36,
+ 193,
+ 241,
+ 34,
+ 298,
+ 27,
+ 1,
+ 161,
+ 222,
+ 380,
+ 691,
+ 95,
+ 150,
+ 425,
+ 232,
+ 20,
+ 8,
+ 7,
+ 10,
+ 4,
+ 281,
+ 128,
+ 173,
+ 114,
+ 97,
+ 238,
+ 154,
+ 206,
+ 116,
+ 110,
+ 251,
+ 240,
+ 120,
+ 789,
+ 543,
+ 387,
+ 131,
+ 109,
+ 36,
+ 145,
+ 127,
+ 198,
+ 11,
+ 136,
+ 113,
+ 35,
+ 125,
+ 213,
+ 8,
+ 164,
+ 202,
+ 791,
+ 272,
+ 11,
+ 127,
+ 179,
+ 355,
+ 120,
+ 213,
+ 149,
+ 127,
+ 9,
+ 378,
+ 405,
+ 156,
+ 761,
+ 263,
+ 1,
+ 110,
+ 5,
+ 175,
+ 303,
+ 258,
+ 157,
+ 502,
+ 5,
+ 5,
+ 10,
+ 13,
+ 57,
+ 275,
+ 5,
+ 706,
+ 6,
+ 380,
+ 407,
+ 161,
+ 173,
+ 110,
+ 214,
+ 7,
+ 251,
+ 234,
+ 79,
+ 147,
+ 152,
+ 155,
+ 9,
+ 6,
+ 84,
+ 718,
+ 62,
+ 155,
+ 318,
+ 261,
+ 180,
+ 333,
+ 84,
+ 103,
+ 317,
+ 447,
+ 112,
+ 390,
+ 217,
+ 405,
+ 245,
+ 134,
+ 133,
+ 157,
+ 349,
+ 246,
+ 618,
+ 19,
+ 6,
+ 157,
+ 169,
+ 290,
+ 156,
+ 379,
+ 1616,
+ 162,
+ 990,
+ 6,
+ 104,
+ 237,
+ 13,
+ 21,
+ 242,
+ 110,
+ 201,
+ 211,
+ 197,
+ 142,
+ 143,
+ 164,
+ 278,
+ 161,
+ 5,
+ 9,
+ 10,
+ 261,
+ 48,
+ 541,
+ 691,
+ 1020,
+ 604,
+ 197,
+ 138,
+ 116,
+ 118,
+ 146,
+ 282,
+ 375,
+ 135,
+ 133,
+ 317,
+ 162,
+ 291,
+ 123,
+ 110,
+ 485,
+ 160,
+ 251,
+ 79,
+ 4,
+ 34,
+ 185,
+ 146,
+ 4,
+ 54,
+ 114,
+ 166,
+ 242,
+ 143,
+ 146,
+ 130,
+ 5,
+ 6,
+ 357,
+ 133,
+ 119,
+ 99,
+ 192,
+ 235,
+ 317,
+ 174,
+ 322,
+ 219,
+ 786,
+ 72,
+ 181,
+ 158,
+ 212,
+ 6,
+ 130,
+ 209,
+ 333,
+ 170,
+ 180,
+ 102,
+ 95,
+ 338,
+ 159,
+ 133,
+ 218,
+ 268,
+ 7,
+ 5,
+ 238,
+ 139,
+ 262,
+ 201,
+ 168,
+ 84,
+ 142,
+ 92,
+ 189,
+ 254,
+ 324,
+ 129,
+ 293,
+ 196,
+ 17,
+ 223,
+ 409,
+ 170,
+ 71,
+ 18,
+ 176,
+ 240,
+ 119,
+ 230,
+ 207,
+ 120,
+ 137,
+ 507,
+ 106,
+ 148,
+ 212,
+ 141,
+ 354,
+ 326,
+ 283,
+ 301,
+ 137,
+ 111,
+ 212,
+ 228,
+ 164,
+ 182,
+ 98,
+ 223,
+ 134,
+ 319,
+ 414,
+ 199,
+ 191,
+ 74,
+ 128,
+ 173,
+ 173,
+ 1166,
+ 508,
+ 193,
+ 97,
+ 200,
+ 419,
+ 202,
+ 127,
+ 92,
+ 324,
+ 371,
+ 112,
+ 185,
+ 152,
+ 159,
+ 510,
+ 347,
+ 236,
+ 144,
+ 154,
+ 293,
+ 360,
+ 124,
+ 151,
+ 254,
+ 112,
+ 383,
+ 189,
+ 239
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes duration=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 1467,
+ 673,
+ 935,
+ 1030,
+ 1623,
+ 1677,
+ 1297,
+ 992,
+ 1138,
+ 786,
+ 1689,
+ 813,
+ 541,
+ 1119,
+ 1120,
+ 513,
+ 756,
+ 2087,
+ 1120,
+ 985,
+ 710,
+ 653,
+ 654,
+ 1692,
+ 460,
+ 757,
+ 744,
+ 568,
+ 1000,
+ 618,
+ 2231,
+ 1015,
+ 683,
+ 470,
+ 845,
+ 753,
+ 945,
+ 1721,
+ 832,
+ 1328,
+ 1321,
+ 858,
+ 629,
+ 1028,
+ 927,
+ 1423,
+ 646,
+ 746,
+ 1074,
+ 695,
+ 651,
+ 500,
+ 911,
+ 697,
+ 892,
+ 515,
+ 813,
+ 803,
+ 1143,
+ 688,
+ 803,
+ 787,
+ 619,
+ 912,
+ 1340,
+ 897,
+ 2680,
+ 1193,
+ 1064,
+ 483,
+ 607,
+ 1022,
+ 552,
+ 1622,
+ 579,
+ 1218,
+ 1205,
+ 1882,
+ 1777,
+ 650,
+ 1392,
+ 719,
+ 938,
+ 565,
+ 819,
+ 412,
+ 795,
+ 828,
+ 506,
+ 1681,
+ 681,
+ 1697,
+ 860,
+ 923,
+ 521,
+ 628,
+ 1349,
+ 736,
+ 600,
+ 924,
+ 893,
+ 588,
+ 777,
+ 1392,
+ 1059,
+ 430,
+ 621,
+ 543,
+ 630,
+ 1234,
+ 642,
+ 431,
+ 414,
+ 896,
+ 764,
+ 1205,
+ 1051,
+ 740,
+ 731,
+ 935,
+ 751,
+ 709,
+ 3094,
+ 938,
+ 543,
+ 1479,
+ 615,
+ 1183,
+ 796,
+ 664,
+ 648,
+ 691,
+ 560,
+ 543,
+ 1093,
+ 791,
+ 1207,
+ 535,
+ 1047,
+ 1059,
+ 792,
+ 900,
+ 553,
+ 762,
+ 290,
+ 864,
+ 855,
+ 1269,
+ 691,
+ 1236,
+ 886,
+ 1980,
+ 984,
+ 891,
+ 539,
+ 3631,
+ 1044,
+ 502,
+ 947,
+ 526,
+ 394,
+ 659,
+ 1036,
+ 230,
+ 555,
+ 605,
+ 1173,
+ 963,
+ 956,
+ 941,
+ 1025,
+ 732,
+ 768,
+ 801,
+ 2456,
+ 1363,
+ 633,
+ 1242,
+ 1141,
+ 578,
+ 984,
+ 638,
+ 767,
+ 525,
+ 563,
+ 1449,
+ 920,
+ 910,
+ 1446,
+ 508,
+ 590,
+ 761,
+ 1053,
+ 983,
+ 1018,
+ 884,
+ 554,
+ 862,
+ 460,
+ 642,
+ 467,
+ 2653,
+ 1085,
+ 685,
+ 1055,
+ 901,
+ 700,
+ 491,
+ 940,
+ 952,
+ 486,
+ 442,
+ 583,
+ 893,
+ 867,
+ 587,
+ 706,
+ 1199,
+ 838,
+ 967,
+ 614,
+ 651,
+ 992,
+ 577,
+ 1141,
+ 541,
+ 1243,
+ 513,
+ 686,
+ 1323,
+ 1093,
+ 1089,
+ 1248,
+ 721,
+ 750,
+ 2769,
+ 1848,
+ 490,
+ 676,
+ 775,
+ 2621,
+ 835,
+ 371,
+ 1528,
+ 1540,
+ 973,
+ 537,
+ 695,
+ 1255,
+ 2093,
+ 704,
+ 771,
+ 1060,
+ 1574,
+ 1224,
+ 1318,
+ 2028,
+ 952,
+ 500,
+ 683,
+ 716,
+ 1149,
+ 1573,
+ 560,
+ 1617,
+ 1422,
+ 1023,
+ 809,
+ 693,
+ 556,
+ 291,
+ 498,
+ 670,
+ 662,
+ 677,
+ 762,
+ 3183,
+ 422,
+ 911,
+ 1049,
+ 479,
+ 1135,
+ 650,
+ 676,
+ 491,
+ 615,
+ 782,
+ 1272,
+ 722,
+ 621,
+ 629,
+ 385,
+ 1356,
+ 889,
+ 556,
+ 532,
+ 599,
+ 830,
+ 732,
+ 531,
+ 460,
+ 705,
+ 992,
+ 574,
+ 1767,
+ 681,
+ 1082,
+ 730,
+ 716,
+ 803,
+ 831,
+ 635,
+ 819,
+ 623,
+ 658,
+ 1061,
+ 1344,
+ 687,
+ 537,
+ 679,
+ 2122,
+ 570,
+ 761,
+ 645,
+ 662,
+ 625,
+ 426,
+ 590,
+ 1121,
+ 1139,
+ 869,
+ 359,
+ 1014,
+ 1290,
+ 919,
+ 1426,
+ 560,
+ 854,
+ 255,
+ 804,
+ 982,
+ 880,
+ 720,
+ 771,
+ 627,
+ 1341,
+ 634,
+ 476,
+ 829,
+ 1499,
+ 1187,
+ 487,
+ 1097,
+ 3643,
+ 812,
+ 1060,
+ 614,
+ 1294,
+ 764,
+ 963,
+ 911,
+ 822,
+ 853,
+ 1310,
+ 611,
+ 751,
+ 1397,
+ 686,
+ 766,
+ 788,
+ 1130,
+ 1062,
+ 1669,
+ 1071,
+ 894,
+ 798,
+ 805,
+ 723,
+ 533,
+ 1056,
+ 815,
+ 808,
+ 1317,
+ 860,
+ 658,
+ 878,
+ 820,
+ 1001,
+ 500,
+ 1228,
+ 514,
+ 716,
+ 955,
+ 769,
+ 1424,
+ 838,
+ 448,
+ 1806,
+ 689,
+ 555,
+ 686,
+ 435,
+ 830,
+ 873,
+ 1222,
+ 988,
+ 652,
+ 1019,
+ 561,
+ 1018,
+ 781,
+ 1150,
+ 753,
+ 1008,
+ 538,
+ 795,
+ 926,
+ 1027,
+ 1584,
+ 582,
+ 1448,
+ 656,
+ 551,
+ 1319,
+ 1175,
+ 991,
+ 1153,
+ 623,
+ 674,
+ 1081,
+ 494,
+ 978,
+ 536,
+ 567,
+ 968,
+ 516,
+ 610,
+ 640,
+ 671,
+ 659,
+ 641,
+ 415,
+ 852,
+ 635,
+ 1127,
+ 1360,
+ 588,
+ 1373,
+ 799,
+ 1139,
+ 999,
+ 638,
+ 854,
+ 617,
+ 919,
+ 1017,
+ 848,
+ 733,
+ 553,
+ 1080,
+ 710,
+ 1212,
+ 691,
+ 1130,
+ 577,
+ 1342,
+ 1002,
+ 985,
+ 1360,
+ 1352,
+ 1077,
+ 714,
+ 654,
+ 849,
+ 722,
+ 1508,
+ 966,
+ 1237,
+ 864,
+ 1037,
+ 802,
+ 926,
+ 870,
+ 761,
+ 690,
+ 529,
+ 1152,
+ 1960,
+ 957,
+ 902,
+ 1327,
+ 2078,
+ 1124,
+ 808,
+ 638,
+ 1359,
+ 416,
+ 532,
+ 853,
+ 1204,
+ 1441,
+ 1491,
+ 903,
+ 873,
+ 1850,
+ 367,
+ 1602,
+ 1422,
+ 979,
+ 616,
+ 784,
+ 695,
+ 862,
+ 743,
+ 1031,
+ 590,
+ 1448,
+ 1369,
+ 653,
+ 458,
+ 983,
+ 365,
+ 664,
+ 700,
+ 662,
+ 1169,
+ 431,
+ 837,
+ 383,
+ 1009,
+ 867,
+ 551,
+ 890,
+ 1076,
+ 648,
+ 600,
+ 2516,
+ 454,
+ 616,
+ 1127,
+ 684,
+ 650,
+ 1373,
+ 788,
+ 988,
+ 543,
+ 1171,
+ 729,
+ 509,
+ 1089,
+ 1211,
+ 458,
+ 540,
+ 695,
+ 764,
+ 1065,
+ 356,
+ 2692,
+ 675,
+ 782,
+ 777,
+ 962,
+ 812,
+ 630,
+ 1088,
+ 1150,
+ 725,
+ 662,
+ 727,
+ 857,
+ 829,
+ 612,
+ 1461,
+ 361,
+ 1142,
+ 1721,
+ 846,
+ 1110,
+ 652,
+ 1488,
+ 487,
+ 641,
+ 837,
+ 553,
+ 794,
+ 836,
+ 1134,
+ 607,
+ 720,
+ 935,
+ 531,
+ 766,
+ 1311,
+ 618,
+ 419,
+ 455,
+ 406,
+ 902,
+ 720,
+ 952,
+ 763,
+ 649,
+ 547,
+ 1044,
+ 996,
+ 1552,
+ 1471,
+ 1456,
+ 1288,
+ 395,
+ 663,
+ 1056,
+ 1327,
+ 526,
+ 401,
+ 1321,
+ 797,
+ 876,
+ 773,
+ 1336,
+ 452,
+ 193,
+ 243,
+ 507,
+ 809,
+ 419,
+ 780,
+ 459,
+ 519,
+ 733,
+ 580,
+ 848,
+ 1242,
+ 922,
+ 1206,
+ 716,
+ 386,
+ 758,
+ 384,
+ 545,
+ 1070,
+ 610,
+ 917,
+ 744,
+ 608,
+ 1238,
+ 720,
+ 663,
+ 444,
+ 1080,
+ 479,
+ 506,
+ 768,
+ 1134,
+ 815,
+ 396,
+ 507,
+ 439,
+ 1181,
+ 1133,
+ 587,
+ 645,
+ 473,
+ 559,
+ 1092,
+ 1344,
+ 1344,
+ 432,
+ 1613,
+ 664,
+ 1735,
+ 940,
+ 1842,
+ 823,
+ 703,
+ 618,
+ 455,
+ 1149,
+ 827,
+ 657,
+ 737,
+ 871,
+ 838,
+ 1038,
+ 990,
+ 306,
+ 1148,
+ 707,
+ 812,
+ 518,
+ 505,
+ 834,
+ 698,
+ 884,
+ 904,
+ 618,
+ 773,
+ 671,
+ 638,
+ 594,
+ 882,
+ 697,
+ 956,
+ 384,
+ 194,
+ 724,
+ 1293,
+ 933,
+ 1032,
+ 290,
+ 836,
+ 649,
+ 921,
+ 467,
+ 543,
+ 552,
+ 1044,
+ 875,
+ 588,
+ 763,
+ 536,
+ 1408,
+ 718,
+ 625,
+ 703,
+ 1503,
+ 644,
+ 4199,
+ 913,
+ 1505,
+ 788,
+ 793,
+ 686,
+ 974,
+ 576,
+ 579,
+ 336,
+ 520,
+ 565,
+ 604,
+ 1241,
+ 873,
+ 626,
+ 961,
+ 472,
+ 1152,
+ 606,
+ 366,
+ 731,
+ 630,
+ 1374,
+ 372,
+ 958,
+ 664,
+ 388,
+ 1223,
+ 556,
+ 609,
+ 581,
+ 1033,
+ 519,
+ 512,
+ 763,
+ 976,
+ 1129,
+ 645,
+ 1642,
+ 979,
+ 965,
+ 716,
+ 2372,
+ 1126,
+ 1109,
+ 103,
+ 270,
+ 223,
+ 478,
+ 312,
+ 718,
+ 2016,
+ 294,
+ 85,
+ 37,
+ 101,
+ 144,
+ 187,
+ 676,
+ 157,
+ 181,
+ 98,
+ 313,
+ 301,
+ 171,
+ 112,
+ 97,
+ 376,
+ 150,
+ 131,
+ 251,
+ 125,
+ 141,
+ 154,
+ 135,
+ 540,
+ 454,
+ 171,
+ 313,
+ 266,
+ 248,
+ 234,
+ 154,
+ 160,
+ 227,
+ 615,
+ 399,
+ 465,
+ 209,
+ 268,
+ 204,
+ 669,
+ 234,
+ 150,
+ 115,
+ 453,
+ 248,
+ 486,
+ 158,
+ 114,
+ 139,
+ 90,
+ 132,
+ 160,
+ 179,
+ 1077,
+ 1303,
+ 564,
+ 434,
+ 651,
+ 984,
+ 943,
+ 540,
+ 789,
+ 1091,
+ 1132,
+ 1210,
+ 1978,
+ 1122,
+ 854,
+ 835,
+ 924,
+ 453,
+ 609,
+ 1855,
+ 1437,
+ 1788,
+ 150,
+ 741,
+ 898,
+ 543,
+ 1132,
+ 819,
+ 511,
+ 418,
+ 1554,
+ 820,
+ 686,
+ 925,
+ 862,
+ 786,
+ 993,
+ 814,
+ 1084,
+ 1015,
+ 489,
+ 694,
+ 670,
+ 561,
+ 1011,
+ 654,
+ 424,
+ 911,
+ 998,
+ 802,
+ 1057,
+ 622,
+ 522,
+ 1502,
+ 631,
+ 623,
+ 1028,
+ 337,
+ 1265,
+ 485,
+ 589,
+ 1061,
+ 783,
+ 1120,
+ 757,
+ 680,
+ 1468,
+ 709,
+ 477,
+ 276,
+ 670,
+ 732,
+ 531,
+ 1192,
+ 566,
+ 454,
+ 728,
+ 993,
+ 549,
+ 478,
+ 755,
+ 994,
+ 871,
+ 329,
+ 531,
+ 857,
+ 931,
+ 593,
+ 691,
+ 1258,
+ 562,
+ 1154,
+ 705,
+ 1035,
+ 736,
+ 888,
+ 370,
+ 500,
+ 488,
+ 1025,
+ 768,
+ 653,
+ 871,
+ 1532,
+ 952,
+ 493,
+ 2420,
+ 1598,
+ 295,
+ 1059,
+ 2453,
+ 729,
+ 591,
+ 528,
+ 467,
+ 530,
+ 648,
+ 710,
+ 530,
+ 529,
+ 635,
+ 957,
+ 705,
+ 796,
+ 849,
+ 893,
+ 1480,
+ 316,
+ 850,
+ 749,
+ 902,
+ 1074,
+ 980,
+ 549,
+ 536,
+ 481,
+ 664,
+ 579,
+ 1555,
+ 808,
+ 1222,
+ 331,
+ 119,
+ 712,
+ 111,
+ 378,
+ 116,
+ 154,
+ 239,
+ 175,
+ 120,
+ 1447,
+ 187,
+ 382,
+ 294,
+ 143,
+ 83,
+ 499,
+ 350,
+ 320,
+ 156,
+ 168,
+ 180,
+ 96,
+ 377,
+ 396,
+ 63,
+ 181,
+ 182,
+ 137,
+ 106,
+ 196,
+ 195,
+ 229,
+ 227,
+ 166,
+ 363,
+ 266,
+ 544,
+ 301,
+ 207,
+ 116,
+ 217,
+ 350,
+ 106,
+ 272,
+ 71,
+ 122,
+ 395,
+ 261,
+ 159,
+ 427,
+ 266,
+ 95,
+ 796,
+ 197,
+ 126,
+ 323,
+ 101,
+ 188,
+ 203,
+ 101,
+ 80,
+ 119,
+ 156,
+ 186,
+ 139,
+ 126,
+ 268,
+ 3076,
+ 296,
+ 392,
+ 406,
+ 220,
+ 195,
+ 187,
+ 299,
+ 325,
+ 278,
+ 194,
+ 224,
+ 201,
+ 203,
+ 167,
+ 220,
+ 248,
+ 415,
+ 115,
+ 174,
+ 136,
+ 460,
+ 144,
+ 170,
+ 269,
+ 115,
+ 506,
+ 96,
+ 278,
+ 411,
+ 117,
+ 709,
+ 200,
+ 325,
+ 331,
+ 515,
+ 300,
+ 342,
+ 283,
+ 229,
+ 294,
+ 179,
+ 228,
+ 378,
+ 243,
+ 234,
+ 271,
+ 347,
+ 180,
+ 285,
+ 364,
+ 517,
+ 163,
+ 237,
+ 1530,
+ 351,
+ 805,
+ 1176,
+ 165,
+ 387,
+ 739,
+ 243,
+ 313,
+ 397,
+ 771,
+ 268,
+ 329,
+ 707,
+ 482,
+ 1203,
+ 158,
+ 1435,
+ 740,
+ 1138,
+ 465,
+ 463,
+ 2299,
+ 721,
+ 299,
+ 84,
+ 895,
+ 327,
+ 117,
+ 952,
+ 903,
+ 523,
+ 1032,
+ 245,
+ 114,
+ 209,
+ 1190,
+ 143,
+ 1665,
+ 548,
+ 142,
+ 350,
+ 592,
+ 394,
+ 448,
+ 657,
+ 530,
+ 214,
+ 331,
+ 435,
+ 179,
+ 233,
+ 245,
+ 152,
+ 317,
+ 1042,
+ 490,
+ 466,
+ 342,
+ 461,
+ 142,
+ 344,
+ 125,
+ 850,
+ 1073,
+ 1594,
+ 450,
+ 505,
+ 133,
+ 184,
+ 168,
+ 324,
+ 161,
+ 496,
+ 111,
+ 107,
+ 216,
+ 279,
+ 111,
+ 216,
+ 207,
+ 300,
+ 295,
+ 223,
+ 165,
+ 167,
+ 945,
+ 82,
+ 903,
+ 282,
+ 1214,
+ 110,
+ 1217,
+ 389,
+ 171,
+ 512,
+ 140,
+ 135,
+ 441,
+ 355,
+ 170,
+ 129,
+ 118,
+ 405,
+ 1038,
+ 139,
+ 264,
+ 353,
+ 838,
+ 78,
+ 251,
+ 334,
+ 836,
+ 271,
+ 583,
+ 1579,
+ 495,
+ 1025,
+ 298,
+ 1463,
+ 285,
+ 667,
+ 127,
+ 700,
+ 1365,
+ 299,
+ 426,
+ 161,
+ 551,
+ 678,
+ 709,
+ 1017,
+ 1095,
+ 840,
+ 1311,
+ 997,
+ 156,
+ 882,
+ 1007,
+ 404,
+ 367,
+ 130,
+ 1080,
+ 715,
+ 107,
+ 476,
+ 108,
+ 149,
+ 772,
+ 104,
+ 378,
+ 949,
+ 394,
+ 636,
+ 320,
+ 271,
+ 2139,
+ 158,
+ 1332,
+ 1202,
+ 1112,
+ 227,
+ 860,
+ 1550,
+ 670,
+ 133,
+ 190,
+ 785,
+ 712,
+ 107,
+ 194,
+ 216,
+ 720,
+ 586,
+ 691,
+ 567,
+ 904,
+ 349,
+ 325,
+ 227,
+ 76,
+ 148,
+ 97,
+ 185,
+ 241,
+ 163,
+ 345,
+ 163,
+ 1422,
+ 267,
+ 114,
+ 120,
+ 1030,
+ 121,
+ 885,
+ 453,
+ 1333,
+ 943,
+ 235,
+ 146,
+ 333,
+ 110,
+ 274,
+ 1348,
+ 207,
+ 109,
+ 100,
+ 211,
+ 243,
+ 121,
+ 356,
+ 158,
+ 847,
+ 242,
+ 137,
+ 157,
+ 204,
+ 341,
+ 400,
+ 621,
+ 219,
+ 315,
+ 314,
+ 319,
+ 104,
+ 145,
+ 94,
+ 165,
+ 416,
+ 307,
+ 138,
+ 245,
+ 124,
+ 107,
+ 229,
+ 1288,
+ 545,
+ 371,
+ 229,
+ 266,
+ 247,
+ 172,
+ 270,
+ 413,
+ 163,
+ 522,
+ 116,
+ 160,
+ 693,
+ 227,
+ 202,
+ 97,
+ 148,
+ 444,
+ 360,
+ 122,
+ 177,
+ 507,
+ 636,
+ 961,
+ 523,
+ 510,
+ 571,
+ 400,
+ 968,
+ 701,
+ 381,
+ 571,
+ 239,
+ 224,
+ 662,
+ 494,
+ 412,
+ 499,
+ 407,
+ 447,
+ 619,
+ 387,
+ 313,
+ 871,
+ 297,
+ 413,
+ 231,
+ 328,
+ 281,
+ 733,
+ 335,
+ 252,
+ 815,
+ 620,
+ 354,
+ 271,
+ 294,
+ 383,
+ 177,
+ 368,
+ 390,
+ 381,
+ 218,
+ 465,
+ 900,
+ 394,
+ 381,
+ 202,
+ 375,
+ 779,
+ 246,
+ 504,
+ 337,
+ 200,
+ 369,
+ 341,
+ 297,
+ 237,
+ 687,
+ 266,
+ 225,
+ 344,
+ 400,
+ 800,
+ 316,
+ 461,
+ 526,
+ 315,
+ 423,
+ 209,
+ 457,
+ 260,
+ 354,
+ 482,
+ 309,
+ 261,
+ 439,
+ 616,
+ 278,
+ 269,
+ 532,
+ 1373,
+ 574,
+ 917,
+ 242,
+ 430,
+ 483,
+ 306,
+ 452,
+ 473,
+ 352,
+ 260,
+ 780,
+ 580,
+ 258,
+ 834,
+ 435,
+ 615,
+ 555,
+ 811,
+ 460,
+ 477,
+ 970,
+ 266,
+ 618,
+ 774,
+ 861,
+ 240,
+ 327,
+ 874,
+ 416,
+ 652,
+ 475,
+ 645,
+ 342,
+ 301,
+ 1143,
+ 380,
+ 427,
+ 370,
+ 949,
+ 753,
+ 1260,
+ 652,
+ 1034,
+ 766,
+ 266,
+ 502,
+ 567,
+ 501,
+ 259,
+ 265,
+ 675,
+ 410,
+ 303,
+ 392,
+ 193,
+ 267,
+ 1602,
+ 244,
+ 447,
+ 226,
+ 597,
+ 417,
+ 301,
+ 1076,
+ 643,
+ 251,
+ 293,
+ 592,
+ 274,
+ 532,
+ 287,
+ 300,
+ 367,
+ 214,
+ 228,
+ 434,
+ 1046,
+ 237,
+ 458,
+ 922,
+ 601,
+ 353,
+ 949,
+ 742,
+ 1370,
+ 268,
+ 716,
+ 365,
+ 617,
+ 333,
+ 483,
+ 1091,
+ 206,
+ 1063,
+ 340,
+ 429,
+ 331,
+ 775,
+ 841,
+ 640,
+ 673,
+ 226,
+ 762,
+ 668,
+ 494,
+ 1240,
+ 895,
+ 851,
+ 392,
+ 731,
+ 863,
+ 1090,
+ 838,
+ 259,
+ 955,
+ 1221,
+ 499,
+ 788,
+ 894,
+ 500,
+ 521,
+ 862,
+ 672,
+ 1085,
+ 451,
+ 653,
+ 731,
+ 488,
+ 767,
+ 954,
+ 576,
+ 597,
+ 597,
+ 984,
+ 611,
+ 1205,
+ 837,
+ 445,
+ 519,
+ 687,
+ 540,
+ 550,
+ 754,
+ 554,
+ 396,
+ 1489,
+ 1347,
+ 1074,
+ 667,
+ 686,
+ 606,
+ 923,
+ 623,
+ 1046,
+ 1148,
+ 855,
+ 542,
+ 609,
+ 647,
+ 574,
+ 1129,
+ 481,
+ 476,
+ 957,
+ 347,
+ 1030,
+ 895,
+ 798,
+ 594,
+ 1806,
+ 1516,
+ 792,
+ 553,
+ 1135,
+ 597,
+ 662,
+ 729,
+ 1077,
+ 763,
+ 704,
+ 501,
+ 1276,
+ 308,
+ 763,
+ 662,
+ 568,
+ 1448,
+ 656,
+ 728,
+ 720,
+ 685,
+ 1024,
+ 682,
+ 423,
+ 657,
+ 1038,
+ 657,
+ 689,
+ 629,
+ 802,
+ 1514,
+ 934,
+ 733,
+ 474,
+ 701,
+ 666,
+ 653,
+ 610,
+ 583,
+ 672,
+ 608,
+ 475,
+ 966,
+ 1388,
+ 911,
+ 546,
+ 731,
+ 365,
+ 882,
+ 515,
+ 580,
+ 1203,
+ 560,
+ 612,
+ 703,
+ 690,
+ 1062,
+ 826,
+ 590,
+ 918,
+ 787,
+ 1182,
+ 725,
+ 309,
+ 549,
+ 844,
+ 955,
+ 458,
+ 409,
+ 1531,
+ 637,
+ 609,
+ 1710,
+ 614,
+ 897,
+ 398,
+ 863,
+ 750,
+ 775,
+ 556,
+ 737,
+ 496,
+ 863,
+ 774,
+ 1073,
+ 610,
+ 850,
+ 570,
+ 516,
+ 585,
+ 590,
+ 902,
+ 669,
+ 391,
+ 394,
+ 302,
+ 546,
+ 1512,
+ 562,
+ 734,
+ 476,
+ 747,
+ 716,
+ 1101,
+ 366,
+ 674,
+ 622,
+ 314,
+ 809,
+ 829,
+ 937,
+ 1970,
+ 1975,
+ 482,
+ 954,
+ 1298,
+ 1119,
+ 698,
+ 654,
+ 649,
+ 531,
+ 1279,
+ 873,
+ 440,
+ 689,
+ 443,
+ 1130,
+ 429,
+ 722,
+ 467,
+ 533,
+ 558,
+ 667,
+ 715,
+ 590,
+ 854,
+ 646,
+ 345,
+ 456,
+ 578,
+ 786,
+ 633,
+ 307,
+ 607,
+ 874,
+ 492,
+ 563,
+ 406,
+ 691,
+ 1129,
+ 191,
+ 933,
+ 224,
+ 668,
+ 479,
+ 888,
+ 1071,
+ 1060,
+ 1543,
+ 688,
+ 566,
+ 959,
+ 532,
+ 1094,
+ 604,
+ 647,
+ 676,
+ 153,
+ 667,
+ 670,
+ 655,
+ 551,
+ 409,
+ 382,
+ 311,
+ 760,
+ 1190,
+ 899,
+ 326,
+ 744,
+ 485,
+ 637,
+ 523,
+ 792,
+ 576,
+ 669,
+ 693,
+ 1015,
+ 663,
+ 437,
+ 562,
+ 659,
+ 532,
+ 837,
+ 832,
+ 317,
+ 858,
+ 611,
+ 1111,
+ 1357,
+ 709,
+ 406,
+ 1002,
+ 880,
+ 934,
+ 655,
+ 1871,
+ 1068,
+ 462,
+ 1313,
+ 623,
+ 1598,
+ 692,
+ 722,
+ 536,
+ 473,
+ 442,
+ 903,
+ 1340,
+ 487,
+ 2301,
+ 493,
+ 843,
+ 565,
+ 507,
+ 431,
+ 600,
+ 504,
+ 700,
+ 1008,
+ 525,
+ 612,
+ 618,
+ 801,
+ 827,
+ 767,
+ 637,
+ 638,
+ 1173,
+ 1359,
+ 639,
+ 317,
+ 324,
+ 582,
+ 199,
+ 354,
+ 796,
+ 491,
+ 431,
+ 271,
+ 316,
+ 554,
+ 223,
+ 182,
+ 198,
+ 293,
+ 231,
+ 449,
+ 685,
+ 288,
+ 283,
+ 421,
+ 119,
+ 397,
+ 296,
+ 867,
+ 269,
+ 915,
+ 337,
+ 487,
+ 288,
+ 1064,
+ 213,
+ 226,
+ 377,
+ 158,
+ 262,
+ 315,
+ 414,
+ 601,
+ 133,
+ 1078,
+ 640,
+ 482,
+ 91,
+ 165,
+ 326,
+ 208,
+ 1346,
+ 228,
+ 131,
+ 390,
+ 445,
+ 579,
+ 427,
+ 226,
+ 396,
+ 139,
+ 253,
+ 185,
+ 229,
+ 439,
+ 193,
+ 242,
+ 116,
+ 155,
+ 776,
+ 281,
+ 119,
+ 200,
+ 329,
+ 367,
+ 412,
+ 165,
+ 108,
+ 223,
+ 628,
+ 187,
+ 513,
+ 174,
+ 324,
+ 295,
+ 264,
+ 103,
+ 331,
+ 377,
+ 205,
+ 287,
+ 263,
+ 192,
+ 166,
+ 327,
+ 69,
+ 84,
+ 326,
+ 1460,
+ 1048,
+ 335,
+ 412,
+ 177,
+ 579,
+ 339,
+ 202,
+ 174,
+ 114,
+ 215,
+ 232,
+ 284,
+ 253,
+ 1144,
+ 163,
+ 257,
+ 479,
+ 437,
+ 395,
+ 145,
+ 107,
+ 663,
+ 350,
+ 282,
+ 294,
+ 690,
+ 384,
+ 596,
+ 654,
+ 169,
+ 195,
+ 103,
+ 430,
+ 417,
+ 160,
+ 270,
+ 200,
+ 82,
+ 712,
+ 74,
+ 359,
+ 251,
+ 1210,
+ 310,
+ 482,
+ 924,
+ 318,
+ 192,
+ 181,
+ 250,
+ 236,
+ 179,
+ 305,
+ 163,
+ 541,
+ 209,
+ 262,
+ 206,
+ 115,
+ 406,
+ 244,
+ 592,
+ 437,
+ 313,
+ 705,
+ 198,
+ 210,
+ 117,
+ 110,
+ 321,
+ 296,
+ 411,
+ 593,
+ 302,
+ 165,
+ 591,
+ 385,
+ 174,
+ 238,
+ 170,
+ 539,
+ 447,
+ 214,
+ 300,
+ 200,
+ 436,
+ 200,
+ 431,
+ 837,
+ 725,
+ 144,
+ 617,
+ 140,
+ 247,
+ 187,
+ 510,
+ 328,
+ 262,
+ 280,
+ 207,
+ 449,
+ 224,
+ 400,
+ 217,
+ 160,
+ 352,
+ 787,
+ 323,
+ 160,
+ 239,
+ 156,
+ 194,
+ 96,
+ 136,
+ 81,
+ 269,
+ 327,
+ 296,
+ 147,
+ 121,
+ 89,
+ 137,
+ 1161,
+ 437,
+ 578,
+ 592,
+ 166,
+ 174,
+ 397,
+ 324,
+ 275,
+ 199,
+ 255,
+ 232,
+ 462,
+ 255,
+ 302,
+ 149,
+ 191,
+ 207,
+ 493,
+ 509,
+ 657,
+ 365,
+ 159,
+ 276,
+ 522,
+ 577,
+ 103,
+ 366,
+ 201,
+ 166,
+ 548,
+ 304,
+ 146,
+ 126,
+ 244,
+ 157,
+ 257,
+ 148,
+ 107,
+ 138,
+ 458,
+ 243,
+ 200,
+ 131,
+ 234,
+ 239,
+ 160,
+ 993,
+ 529,
+ 183,
+ 258,
+ 239,
+ 186,
+ 126,
+ 163,
+ 95,
+ 579,
+ 491,
+ 532,
+ 95,
+ 351,
+ 372,
+ 288,
+ 177,
+ 415,
+ 382,
+ 257,
+ 181,
+ 284,
+ 651,
+ 155,
+ 322,
+ 89,
+ 173,
+ 129,
+ 136,
+ 263,
+ 245,
+ 355,
+ 114,
+ 162,
+ 551,
+ 243,
+ 393,
+ 813,
+ 1603,
+ 259,
+ 280,
+ 293,
+ 295,
+ 883,
+ 269,
+ 459,
+ 255,
+ 227,
+ 185,
+ 205,
+ 224,
+ 140,
+ 260,
+ 372,
+ 261,
+ 252,
+ 252,
+ 356,
+ 363,
+ 218,
+ 367,
+ 566,
+ 309,
+ 396,
+ 940,
+ 276,
+ 567,
+ 503,
+ 135,
+ 176,
+ 247,
+ 203,
+ 446,
+ 175,
+ 1007,
+ 409,
+ 438,
+ 704,
+ 308,
+ 202,
+ 270,
+ 227,
+ 316,
+ 964,
+ 429,
+ 407,
+ 682,
+ 180,
+ 370,
+ 257,
+ 243,
+ 167,
+ 361,
+ 268,
+ 896,
+ 349,
+ 210,
+ 153,
+ 97,
+ 253,
+ 104,
+ 336,
+ 125,
+ 1084,
+ 139,
+ 332,
+ 822,
+ 99,
+ 486,
+ 573,
+ 576,
+ 219,
+ 642,
+ 185,
+ 600,
+ 249,
+ 305,
+ 1019,
+ 211,
+ 414,
+ 290,
+ 277,
+ 254,
+ 253,
+ 179,
+ 394,
+ 231,
+ 157,
+ 155,
+ 975,
+ 427,
+ 355,
+ 131,
+ 1452,
+ 310,
+ 338,
+ 256,
+ 254,
+ 550,
+ 345,
+ 358,
+ 79,
+ 289,
+ 714,
+ 255,
+ 87,
+ 530,
+ 456,
+ 142,
+ 325,
+ 1088,
+ 453,
+ 295,
+ 262,
+ 215,
+ 221,
+ 130,
+ 233,
+ 353,
+ 182,
+ 231,
+ 328,
+ 923,
+ 167,
+ 559,
+ 146,
+ 187,
+ 161,
+ 252,
+ 235,
+ 155,
+ 289,
+ 179,
+ 213,
+ 1416,
+ 265,
+ 704,
+ 136,
+ 176,
+ 167,
+ 408,
+ 140,
+ 139,
+ 149,
+ 349,
+ 221,
+ 175,
+ 89,
+ 206,
+ 267,
+ 464,
+ 429,
+ 623,
+ 182,
+ 668,
+ 449,
+ 582,
+ 1336,
+ 239,
+ 641,
+ 576,
+ 73,
+ 398,
+ 313,
+ 307,
+ 131,
+ 267,
+ 417,
+ 332,
+ 338,
+ 289,
+ 489,
+ 784,
+ 222,
+ 425,
+ 254,
+ 414,
+ 148,
+ 315,
+ 282,
+ 399,
+ 192,
+ 464,
+ 293,
+ 227,
+ 477,
+ 204,
+ 738,
+ 320,
+ 479,
+ 354,
+ 275,
+ 150,
+ 156,
+ 225,
+ 209,
+ 436,
+ 326,
+ 186,
+ 137,
+ 125,
+ 94,
+ 276,
+ 182,
+ 100,
+ 201,
+ 391,
+ 190,
+ 880,
+ 260,
+ 211,
+ 405,
+ 308,
+ 348,
+ 186,
+ 199,
+ 286,
+ 163,
+ 220,
+ 343,
+ 711,
+ 207,
+ 341,
+ 340,
+ 606,
+ 156,
+ 162,
+ 460,
+ 278,
+ 249,
+ 205,
+ 215,
+ 161,
+ 148,
+ 587,
+ 193,
+ 370,
+ 395,
+ 532,
+ 441,
+ 536,
+ 238,
+ 768,
+ 225,
+ 240,
+ 173,
+ 232,
+ 145,
+ 195,
+ 338,
+ 329,
+ 267,
+ 474,
+ 377,
+ 151,
+ 149,
+ 217,
+ 158,
+ 184,
+ 63,
+ 78,
+ 228,
+ 374,
+ 168,
+ 273,
+ 204,
+ 276,
+ 531,
+ 91,
+ 116,
+ 126,
+ 252,
+ 159,
+ 343,
+ 232,
+ 712,
+ 511,
+ 192,
+ 130,
+ 479,
+ 531,
+ 242,
+ 555,
+ 291,
+ 415,
+ 128,
+ 210,
+ 323,
+ 259,
+ 212,
+ 445,
+ 460,
+ 398,
+ 81,
+ 207,
+ 622,
+ 173,
+ 517,
+ 155,
+ 98,
+ 186,
+ 267,
+ 470,
+ 271,
+ 265,
+ 212,
+ 181,
+ 531,
+ 140,
+ 233,
+ 121,
+ 471,
+ 444,
+ 365,
+ 331,
+ 328,
+ 520,
+ 730,
+ 293,
+ 230,
+ 555,
+ 434,
+ 569,
+ 350,
+ 219,
+ 211,
+ 587,
+ 351,
+ 800,
+ 199,
+ 145,
+ 293,
+ 495,
+ 206,
+ 679,
+ 261,
+ 169,
+ 445,
+ 260,
+ 108,
+ 376,
+ 475,
+ 394,
+ 569,
+ 408,
+ 345,
+ 397,
+ 259,
+ 169,
+ 84,
+ 185,
+ 230,
+ 346,
+ 260,
+ 283,
+ 212,
+ 91,
+ 91,
+ 210,
+ 100,
+ 290,
+ 323,
+ 170,
+ 722,
+ 150,
+ 458,
+ 1962,
+ 107,
+ 173,
+ 89,
+ 126,
+ 91,
+ 106,
+ 925,
+ 152,
+ 292,
+ 387,
+ 543,
+ 267,
+ 323,
+ 1104,
+ 773,
+ 65,
+ 83,
+ 173,
+ 239,
+ 369,
+ 299,
+ 692,
+ 210,
+ 294,
+ 159,
+ 277,
+ 117,
+ 234,
+ 305,
+ 447,
+ 194,
+ 238,
+ 137,
+ 849,
+ 215,
+ 144,
+ 384,
+ 296,
+ 371,
+ 201,
+ 81,
+ 294,
+ 335,
+ 234,
+ 137,
+ 1106,
+ 105,
+ 511,
+ 138,
+ 78,
+ 146,
+ 348,
+ 435,
+ 411,
+ 79,
+ 1226,
+ 242,
+ 221,
+ 210,
+ 301,
+ 204,
+ 1003,
+ 216,
+ 958,
+ 364,
+ 290,
+ 441,
+ 244,
+ 134,
+ 128,
+ 166,
+ 570,
+ 115,
+ 186,
+ 847,
+ 154,
+ 170,
+ 154,
+ 233,
+ 306,
+ 434,
+ 130,
+ 156,
+ 324,
+ 136,
+ 342,
+ 131,
+ 98,
+ 385,
+ 328,
+ 332,
+ 148,
+ 373,
+ 213,
+ 595,
+ 518,
+ 427,
+ 676,
+ 386,
+ 192,
+ 828,
+ 576,
+ 825,
+ 467,
+ 512,
+ 749,
+ 135,
+ 307,
+ 287,
+ 107,
+ 200,
+ 442,
+ 249,
+ 360,
+ 257,
+ 313,
+ 127,
+ 133,
+ 504,
+ 1002,
+ 306,
+ 260,
+ 97,
+ 344,
+ 336,
+ 270,
+ 130,
+ 374,
+ 149,
+ 427,
+ 438,
+ 221,
+ 292,
+ 281,
+ 257,
+ 251,
+ 703,
+ 355,
+ 131,
+ 207,
+ 96,
+ 297,
+ 102,
+ 424,
+ 137,
+ 83,
+ 298,
+ 255,
+ 418,
+ 353,
+ 113,
+ 149,
+ 96,
+ 509,
+ 371,
+ 524,
+ 207,
+ 164,
+ 423,
+ 139,
+ 410,
+ 169,
+ 142,
+ 209,
+ 1707,
+ 189,
+ 251,
+ 401,
+ 264,
+ 106,
+ 215,
+ 288,
+ 124,
+ 136,
+ 220,
+ 746,
+ 377,
+ 424,
+ 212,
+ 373,
+ 144,
+ 480,
+ 445,
+ 294,
+ 257,
+ 368,
+ 416,
+ 121,
+ 106,
+ 1024,
+ 182,
+ 162,
+ 209,
+ 102,
+ 1233,
+ 187,
+ 149,
+ 566,
+ 537,
+ 217,
+ 181,
+ 215,
+ 358,
+ 179,
+ 322,
+ 284,
+ 383,
+ 358,
+ 749,
+ 355,
+ 464,
+ 402,
+ 455,
+ 368,
+ 178,
+ 178,
+ 262,
+ 118,
+ 169,
+ 165,
+ 98,
+ 201,
+ 113,
+ 696,
+ 347,
+ 182,
+ 775,
+ 193,
+ 406,
+ 336,
+ 147,
+ 195,
+ 234,
+ 318,
+ 64,
+ 95,
+ 89,
+ 344,
+ 266,
+ 301,
+ 254,
+ 293,
+ 594,
+ 213,
+ 459,
+ 406,
+ 166,
+ 69,
+ 199,
+ 131,
+ 229,
+ 166,
+ 244,
+ 158,
+ 172,
+ 241,
+ 513,
+ 71,
+ 90,
+ 227,
+ 123,
+ 253,
+ 226,
+ 88,
+ 134,
+ 126,
+ 99,
+ 104,
+ 226,
+ 89,
+ 169,
+ 135,
+ 134,
+ 247,
+ 1127,
+ 192,
+ 707,
+ 627,
+ 411,
+ 176,
+ 338,
+ 181,
+ 208,
+ 122,
+ 2184,
+ 135,
+ 212,
+ 226,
+ 210,
+ 495,
+ 259,
+ 239,
+ 271,
+ 227,
+ 182,
+ 256,
+ 130,
+ 295,
+ 301,
+ 146,
+ 167,
+ 183,
+ 432,
+ 250,
+ 175,
+ 257,
+ 445,
+ 105,
+ 984,
+ 1248,
+ 85,
+ 709,
+ 209,
+ 134,
+ 747,
+ 409,
+ 135,
+ 393,
+ 255,
+ 309,
+ 525,
+ 242,
+ 325,
+ 968,
+ 372,
+ 182,
+ 234,
+ 487,
+ 232,
+ 208,
+ 414,
+ 296,
+ 342,
+ 238,
+ 541,
+ 319,
+ 160,
+ 1628,
+ 310,
+ 346,
+ 415,
+ 244,
+ 284,
+ 155,
+ 472,
+ 705,
+ 439,
+ 229,
+ 344,
+ 415,
+ 583,
+ 620,
+ 329,
+ 288,
+ 179,
+ 854,
+ 479,
+ 343,
+ 395,
+ 336,
+ 429,
+ 798,
+ 805,
+ 422,
+ 232,
+ 582,
+ 141,
+ 166,
+ 351,
+ 476,
+ 324,
+ 314,
+ 354,
+ 546,
+ 412,
+ 330,
+ 726,
+ 324,
+ 170,
+ 379,
+ 406,
+ 415,
+ 264,
+ 367,
+ 267,
+ 321,
+ 256,
+ 410,
+ 305,
+ 282,
+ 422,
+ 213,
+ 500,
+ 150,
+ 679,
+ 1141,
+ 206,
+ 315,
+ 387,
+ 824,
+ 205,
+ 473,
+ 893,
+ 284,
+ 689,
+ 296,
+ 1370,
+ 449,
+ 196,
+ 63,
+ 241,
+ 229,
+ 904,
+ 591,
+ 229,
+ 525,
+ 658,
+ 368,
+ 177,
+ 539,
+ 313,
+ 292,
+ 228,
+ 187,
+ 263,
+ 235,
+ 363,
+ 141,
+ 557,
+ 145,
+ 355,
+ 153,
+ 136,
+ 834,
+ 221,
+ 180,
+ 251,
+ 148,
+ 2486,
+ 456,
+ 562,
+ 115,
+ 418,
+ 341,
+ 87,
+ 373,
+ 257,
+ 219,
+ 809,
+ 319,
+ 292,
+ 498,
+ 376,
+ 264,
+ 104,
+ 124,
+ 265,
+ 409,
+ 139,
+ 225,
+ 185,
+ 469,
+ 176,
+ 568,
+ 241,
+ 301,
+ 236,
+ 212,
+ 305,
+ 288,
+ 700,
+ 273,
+ 295,
+ 450,
+ 207,
+ 436,
+ 239,
+ 106,
+ 257,
+ 335,
+ 257,
+ 171,
+ 290,
+ 422,
+ 215,
+ 212,
+ 229,
+ 213,
+ 257,
+ 427,
+ 506,
+ 161,
+ 577,
+ 300,
+ 361,
+ 180,
+ 261,
+ 279,
+ 459,
+ 263,
+ 295,
+ 231,
+ 128,
+ 272,
+ 237,
+ 420,
+ 265,
+ 910,
+ 467,
+ 593,
+ 293,
+ 254,
+ 215,
+ 222,
+ 174,
+ 273,
+ 191,
+ 156,
+ 187,
+ 201,
+ 281,
+ 92,
+ 341,
+ 433,
+ 277,
+ 236,
+ 359,
+ 110,
+ 238,
+ 236,
+ 262,
+ 577,
+ 170,
+ 193,
+ 175,
+ 210,
+ 149,
+ 280,
+ 558,
+ 216,
+ 358,
+ 111,
+ 179,
+ 189,
+ 317,
+ 196,
+ 1307,
+ 222,
+ 335,
+ 618,
+ 559,
+ 481,
+ 158,
+ 333,
+ 1397,
+ 176,
+ 176,
+ 295,
+ 232,
+ 218,
+ 240,
+ 278,
+ 398,
+ 173,
+ 185,
+ 200,
+ 200,
+ 141,
+ 330,
+ 214,
+ 218,
+ 961,
+ 330,
+ 634,
+ 125,
+ 529,
+ 142,
+ 1143,
+ 162,
+ 476,
+ 595,
+ 403,
+ 623,
+ 654,
+ 224,
+ 229,
+ 494,
+ 407,
+ 165,
+ 554,
+ 263,
+ 342,
+ 296,
+ 291,
+ 888,
+ 194,
+ 182,
+ 688,
+ 192,
+ 1472,
+ 328,
+ 325,
+ 426,
+ 321,
+ 370,
+ 159,
+ 623,
+ 717,
+ 882,
+ 210,
+ 277,
+ 388,
+ 395,
+ 305,
+ 449,
+ 262,
+ 183,
+ 551,
+ 552,
+ 268,
+ 164,
+ 556,
+ 153,
+ 209,
+ 1267,
+ 389,
+ 258,
+ 338,
+ 232,
+ 443,
+ 246,
+ 192,
+ 250,
+ 195,
+ 613,
+ 211,
+ 292,
+ 662,
+ 300,
+ 226,
+ 211,
+ 583,
+ 483,
+ 193,
+ 309,
+ 176,
+ 152,
+ 228,
+ 317,
+ 236,
+ 248,
+ 360,
+ 372,
+ 414,
+ 289,
+ 400,
+ 306,
+ 263,
+ 216,
+ 328,
+ 331,
+ 356,
+ 234,
+ 567,
+ 404,
+ 532,
+ 220,
+ 700,
+ 1205,
+ 407,
+ 787,
+ 396,
+ 466,
+ 556,
+ 740,
+ 272,
+ 444,
+ 508,
+ 387,
+ 336,
+ 353,
+ 661,
+ 472,
+ 420,
+ 154,
+ 291,
+ 342,
+ 351,
+ 214,
+ 403,
+ 407,
+ 374,
+ 375,
+ 382,
+ 699,
+ 168,
+ 146,
+ 641,
+ 196,
+ 393,
+ 272,
+ 410,
+ 289,
+ 175,
+ 135,
+ 530,
+ 283,
+ 93,
+ 181,
+ 820,
+ 1178,
+ 489,
+ 460,
+ 275,
+ 417,
+ 473,
+ 538,
+ 663,
+ 540,
+ 775,
+ 201,
+ 326,
+ 347,
+ 296,
+ 303,
+ 434,
+ 407,
+ 657,
+ 226,
+ 238,
+ 310,
+ 302,
+ 187,
+ 190,
+ 200,
+ 150,
+ 206,
+ 712,
+ 874,
+ 479,
+ 192,
+ 278,
+ 422,
+ 434,
+ 187,
+ 245,
+ 661,
+ 270,
+ 212,
+ 458,
+ 713,
+ 614,
+ 293,
+ 563,
+ 167,
+ 485,
+ 619,
+ 379,
+ 910,
+ 700,
+ 243,
+ 208,
+ 292,
+ 605,
+ 288,
+ 339,
+ 383,
+ 1720,
+ 169,
+ 176,
+ 252,
+ 215,
+ 867,
+ 522,
+ 856,
+ 706,
+ 342,
+ 1407,
+ 339,
+ 671,
+ 1207,
+ 310,
+ 213,
+ 300,
+ 276,
+ 472,
+ 266,
+ 297,
+ 281,
+ 345,
+ 325,
+ 452,
+ 247,
+ 363,
+ 563,
+ 737,
+ 265,
+ 401,
+ 383,
+ 222,
+ 586,
+ 660,
+ 271,
+ 421,
+ 167,
+ 598,
+ 263,
+ 274,
+ 337,
+ 286,
+ 275,
+ 319,
+ 301,
+ 395,
+ 609,
+ 561,
+ 423,
+ 217,
+ 687,
+ 391,
+ 667,
+ 194,
+ 251,
+ 128,
+ 140,
+ 209,
+ 267,
+ 335,
+ 319,
+ 396,
+ 386,
+ 667,
+ 229,
+ 398,
+ 273,
+ 276,
+ 346,
+ 229,
+ 480,
+ 411,
+ 414,
+ 449,
+ 967,
+ 344,
+ 483,
+ 474,
+ 341,
+ 464,
+ 398,
+ 210,
+ 375,
+ 562,
+ 452,
+ 567,
+ 796,
+ 250,
+ 305,
+ 195,
+ 363,
+ 178,
+ 617,
+ 475,
+ 317,
+ 309,
+ 337,
+ 360,
+ 256,
+ 577,
+ 272,
+ 413,
+ 334,
+ 603,
+ 355,
+ 817,
+ 247,
+ 276,
+ 604,
+ 897,
+ 287,
+ 268,
+ 219,
+ 367,
+ 346,
+ 957,
+ 252,
+ 361,
+ 552,
+ 390,
+ 951,
+ 250,
+ 198,
+ 392,
+ 815,
+ 316,
+ 486,
+ 268,
+ 806,
+ 457,
+ 484,
+ 207,
+ 253,
+ 1148,
+ 268,
+ 173,
+ 230,
+ 187,
+ 568,
+ 212,
+ 173,
+ 204,
+ 178,
+ 355,
+ 1008,
+ 316,
+ 143,
+ 314,
+ 355,
+ 942,
+ 355,
+ 1193,
+ 368,
+ 138,
+ 321,
+ 248,
+ 174,
+ 860,
+ 608,
+ 351,
+ 350,
+ 192,
+ 251,
+ 196,
+ 396,
+ 275,
+ 284,
+ 183,
+ 546,
+ 414,
+ 607,
+ 666,
+ 527,
+ 606,
+ 287,
+ 496,
+ 340,
+ 429,
+ 471,
+ 817,
+ 115,
+ 462,
+ 388,
+ 588,
+ 169,
+ 332,
+ 349,
+ 386,
+ 200,
+ 396,
+ 426,
+ 268,
+ 519,
+ 270,
+ 417,
+ 700,
+ 292,
+ 304,
+ 230,
+ 367,
+ 1005,
+ 955,
+ 196,
+ 317,
+ 341,
+ 249,
+ 482,
+ 481,
+ 187,
+ 261,
+ 279,
+ 654,
+ 592,
+ 263,
+ 771,
+ 288,
+ 182,
+ 560,
+ 651,
+ 178,
+ 250,
+ 180,
+ 139,
+ 296,
+ 250,
+ 118,
+ 470,
+ 191,
+ 153,
+ 293,
+ 231,
+ 508,
+ 203,
+ 544,
+ 172,
+ 374,
+ 318,
+ 324,
+ 736,
+ 633,
+ 245,
+ 215,
+ 323,
+ 303,
+ 258,
+ 562,
+ 218,
+ 178,
+ 174,
+ 366,
+ 177,
+ 744,
+ 362,
+ 265,
+ 324,
+ 1087,
+ 242,
+ 97,
+ 245,
+ 412,
+ 447,
+ 372,
+ 261,
+ 164,
+ 356,
+ 317,
+ 244,
+ 1363,
+ 425,
+ 233,
+ 237,
+ 248,
+ 765,
+ 222,
+ 345,
+ 295,
+ 350,
+ 175,
+ 361,
+ 1226,
+ 504,
+ 312,
+ 265,
+ 201,
+ 261,
+ 461,
+ 222,
+ 633,
+ 308,
+ 394,
+ 177,
+ 211,
+ 318,
+ 239,
+ 205,
+ 2035,
+ 265,
+ 326,
+ 343,
+ 253,
+ 185,
+ 443,
+ 634,
+ 415,
+ 222,
+ 840,
+ 269,
+ 729,
+ 481,
+ 193,
+ 327,
+ 265,
+ 369,
+ 293,
+ 532,
+ 1440,
+ 291,
+ 529,
+ 362,
+ 799,
+ 404,
+ 150,
+ 270,
+ 277,
+ 252,
+ 219,
+ 841,
+ 194,
+ 369,
+ 255,
+ 415,
+ 250,
+ 728,
+ 314,
+ 386,
+ 190,
+ 337,
+ 201,
+ 288,
+ 638,
+ 210,
+ 630,
+ 830,
+ 358,
+ 606,
+ 1081,
+ 284,
+ 216,
+ 261,
+ 404,
+ 530,
+ 430,
+ 202,
+ 209,
+ 305,
+ 204,
+ 167,
+ 386,
+ 268,
+ 1042,
+ 211,
+ 256,
+ 218,
+ 273,
+ 363,
+ 473,
+ 358,
+ 279,
+ 221,
+ 409,
+ 230,
+ 194,
+ 404,
+ 251,
+ 506,
+ 1640,
+ 396,
+ 316,
+ 200,
+ 953,
+ 511,
+ 216,
+ 213,
+ 161,
+ 173,
+ 225,
+ 143,
+ 574,
+ 193,
+ 463,
+ 270,
+ 303,
+ 319,
+ 190,
+ 452,
+ 954,
+ 327,
+ 294,
+ 285,
+ 374,
+ 164,
+ 328,
+ 284,
+ 231,
+ 336,
+ 185,
+ 263,
+ 175,
+ 208,
+ 397,
+ 569,
+ 155,
+ 183,
+ 182,
+ 396,
+ 337,
+ 209,
+ 409,
+ 156,
+ 244,
+ 272,
+ 272,
+ 173,
+ 232,
+ 249,
+ 395,
+ 262,
+ 188,
+ 1298,
+ 315,
+ 282,
+ 600,
+ 232,
+ 245,
+ 678,
+ 311,
+ 486,
+ 649,
+ 808,
+ 608,
+ 275,
+ 391,
+ 218,
+ 1246,
+ 236,
+ 194,
+ 319,
+ 437,
+ 251,
+ 369,
+ 363,
+ 401,
+ 450,
+ 278,
+ 252,
+ 165,
+ 383,
+ 203,
+ 362,
+ 253,
+ 323,
+ 209,
+ 190,
+ 194,
+ 252,
+ 585,
+ 326,
+ 491,
+ 246,
+ 301,
+ 509,
+ 187,
+ 1176,
+ 567,
+ 310,
+ 464,
+ 509,
+ 252,
+ 526,
+ 222,
+ 767,
+ 337,
+ 898,
+ 178,
+ 621,
+ 487,
+ 150,
+ 411,
+ 453,
+ 178,
+ 1032,
+ 759,
+ 549,
+ 330,
+ 339,
+ 738,
+ 394,
+ 716,
+ 234,
+ 380,
+ 554,
+ 344,
+ 608,
+ 225,
+ 304,
+ 400,
+ 182,
+ 253,
+ 226,
+ 297,
+ 215,
+ 211,
+ 318,
+ 604,
+ 238,
+ 701,
+ 711,
+ 882,
+ 508,
+ 184,
+ 255,
+ 258,
+ 188,
+ 159,
+ 360,
+ 742,
+ 449,
+ 282,
+ 467,
+ 334,
+ 394,
+ 301,
+ 404,
+ 289,
+ 357,
+ 482,
+ 413,
+ 238,
+ 449,
+ 330,
+ 1556,
+ 226,
+ 224,
+ 300,
+ 386,
+ 456,
+ 260,
+ 597,
+ 244,
+ 344,
+ 237,
+ 315,
+ 741,
+ 528,
+ 252,
+ 712,
+ 397,
+ 526,
+ 655,
+ 545,
+ 363,
+ 514,
+ 843,
+ 385,
+ 1868,
+ 403,
+ 651,
+ 112,
+ 353,
+ 329,
+ 208,
+ 483,
+ 281,
+ 334,
+ 442
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "duration"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no campaign=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 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,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 4,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 5,
+ 5,
+ 4,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 3,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 5,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 3,
+ 1,
+ 6,
+ 4,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 3,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 4,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 5,
+ 1,
+ 1,
+ 5,
+ 1,
+ 5,
+ 1,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 3,
+ 6,
+ 4,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 1,
+ 3,
+ 5,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 8,
+ 5,
+ 2,
+ 6,
+ 2,
+ 5,
+ 1,
+ 3,
+ 1,
+ 3,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 3,
+ 4,
+ 3,
+ 3,
+ 2,
+ 2,
+ 5,
+ 3,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 4,
+ 3,
+ 3,
+ 2,
+ 4,
+ 3,
+ 3,
+ 6,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 2,
+ 3,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 6,
+ 1,
+ 1,
+ 7,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 7,
+ 5,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 4,
+ 1,
+ 2,
+ 9,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 6,
+ 2,
+ 3,
+ 2,
+ 2,
+ 9,
+ 2,
+ 4,
+ 3,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 3,
+ 2,
+ 5,
+ 4,
+ 4,
+ 3,
+ 2,
+ 3,
+ 2,
+ 5,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 4,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 7,
+ 2,
+ 2,
+ 4,
+ 3,
+ 3,
+ 3,
+ 1,
+ 3,
+ 4,
+ 4,
+ 2,
+ 3,
+ 4,
+ 2,
+ 4,
+ 2,
+ 2,
+ 1,
+ 5,
+ 3,
+ 3,
+ 2,
+ 4,
+ 2,
+ 5,
+ 4,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 5,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 4,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 3,
+ 4,
+ 1,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 7,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 4,
+ 2,
+ 4,
+ 2,
+ 1,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 6,
+ 2,
+ 2,
+ 7,
+ 2,
+ 4,
+ 3,
+ 1,
+ 5,
+ 2,
+ 5,
+ 4,
+ 4,
+ 4,
+ 3,
+ 3,
+ 8,
+ 3,
+ 3,
+ 4,
+ 3,
+ 4,
+ 3,
+ 3,
+ 3,
+ 9,
+ 5,
+ 3,
+ 2,
+ 2,
+ 3,
+ 5,
+ 5,
+ 2,
+ 5,
+ 2,
+ 5,
+ 2,
+ 2,
+ 7,
+ 4,
+ 5,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 4,
+ 7,
+ 4,
+ 2,
+ 3,
+ 4,
+ 4,
+ 2,
+ 2,
+ 2,
+ 4,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 4,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 6,
+ 2,
+ 3,
+ 2,
+ 4,
+ 1,
+ 5,
+ 4,
+ 1,
+ 1,
+ 3,
+ 4,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 3,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 3,
+ 5,
+ 10,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 3,
+ 2,
+ 4,
+ 2,
+ 5,
+ 5,
+ 4,
+ 3,
+ 2,
+ 2,
+ 3,
+ 5,
+ 3,
+ 5,
+ 4,
+ 4,
+ 12,
+ 2,
+ 4,
+ 2,
+ 6,
+ 4,
+ 4,
+ 4,
+ 4,
+ 4,
+ 2,
+ 2,
+ 6,
+ 7,
+ 3,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 6,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 3,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 4,
+ 1,
+ 4,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 4,
+ 3,
+ 4,
+ 3,
+ 1,
+ 4,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 6,
+ 2,
+ 4,
+ 4,
+ 5,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 7,
+ 3,
+ 6,
+ 12,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 4,
+ 2,
+ 9,
+ 7,
+ 3,
+ 2,
+ 4,
+ 4,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 3,
+ 2,
+ 4,
+ 1,
+ 1,
+ 6,
+ 2,
+ 11,
+ 4,
+ 8,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 3,
+ 6,
+ 2,
+ 2,
+ 9,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 8,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 12,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 9,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 7,
+ 1,
+ 4,
+ 3,
+ 6,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 1,
+ 6,
+ 9,
+ 5,
+ 1,
+ 1,
+ 4,
+ 1,
+ 4,
+ 2,
+ 1,
+ 2,
+ 10,
+ 3,
+ 2,
+ 2,
+ 1,
+ 3,
+ 2,
+ 10,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 18,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 11,
+ 4,
+ 2,
+ 1,
+ 5,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 4,
+ 3,
+ 4,
+ 2,
+ 2,
+ 3,
+ 4,
+ 6,
+ 5,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 5,
+ 4,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 5,
+ 2,
+ 3,
+ 4,
+ 2,
+ 3,
+ 5,
+ 2,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 5,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 11,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 3,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 7,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 10,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 5,
+ 3,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 9,
+ 6,
+ 5,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 14,
+ 1,
+ 2,
+ 2,
+ 1,
+ 22,
+ 9,
+ 8,
+ 2,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 5,
+ 5,
+ 4,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 6,
+ 7,
+ 23,
+ 1,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 8,
+ 8,
+ 2,
+ 5,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 25,
+ 4,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 2,
+ 1,
+ 3,
+ 4,
+ 1,
+ 2,
+ 6,
+ 7,
+ 7,
+ 2,
+ 2,
+ 2,
+ 2,
+ 6,
+ 2,
+ 3,
+ 7,
+ 4,
+ 4,
+ 2,
+ 6,
+ 3,
+ 4,
+ 4,
+ 4,
+ 3,
+ 12,
+ 3,
+ 6,
+ 8,
+ 4,
+ 6,
+ 4,
+ 3,
+ 2,
+ 2,
+ 5,
+ 12,
+ 5,
+ 2,
+ 2,
+ 1,
+ 4,
+ 2,
+ 3,
+ 2,
+ 4,
+ 2,
+ 3,
+ 17,
+ 1,
+ 6,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 7,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 1,
+ 17,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 4,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 8,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 4,
+ 3,
+ 4,
+ 2,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 11,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 11,
+ 1,
+ 1,
+ 1,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 23,
+ 18,
+ 2,
+ 2,
+ 8,
+ 1,
+ 2,
+ 2,
+ 4,
+ 15,
+ 9,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 17,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 4,
+ 11,
+ 4,
+ 2,
+ 5,
+ 2,
+ 3,
+ 4,
+ 2,
+ 3,
+ 8,
+ 2,
+ 3,
+ 5,
+ 5,
+ 3,
+ 3,
+ 3,
+ 6,
+ 2,
+ 2,
+ 3,
+ 10,
+ 3,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 2,
+ 2,
+ 7,
+ 3,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 4,
+ 2,
+ 20,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 5,
+ 4,
+ 3,
+ 7,
+ 4,
+ 3,
+ 4,
+ 2,
+ 19,
+ 4,
+ 6,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 5,
+ 2,
+ 2,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 7,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 2,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 12,
+ 4,
+ 1,
+ 3,
+ 1,
+ 1,
+ 14,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 39,
+ 3,
+ 2,
+ 5,
+ 2,
+ 9,
+ 5,
+ 1,
+ 3,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 13,
+ 5,
+ 2,
+ 2,
+ 2,
+ 2,
+ 6,
+ 6,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 7,
+ 2,
+ 6,
+ 3,
+ 3,
+ 42,
+ 10,
+ 2,
+ 7,
+ 3,
+ 2,
+ 4,
+ 3,
+ 7,
+ 8,
+ 2,
+ 10,
+ 9,
+ 9,
+ 2,
+ 9,
+ 3,
+ 7,
+ 11,
+ 4,
+ 7,
+ 2,
+ 2,
+ 5,
+ 2,
+ 4,
+ 2,
+ 10,
+ 9,
+ 10,
+ 7,
+ 1,
+ 1,
+ 15,
+ 1,
+ 1,
+ 1,
+ 10,
+ 1,
+ 1,
+ 12,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 12,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 10,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 4,
+ 6,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 6,
+ 2,
+ 1,
+ 2,
+ 1,
+ 12,
+ 2,
+ 1,
+ 2,
+ 1,
+ 9,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 17,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 9,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 8,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 1,
+ 3,
+ 1,
+ 6,
+ 1,
+ 6,
+ 3,
+ 1,
+ 10,
+ 7,
+ 2,
+ 1,
+ 1,
+ 8,
+ 2,
+ 2,
+ 2,
+ 2,
+ 16,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 10,
+ 4,
+ 3,
+ 12,
+ 2,
+ 2,
+ 4,
+ 3,
+ 3,
+ 6,
+ 8,
+ 2,
+ 3,
+ 7,
+ 3,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 3,
+ 17,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 6,
+ 5,
+ 1,
+ 1,
+ 13,
+ 3,
+ 1,
+ 3,
+ 10,
+ 4,
+ 2,
+ 4,
+ 2,
+ 1,
+ 3,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 28,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 10,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 8,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 7,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 13,
+ 3,
+ 2,
+ 2,
+ 9,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 12,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 4,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 12,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 4,
+ 26,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 4,
+ 5,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 1,
+ 1,
+ 2,
+ 11,
+ 14,
+ 2,
+ 1,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 1,
+ 3,
+ 13,
+ 2,
+ 15,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 9,
+ 2,
+ 2,
+ 4,
+ 2,
+ 5,
+ 3,
+ 4,
+ 3,
+ 3,
+ 6,
+ 5,
+ 19,
+ 4,
+ 3,
+ 5,
+ 5,
+ 8,
+ 6,
+ 4,
+ 10,
+ 4,
+ 2,
+ 2,
+ 9,
+ 14,
+ 5,
+ 6,
+ 3,
+ 5,
+ 3,
+ 2,
+ 3,
+ 9,
+ 3,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 2,
+ 3,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 18,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 6,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 6,
+ 42,
+ 2,
+ 6,
+ 2,
+ 1,
+ 1,
+ 2,
+ 6,
+ 3,
+ 2,
+ 4,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 7,
+ 4,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 6,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 4,
+ 3,
+ 4,
+ 3,
+ 3,
+ 2,
+ 2,
+ 12,
+ 4,
+ 2,
+ 3,
+ 2,
+ 9,
+ 3,
+ 6,
+ 5,
+ 5,
+ 2,
+ 2,
+ 2,
+ 6,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 6,
+ 2,
+ 3,
+ 2,
+ 3,
+ 4,
+ 4,
+ 4,
+ 8,
+ 2,
+ 11,
+ 4,
+ 3,
+ 4,
+ 3,
+ 3,
+ 2,
+ 9,
+ 4,
+ 4,
+ 7,
+ 3,
+ 4,
+ 3,
+ 3,
+ 2,
+ 6,
+ 3,
+ 2,
+ 6,
+ 5,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 6,
+ 1,
+ 3,
+ 1,
+ 7,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 32,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 8,
+ 1,
+ 11,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 14,
+ 2,
+ 7,
+ 6,
+ 1,
+ 1,
+ 5,
+ 3,
+ 2,
+ 3,
+ 2,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 6,
+ 2,
+ 3,
+ 1,
+ 4,
+ 2,
+ 3,
+ 6,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 1,
+ 3,
+ 4,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 8,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 6,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 12,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 4,
+ 6,
+ 4,
+ 14,
+ 1,
+ 2,
+ 2,
+ 6,
+ 2,
+ 2,
+ 4,
+ 4,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 6,
+ 2,
+ 4,
+ 3,
+ 11,
+ 3,
+ 4,
+ 4,
+ 2,
+ 3,
+ 5,
+ 2,
+ 3,
+ 5,
+ 2,
+ 2,
+ 2,
+ 5,
+ 5,
+ 2,
+ 3,
+ 4,
+ 6,
+ 2,
+ 1,
+ 4,
+ 4,
+ 3,
+ 6,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 4,
+ 3,
+ 4,
+ 2,
+ 6,
+ 5,
+ 2,
+ 5,
+ 4,
+ 5,
+ 5,
+ 5,
+ 11,
+ 2,
+ 2,
+ 2,
+ 22,
+ 6,
+ 4,
+ 2,
+ 5,
+ 2,
+ 4,
+ 2,
+ 16,
+ 4,
+ 5,
+ 3,
+ 4,
+ 3,
+ 1,
+ 4,
+ 3,
+ 7,
+ 7,
+ 3,
+ 6,
+ 2,
+ 4,
+ 3,
+ 5,
+ 2,
+ 3,
+ 2,
+ 4,
+ 4,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 6,
+ 6,
+ 1,
+ 2,
+ 9,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 4,
+ 4,
+ 5,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 11,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 4,
+ 1,
+ 4,
+ 10,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 16,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 3,
+ 1,
+ 9,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 10,
+ 9,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 5,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 6,
+ 2,
+ 4,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 6,
+ 2,
+ 2,
+ 5,
+ 1,
+ 9,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 3,
+ 1,
+ 4,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 10,
+ 5,
+ 2,
+ 6,
+ 2,
+ 5,
+ 5,
+ 2,
+ 6,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 5,
+ 10,
+ 2,
+ 4,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 3,
+ 2,
+ 5,
+ 10,
+ 4,
+ 5,
+ 2,
+ 1,
+ 19,
+ 9,
+ 4,
+ 4,
+ 2,
+ 2,
+ 2,
+ 9,
+ 3,
+ 2,
+ 5,
+ 2,
+ 3,
+ 6,
+ 4,
+ 4,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 4,
+ 4,
+ 3,
+ 16,
+ 2,
+ 8,
+ 3,
+ 3,
+ 5,
+ 3,
+ 7,
+ 8,
+ 3,
+ 8,
+ 3,
+ 4,
+ 3,
+ 2,
+ 4,
+ 2,
+ 3,
+ 1,
+ 2,
+ 6,
+ 1,
+ 8,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 3,
+ 6,
+ 3,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 7,
+ 6,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 10,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 18,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 5,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 11,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 4,
+ 3,
+ 1,
+ 2,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 4,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 18,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 4,
+ 7,
+ 1,
+ 2,
+ 6,
+ 3,
+ 2,
+ 3,
+ 6,
+ 2,
+ 5,
+ 3,
+ 2,
+ 5,
+ 3,
+ 1,
+ 5,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 5,
+ 3,
+ 1,
+ 2,
+ 8,
+ 4,
+ 4,
+ 16,
+ 3,
+ 1,
+ 2,
+ 5,
+ 3,
+ 10,
+ 3,
+ 2,
+ 3,
+ 14,
+ 1,
+ 2,
+ 4,
+ 3,
+ 2,
+ 2,
+ 5,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 5,
+ 4,
+ 2,
+ 2,
+ 3,
+ 8,
+ 3,
+ 3,
+ 2,
+ 4,
+ 3,
+ 2,
+ 5,
+ 2,
+ 2,
+ 7,
+ 2,
+ 2,
+ 6,
+ 5,
+ 3,
+ 2,
+ 5,
+ 5,
+ 3,
+ 3,
+ 3,
+ 3,
+ 17,
+ 5,
+ 8,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 4,
+ 4,
+ 3,
+ 3,
+ 4,
+ 6,
+ 5,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 2,
+ 2,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 8,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 7,
+ 10,
+ 3,
+ 1,
+ 4,
+ 6,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 6,
+ 4,
+ 1,
+ 1,
+ 5,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 5,
+ 1,
+ 5,
+ 3,
+ 5,
+ 7,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 10,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 6,
+ 5,
+ 3,
+ 2,
+ 1,
+ 13,
+ 3,
+ 7,
+ 4,
+ 1,
+ 3,
+ 3,
+ 3,
+ 1,
+ 1,
+ 3,
+ 5,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 6,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 1,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 3,
+ 12,
+ 2,
+ 2,
+ 2,
+ 9,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 3,
+ 22,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 4,
+ 3,
+ 5,
+ 2,
+ 3,
+ 2,
+ 2,
+ 5,
+ 6,
+ 4,
+ 9,
+ 2,
+ 4,
+ 3,
+ 3,
+ 2,
+ 6,
+ 2,
+ 23,
+ 4,
+ 2,
+ 4,
+ 6,
+ 15,
+ 7,
+ 3,
+ 8,
+ 3,
+ 3,
+ 4,
+ 2,
+ 3,
+ 17,
+ 3,
+ 2,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 4,
+ 1,
+ 3,
+ 9,
+ 2,
+ 4,
+ 7,
+ 2,
+ 3,
+ 6,
+ 3,
+ 5,
+ 1,
+ 2,
+ 7,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 5,
+ 1,
+ 2,
+ 1,
+ 4,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 1,
+ 3,
+ 2,
+ 2,
+ 12,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 13,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 8,
+ 1,
+ 2,
+ 3,
+ 8,
+ 5,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 9,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 4,
+ 5,
+ 2,
+ 1,
+ 2,
+ 3,
+ 3,
+ 3,
+ 4,
+ 2,
+ 2,
+ 6,
+ 5,
+ 6,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 2,
+ 6,
+ 3,
+ 3,
+ 2,
+ 5,
+ 4,
+ 2,
+ 3,
+ 14,
+ 2,
+ 3,
+ 3,
+ 4,
+ 2,
+ 3,
+ 5,
+ 3,
+ 2,
+ 2,
+ 9,
+ 3,
+ 2,
+ 2,
+ 7,
+ 4,
+ 12,
+ 3,
+ 7,
+ 3,
+ 2,
+ 8,
+ 2,
+ 3,
+ 2,
+ 6,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 16,
+ 2,
+ 3,
+ 3,
+ 4,
+ 3,
+ 2,
+ 3,
+ 3,
+ 6,
+ 2,
+ 8,
+ 3,
+ 10,
+ 6,
+ 5,
+ 3,
+ 5,
+ 18,
+ 2,
+ 4,
+ 9,
+ 4,
+ 3,
+ 3,
+ 3,
+ 4,
+ 3,
+ 25,
+ 6,
+ 6,
+ 2,
+ 4,
+ 3,
+ 9,
+ 2,
+ 4,
+ 5,
+ 4,
+ 2,
+ 2,
+ 3,
+ 3,
+ 7,
+ 8,
+ 2,
+ 2,
+ 3,
+ 16,
+ 9,
+ 3,
+ 19,
+ 5,
+ 3,
+ 4,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 1,
+ 3,
+ 2,
+ 1,
+ 8,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 5,
+ 1,
+ 3,
+ 1,
+ 21,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 5,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 4,
+ 6,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 3,
+ 4,
+ 2,
+ 4,
+ 4,
+ 2,
+ 3,
+ 1,
+ 2,
+ 8,
+ 1,
+ 3,
+ 4,
+ 7,
+ 1,
+ 2,
+ 2,
+ 4,
+ 11,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 8,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 3,
+ 3,
+ 9,
+ 4,
+ 3,
+ 2,
+ 2,
+ 7,
+ 1,
+ 2,
+ 9,
+ 4,
+ 2,
+ 3,
+ 6,
+ 3,
+ 2,
+ 8,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 4,
+ 5,
+ 3,
+ 2,
+ 32,
+ 5,
+ 3,
+ 2,
+ 1,
+ 5,
+ 1,
+ 4,
+ 5,
+ 1,
+ 3,
+ 3,
+ 5,
+ 3,
+ 1,
+ 4,
+ 10,
+ 1,
+ 4,
+ 6,
+ 2,
+ 2,
+ 3,
+ 1,
+ 4,
+ 1,
+ 2,
+ 4,
+ 6,
+ 20,
+ 2,
+ 1,
+ 3,
+ 8,
+ 2,
+ 15,
+ 2,
+ 2,
+ 4,
+ 7,
+ 2,
+ 8,
+ 3,
+ 3,
+ 6,
+ 8,
+ 5,
+ 4,
+ 8,
+ 3,
+ 13,
+ 9,
+ 3,
+ 4,
+ 12,
+ 10,
+ 4,
+ 4,
+ 4,
+ 8,
+ 6,
+ 3,
+ 14,
+ 3,
+ 6,
+ 10,
+ 2,
+ 3,
+ 2,
+ 10,
+ 1,
+ 3,
+ 1,
+ 8,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 13,
+ 3,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 5,
+ 2,
+ 3,
+ 3,
+ 1,
+ 2,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 5,
+ 3,
+ 6,
+ 1,
+ 2,
+ 2,
+ 1,
+ 26,
+ 1,
+ 15,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 5,
+ 12,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 28,
+ 1,
+ 32,
+ 1,
+ 1,
+ 12,
+ 1,
+ 2,
+ 1,
+ 7,
+ 2,
+ 1,
+ 1,
+ 3,
+ 4,
+ 6,
+ 1,
+ 3,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 5,
+ 3,
+ 5,
+ 3,
+ 2,
+ 4,
+ 2,
+ 4,
+ 3,
+ 5,
+ 2,
+ 5,
+ 2,
+ 18,
+ 2,
+ 2,
+ 6,
+ 10,
+ 8,
+ 2,
+ 2,
+ 2,
+ 2,
+ 8,
+ 2,
+ 7,
+ 7,
+ 21,
+ 7,
+ 2,
+ 9,
+ 6,
+ 2,
+ 1,
+ 2,
+ 6,
+ 3,
+ 20,
+ 14,
+ 3,
+ 3,
+ 6,
+ 1,
+ 1,
+ 3,
+ 6,
+ 11,
+ 2,
+ 1,
+ 11,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 4,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 8,
+ 1,
+ 10,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 9,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 10,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 8,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 6,
+ 2,
+ 1,
+ 3,
+ 1,
+ 6,
+ 2,
+ 1,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 2,
+ 5,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 9,
+ 4,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 6,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 6,
+ 2,
+ 5,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 11,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 11,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 11,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 8,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 10,
+ 1,
+ 1,
+ 4,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 24,
+ 4,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 29,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 17,
+ 3,
+ 3,
+ 2,
+ 5,
+ 3,
+ 13,
+ 2,
+ 7,
+ 2,
+ 4,
+ 2,
+ 2,
+ 31,
+ 5,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 7,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 4,
+ 4,
+ 2,
+ 4,
+ 11,
+ 1,
+ 1,
+ 1,
+ 3,
+ 9,
+ 3,
+ 2,
+ 6,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 5,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 5,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 3,
+ 16,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 13,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 3,
+ 1,
+ 5,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 7,
+ 4,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 5,
+ 2,
+ 13,
+ 3,
+ 2,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 7,
+ 6,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 5,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 1,
+ 1,
+ 24,
+ 2,
+ 1,
+ 1,
+ 24,
+ 2,
+ 1,
+ 1,
+ 9,
+ 2,
+ 23,
+ 3,
+ 5,
+ 7,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 3,
+ 5,
+ 3,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 1,
+ 20,
+ 2,
+ 1,
+ 5,
+ 3,
+ 6,
+ 2,
+ 2,
+ 2,
+ 1,
+ 4,
+ 2,
+ 4,
+ 6,
+ 3,
+ 10,
+ 4,
+ 2,
+ 2,
+ 2,
+ 4,
+ 4,
+ 3,
+ 2,
+ 3,
+ 4,
+ 2,
+ 6,
+ 2,
+ 2,
+ 3,
+ 3,
+ 4,
+ 4,
+ 5,
+ 6,
+ 1,
+ 1,
+ 1,
+ 5,
+ 12,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 10,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 5,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 9,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 2,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 6,
+ 1,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 17,
+ 2,
+ 3,
+ 2,
+ 2,
+ 5,
+ 2,
+ 6,
+ 3,
+ 3,
+ 2,
+ 2,
+ 4,
+ 5,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 13,
+ 2,
+ 12,
+ 6,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 4,
+ 4,
+ 4,
+ 2,
+ 10,
+ 4,
+ 3,
+ 7,
+ 6,
+ 8,
+ 3,
+ 12,
+ 7,
+ 2,
+ 3,
+ 4,
+ 3,
+ 5,
+ 2,
+ 2,
+ 2,
+ 3,
+ 10,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 9,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 5,
+ 3,
+ 1,
+ 1,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 9,
+ 2,
+ 4,
+ 17,
+ 5,
+ 2,
+ 5,
+ 2,
+ 6,
+ 4,
+ 2,
+ 6,
+ 2,
+ 22,
+ 2,
+ 2,
+ 2,
+ 9,
+ 8,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 9,
+ 11,
+ 3,
+ 3,
+ 2,
+ 13,
+ 2,
+ 6,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 4,
+ 3,
+ 4,
+ 2,
+ 10,
+ 2,
+ 3,
+ 5,
+ 19,
+ 3,
+ 7,
+ 2,
+ 4,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 16,
+ 8,
+ 5,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 8,
+ 2,
+ 6,
+ 2,
+ 2,
+ 8,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 4,
+ 5,
+ 2,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 29,
+ 4,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 15,
+ 4,
+ 4,
+ 3,
+ 4,
+ 8,
+ 3,
+ 3,
+ 3,
+ 5,
+ 2,
+ 6,
+ 3,
+ 3,
+ 5,
+ 2,
+ 10,
+ 5,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 6,
+ 3,
+ 1,
+ 1,
+ 1,
+ 6,
+ 8,
+ 1,
+ 3,
+ 2,
+ 6,
+ 2,
+ 2,
+ 2,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 5,
+ 1,
+ 1,
+ 1,
+ 8,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 8,
+ 19,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 5,
+ 3,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 12,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 3,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 4,
+ 3,
+ 3,
+ 3,
+ 7,
+ 1,
+ 21,
+ 15,
+ 3,
+ 4,
+ 3,
+ 1,
+ 14,
+ 4,
+ 3,
+ 30,
+ 3,
+ 35,
+ 21,
+ 3,
+ 6,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 25,
+ 18,
+ 6,
+ 20,
+ 3,
+ 12,
+ 5,
+ 5,
+ 2,
+ 4,
+ 2,
+ 4,
+ 2,
+ 8,
+ 3,
+ 16,
+ 3,
+ 5,
+ 4,
+ 3,
+ 4,
+ 8,
+ 3,
+ 13,
+ 4,
+ 2,
+ 2,
+ 6,
+ 2,
+ 2,
+ 3,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 8,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 9,
+ 2,
+ 4,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 31,
+ 1,
+ 1,
+ 2,
+ 5,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 3,
+ 2,
+ 6,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 4,
+ 2,
+ 8,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 6,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 7,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 6,
+ 3,
+ 3,
+ 2,
+ 7,
+ 2,
+ 6,
+ 4,
+ 6,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 10,
+ 6,
+ 4,
+ 9,
+ 4,
+ 6,
+ 4,
+ 2,
+ 4,
+ 2,
+ 2,
+ 6,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 21,
+ 3,
+ 7,
+ 4,
+ 3,
+ 2,
+ 2,
+ 7,
+ 3,
+ 6,
+ 2,
+ 3,
+ 7,
+ 5,
+ 4,
+ 8,
+ 2,
+ 2,
+ 3,
+ 6,
+ 3,
+ 2,
+ 1,
+ 6,
+ 1,
+ 4,
+ 4,
+ 1,
+ 1,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 2,
+ 3,
+ 3,
+ 4,
+ 3,
+ 2,
+ 4,
+ 2,
+ 4,
+ 3,
+ 3,
+ 3,
+ 3,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 10,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 5,
+ 4,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 3,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 29,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 12,
+ 3,
+ 11,
+ 19,
+ 2,
+ 2,
+ 2,
+ 6,
+ 2,
+ 14,
+ 3,
+ 7,
+ 1,
+ 7,
+ 3,
+ 16,
+ 5,
+ 4,
+ 2,
+ 30,
+ 2,
+ 14,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 23,
+ 3,
+ 2,
+ 2,
+ 5,
+ 2,
+ 10,
+ 10,
+ 3,
+ 3,
+ 41,
+ 2,
+ 2,
+ 1,
+ 2,
+ 6,
+ 2,
+ 3,
+ 2,
+ 3,
+ 1,
+ 3,
+ 5,
+ 17,
+ 8,
+ 21,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 4,
+ 6,
+ 11,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 31,
+ 1,
+ 10,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 12,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 10,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 7,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 14,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 9,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 7,
+ 2,
+ 1,
+ 2,
+ 2,
+ 10,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 28,
+ 5,
+ 2,
+ 3,
+ 9,
+ 5,
+ 2,
+ 2,
+ 2,
+ 11,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 6,
+ 2,
+ 4,
+ 8,
+ 2,
+ 12,
+ 5,
+ 2,
+ 7,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 3,
+ 20,
+ 2,
+ 1,
+ 2,
+ 8,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 4,
+ 4,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 4,
+ 2,
+ 11,
+ 3,
+ 2,
+ 5,
+ 3,
+ 17,
+ 3,
+ 3,
+ 3,
+ 4,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 8,
+ 2,
+ 6,
+ 2,
+ 2,
+ 4,
+ 4,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 12,
+ 3,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 8,
+ 4,
+ 5,
+ 3,
+ 37,
+ 18,
+ 9,
+ 3,
+ 5,
+ 14,
+ 10,
+ 3,
+ 3,
+ 4,
+ 4,
+ 14,
+ 3,
+ 2,
+ 3,
+ 18,
+ 3,
+ 2,
+ 3,
+ 4,
+ 14,
+ 29,
+ 14,
+ 10,
+ 6,
+ 3,
+ 5,
+ 2,
+ 18,
+ 13,
+ 2,
+ 4,
+ 4,
+ 22,
+ 21,
+ 3,
+ 2,
+ 4,
+ 3,
+ 14,
+ 3,
+ 20,
+ 3,
+ 12,
+ 20,
+ 5,
+ 5,
+ 12,
+ 3,
+ 4,
+ 27,
+ 4,
+ 8,
+ 3,
+ 3,
+ 5,
+ 4,
+ 10,
+ 2,
+ 14,
+ 6,
+ 19,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 4,
+ 5,
+ 4,
+ 8,
+ 4,
+ 3,
+ 2,
+ 14,
+ 4,
+ 2,
+ 10,
+ 2,
+ 6,
+ 3,
+ 14,
+ 15,
+ 2,
+ 3,
+ 3,
+ 4,
+ 7,
+ 4,
+ 12,
+ 3,
+ 15,
+ 2,
+ 2,
+ 9,
+ 12,
+ 13,
+ 3,
+ 6,
+ 7,
+ 4,
+ 10,
+ 2,
+ 3,
+ 3,
+ 40,
+ 4,
+ 2,
+ 12,
+ 7,
+ 5,
+ 6,
+ 10,
+ 4,
+ 6,
+ 14,
+ 2,
+ 13,
+ 7,
+ 12,
+ 3,
+ 3,
+ 3,
+ 21,
+ 4,
+ 13,
+ 2,
+ 5,
+ 5,
+ 10,
+ 2,
+ 5,
+ 7,
+ 3,
+ 6,
+ 3,
+ 22,
+ 7,
+ 11,
+ 7,
+ 3,
+ 6,
+ 3,
+ 2,
+ 4,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 7,
+ 3,
+ 2,
+ 9,
+ 2,
+ 3,
+ 3,
+ 3,
+ 12,
+ 7,
+ 4,
+ 3,
+ 3,
+ 5,
+ 5,
+ 2,
+ 17,
+ 10,
+ 5,
+ 19,
+ 4,
+ 11,
+ 3,
+ 26,
+ 4,
+ 5,
+ 9,
+ 7,
+ 4,
+ 16,
+ 4,
+ 2,
+ 3,
+ 20,
+ 16,
+ 19,
+ 6,
+ 24,
+ 4,
+ 4,
+ 5,
+ 4,
+ 4,
+ 24,
+ 13,
+ 8,
+ 28,
+ 3,
+ 5,
+ 18,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 5,
+ 3,
+ 4,
+ 2,
+ 2,
+ 4,
+ 3,
+ 4,
+ 3,
+ 5,
+ 5,
+ 5,
+ 3,
+ 3,
+ 6,
+ 3,
+ 3,
+ 4,
+ 3,
+ 8,
+ 4,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 8,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 3,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 7,
+ 3,
+ 2,
+ 2,
+ 4,
+ 3,
+ 4,
+ 2,
+ 4,
+ 4,
+ 2,
+ 3,
+ 3,
+ 6,
+ 4,
+ 1,
+ 3,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 5,
+ 1,
+ 1,
+ 2,
+ 8,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 2,
+ 2,
+ 3,
+ 3,
+ 4,
+ 2,
+ 4,
+ 2,
+ 5,
+ 3,
+ 2,
+ 3,
+ 4,
+ 3,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 4,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 4,
+ 3,
+ 2,
+ 4,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 7,
+ 2,
+ 5,
+ 4,
+ 2,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 10,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 11,
+ 2,
+ 3,
+ 1,
+ 11,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 3,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 6,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 1,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 5,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 6,
+ 5,
+ 5,
+ 6,
+ 2,
+ 6,
+ 4,
+ 2,
+ 2,
+ 9,
+ 2,
+ 4,
+ 6,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 3,
+ 3,
+ 4,
+ 5,
+ 4,
+ 4,
+ 4,
+ 4,
+ 9,
+ 4,
+ 5,
+ 1,
+ 1,
+ 1,
+ 8,
+ 3,
+ 8,
+ 4,
+ 6,
+ 7,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 15,
+ 1,
+ 1,
+ 3,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 7,
+ 2,
+ 1,
+ 1,
+ 7,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 10,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 2,
+ 7,
+ 3,
+ 3,
+ 5,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 30,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 3,
+ 4,
+ 3,
+ 8,
+ 2,
+ 2,
+ 5,
+ 3,
+ 2,
+ 3,
+ 4,
+ 20,
+ 2,
+ 3,
+ 7,
+ 1,
+ 3,
+ 3,
+ 2,
+ 5,
+ 2,
+ 2,
+ 5,
+ 1,
+ 4,
+ 1,
+ 4,
+ 3,
+ 1,
+ 2,
+ 3,
+ 2,
+ 5,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 10,
+ 2,
+ 5,
+ 1,
+ 11,
+ 1,
+ 1,
+ 1,
+ 17,
+ 4,
+ 3,
+ 11,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 26,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 4,
+ 1,
+ 3,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 5,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 3,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 8,
+ 4,
+ 3,
+ 1,
+ 1,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 1,
+ 1,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 3,
+ 1,
+ 12,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 35,
+ 2,
+ 3,
+ 4,
+ 2,
+ 5,
+ 7,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 2,
+ 7,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 3,
+ 1,
+ 3,
+ 3,
+ 1,
+ 3,
+ 3,
+ 3,
+ 5,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 6,
+ 4,
+ 1,
+ 5,
+ 1,
+ 4,
+ 2,
+ 3,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 5,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 5,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 6,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 3,
+ 2,
+ 1,
+ 1,
+ 5,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 3,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 11,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 5,
+ 16,
+ 2,
+ 1,
+ 3,
+ 2,
+ 1,
+ 17,
+ 5,
+ 8,
+ 1,
+ 1,
+ 3,
+ 4,
+ 1,
+ 2,
+ 43,
+ 5,
+ 2,
+ 4,
+ 1,
+ 6,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 6,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 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,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 9,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 3,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 6,
+ 1,
+ 7,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 9,
+ 2,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 4,
+ 7,
+ 1,
+ 10,
+ 5,
+ 5,
+ 2,
+ 3,
+ 3,
+ 6,
+ 4,
+ 3,
+ 3,
+ 1,
+ 7,
+ 5,
+ 3,
+ 1,
+ 4,
+ 3,
+ 6,
+ 5,
+ 3,
+ 20,
+ 5,
+ 10,
+ 2,
+ 7,
+ 14,
+ 27,
+ 4,
+ 5,
+ 3,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 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,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 7,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 8,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 15,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 7,
+ 2,
+ 2,
+ 2,
+ 2,
+ 13,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 7,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 4,
+ 2,
+ 7,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 6,
+ 3,
+ 2,
+ 3,
+ 4,
+ 2,
+ 12,
+ 3,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 6,
+ 3,
+ 3,
+ 3,
+ 3,
+ 4,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 5,
+ 3,
+ 2,
+ 2,
+ 3,
+ 6,
+ 3,
+ 3,
+ 2,
+ 11,
+ 3,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 8,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 4,
+ 3,
+ 4,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 4,
+ 3,
+ 3,
+ 2,
+ 2,
+ 4,
+ 8,
+ 3,
+ 5,
+ 4,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 5,
+ 3,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 5,
+ 8,
+ 4,
+ 5,
+ 3,
+ 2,
+ 3,
+ 5,
+ 4,
+ 6,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 4,
+ 3,
+ 4,
+ 4,
+ 3,
+ 3,
+ 3,
+ 4,
+ 4,
+ 3,
+ 3,
+ 4,
+ 3,
+ 3,
+ 3,
+ 4,
+ 10,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 5,
+ 3,
+ 3,
+ 3,
+ 4,
+ 4,
+ 2,
+ 3,
+ 4,
+ 4,
+ 4,
+ 4,
+ 3,
+ 3,
+ 3,
+ 3,
+ 4,
+ 4,
+ 2,
+ 2,
+ 19,
+ 3,
+ 3,
+ 4,
+ 3,
+ 4,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 4,
+ 3,
+ 5,
+ 4,
+ 4,
+ 4,
+ 3,
+ 3,
+ 2,
+ 4,
+ 4,
+ 4,
+ 2,
+ 4,
+ 5,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 4,
+ 4,
+ 4,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 5,
+ 4,
+ 3,
+ 4,
+ 4,
+ 4,
+ 3,
+ 4,
+ 3,
+ 4,
+ 4,
+ 4,
+ 4,
+ 10,
+ 3,
+ 2,
+ 3,
+ 3,
+ 5,
+ 4,
+ 3,
+ 6,
+ 2,
+ 4,
+ 3,
+ 1,
+ 2,
+ 5,
+ 1,
+ 5,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 1,
+ 4,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 6,
+ 2,
+ 5,
+ 4,
+ 2,
+ 1,
+ 5,
+ 4,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 5,
+ 2,
+ 11,
+ 7,
+ 1,
+ 5,
+ 4,
+ 5,
+ 4,
+ 4,
+ 2,
+ 14,
+ 2,
+ 8,
+ 5,
+ 5,
+ 4,
+ 3,
+ 2,
+ 2,
+ 5,
+ 4,
+ 4,
+ 8,
+ 7,
+ 4,
+ 4,
+ 5,
+ 3,
+ 2,
+ 4,
+ 4,
+ 7,
+ 2,
+ 4,
+ 7,
+ 4,
+ 2,
+ 4,
+ 4,
+ 5,
+ 6,
+ 3,
+ 2,
+ 5,
+ 4,
+ 4,
+ 3,
+ 4,
+ 7,
+ 6,
+ 5,
+ 5,
+ 4,
+ 4,
+ 5,
+ 5,
+ 6,
+ 5,
+ 8,
+ 3,
+ 5,
+ 5,
+ 4,
+ 7,
+ 4,
+ 5,
+ 2,
+ 4,
+ 14,
+ 6,
+ 4,
+ 8,
+ 5,
+ 7,
+ 7,
+ 3,
+ 7,
+ 5,
+ 4,
+ 6,
+ 4,
+ 1,
+ 7,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 8,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 7,
+ 9,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 7,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 9,
+ 2,
+ 2,
+ 6,
+ 2,
+ 5,
+ 7,
+ 4,
+ 1,
+ 3,
+ 2,
+ 7,
+ 6,
+ 2,
+ 6,
+ 5,
+ 6,
+ 2,
+ 5,
+ 6,
+ 6,
+ 6,
+ 2,
+ 5,
+ 6,
+ 7,
+ 6,
+ 7,
+ 2,
+ 6,
+ 2,
+ 1,
+ 5,
+ 1,
+ 3,
+ 2,
+ 11,
+ 5,
+ 8,
+ 5,
+ 2,
+ 2,
+ 5,
+ 2,
+ 1,
+ 3,
+ 1,
+ 7,
+ 3,
+ 11,
+ 1,
+ 7,
+ 2,
+ 2,
+ 20,
+ 2,
+ 1,
+ 2,
+ 3,
+ 6,
+ 1,
+ 2,
+ 2,
+ 2,
+ 14,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 7,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 10,
+ 1,
+ 1,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 12,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 2,
+ 7,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 11,
+ 2,
+ 2,
+ 2,
+ 3,
+ 6,
+ 2,
+ 1,
+ 3,
+ 8,
+ 17,
+ 7,
+ 3,
+ 8,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 5,
+ 2,
+ 3,
+ 5,
+ 2,
+ 2,
+ 3,
+ 5,
+ 3,
+ 5,
+ 2,
+ 3,
+ 2,
+ 3,
+ 4,
+ 1,
+ 8,
+ 3,
+ 1,
+ 2,
+ 6,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 9,
+ 4,
+ 11,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 17,
+ 3,
+ 4,
+ 10,
+ 5,
+ 7,
+ 1,
+ 8,
+ 1,
+ 1,
+ 6,
+ 2,
+ 3,
+ 1,
+ 1,
+ 3,
+ 9,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 9,
+ 3,
+ 5,
+ 3,
+ 8,
+ 4,
+ 4,
+ 6,
+ 7,
+ 9,
+ 10,
+ 3,
+ 10,
+ 4,
+ 2,
+ 11,
+ 3,
+ 2,
+ 4,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 10,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 4,
+ 3,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 7,
+ 1,
+ 2,
+ 7,
+ 2,
+ 1,
+ 2,
+ 3,
+ 5,
+ 3,
+ 5,
+ 2,
+ 6,
+ 2,
+ 2,
+ 2,
+ 9,
+ 11,
+ 7,
+ 4,
+ 4,
+ 2,
+ 9,
+ 9,
+ 6,
+ 2,
+ 3,
+ 10,
+ 2,
+ 3,
+ 6,
+ 3,
+ 5,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 5,
+ 5,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 4,
+ 3,
+ 2,
+ 2,
+ 2,
+ 10,
+ 5,
+ 3,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 6,
+ 2,
+ 2,
+ 2,
+ 7,
+ 3,
+ 3,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 4,
+ 2,
+ 8,
+ 2,
+ 4,
+ 16,
+ 2,
+ 5,
+ 7,
+ 3,
+ 3,
+ 2,
+ 2,
+ 7,
+ 4,
+ 3,
+ 2,
+ 6,
+ 1,
+ 7,
+ 1,
+ 2,
+ 1,
+ 3,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 20,
+ 3,
+ 4,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 6,
+ 4,
+ 6,
+ 1,
+ 8,
+ 8,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 11,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 15,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 1,
+ 8,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 7,
+ 2,
+ 3,
+ 3,
+ 2,
+ 11,
+ 5,
+ 1,
+ 3,
+ 1,
+ 3,
+ 9,
+ 2,
+ 1,
+ 9,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 9,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 9,
+ 5,
+ 3,
+ 2,
+ 5,
+ 3,
+ 2,
+ 5,
+ 4,
+ 3,
+ 2,
+ 10,
+ 2,
+ 2,
+ 12,
+ 3,
+ 2,
+ 4,
+ 15,
+ 3,
+ 5,
+ 2,
+ 4,
+ 4,
+ 2,
+ 2,
+ 5,
+ 4,
+ 7,
+ 2,
+ 2,
+ 9,
+ 3,
+ 10,
+ 5,
+ 2,
+ 3,
+ 3,
+ 2,
+ 28,
+ 11,
+ 2,
+ 21,
+ 3,
+ 2,
+ 3,
+ 3,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 14,
+ 4,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 7,
+ 3,
+ 3,
+ 7,
+ 1,
+ 3,
+ 3,
+ 1,
+ 2,
+ 1,
+ 5,
+ 1,
+ 1,
+ 5,
+ 8,
+ 4,
+ 5,
+ 5,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 6,
+ 1,
+ 3,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 16,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 12,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 8,
+ 12,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 11,
+ 2,
+ 3,
+ 4,
+ 2,
+ 4,
+ 9,
+ 4,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 21,
+ 2,
+ 1,
+ 10,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 7,
+ 2,
+ 4,
+ 5,
+ 5,
+ 2,
+ 4,
+ 3,
+ 4,
+ 2,
+ 8,
+ 3,
+ 2,
+ 7,
+ 15,
+ 5,
+ 2,
+ 1,
+ 4,
+ 4,
+ 3,
+ 8,
+ 3,
+ 2,
+ 5,
+ 5,
+ 3,
+ 2,
+ 2,
+ 5,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 4,
+ 2,
+ 1,
+ 1,
+ 5,
+ 2,
+ 6,
+ 2,
+ 13,
+ 5,
+ 2,
+ 3,
+ 2,
+ 2,
+ 8,
+ 4,
+ 5,
+ 6,
+ 10,
+ 8,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 9,
+ 2,
+ 4,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 11,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 11,
+ 2,
+ 1,
+ 6,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 9,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 9,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 5,
+ 5,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 8,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 5,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 8,
+ 1,
+ 17,
+ 4,
+ 2,
+ 1,
+ 1,
+ 3,
+ 4,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 6,
+ 3,
+ 2,
+ 2,
+ 24,
+ 4,
+ 2,
+ 2,
+ 4,
+ 3,
+ 3,
+ 3,
+ 2,
+ 3,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 6,
+ 1,
+ 2,
+ 2,
+ 7,
+ 1,
+ 4,
+ 3,
+ 3,
+ 2,
+ 1,
+ 10,
+ 2,
+ 11,
+ 12,
+ 3,
+ 2,
+ 4,
+ 10,
+ 2,
+ 3,
+ 2,
+ 2,
+ 17,
+ 2,
+ 2,
+ 4,
+ 3,
+ 5,
+ 1,
+ 19,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 6,
+ 5,
+ 2,
+ 2,
+ 3,
+ 16,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 2,
+ 2,
+ 6,
+ 2,
+ 6,
+ 4,
+ 5,
+ 5,
+ 2,
+ 4,
+ 10,
+ 2,
+ 3,
+ 4,
+ 15,
+ 17,
+ 3,
+ 4,
+ 2,
+ 6,
+ 2,
+ 2,
+ 2,
+ 13,
+ 2,
+ 5,
+ 5,
+ 3,
+ 5,
+ 3,
+ 4,
+ 29,
+ 3,
+ 4,
+ 3,
+ 3,
+ 2,
+ 6,
+ 6,
+ 3,
+ 4,
+ 7,
+ 20,
+ 1,
+ 4,
+ 1,
+ 1,
+ 5,
+ 1,
+ 2,
+ 24,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 4,
+ 4,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 12,
+ 2,
+ 1,
+ 3,
+ 5,
+ 4,
+ 1,
+ 5,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 9,
+ 3,
+ 5,
+ 2,
+ 6,
+ 14,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 6,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 3,
+ 4,
+ 3,
+ 3,
+ 6,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 5,
+ 4,
+ 2,
+ 10,
+ 5,
+ 3,
+ 2,
+ 10,
+ 3,
+ 5,
+ 3,
+ 3,
+ 2,
+ 2,
+ 4,
+ 16,
+ 2,
+ 3,
+ 12,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 9,
+ 2,
+ 4,
+ 4,
+ 16,
+ 2,
+ 4,
+ 5,
+ 3,
+ 7,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 5,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 7,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 5,
+ 2,
+ 2,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 5,
+ 5,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 3,
+ 6,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 5,
+ 5,
+ 2,
+ 1,
+ 3,
+ 12,
+ 2,
+ 2,
+ 1,
+ 26,
+ 7,
+ 1,
+ 2,
+ 2,
+ 4,
+ 4,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 30,
+ 5,
+ 7,
+ 2,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 4,
+ 1,
+ 1,
+ 4,
+ 10,
+ 2,
+ 3,
+ 11,
+ 7,
+ 3,
+ 3,
+ 4,
+ 2,
+ 3,
+ 4,
+ 9,
+ 5,
+ 5,
+ 3,
+ 2,
+ 5,
+ 12,
+ 3,
+ 5,
+ 3,
+ 6,
+ 4,
+ 2,
+ 2,
+ 5,
+ 2,
+ 17,
+ 6,
+ 2,
+ 5,
+ 2,
+ 30,
+ 6,
+ 10,
+ 2,
+ 2,
+ 3,
+ 3,
+ 8,
+ 3,
+ 2,
+ 3,
+ 3,
+ 11,
+ 20,
+ 5,
+ 2,
+ 5,
+ 3,
+ 2,
+ 2,
+ 6,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 7,
+ 1,
+ 2,
+ 1,
+ 1,
+ 5,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 4,
+ 1,
+ 4,
+ 7,
+ 2,
+ 4,
+ 3,
+ 12,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 23,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 3,
+ 5,
+ 6,
+ 1,
+ 2,
+ 4,
+ 4,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 3,
+ 18,
+ 2,
+ 4,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 5,
+ 2,
+ 4,
+ 10,
+ 2,
+ 2,
+ 2,
+ 5,
+ 22,
+ 2,
+ 2,
+ 5,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 5,
+ 7,
+ 2,
+ 15,
+ 5,
+ 4,
+ 8,
+ 7,
+ 4,
+ 2,
+ 7,
+ 3,
+ 5,
+ 8,
+ 5,
+ 2,
+ 4,
+ 11,
+ 3,
+ 5,
+ 4,
+ 19,
+ 2,
+ 4,
+ 2,
+ 4,
+ 5,
+ 11,
+ 4,
+ 7,
+ 3,
+ 10,
+ 4,
+ 6,
+ 2,
+ 5,
+ 4,
+ 2,
+ 3,
+ 3,
+ 4,
+ 3,
+ 3,
+ 6,
+ 16,
+ 3,
+ 5,
+ 4,
+ 6,
+ 12,
+ 3,
+ 9,
+ 7,
+ 2,
+ 3,
+ 8,
+ 4,
+ 18,
+ 6,
+ 3,
+ 2,
+ 15,
+ 7,
+ 3,
+ 4,
+ 4,
+ 6,
+ 4,
+ 3,
+ 4,
+ 7,
+ 2,
+ 7,
+ 2,
+ 6,
+ 10,
+ 11,
+ 3,
+ 8,
+ 3,
+ 8,
+ 9,
+ 2,
+ 4,
+ 5,
+ 16,
+ 5,
+ 11,
+ 6,
+ 3,
+ 6,
+ 8,
+ 6,
+ 7,
+ 7,
+ 3,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 20,
+ 14,
+ 5,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 4,
+ 4,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 6,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 14,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 5,
+ 7,
+ 1,
+ 1,
+ 6,
+ 4,
+ 1,
+ 1,
+ 2,
+ 11,
+ 4,
+ 6,
+ 8,
+ 3,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 18,
+ 3,
+ 2,
+ 3,
+ 3,
+ 17,
+ 3,
+ 2,
+ 9,
+ 1,
+ 6,
+ 3,
+ 12,
+ 17,
+ 1,
+ 6,
+ 3,
+ 7,
+ 1,
+ 3,
+ 5,
+ 34,
+ 2,
+ 13,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 3,
+ 6,
+ 5,
+ 4,
+ 3,
+ 3,
+ 5,
+ 2,
+ 4,
+ 4,
+ 5,
+ 11,
+ 2,
+ 12,
+ 5,
+ 3,
+ 7,
+ 7,
+ 5,
+ 3,
+ 3,
+ 9,
+ 4,
+ 6,
+ 4,
+ 1,
+ 3,
+ 9,
+ 3,
+ 24,
+ 6,
+ 8,
+ 5,
+ 11,
+ 6,
+ 5,
+ 6,
+ 19,
+ 8,
+ 4,
+ 4,
+ 14,
+ 10,
+ 23,
+ 30,
+ 3,
+ 4,
+ 6,
+ 13,
+ 21,
+ 6,
+ 4,
+ 7,
+ 8,
+ 4,
+ 4,
+ 5,
+ 3,
+ 5,
+ 11,
+ 2,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 20,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 8,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 4,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 19,
+ 4,
+ 8,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 22,
+ 1,
+ 1,
+ 8,
+ 1,
+ 29,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 4,
+ 2,
+ 9,
+ 2,
+ 1,
+ 1,
+ 6,
+ 1,
+ 6,
+ 2,
+ 2,
+ 1,
+ 2,
+ 4,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 3,
+ 4,
+ 3,
+ 2,
+ 1,
+ 4,
+ 15,
+ 3,
+ 2,
+ 4,
+ 4,
+ 3,
+ 4,
+ 2,
+ 8,
+ 16,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 8,
+ 1,
+ 6,
+ 2,
+ 5,
+ 5,
+ 18,
+ 2,
+ 7,
+ 2,
+ 13,
+ 2,
+ 5,
+ 3,
+ 1,
+ 7,
+ 7,
+ 5,
+ 1,
+ 4,
+ 7,
+ 1,
+ 3,
+ 10,
+ 1,
+ 7,
+ 2,
+ 3,
+ 3,
+ 11,
+ 2,
+ 4,
+ 3,
+ 3,
+ 5,
+ 5,
+ 3,
+ 3,
+ 2,
+ 7,
+ 10,
+ 2,
+ 5,
+ 3,
+ 3,
+ 4,
+ 2,
+ 8,
+ 1,
+ 4,
+ 4,
+ 1,
+ 4,
+ 7,
+ 2,
+ 3,
+ 1,
+ 3,
+ 5,
+ 1,
+ 3,
+ 3,
+ 3,
+ 3,
+ 6,
+ 17,
+ 3,
+ 3,
+ 2,
+ 3,
+ 6,
+ 3,
+ 5,
+ 6,
+ 2,
+ 4,
+ 3,
+ 6,
+ 5,
+ 4,
+ 8,
+ 3,
+ 3,
+ 8,
+ 3,
+ 3,
+ 10,
+ 4,
+ 3,
+ 3,
+ 4,
+ 11,
+ 3,
+ 5,
+ 8,
+ 3,
+ 4,
+ 23,
+ 3,
+ 8,
+ 3,
+ 4,
+ 3,
+ 3,
+ 20,
+ 4,
+ 4,
+ 10,
+ 3,
+ 2,
+ 2,
+ 3,
+ 8,
+ 4,
+ 5,
+ 11,
+ 12,
+ 4,
+ 14,
+ 10,
+ 10,
+ 5,
+ 5,
+ 2,
+ 4,
+ 6,
+ 2,
+ 5,
+ 27,
+ 3,
+ 6,
+ 17,
+ 16,
+ 6,
+ 2,
+ 4,
+ 3,
+ 2,
+ 3,
+ 3,
+ 10,
+ 3,
+ 23,
+ 24,
+ 5,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 3,
+ 8,
+ 2,
+ 3,
+ 1,
+ 3,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 23,
+ 5,
+ 1,
+ 1,
+ 7,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 6,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 22,
+ 1,
+ 1,
+ 1,
+ 6,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 16,
+ 1,
+ 4,
+ 1,
+ 5,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 14,
+ 3,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 29,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 6,
+ 8,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 3,
+ 33,
+ 6,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 5,
+ 3,
+ 11,
+ 5,
+ 2,
+ 5,
+ 3,
+ 12,
+ 9,
+ 2,
+ 3,
+ 3,
+ 4,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 5,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 29,
+ 5,
+ 8,
+ 4,
+ 5,
+ 25,
+ 16,
+ 2,
+ 2,
+ 2,
+ 20,
+ 7,
+ 5,
+ 33,
+ 8,
+ 31,
+ 5,
+ 6,
+ 17,
+ 18,
+ 2,
+ 3,
+ 4,
+ 5,
+ 34,
+ 2,
+ 5,
+ 7,
+ 3,
+ 4,
+ 3,
+ 27,
+ 5,
+ 2,
+ 3,
+ 6,
+ 18,
+ 35,
+ 28,
+ 18,
+ 3,
+ 21,
+ 32,
+ 27,
+ 33,
+ 14,
+ 18,
+ 7,
+ 4,
+ 4,
+ 25,
+ 4,
+ 3,
+ 6,
+ 7,
+ 3,
+ 3,
+ 3,
+ 25,
+ 23,
+ 3,
+ 3,
+ 35,
+ 3,
+ 2,
+ 6,
+ 8,
+ 6,
+ 8,
+ 16,
+ 3,
+ 8,
+ 7,
+ 6,
+ 8,
+ 13,
+ 6,
+ 3,
+ 5,
+ 9,
+ 20,
+ 17,
+ 4,
+ 10,
+ 40,
+ 4,
+ 5,
+ 30,
+ 27,
+ 4,
+ 3,
+ 7,
+ 4,
+ 5,
+ 7,
+ 6,
+ 12,
+ 13,
+ 16,
+ 5,
+ 6,
+ 13,
+ 4,
+ 3,
+ 7,
+ 8,
+ 17,
+ 15,
+ 4,
+ 3,
+ 3,
+ 24,
+ 31,
+ 7,
+ 3,
+ 6,
+ 3,
+ 5,
+ 3,
+ 14,
+ 7,
+ 10,
+ 5,
+ 4,
+ 6,
+ 4,
+ 11,
+ 7,
+ 3,
+ 9,
+ 21,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 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,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 6,
+ 2,
+ 4,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 4,
+ 2,
+ 5,
+ 3,
+ 3,
+ 5,
+ 5,
+ 5,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 9,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 6,
+ 1,
+ 2,
+ 4,
+ 2,
+ 1,
+ 3,
+ 4,
+ 2,
+ 1,
+ 3,
+ 1,
+ 3,
+ 7,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 3,
+ 3,
+ 3,
+ 1,
+ 7,
+ 1,
+ 5,
+ 5,
+ 5,
+ 3,
+ 3,
+ 4,
+ 3,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 4,
+ 2,
+ 4,
+ 3,
+ 3,
+ 3,
+ 4,
+ 3,
+ 6,
+ 6,
+ 5,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 7,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 7,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 5,
+ 2,
+ 2,
+ 5,
+ 10,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 6,
+ 1,
+ 1,
+ 2,
+ 2,
+ 5,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 1,
+ 1,
+ 5,
+ 2,
+ 7,
+ 3,
+ 2,
+ 3,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 3,
+ 3,
+ 5,
+ 3,
+ 5,
+ 4,
+ 3,
+ 7,
+ 3,
+ 3,
+ 3,
+ 4,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 4,
+ 3,
+ 4,
+ 4,
+ 4,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 4,
+ 3,
+ 6,
+ 4,
+ 3,
+ 7,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 5,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 5,
+ 2,
+ 7,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 4,
+ 7,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 5,
+ 1,
+ 1,
+ 1,
+ 4,
+ 3,
+ 3,
+ 3,
+ 4,
+ 4,
+ 2,
+ 4,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 4,
+ 3,
+ 3,
+ 3,
+ 5,
+ 3,
+ 2,
+ 3,
+ 3,
+ 4,
+ 4,
+ 3,
+ 3,
+ 2,
+ 3,
+ 5,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 3,
+ 5,
+ 6,
+ 2,
+ 4,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 6,
+ 2,
+ 2,
+ 9,
+ 3,
+ 2,
+ 5,
+ 2,
+ 3,
+ 3,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 10,
+ 2,
+ 3,
+ 2,
+ 6,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 2,
+ 5,
+ 2,
+ 2,
+ 3,
+ 3,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 3,
+ 3,
+ 1,
+ 3,
+ 3,
+ 5,
+ 3,
+ 3,
+ 5,
+ 3,
+ 3,
+ 3,
+ 2,
+ 5,
+ 3,
+ 3,
+ 5,
+ 3,
+ 5,
+ 4,
+ 3,
+ 5,
+ 5,
+ 2,
+ 3,
+ 9,
+ 3,
+ 3,
+ 3,
+ 5,
+ 3,
+ 4,
+ 3,
+ 4,
+ 1,
+ 1,
+ 1,
+ 4,
+ 4,
+ 2,
+ 5,
+ 3,
+ 6,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 5,
+ 6,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 4,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 8,
+ 12,
+ 5,
+ 1,
+ 1,
+ 8,
+ 1,
+ 4,
+ 4,
+ 5,
+ 3,
+ 2,
+ 8,
+ 4,
+ 3,
+ 5,
+ 2,
+ 3,
+ 3,
+ 4,
+ 5,
+ 3,
+ 4,
+ 3,
+ 7,
+ 3,
+ 3,
+ 4,
+ 7,
+ 2,
+ 3,
+ 6,
+ 3,
+ 3,
+ 4,
+ 4,
+ 5,
+ 2,
+ 5,
+ 6,
+ 6,
+ 3,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 6,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 9,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 3,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 2,
+ 4,
+ 12,
+ 2,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 3,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 2,
+ 8,
+ 8,
+ 3,
+ 3,
+ 5,
+ 4,
+ 2,
+ 2,
+ 5,
+ 8,
+ 4,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 6,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 6,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 3,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 4,
+ 14,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 1,
+ 3,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 3,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 3,
+ 2,
+ 7,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 3,
+ 1,
+ 3,
+ 3,
+ 5,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 3,
+ 3,
+ 4,
+ 3,
+ 5,
+ 4,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 5,
+ 3,
+ 7,
+ 3,
+ 5,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 4,
+ 5,
+ 2,
+ 5,
+ 9,
+ 9,
+ 4,
+ 3,
+ 3,
+ 6,
+ 2,
+ 3,
+ 3,
+ 2,
+ 3,
+ 11,
+ 2,
+ 4,
+ 5,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 7,
+ 4,
+ 7,
+ 7,
+ 2,
+ 4,
+ 2,
+ 5,
+ 4,
+ 4,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 3,
+ 2,
+ 3,
+ 2,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 7,
+ 2,
+ 2,
+ 10,
+ 1,
+ 2,
+ 3,
+ 4,
+ 2,
+ 4,
+ 7,
+ 1,
+ 2,
+ 2,
+ 3,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 4,
+ 5,
+ 5,
+ 2,
+ 2,
+ 4,
+ 2,
+ 3,
+ 2,
+ 10,
+ 2,
+ 3,
+ 3,
+ 4,
+ 3,
+ 6,
+ 3,
+ 4,
+ 8,
+ 4,
+ 3,
+ 12,
+ 12,
+ 3,
+ 2,
+ 5,
+ 5,
+ 4,
+ 5,
+ 2,
+ 10,
+ 6,
+ 3,
+ 3,
+ 4,
+ 5,
+ 4,
+ 7,
+ 6,
+ 3,
+ 2,
+ 6,
+ 9,
+ 2,
+ 4,
+ 5,
+ 4,
+ 9,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 2,
+ 1,
+ 12,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 10,
+ 4,
+ 1,
+ 1,
+ 6,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 4,
+ 3,
+ 2,
+ 8,
+ 5,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 2,
+ 3,
+ 2,
+ 13,
+ 2,
+ 6,
+ 2,
+ 2,
+ 7,
+ 4,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 10,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 11,
+ 13,
+ 1,
+ 4,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 12,
+ 3,
+ 1,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 1,
+ 6,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 4,
+ 12,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 2,
+ 1,
+ 3,
+ 6,
+ 3,
+ 2,
+ 4,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 7,
+ 8,
+ 3,
+ 11,
+ 3,
+ 3,
+ 3,
+ 4,
+ 3,
+ 7,
+ 4,
+ 6,
+ 2,
+ 3,
+ 4,
+ 2,
+ 3,
+ 5,
+ 3,
+ 9,
+ 3,
+ 2,
+ 4,
+ 3,
+ 6,
+ 5,
+ 3,
+ 3,
+ 3,
+ 5,
+ 3,
+ 5,
+ 3,
+ 7,
+ 2,
+ 3,
+ 4,
+ 4,
+ 4,
+ 3,
+ 3,
+ 3,
+ 4,
+ 4,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 2,
+ 8,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 13,
+ 2,
+ 1,
+ 3,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 6,
+ 2,
+ 2,
+ 2,
+ 6,
+ 1,
+ 2,
+ 5,
+ 1,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 11,
+ 2,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 5,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 4,
+ 3,
+ 3,
+ 4,
+ 5,
+ 3,
+ 4,
+ 3,
+ 12,
+ 4,
+ 6,
+ 3,
+ 3,
+ 4,
+ 13,
+ 3,
+ 3,
+ 2,
+ 3,
+ 6,
+ 4,
+ 3,
+ 3,
+ 3,
+ 4,
+ 2,
+ 8,
+ 3,
+ 7,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 5,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 2,
+ 3,
+ 8,
+ 7,
+ 4,
+ 6,
+ 3,
+ 4,
+ 3,
+ 3,
+ 3,
+ 7,
+ 2,
+ 4,
+ 3,
+ 3,
+ 4,
+ 3,
+ 3,
+ 9,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 3,
+ 9,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 3,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 7,
+ 2,
+ 15,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 1,
+ 3,
+ 5,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 4,
+ 15,
+ 4,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 3,
+ 3,
+ 3,
+ 3,
+ 9,
+ 3,
+ 7,
+ 4,
+ 2,
+ 7,
+ 3,
+ 13,
+ 3,
+ 10,
+ 3,
+ 6,
+ 3,
+ 2,
+ 3,
+ 3,
+ 4,
+ 3,
+ 3,
+ 10,
+ 3,
+ 3,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 9,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 4,
+ 3,
+ 3,
+ 6,
+ 4,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 8,
+ 1,
+ 4,
+ 1,
+ 4,
+ 2,
+ 4,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 9,
+ 1,
+ 2,
+ 2,
+ 4,
+ 2,
+ 5,
+ 1,
+ 7,
+ 1,
+ 5,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 9,
+ 3,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 13,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 3,
+ 11,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 13,
+ 2,
+ 2,
+ 5,
+ 4,
+ 2,
+ 3,
+ 2,
+ 10,
+ 2,
+ 2,
+ 2,
+ 11,
+ 9,
+ 3,
+ 2,
+ 2,
+ 3,
+ 7,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 7,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 9,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 5,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 1,
+ 3,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 3,
+ 3,
+ 3,
+ 4,
+ 4,
+ 7,
+ 7,
+ 2,
+ 2,
+ 4,
+ 3,
+ 3,
+ 2,
+ 5,
+ 7,
+ 4,
+ 4,
+ 5,
+ 3,
+ 3,
+ 5,
+ 10,
+ 4,
+ 6,
+ 5,
+ 5,
+ 7,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 5,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 5,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 5,
+ 4,
+ 2,
+ 1,
+ 1,
+ 8,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 7,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 7,
+ 3,
+ 5,
+ 10,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 7,
+ 8,
+ 3,
+ 4,
+ 3,
+ 3,
+ 10,
+ 5,
+ 2,
+ 4,
+ 7,
+ 2,
+ 4,
+ 4,
+ 2,
+ 2,
+ 8,
+ 3,
+ 8,
+ 2,
+ 3,
+ 2,
+ 7,
+ 2,
+ 1,
+ 1,
+ 7,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 6,
+ 5,
+ 5,
+ 2,
+ 3,
+ 9,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 12,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 3,
+ 4,
+ 3,
+ 2,
+ 3,
+ 2,
+ 5,
+ 11,
+ 2,
+ 3,
+ 4,
+ 12,
+ 2,
+ 3,
+ 2,
+ 11,
+ 2,
+ 3,
+ 6,
+ 3,
+ 9,
+ 7,
+ 4,
+ 5,
+ 9,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 13,
+ 2,
+ 6,
+ 2,
+ 3,
+ 2,
+ 4,
+ 5,
+ 3,
+ 2,
+ 4,
+ 3,
+ 5,
+ 6,
+ 3,
+ 5,
+ 4,
+ 3,
+ 15,
+ 3,
+ 2,
+ 4,
+ 5,
+ 3,
+ 4,
+ 3,
+ 4,
+ 4,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 2,
+ 6,
+ 4,
+ 5,
+ 2,
+ 7,
+ 4,
+ 2,
+ 8,
+ 2,
+ 3,
+ 4,
+ 2,
+ 4,
+ 3,
+ 6,
+ 2,
+ 4,
+ 3,
+ 3,
+ 3,
+ 3,
+ 9,
+ 3,
+ 4,
+ 5,
+ 5,
+ 5,
+ 2,
+ 5,
+ 7,
+ 5,
+ 4,
+ 5,
+ 6,
+ 4,
+ 5,
+ 8,
+ 4,
+ 2,
+ 3,
+ 3,
+ 5,
+ 2,
+ 11,
+ 2,
+ 4,
+ 2,
+ 11,
+ 4,
+ 4,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 4,
+ 3,
+ 12,
+ 9,
+ 5,
+ 2,
+ 2,
+ 8,
+ 10,
+ 5,
+ 4,
+ 9,
+ 7,
+ 2,
+ 2,
+ 10,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 5,
+ 5,
+ 1,
+ 1,
+ 1,
+ 3,
+ 4,
+ 1,
+ 1,
+ 3,
+ 11,
+ 2,
+ 13,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 13,
+ 1,
+ 4,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 12,
+ 12,
+ 3,
+ 7,
+ 5,
+ 7,
+ 2,
+ 9,
+ 6,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 6,
+ 27,
+ 2,
+ 5,
+ 2,
+ 6,
+ 11,
+ 3,
+ 12,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 19,
+ 2,
+ 2,
+ 2,
+ 10,
+ 2,
+ 3,
+ 6,
+ 3,
+ 2,
+ 2,
+ 3,
+ 8,
+ 3,
+ 4,
+ 7,
+ 19,
+ 3,
+ 5,
+ 4,
+ 5,
+ 5,
+ 5,
+ 8,
+ 2,
+ 5,
+ 2,
+ 11,
+ 3,
+ 3,
+ 7,
+ 3,
+ 2,
+ 3,
+ 4,
+ 4,
+ 6,
+ 4,
+ 2,
+ 3,
+ 6,
+ 5,
+ 4,
+ 11,
+ 6,
+ 3,
+ 6,
+ 4,
+ 10,
+ 10,
+ 5,
+ 10,
+ 3,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 4,
+ 6,
+ 24,
+ 2,
+ 11,
+ 3,
+ 2,
+ 6,
+ 4,
+ 5,
+ 4,
+ 8,
+ 5,
+ 4,
+ 3,
+ 4,
+ 5,
+ 7,
+ 2,
+ 14,
+ 7,
+ 6,
+ 4,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 9,
+ 3,
+ 5,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 14,
+ 6,
+ 1,
+ 4,
+ 1,
+ 2,
+ 5,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 11,
+ 13,
+ 2,
+ 4,
+ 2,
+ 2,
+ 6,
+ 3,
+ 7,
+ 2,
+ 4,
+ 9,
+ 2,
+ 10,
+ 2,
+ 4,
+ 5,
+ 2,
+ 3,
+ 10,
+ 5,
+ 10,
+ 14,
+ 6,
+ 11,
+ 4,
+ 7,
+ 2,
+ 2,
+ 3,
+ 11,
+ 14,
+ 2,
+ 13,
+ 2,
+ 4,
+ 4,
+ 3,
+ 11,
+ 2,
+ 3,
+ 2,
+ 5,
+ 4,
+ 3,
+ 13,
+ 3,
+ 3,
+ 6,
+ 7,
+ 3,
+ 2,
+ 12,
+ 8,
+ 11,
+ 13,
+ 4,
+ 13,
+ 2,
+ 2,
+ 3,
+ 4,
+ 10,
+ 10,
+ 6,
+ 3,
+ 7,
+ 7,
+ 4,
+ 2,
+ 5,
+ 4,
+ 3,
+ 5,
+ 2,
+ 2,
+ 6,
+ 5,
+ 12,
+ 3,
+ 7,
+ 5,
+ 2,
+ 17,
+ 2,
+ 5,
+ 7,
+ 2,
+ 7,
+ 7,
+ 5,
+ 2,
+ 3,
+ 4,
+ 5,
+ 2,
+ 9,
+ 9,
+ 9,
+ 3,
+ 3,
+ 4,
+ 5,
+ 8,
+ 2,
+ 3,
+ 3,
+ 2,
+ 6,
+ 2,
+ 2,
+ 4,
+ 3,
+ 11,
+ 5,
+ 6,
+ 6,
+ 2,
+ 6,
+ 7,
+ 4,
+ 4,
+ 3,
+ 3,
+ 2,
+ 3,
+ 11,
+ 6,
+ 11,
+ 3,
+ 3,
+ 3,
+ 13,
+ 2,
+ 5,
+ 7,
+ 3,
+ 2,
+ 8,
+ 6,
+ 9,
+ 13,
+ 2,
+ 5,
+ 5,
+ 7,
+ 11,
+ 2,
+ 2,
+ 3,
+ 5,
+ 2,
+ 6,
+ 2,
+ 2,
+ 4,
+ 11,
+ 2,
+ 4,
+ 2,
+ 8,
+ 7,
+ 15,
+ 10,
+ 12,
+ 6,
+ 18,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 14,
+ 1,
+ 2,
+ 5,
+ 1,
+ 2,
+ 2,
+ 5,
+ 1,
+ 1,
+ 6,
+ 1,
+ 4,
+ 2,
+ 5,
+ 5,
+ 6,
+ 6,
+ 4,
+ 22,
+ 2,
+ 4,
+ 11,
+ 2,
+ 13,
+ 8,
+ 7,
+ 3,
+ 2,
+ 12,
+ 5,
+ 10,
+ 2,
+ 4,
+ 17,
+ 17,
+ 2,
+ 3,
+ 15,
+ 17,
+ 4,
+ 9,
+ 8,
+ 14,
+ 21,
+ 15,
+ 12,
+ 3,
+ 10,
+ 4,
+ 4,
+ 4,
+ 8,
+ 10,
+ 8,
+ 5,
+ 4,
+ 4,
+ 3,
+ 4,
+ 3,
+ 8,
+ 8,
+ 5,
+ 11,
+ 2,
+ 15,
+ 5,
+ 20,
+ 9,
+ 17,
+ 17,
+ 1,
+ 11,
+ 6,
+ 14,
+ 1,
+ 17,
+ 10,
+ 11,
+ 9,
+ 4,
+ 1,
+ 2,
+ 8,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 9,
+ 7,
+ 4,
+ 5,
+ 1,
+ 11,
+ 12,
+ 10,
+ 4,
+ 4,
+ 5,
+ 10,
+ 9,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 2,
+ 3,
+ 9,
+ 17,
+ 4,
+ 8,
+ 7,
+ 17,
+ 10,
+ 8,
+ 2,
+ 4,
+ 7,
+ 3,
+ 23,
+ 18,
+ 5,
+ 8,
+ 2,
+ 5,
+ 5,
+ 4,
+ 4,
+ 2,
+ 2,
+ 6,
+ 14,
+ 10,
+ 4,
+ 8,
+ 1,
+ 1,
+ 14,
+ 11,
+ 5,
+ 10,
+ 5,
+ 18,
+ 6,
+ 9,
+ 2,
+ 4,
+ 3,
+ 11,
+ 13,
+ 8,
+ 1,
+ 1,
+ 3,
+ 10,
+ 1,
+ 1,
+ 1,
+ 2,
+ 13,
+ 9,
+ 1,
+ 1,
+ 6,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 7,
+ 13,
+ 3,
+ 9,
+ 3,
+ 7,
+ 2,
+ 4,
+ 1,
+ 16,
+ 7,
+ 1,
+ 1,
+ 1,
+ 3,
+ 4,
+ 2,
+ 1,
+ 1,
+ 10,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 5,
+ 1,
+ 10,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 9,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 9,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 7,
+ 10,
+ 8,
+ 2,
+ 7,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 14,
+ 9,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 11,
+ 2,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 9,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 4,
+ 1,
+ 8,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 6,
+ 5,
+ 5,
+ 10,
+ 3,
+ 3,
+ 9,
+ 6,
+ 5,
+ 3,
+ 3,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 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,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 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,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 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,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 4,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 2,
+ 3,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 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,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 5,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 6,
+ 2,
+ 6,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 5,
+ 3,
+ 7,
+ 2,
+ 2,
+ 3,
+ 5,
+ 2,
+ 5,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 4,
+ 3,
+ 2,
+ 3,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 3,
+ 5,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 4,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 6,
+ 2,
+ 5,
+ 4,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 5,
+ 3,
+ 3,
+ 5,
+ 5,
+ 5,
+ 5,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 6,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 5,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 3,
+ 4,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 5,
+ 1,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 7,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 5,
+ 2,
+ 7,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 4,
+ 4,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 4,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 4,
+ 2,
+ 3,
+ 3,
+ 5,
+ 5,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 7,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 3,
+ 3,
+ 9,
+ 3,
+ 3,
+ 3,
+ 4,
+ 2,
+ 4,
+ 2,
+ 3,
+ 5,
+ 3,
+ 7,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 5,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 5,
+ 2,
+ 7,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 6,
+ 4,
+ 3,
+ 6,
+ 2,
+ 6,
+ 3,
+ 7,
+ 2,
+ 2,
+ 3,
+ 2,
+ 6,
+ 2,
+ 3,
+ 3,
+ 3,
+ 7,
+ 2,
+ 5,
+ 6,
+ 2,
+ 7,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 7,
+ 2,
+ 2,
+ 6,
+ 2,
+ 2,
+ 2,
+ 2,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 5,
+ 1,
+ 4,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 3,
+ 2,
+ 4,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 2,
+ 5,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 4,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 6,
+ 2,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 2,
+ 5,
+ 2,
+ 5,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 2,
+ 1,
+ 4,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 8,
+ 5,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 5,
+ 1,
+ 7,
+ 1,
+ 4,
+ 2,
+ 3,
+ 3,
+ 1,
+ 3,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 2,
+ 1,
+ 2,
+ 1,
+ 4,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 3,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 7,
+ 2,
+ 3,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 6,
+ 4,
+ 2,
+ 1,
+ 5,
+ 8,
+ 1,
+ 4,
+ 5,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 9,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 4,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 4,
+ 2,
+ 5,
+ 3,
+ 3,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 4,
+ 2,
+ 3,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 4,
+ 2,
+ 3,
+ 2,
+ 1,
+ 4,
+ 1,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 6,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 8,
+ 2,
+ 7,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 4,
+ 4,
+ 3,
+ 2,
+ 3,
+ 6,
+ 2,
+ 3,
+ 4,
+ 2,
+ 6,
+ 3,
+ 2,
+ 9,
+ 3,
+ 4,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 5,
+ 2,
+ 4,
+ 2,
+ 5,
+ 4,
+ 2,
+ 7,
+ 2,
+ 3,
+ 3,
+ 2,
+ 5,
+ 4,
+ 3,
+ 2,
+ 4,
+ 3,
+ 3,
+ 5,
+ 4,
+ 2,
+ 3,
+ 4,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 6,
+ 4,
+ 3,
+ 2,
+ 4,
+ 4,
+ 5,
+ 3,
+ 6,
+ 6,
+ 2,
+ 3,
+ 9,
+ 2,
+ 2,
+ 2,
+ 11,
+ 4,
+ 9,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 7,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 4,
+ 1,
+ 3,
+ 1,
+ 6,
+ 1,
+ 1,
+ 3,
+ 4,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 10,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 7,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 4,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 7,
+ 1,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 10,
+ 1,
+ 2,
+ 1,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 4,
+ 3,
+ 2,
+ 2,
+ 1,
+ 3,
+ 6,
+ 2,
+ 1,
+ 7,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 3,
+ 5,
+ 2,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 2,
+ 1,
+ 5,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 3,
+ 1,
+ 7,
+ 2,
+ 3,
+ 6,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 2,
+ 7,
+ 2,
+ 5,
+ 1,
+ 9,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 4,
+ 2,
+ 4,
+ 1,
+ 2,
+ 5,
+ 7,
+ 6,
+ 7,
+ 2,
+ 7,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 5,
+ 6,
+ 3,
+ 4,
+ 6,
+ 2,
+ 3,
+ 3,
+ 7,
+ 5,
+ 1,
+ 2,
+ 3,
+ 1,
+ 3,
+ 4,
+ 1,
+ 1,
+ 8,
+ 3,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 1,
+ 5,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 9,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 5,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 4,
+ 2,
+ 4,
+ 8,
+ 3,
+ 9,
+ 6,
+ 4,
+ 5,
+ 3,
+ 2,
+ 10,
+ 2,
+ 4,
+ 2,
+ 3,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 4,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 7,
+ 2,
+ 2,
+ 4,
+ 4,
+ 2,
+ 2,
+ 5,
+ 7,
+ 2,
+ 3,
+ 2,
+ 3,
+ 7,
+ 2,
+ 5,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 4,
+ 3,
+ 2,
+ 5,
+ 2,
+ 3,
+ 5,
+ 5,
+ 7,
+ 9,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 3,
+ 2,
+ 8,
+ 2,
+ 3,
+ 7,
+ 10,
+ 5,
+ 4,
+ 3,
+ 3,
+ 2,
+ 3,
+ 5,
+ 4,
+ 2,
+ 7,
+ 7,
+ 3,
+ 4,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 4,
+ 7,
+ 4,
+ 2,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 12,
+ 6,
+ 4,
+ 3,
+ 2,
+ 5,
+ 5,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 9,
+ 1,
+ 5,
+ 1,
+ 2,
+ 2,
+ 22,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 11,
+ 1,
+ 1,
+ 1,
+ 6,
+ 3,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 13,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 19,
+ 2,
+ 10,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 13,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 12,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 6,
+ 2,
+ 2,
+ 3,
+ 3,
+ 8,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 10,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 4,
+ 2,
+ 3,
+ 5,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 8,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 3,
+ 7,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 6,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 2,
+ 2,
+ 3,
+ 3,
+ 7,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 6,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 12,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 3,
+ 7,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 3,
+ 6,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 5,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 6,
+ 5,
+ 4,
+ 3,
+ 2,
+ 4,
+ 2,
+ 6,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 12,
+ 2,
+ 2,
+ 2,
+ 4,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 3,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 4,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 4,
+ 2,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 4,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 3,
+ 4,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 7,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 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,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 6,
+ 4,
+ 1,
+ 3,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 8,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 5,
+ 2,
+ 5,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 6,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 4,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 3,
+ 5,
+ 2,
+ 5,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 12,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 3,
+ 3,
+ 1,
+ 1,
+ 4,
+ 5,
+ 1,
+ 1,
+ 6,
+ 3,
+ 2,
+ 1,
+ 1,
+ 5,
+ 3,
+ 6,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 5,
+ 6,
+ 5,
+ 5,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 6,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 4,
+ 5,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 6,
+ 1,
+ 5,
+ 3,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 5,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 3,
+ 4,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 5,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 1,
+ 3,
+ 2,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 5,
+ 2,
+ 3,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 1,
+ 1,
+ 12,
+ 3,
+ 1,
+ 3,
+ 3,
+ 4,
+ 2,
+ 4,
+ 5,
+ 3,
+ 3,
+ 4,
+ 3,
+ 1,
+ 5,
+ 2,
+ 1,
+ 2,
+ 2,
+ 7,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 4,
+ 3,
+ 4,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 6,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 4,
+ 4,
+ 5,
+ 5,
+ 4,
+ 2,
+ 3,
+ 2,
+ 6,
+ 2,
+ 3,
+ 2,
+ 2,
+ 5,
+ 4,
+ 6,
+ 5,
+ 2,
+ 3,
+ 6,
+ 2,
+ 4,
+ 3,
+ 4,
+ 3,
+ 4,
+ 2,
+ 5,
+ 2,
+ 2,
+ 4,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 4,
+ 2,
+ 6,
+ 3,
+ 2,
+ 4,
+ 4,
+ 4,
+ 4,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 6,
+ 2,
+ 4,
+ 3,
+ 5,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 5,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 3,
+ 4,
+ 5,
+ 7,
+ 8,
+ 7,
+ 1,
+ 4,
+ 5,
+ 1,
+ 1,
+ 2,
+ 1,
+ 9,
+ 2,
+ 3,
+ 2,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 16,
+ 2,
+ 1,
+ 2,
+ 2,
+ 6,
+ 1,
+ 4,
+ 2,
+ 3,
+ 12,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 4,
+ 23,
+ 8,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 10,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 6,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 3,
+ 1,
+ 11,
+ 2,
+ 3,
+ 3,
+ 2,
+ 5,
+ 5,
+ 3,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 5,
+ 2,
+ 1,
+ 1,
+ 4,
+ 4,
+ 4,
+ 2,
+ 3,
+ 4,
+ 6,
+ 2,
+ 3,
+ 3,
+ 4,
+ 6,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 5,
+ 3,
+ 3,
+ 6,
+ 4,
+ 9,
+ 4,
+ 4,
+ 7,
+ 3,
+ 3,
+ 4,
+ 2,
+ 4,
+ 5,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 4,
+ 1,
+ 3,
+ 3,
+ 3,
+ 4,
+ 2,
+ 4,
+ 5,
+ 3,
+ 3,
+ 4,
+ 10,
+ 3,
+ 6,
+ 3,
+ 2,
+ 5,
+ 3,
+ 5,
+ 6,
+ 5,
+ 4,
+ 4,
+ 5,
+ 6,
+ 5,
+ 3,
+ 5,
+ 4,
+ 5,
+ 2,
+ 2,
+ 4,
+ 4,
+ 1,
+ 4,
+ 1,
+ 4,
+ 5,
+ 1,
+ 5,
+ 5,
+ 6,
+ 4,
+ 6,
+ 2,
+ 8,
+ 5,
+ 5,
+ 5,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 8,
+ 4,
+ 2,
+ 5,
+ 2,
+ 3,
+ 3,
+ 5,
+ 6,
+ 6,
+ 5,
+ 4,
+ 4,
+ 5,
+ 2,
+ 2,
+ 7,
+ 2,
+ 5,
+ 6,
+ 5,
+ 7,
+ 3,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 5,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 9,
+ 1,
+ 5,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 8,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 6,
+ 5,
+ 3,
+ 2,
+ 2,
+ 3,
+ 4,
+ 4,
+ 2,
+ 3,
+ 9,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 7,
+ 2,
+ 5,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 7,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 5,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 8,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 9,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 8,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 4,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 6,
+ 4,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 4,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 4,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 4,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 8,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 1,
+ 4,
+ 4,
+ 5,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 11,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 8,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 6,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 8,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 5,
+ 2,
+ 1,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 6,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 6,
+ 2,
+ 4,
+ 8,
+ 2,
+ 4,
+ 3,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 4,
+ 4,
+ 2,
+ 4,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 4,
+ 2,
+ 8,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 8,
+ 1,
+ 6,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 1,
+ 1,
+ 5,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 3,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 4,
+ 3,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 1,
+ 6,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 6,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 6,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 5,
+ 3,
+ 2,
+ 1,
+ 6,
+ 2,
+ 2,
+ 4,
+ 3,
+ 4,
+ 3,
+ 2,
+ 4,
+ 4,
+ 5,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 4,
+ 3,
+ 6,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 4,
+ 3,
+ 2,
+ 3,
+ 7,
+ 2,
+ 2,
+ 4,
+ 1,
+ 4,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 4,
+ 1,
+ 4,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 3,
+ 2,
+ 7,
+ 5,
+ 6,
+ 5,
+ 3,
+ 6,
+ 3,
+ 4,
+ 2,
+ 8,
+ 7,
+ 5,
+ 8,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 3,
+ 1,
+ 5,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 7,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 7,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 2,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 8,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 9,
+ 3,
+ 2,
+ 4,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 5,
+ 3,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 5,
+ 5,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 3,
+ 6,
+ 6,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 6,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 5,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 5,
+ 3,
+ 3,
+ 3,
+ 2,
+ 4,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 5,
+ 6,
+ 2,
+ 5,
+ 2,
+ 12,
+ 8,
+ 4,
+ 2,
+ 2,
+ 2,
+ 6,
+ 3,
+ 2,
+ 2,
+ 4,
+ 3,
+ 9,
+ 2,
+ 6,
+ 2,
+ 3,
+ 3,
+ 6,
+ 2,
+ 3,
+ 7,
+ 5,
+ 6,
+ 6,
+ 3,
+ 2,
+ 2,
+ 6,
+ 6,
+ 3,
+ 8,
+ 3,
+ 3,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 4,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 4,
+ 3,
+ 3,
+ 12,
+ 3,
+ 5,
+ 1,
+ 5,
+ 1,
+ 8,
+ 2,
+ 1,
+ 1,
+ 7,
+ 1,
+ 4,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 3,
+ 5,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 3,
+ 1,
+ 2,
+ 5,
+ 1,
+ 3,
+ 4,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 3,
+ 1,
+ 5,
+ 2,
+ 1,
+ 5,
+ 10,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 8,
+ 4,
+ 6,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 4,
+ 4,
+ 4,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 5,
+ 2,
+ 5,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 9,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 6,
+ 1,
+ 2,
+ 2,
+ 5,
+ 2,
+ 4,
+ 2,
+ 4,
+ 2,
+ 3,
+ 6,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 4,
+ 7,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 3,
+ 6,
+ 5,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 10,
+ 4,
+ 4,
+ 4,
+ 4,
+ 2,
+ 4,
+ 2,
+ 6,
+ 5,
+ 4,
+ 3,
+ 2,
+ 5,
+ 5,
+ 3,
+ 8,
+ 2,
+ 2,
+ 3,
+ 2,
+ 6,
+ 4,
+ 6,
+ 5,
+ 4,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 5,
+ 2,
+ 2,
+ 4,
+ 3,
+ 5,
+ 2,
+ 2,
+ 4,
+ 5,
+ 4,
+ 2,
+ 3,
+ 3,
+ 7,
+ 4,
+ 6,
+ 3,
+ 2,
+ 7,
+ 5,
+ 5,
+ 2,
+ 3,
+ 5,
+ 4,
+ 4,
+ 4,
+ 4,
+ 4,
+ 3,
+ 7,
+ 2,
+ 3,
+ 8,
+ 2,
+ 6,
+ 5,
+ 5,
+ 4,
+ 5,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 7,
+ 6,
+ 1,
+ 1,
+ 9,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 7,
+ 9,
+ 1,
+ 12,
+ 11,
+ 1,
+ 1,
+ 1,
+ 10,
+ 4,
+ 1,
+ 13,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 7,
+ 2,
+ 5,
+ 1,
+ 1,
+ 7,
+ 3,
+ 1,
+ 5,
+ 1,
+ 7,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 5,
+ 2,
+ 2,
+ 2,
+ 2,
+ 8,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 2,
+ 6,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 5,
+ 1,
+ 5,
+ 4,
+ 3,
+ 1,
+ 2,
+ 1,
+ 8,
+ 3,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 6,
+ 1,
+ 2,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 4,
+ 1,
+ 6,
+ 1,
+ 2,
+ 3,
+ 4,
+ 1,
+ 4,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 5,
+ 3,
+ 2,
+ 4,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 4,
+ 2,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 7,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 9,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 5,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 5,
+ 2,
+ 5,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 4,
+ 3,
+ 2,
+ 3,
+ 2,
+ 8,
+ 6,
+ 2,
+ 2,
+ 5,
+ 2,
+ 5,
+ 3,
+ 3,
+ 3,
+ 5,
+ 4,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 4,
+ 3,
+ 3,
+ 3,
+ 5,
+ 4,
+ 4,
+ 5,
+ 3,
+ 11,
+ 2,
+ 2,
+ 6,
+ 4,
+ 2,
+ 9,
+ 3,
+ 3,
+ 2,
+ 3,
+ 5,
+ 4,
+ 3,
+ 8,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 7,
+ 6,
+ 2,
+ 7,
+ 6,
+ 6,
+ 2,
+ 4,
+ 3,
+ 2,
+ 5,
+ 5,
+ 7,
+ 7,
+ 4,
+ 3,
+ 8,
+ 2,
+ 8,
+ 5,
+ 6,
+ 4,
+ 2,
+ 1,
+ 1,
+ 8,
+ 6,
+ 3,
+ 1,
+ 8,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 11,
+ 1,
+ 11,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 10,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 4,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 8,
+ 3,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 5,
+ 1,
+ 1,
+ 7,
+ 5,
+ 5,
+ 6,
+ 7,
+ 6,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 12,
+ 8,
+ 1,
+ 5,
+ 7,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 4,
+ 2,
+ 4,
+ 3,
+ 3,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 5,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 9,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 15,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 1,
+ 6,
+ 2,
+ 1,
+ 1,
+ 8,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 3,
+ 5,
+ 2,
+ 2,
+ 7,
+ 4,
+ 2,
+ 1,
+ 3,
+ 6,
+ 2,
+ 2,
+ 6,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 8,
+ 2,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 3,
+ 6,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 7,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 6,
+ 4,
+ 2,
+ 2,
+ 2,
+ 4,
+ 4,
+ 6,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 4,
+ 4,
+ 4,
+ 2,
+ 5,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 6,
+ 7,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 8,
+ 2,
+ 2,
+ 3,
+ 2,
+ 4,
+ 10,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 2,
+ 4,
+ 4,
+ 3,
+ 9,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 7,
+ 5,
+ 2,
+ 2,
+ 6,
+ 4,
+ 5,
+ 3,
+ 4,
+ 5,
+ 3,
+ 5,
+ 7,
+ 4,
+ 5,
+ 7,
+ 4,
+ 5,
+ 10,
+ 3,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 6,
+ 5,
+ 5,
+ 7,
+ 4,
+ 6,
+ 2,
+ 11,
+ 6,
+ 3,
+ 7,
+ 5,
+ 4,
+ 9,
+ 3,
+ 3,
+ 2,
+ 4,
+ 4,
+ 3,
+ 3,
+ 2,
+ 3,
+ 6,
+ 7,
+ 2,
+ 4,
+ 5,
+ 6,
+ 6,
+ 3,
+ 4,
+ 2,
+ 5,
+ 4,
+ 4,
+ 9,
+ 6,
+ 3,
+ 4,
+ 5,
+ 2,
+ 8,
+ 5,
+ 7,
+ 8,
+ 4,
+ 1,
+ 3,
+ 1,
+ 1,
+ 5,
+ 1,
+ 9,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 8,
+ 2,
+ 4,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 8,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 4,
+ 1,
+ 6,
+ 4,
+ 4,
+ 1,
+ 1,
+ 9,
+ 1,
+ 2,
+ 5,
+ 1,
+ 6,
+ 7,
+ 4,
+ 4,
+ 6,
+ 1,
+ 1,
+ 1,
+ 3,
+ 5,
+ 1,
+ 1,
+ 5,
+ 9,
+ 7,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 5,
+ 3,
+ 5,
+ 7,
+ 2,
+ 1,
+ 1,
+ 5,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 8,
+ 2,
+ 2,
+ 5,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 11,
+ 2,
+ 5,
+ 9,
+ 2,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 6,
+ 1,
+ 2,
+ 1,
+ 7,
+ 1,
+ 1,
+ 11,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 6,
+ 3,
+ 2,
+ 4,
+ 6,
+ 7,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 7,
+ 2,
+ 4,
+ 2,
+ 4,
+ 4,
+ 11,
+ 1,
+ 4,
+ 4,
+ 7,
+ 2,
+ 3,
+ 2,
+ 1,
+ 10,
+ 1,
+ 2,
+ 3,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 5,
+ 2,
+ 2,
+ 3,
+ 7,
+ 4,
+ 2,
+ 4,
+ 3,
+ 2,
+ 4,
+ 11,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 9,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 4,
+ 2,
+ 11,
+ 5,
+ 2,
+ 3,
+ 9,
+ 2,
+ 2,
+ 7,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 9,
+ 3,
+ 3,
+ 6,
+ 5,
+ 9,
+ 8,
+ 3,
+ 8,
+ 5,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 15,
+ 2,
+ 2,
+ 2,
+ 2,
+ 10,
+ 5,
+ 7,
+ 8,
+ 5,
+ 3,
+ 2,
+ 3,
+ 8,
+ 2,
+ 5,
+ 3,
+ 8,
+ 3,
+ 2,
+ 3,
+ 6,
+ 2,
+ 4,
+ 5,
+ 2,
+ 8,
+ 3,
+ 5,
+ 3,
+ 5,
+ 2,
+ 4,
+ 4,
+ 3,
+ 3,
+ 3,
+ 6,
+ 2,
+ 2,
+ 3,
+ 4,
+ 5,
+ 5,
+ 3,
+ 4,
+ 6,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 5,
+ 3,
+ 3,
+ 5,
+ 2,
+ 10,
+ 4,
+ 3,
+ 3,
+ 2,
+ 11,
+ 3,
+ 8,
+ 2,
+ 3,
+ 3,
+ 8,
+ 3,
+ 4,
+ 2,
+ 3,
+ 3,
+ 8,
+ 4,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 7,
+ 3,
+ 2,
+ 6,
+ 2,
+ 6,
+ 3,
+ 9,
+ 2,
+ 4,
+ 3,
+ 8,
+ 6,
+ 10,
+ 3,
+ 9,
+ 2,
+ 2,
+ 4,
+ 4,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 6,
+ 2,
+ 4,
+ 7,
+ 3,
+ 11,
+ 3,
+ 6,
+ 2,
+ 5,
+ 2,
+ 5,
+ 7,
+ 4,
+ 5,
+ 6,
+ 10,
+ 5,
+ 5,
+ 6,
+ 6,
+ 10,
+ 8,
+ 4,
+ 3,
+ 5,
+ 7,
+ 8,
+ 4,
+ 4,
+ 5,
+ 6,
+ 5,
+ 5,
+ 2,
+ 2,
+ 3,
+ 2,
+ 5,
+ 8,
+ 6,
+ 4,
+ 6,
+ 7,
+ 7,
+ 9,
+ 7,
+ 8,
+ 7,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 5,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 9,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 13,
+ 9,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 5,
+ 4,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 4,
+ 5,
+ 11,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 5,
+ 6,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 5,
+ 2,
+ 7,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 6,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 6,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 8,
+ 4,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 4,
+ 4,
+ 5,
+ 4,
+ 5,
+ 2,
+ 3,
+ 3,
+ 8,
+ 4,
+ 5,
+ 6,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 4,
+ 4,
+ 7,
+ 4,
+ 3,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 12,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 6,
+ 10,
+ 6,
+ 2,
+ 5,
+ 4,
+ 2,
+ 6,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 5,
+ 4,
+ 4,
+ 7,
+ 3,
+ 2,
+ 3,
+ 5,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 6,
+ 3,
+ 4,
+ 7,
+ 2,
+ 9,
+ 2,
+ 4,
+ 2,
+ 2,
+ 8,
+ 3,
+ 8,
+ 2,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 7,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 4,
+ 4,
+ 1,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 5,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 7,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 2,
+ 4,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 7,
+ 6,
+ 3,
+ 2,
+ 8,
+ 2,
+ 1,
+ 1,
+ 3,
+ 6,
+ 3,
+ 3,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 4,
+ 3,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 4,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 3,
+ 4,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 4,
+ 5,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 5,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 5,
+ 4,
+ 1,
+ 2,
+ 5,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 4,
+ 2,
+ 3,
+ 3,
+ 4,
+ 2,
+ 2,
+ 5,
+ 2,
+ 3,
+ 3,
+ 3,
+ 5,
+ 3,
+ 2,
+ 4,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 7,
+ 6,
+ 4,
+ 15,
+ 3,
+ 3,
+ 2,
+ 4,
+ 5,
+ 5,
+ 2,
+ 2,
+ 3,
+ 5,
+ 2,
+ 1,
+ 5,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 7,
+ 2,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 4,
+ 4,
+ 2,
+ 2,
+ 7,
+ 3,
+ 2,
+ 3,
+ 7,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 6,
+ 4,
+ 4,
+ 2,
+ 5,
+ 3,
+ 6,
+ 9,
+ 6,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 5,
+ 2,
+ 1,
+ 3,
+ 6,
+ 4,
+ 2,
+ 6,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 4,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 4,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 2,
+ 2,
+ 4,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 5,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 11,
+ 3,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 4,
+ 5,
+ 4,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 5,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 4,
+ 1,
+ 1,
+ 2,
+ 3,
+ 5,
+ 2,
+ 3,
+ 5,
+ 6,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 4,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 5,
+ 1,
+ 1,
+ 1,
+ 12,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 3,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 2,
+ 3,
+ 2,
+ 3,
+ 7,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 5,
+ 2,
+ 2,
+ 1,
+ 4,
+ 8,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 5,
+ 1,
+ 2,
+ 2,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 6,
+ 2,
+ 3,
+ 5,
+ 3,
+ 1,
+ 1,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 2,
+ 5,
+ 2,
+ 4,
+ 2,
+ 5,
+ 3,
+ 1,
+ 1,
+ 4,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 8,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 2,
+ 4,
+ 1,
+ 5,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 5,
+ 5,
+ 3,
+ 5,
+ 4,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 1,
+ 1,
+ 5,
+ 8,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 7,
+ 2,
+ 2,
+ 1,
+ 3,
+ 3,
+ 1,
+ 4,
+ 4,
+ 1,
+ 1,
+ 8,
+ 3,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 3,
+ 3,
+ 3,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 3,
+ 1,
+ 6,
+ 2,
+ 5,
+ 4,
+ 5,
+ 3,
+ 1,
+ 1,
+ 5,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 6,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 6,
+ 6,
+ 2,
+ 4,
+ 5,
+ 2,
+ 1,
+ 3,
+ 3,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 3,
+ 2,
+ 2,
+ 1,
+ 2,
+ 7,
+ 4,
+ 1,
+ 3,
+ 1,
+ 7,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 6,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 1,
+ 5,
+ 1,
+ 5,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 7,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 3,
+ 5,
+ 1,
+ 2,
+ 4,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 4,
+ 3,
+ 6,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 4,
+ 2,
+ 1,
+ 2,
+ 4,
+ 1,
+ 2,
+ 2,
+ 4,
+ 2,
+ 1,
+ 1,
+ 2,
+ 4,
+ 5,
+ 1,
+ 1,
+ 8,
+ 3,
+ 2,
+ 2,
+ 3,
+ 5,
+ 10,
+ 2,
+ 3,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 2,
+ 7,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 5,
+ 2,
+ 6,
+ 2,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 5,
+ 1,
+ 4,
+ 3,
+ 2,
+ 1,
+ 2,
+ 5,
+ 2,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 2,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 4,
+ 1,
+ 3,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 4,
+ 3,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 6,
+ 1,
+ 2,
+ 5,
+ 6,
+ 1,
+ 3,
+ 1,
+ 3,
+ 2,
+ 4,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 5,
+ 1,
+ 4,
+ 4,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 9,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 2,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 9,
+ 1,
+ 5,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 1,
+ 2,
+ 1,
+ 8,
+ 4,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 2,
+ 5,
+ 2,
+ 3,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 4,
+ 1,
+ 1,
+ 6,
+ 2,
+ 4,
+ 2,
+ 7,
+ 1,
+ 3,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 1,
+ 4,
+ 8,
+ 2,
+ 1,
+ 1,
+ 7,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 4,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 2,
+ 5,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 7,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 16,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 6,
+ 1,
+ 1,
+ 7,
+ 2,
+ 6,
+ 3,
+ 3,
+ 1,
+ 2,
+ 9,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 2,
+ 7,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 4,
+ 2,
+ 1,
+ 1,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 2,
+ 3,
+ 7,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 3,
+ 2,
+ 9,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 4,
+ 2,
+ 3,
+ 4,
+ 2,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 1,
+ 6,
+ 2,
+ 1,
+ 3,
+ 2,
+ 4,
+ 2,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 5,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 5,
+ 2,
+ 3,
+ 4,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 4,
+ 1,
+ 2,
+ 2,
+ 3,
+ 3,
+ 1,
+ 3,
+ 2,
+ 2,
+ 5,
+ 2,
+ 5,
+ 4,
+ 1,
+ 2,
+ 3,
+ 2,
+ 5,
+ 2,
+ 1,
+ 6,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes campaign=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 2,
+ 6,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 6,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 23,
+ 1,
+ 2,
+ 3,
+ 4,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 4,
+ 2,
+ 1,
+ 4,
+ 3,
+ 2,
+ 5,
+ 3,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 5,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 2,
+ 5,
+ 6,
+ 4,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 5,
+ 9,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 5,
+ 1,
+ 2,
+ 1,
+ 10,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 12,
+ 2,
+ 5,
+ 5,
+ 4,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 5,
+ 6,
+ 3,
+ 2,
+ 3,
+ 3,
+ 7,
+ 2,
+ 1,
+ 1,
+ 2,
+ 7,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 6,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 4,
+ 1,
+ 11,
+ 4,
+ 2,
+ 3,
+ 3,
+ 1,
+ 3,
+ 10,
+ 1,
+ 1,
+ 6,
+ 1,
+ 2,
+ 3,
+ 8,
+ 4,
+ 8,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 5,
+ 2,
+ 2,
+ 6,
+ 17,
+ 7,
+ 2,
+ 11,
+ 9,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 4,
+ 1,
+ 4,
+ 2,
+ 3,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 5,
+ 3,
+ 1,
+ 3,
+ 1,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 1,
+ 10,
+ 3,
+ 6,
+ 3,
+ 4,
+ 5,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 6,
+ 1,
+ 6,
+ 9,
+ 2,
+ 2,
+ 1,
+ 3,
+ 2,
+ 1,
+ 3,
+ 3,
+ 2,
+ 2,
+ 5,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 4,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 7,
+ 1,
+ 4,
+ 5,
+ 3,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 4,
+ 2,
+ 3,
+ 7,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 4,
+ 3,
+ 4,
+ 4,
+ 1,
+ 2,
+ 4,
+ 3,
+ 1,
+ 6,
+ 5,
+ 3,
+ 5,
+ 4,
+ 4,
+ 3,
+ 5,
+ 4,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 11,
+ 9,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 7,
+ 3,
+ 3,
+ 5,
+ 2,
+ 5,
+ 4,
+ 3,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 5,
+ 1,
+ 2,
+ 9,
+ 3,
+ 3,
+ 9,
+ 7,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 6,
+ 1,
+ 3,
+ 1,
+ 4,
+ 1,
+ 1,
+ 10,
+ 8,
+ 2,
+ 2,
+ 3,
+ 11,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 7,
+ 4,
+ 8,
+ 11,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 6,
+ 2,
+ 1,
+ 2,
+ 6,
+ 4,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 8,
+ 1,
+ 2,
+ 6,
+ 2,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 13,
+ 8,
+ 8,
+ 17,
+ 9,
+ 4,
+ 6,
+ 2,
+ 3,
+ 7,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 5,
+ 2,
+ 3,
+ 4,
+ 17,
+ 2,
+ 1,
+ 1,
+ 5,
+ 11,
+ 11,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 6,
+ 2,
+ 4,
+ 3,
+ 4,
+ 8,
+ 3,
+ 7,
+ 10,
+ 4,
+ 2,
+ 4,
+ 14,
+ 4,
+ 3,
+ 11,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 3,
+ 5,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 7,
+ 3,
+ 3,
+ 1,
+ 2,
+ 1,
+ 5,
+ 1,
+ 2,
+ 6,
+ 1,
+ 1,
+ 5,
+ 4,
+ 5,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 3,
+ 7,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 2,
+ 3,
+ 1,
+ 4,
+ 3,
+ 2,
+ 4,
+ 7,
+ 1,
+ 3,
+ 1,
+ 3,
+ 4,
+ 10,
+ 1,
+ 1,
+ 1,
+ 8,
+ 1,
+ 5,
+ 1,
+ 6,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 9,
+ 1,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 4,
+ 2,
+ 1,
+ 6,
+ 2,
+ 12,
+ 4,
+ 2,
+ 2,
+ 9,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 3,
+ 9,
+ 5,
+ 3,
+ 1,
+ 5,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 3,
+ 3,
+ 5,
+ 4,
+ 4,
+ 1,
+ 1,
+ 8,
+ 1,
+ 1,
+ 3,
+ 7,
+ 5,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 6,
+ 6,
+ 3,
+ 5,
+ 9,
+ 4,
+ 4,
+ 6,
+ 8,
+ 4,
+ 3,
+ 9,
+ 5,
+ 3,
+ 7,
+ 10,
+ 7,
+ 2,
+ 3,
+ 2,
+ 1,
+ 3,
+ 3,
+ 11,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 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,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 2,
+ 4,
+ 3,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 4,
+ 1,
+ 3,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 3,
+ 3,
+ 2,
+ 2,
+ 3,
+ 4,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 9,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 4,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 5,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 6,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 3,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 3,
+ 3,
+ 2,
+ 4,
+ 5,
+ 2,
+ 1,
+ 1,
+ 7,
+ 3,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 5,
+ 1,
+ 2,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 1,
+ 2,
+ 2,
+ 8,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 8,
+ 3,
+ 1,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 4,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 4,
+ 2,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 5,
+ 2,
+ 3,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 5,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 11,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 2,
+ 5,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 5,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 5,
+ 1,
+ 5,
+ 3,
+ 2,
+ 4,
+ 3,
+ 2,
+ 1,
+ 4,
+ 17,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 2,
+ 2,
+ 5,
+ 3,
+ 1,
+ 2,
+ 2,
+ 5,
+ 5,
+ 1,
+ 2,
+ 3,
+ 1,
+ 4,
+ 4,
+ 1,
+ 2,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 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,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 3,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 4,
+ 3,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 3,
+ 6,
+ 4,
+ 3,
+ 5,
+ 3,
+ 4,
+ 3,
+ 2,
+ 3,
+ 4,
+ 3,
+ 3,
+ 3,
+ 4,
+ 2,
+ 2,
+ 4,
+ 3,
+ 3,
+ 5,
+ 8,
+ 4,
+ 5,
+ 5,
+ 4,
+ 7,
+ 6,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 6,
+ 3,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 10,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 3,
+ 4,
+ 6,
+ 4,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 5,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 2,
+ 7,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 4,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 4,
+ 4,
+ 3,
+ 2,
+ 3,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 1,
+ 5,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 5,
+ 4,
+ 5,
+ 4,
+ 4,
+ 4,
+ 2,
+ 3,
+ 4,
+ 3,
+ 4,
+ 7,
+ 8,
+ 4,
+ 3,
+ 4,
+ 2,
+ 3,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 2,
+ 2,
+ 4,
+ 2,
+ 3,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 9,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 7,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 6,
+ 4,
+ 4,
+ 4,
+ 2,
+ 4,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 6,
+ 4,
+ 7,
+ 3,
+ 2,
+ 2,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 3,
+ 4,
+ 3,
+ 2,
+ 4,
+ 10,
+ 2,
+ 6,
+ 5,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 6,
+ 2,
+ 2,
+ 1,
+ 2,
+ 4,
+ 3,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 5,
+ 1,
+ 3,
+ 2,
+ 2,
+ 4,
+ 2,
+ 4,
+ 5,
+ 2,
+ 6,
+ 6,
+ 5,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 5,
+ 3,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 3,
+ 6,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 6,
+ 2,
+ 1,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 6,
+ 3,
+ 2,
+ 3,
+ 3,
+ 4,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 5,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 3,
+ 3,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 5,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 4,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 7,
+ 3,
+ 5,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 2,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 5,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 5,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 4,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 7,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 4,
+ 3,
+ 1,
+ 7,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 4,
+ 3,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 7,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 4,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 3,
+ 4,
+ 1,
+ 2,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 6,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 5,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 7,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 3,
+ 2,
+ 4,
+ 6,
+ 5,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 5,
+ 1,
+ 4,
+ 2,
+ 3,
+ 3,
+ 5,
+ 4,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 4,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 5,
+ 1,
+ 1,
+ 3,
+ 6,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 4,
+ 1,
+ 6,
+ 1,
+ 1,
+ 2,
+ 2,
+ 4,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 6,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 4,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 2,
+ 5,
+ 1,
+ 2,
+ 2,
+ 3,
+ 3,
+ 1,
+ 5,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 4,
+ 7,
+ 3,
+ 1,
+ 10,
+ 3,
+ 3,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 6,
+ 3,
+ 1,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 5,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 2,
+ 4,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 6,
+ 7,
+ 1,
+ 3,
+ 4,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 4,
+ 1,
+ 2,
+ 2,
+ 3,
+ 3,
+ 2,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 1,
+ 4,
+ 4,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 5,
+ 1,
+ 1,
+ 6,
+ 2,
+ 5,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 4,
+ 2,
+ 3,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 3,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 6,
+ 6,
+ 6,
+ 3,
+ 2,
+ 3,
+ 3,
+ 4,
+ 3,
+ 4,
+ 1,
+ 4,
+ 1,
+ 2,
+ 3,
+ 5,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 2,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 3,
+ 3,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 5,
+ 2,
+ 2,
+ 3,
+ 3,
+ 1,
+ 1,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 5,
+ 1,
+ 2,
+ 4,
+ 3,
+ 1,
+ 5,
+ 1,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 4,
+ 2,
+ 2,
+ 1,
+ 1,
+ 5,
+ 2,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 4,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 7,
+ 4,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 3,
+ 3,
+ 3,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 5,
+ 1,
+ 2,
+ 1,
+ 1,
+ 4,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 4,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 4,
+ 3,
+ 4,
+ 2,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "campaign"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no pdays=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 1,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 0,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 0,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 1,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 1,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 1,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 8,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 1,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 1,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 8,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 1,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 7,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 1,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 1,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 2,
+ 999,
+ 999,
+ 9,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 1,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 1,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 1,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 7,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 13,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 14,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 13,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 15,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 15,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 4,
+ 3,
+ 4,
+ 3,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 2,
+ 4,
+ 999,
+ 999,
+ 3,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 4,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 3,
+ 999,
+ 999,
+ 999,
+ 4,
+ 4,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 4,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 4,
+ 3,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 15,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 3,
+ 13,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 16,
+ 999,
+ 999,
+ 999,
+ 3,
+ 1,
+ 999,
+ 999,
+ 999,
+ 14,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 8,
+ 7,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 7,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 8,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 7,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 7,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 7,
+ 999,
+ 6,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 999,
+ 7,
+ 3,
+ 999,
+ 3,
+ 7,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 7,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 7,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 6,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 6,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 7,
+ 17,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 13,
+ 3,
+ 999,
+ 6,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 11,
+ 9,
+ 9,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 7,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 10,
+ 6,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 14,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 6,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 7,
+ 999,
+ 1,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 7,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 13,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 15,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 13,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 3,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 14,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 3,
+ 2,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 13,
+ 999,
+ 3,
+ 14,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 7,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 14,
+ 4,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 15,
+ 999,
+ 999,
+ 6,
+ 6,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 16,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 0,
+ 999,
+ 17,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 12,
+ 999,
+ 3,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 22,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 15,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 0,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 18,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 6,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 6,
+ 999,
+ 999,
+ 999,
+ 6,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 18,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 8,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 19,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 18,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 14,
+ 999,
+ 999,
+ 999,
+ 999,
+ 17,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 12,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 16,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 6,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 6,
+ 17,
+ 6,
+ 9,
+ 6,
+ 999,
+ 999,
+ 17,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 6,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 3,
+ 999,
+ 9,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 19,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 10,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes pdays=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 7,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 5,
+ 999,
+ 2,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 2,
+ 2,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 0,
+ 2,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 0,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 2,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 2,
+ 999,
+ 0,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 3,
+ 6,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 11,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 1,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 3,
+ 7,
+ 999,
+ 999,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 2,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 13,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 3,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 3,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 13,
+ 999,
+ 999,
+ 14,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 13,
+ 13,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 13,
+ 13,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 4,
+ 4,
+ 999,
+ 15,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 4,
+ 4,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 4,
+ 999,
+ 6,
+ 6,
+ 4,
+ 999,
+ 4,
+ 999,
+ 12,
+ 4,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 15,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 4,
+ 15,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 15,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 13,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 15,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 6,
+ 3,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 13,
+ 999,
+ 999,
+ 999,
+ 999,
+ 13,
+ 999,
+ 999,
+ 999,
+ 999,
+ 1,
+ 999,
+ 3,
+ 999,
+ 999,
+ 9,
+ 999,
+ 999,
+ 3,
+ 3,
+ 3,
+ 6,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 15,
+ 999,
+ 999,
+ 999,
+ 2,
+ 3,
+ 999,
+ 3,
+ 999,
+ 3,
+ 14,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 6,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 15,
+ 999,
+ 999,
+ 15,
+ 999,
+ 3,
+ 15,
+ 999,
+ 999,
+ 999,
+ 6,
+ 3,
+ 3,
+ 999,
+ 6,
+ 999,
+ 16,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 7,
+ 999,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 1,
+ 3,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 1,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 3,
+ 6,
+ 3,
+ 999,
+ 3,
+ 3,
+ 3,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 3,
+ 999,
+ 3,
+ 4,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 3,
+ 999,
+ 4,
+ 999,
+ 4,
+ 4,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 6,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 6,
+ 6,
+ 6,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 6,
+ 6,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 6,
+ 6,
+ 6,
+ 6,
+ 999,
+ 999,
+ 7,
+ 999,
+ 999,
+ 999,
+ 8,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 3,
+ 6,
+ 999,
+ 3,
+ 999,
+ 999,
+ 6,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 6,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 3,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 7,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 7,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 3,
+ 3,
+ 999,
+ 3,
+ 999,
+ 3,
+ 3,
+ 999,
+ 999,
+ 999,
+ 7,
+ 6,
+ 7,
+ 8,
+ 999,
+ 999,
+ 999,
+ 3,
+ 7,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 3,
+ 999,
+ 3,
+ 999,
+ 7,
+ 3,
+ 999,
+ 999,
+ 999,
+ 7,
+ 999,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 3,
+ 3,
+ 3,
+ 3,
+ 13,
+ 3,
+ 3,
+ 7,
+ 999,
+ 999,
+ 3,
+ 9,
+ 7,
+ 999,
+ 999,
+ 999,
+ 3,
+ 7,
+ 6,
+ 999,
+ 6,
+ 999,
+ 999,
+ 3,
+ 6,
+ 999,
+ 7,
+ 7,
+ 7,
+ 3,
+ 3,
+ 999,
+ 999,
+ 999,
+ 3,
+ 3,
+ 3,
+ 999,
+ 3,
+ 3,
+ 999,
+ 3,
+ 7,
+ 7,
+ 7,
+ 9,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 7,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 7,
+ 999,
+ 3,
+ 3,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 3,
+ 3,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 4,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 8,
+ 6,
+ 999,
+ 999,
+ 6,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 4,
+ 6,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 6,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 6,
+ 6,
+ 6,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 6,
+ 999,
+ 6,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 21,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 999,
+ 999,
+ 6,
+ 4,
+ 6,
+ 999,
+ 999,
+ 999,
+ 13,
+ 4,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 6,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 9,
+ 6,
+ 999,
+ 999,
+ 999,
+ 6,
+ 3,
+ 7,
+ 6,
+ 999,
+ 6,
+ 6,
+ 3,
+ 999,
+ 6,
+ 11,
+ 3,
+ 5,
+ 6,
+ 999,
+ 6,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 10,
+ 6,
+ 999,
+ 999,
+ 6,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 6,
+ 3,
+ 10,
+ 999,
+ 999,
+ 999,
+ 10,
+ 3,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 13,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 3,
+ 999,
+ 999,
+ 999,
+ 6,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 11,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 6,
+ 12,
+ 7,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 12,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 7,
+ 999,
+ 999,
+ 999,
+ 6,
+ 12,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 6,
+ 999,
+ 6,
+ 999,
+ 10,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 6,
+ 6,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 999,
+ 6,
+ 6,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 6,
+ 999,
+ 18,
+ 999,
+ 999,
+ 999,
+ 13,
+ 999,
+ 6,
+ 999,
+ 3,
+ 3,
+ 3,
+ 999,
+ 6,
+ 2,
+ 999,
+ 7,
+ 3,
+ 999,
+ 999,
+ 999,
+ 2,
+ 999,
+ 3,
+ 999,
+ 3,
+ 3,
+ 999,
+ 2,
+ 999,
+ 3,
+ 3,
+ 2,
+ 999,
+ 999,
+ 6,
+ 3,
+ 6,
+ 999,
+ 6,
+ 6,
+ 3,
+ 6,
+ 3,
+ 6,
+ 3,
+ 3,
+ 6,
+ 6,
+ 3,
+ 6,
+ 3,
+ 2,
+ 3,
+ 13,
+ 9,
+ 999,
+ 6,
+ 3,
+ 6,
+ 999,
+ 3,
+ 999,
+ 3,
+ 999,
+ 3,
+ 6,
+ 14,
+ 999,
+ 999,
+ 15,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 8,
+ 999,
+ 999,
+ 3,
+ 13,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 10,
+ 7,
+ 3,
+ 999,
+ 4,
+ 999,
+ 6,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 999,
+ 10,
+ 999,
+ 3,
+ 6,
+ 6,
+ 6,
+ 999,
+ 999,
+ 6,
+ 3,
+ 6,
+ 3,
+ 3,
+ 6,
+ 999,
+ 6,
+ 3,
+ 6,
+ 3,
+ 9,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 6,
+ 14,
+ 12,
+ 999,
+ 999,
+ 3,
+ 13,
+ 7,
+ 999,
+ 9,
+ 999,
+ 999,
+ 999,
+ 6,
+ 6,
+ 22,
+ 999,
+ 999,
+ 12,
+ 3,
+ 12,
+ 3,
+ 6,
+ 12,
+ 7,
+ 3,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 14,
+ 999,
+ 999,
+ 999,
+ 10,
+ 999,
+ 3,
+ 999,
+ 2,
+ 999,
+ 4,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 6,
+ 2,
+ 999,
+ 999,
+ 12,
+ 999,
+ 12,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 4,
+ 7,
+ 10,
+ 999,
+ 999,
+ 999,
+ 4,
+ 999,
+ 3,
+ 999,
+ 999,
+ 14,
+ 999,
+ 999,
+ 999,
+ 999,
+ 13,
+ 999,
+ 3,
+ 9,
+ 999,
+ 15,
+ 999,
+ 999,
+ 999,
+ 6,
+ 8,
+ 999,
+ 999,
+ 999,
+ 999,
+ 8,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 14,
+ 6,
+ 6,
+ 6,
+ 999,
+ 3,
+ 999,
+ 6,
+ 12,
+ 999,
+ 999,
+ 6,
+ 6,
+ 11,
+ 999,
+ 6,
+ 6,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 6,
+ 6,
+ 6,
+ 6,
+ 999,
+ 6,
+ 6,
+ 999,
+ 999,
+ 6,
+ 13,
+ 6,
+ 999,
+ 6,
+ 6,
+ 15,
+ 999,
+ 13,
+ 15,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 13,
+ 999,
+ 999,
+ 15,
+ 999,
+ 999,
+ 999,
+ 999,
+ 5,
+ 3,
+ 999,
+ 11,
+ 999,
+ 999,
+ 6,
+ 999,
+ 999,
+ 25,
+ 9,
+ 6,
+ 999,
+ 999,
+ 26,
+ 999,
+ 9,
+ 999,
+ 6,
+ 6,
+ 999,
+ 999,
+ 12,
+ 13,
+ 3,
+ 999,
+ 999,
+ 6,
+ 6,
+ 3,
+ 6,
+ 999,
+ 999,
+ 999,
+ 4,
+ 6,
+ 999,
+ 6,
+ 999,
+ 6,
+ 6,
+ 999,
+ 999,
+ 6,
+ 999,
+ 9,
+ 5,
+ 6,
+ 6,
+ 6,
+ 999,
+ 999,
+ 3,
+ 4,
+ 9,
+ 999,
+ 9,
+ 13,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 6,
+ 999,
+ 999,
+ 9,
+ 3,
+ 0,
+ 6,
+ 999,
+ 0,
+ 0,
+ 7,
+ 3,
+ 6,
+ 16,
+ 10,
+ 0,
+ 4,
+ 0,
+ 0,
+ 9,
+ 0,
+ 6,
+ 3,
+ 999,
+ 3,
+ 16,
+ 9,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 6,
+ 3,
+ 3,
+ 6,
+ 4,
+ 6,
+ 999,
+ 999,
+ 6,
+ 6,
+ 999,
+ 3,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 6,
+ 999,
+ 6,
+ 999,
+ 6,
+ 999,
+ 6,
+ 14,
+ 6,
+ 6,
+ 6,
+ 6,
+ 9,
+ 6,
+ 6,
+ 1,
+ 999,
+ 999,
+ 6,
+ 6,
+ 3,
+ 6,
+ 6,
+ 999,
+ 999,
+ 16,
+ 999,
+ 999,
+ 6,
+ 6,
+ 999,
+ 999,
+ 6,
+ 999,
+ 3,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 12,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 6,
+ 5,
+ 3,
+ 7,
+ 999,
+ 999,
+ 6,
+ 17,
+ 999,
+ 6,
+ 10,
+ 9,
+ 6,
+ 3,
+ 6,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 3,
+ 999,
+ 6,
+ 6,
+ 6,
+ 999,
+ 999,
+ 14,
+ 3,
+ 999,
+ 999,
+ 6,
+ 3,
+ 999,
+ 22,
+ 6,
+ 6,
+ 6,
+ 3,
+ 999,
+ 999,
+ 3,
+ 999,
+ 12,
+ 3,
+ 6,
+ 9,
+ 999,
+ 6,
+ 999,
+ 6,
+ 999,
+ 999,
+ 3,
+ 999,
+ 3,
+ 999,
+ 999,
+ 3,
+ 999,
+ 3,
+ 6,
+ 999,
+ 999,
+ 6,
+ 8,
+ 6,
+ 999,
+ 6,
+ 999,
+ 15,
+ 6,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 13,
+ 999,
+ 999,
+ 10,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 6,
+ 999,
+ 6,
+ 6,
+ 999,
+ 999,
+ 999,
+ 6,
+ 6,
+ 6,
+ 999,
+ 6,
+ 999,
+ 3,
+ 999,
+ 3,
+ 999,
+ 6,
+ 15,
+ 13,
+ 3,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 6,
+ 3,
+ 3,
+ 999,
+ 16,
+ 3,
+ 999,
+ 999,
+ 999,
+ 9,
+ 999,
+ 27,
+ 999,
+ 999,
+ 3,
+ 999,
+ 5,
+ 999,
+ 3,
+ 999,
+ 5,
+ 999,
+ 8,
+ 999,
+ 3,
+ 3,
+ 999,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 3,
+ 3,
+ 6,
+ 6,
+ 999,
+ 6,
+ 999,
+ 3,
+ 999,
+ 7,
+ 3,
+ 3,
+ 999,
+ 3,
+ 6,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 11,
+ 3,
+ 999,
+ 999,
+ 5,
+ 999,
+ 6,
+ 13,
+ 3,
+ 3,
+ 11,
+ 6,
+ 3,
+ 6,
+ 14,
+ 999,
+ 3,
+ 3,
+ 999,
+ 12,
+ 12,
+ 3,
+ 3,
+ 5,
+ 6,
+ 9,
+ 999,
+ 999,
+ 6,
+ 6,
+ 4,
+ 999,
+ 18,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 6,
+ 3,
+ 999,
+ 6,
+ 3,
+ 999,
+ 5,
+ 6,
+ 6,
+ 6,
+ 13,
+ 7,
+ 2,
+ 3,
+ 3,
+ 12,
+ 3,
+ 999,
+ 1,
+ 999,
+ 999,
+ 6,
+ 999,
+ 21,
+ 999,
+ 999,
+ 999,
+ 3,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 19,
+ 999,
+ 6,
+ 5,
+ 999,
+ 999,
+ 9,
+ 999,
+ 4,
+ 10,
+ 999,
+ 999,
+ 999,
+ 999,
+ 999,
+ 1,
+ 6,
+ 999,
+ 999,
+ 999
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "pdays"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no previous=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 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,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 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,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 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,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 3,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 3,
+ 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,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 2,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 2,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 3,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 2,
+ 2,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 4,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 3,
+ 0,
+ 2,
+ 0,
+ 2,
+ 1,
+ 1,
+ 1,
+ 0,
+ 3,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 3,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 3,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 1,
+ 2,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 3,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 2,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 3,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 4,
+ 0,
+ 1,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 3,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 3,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 3,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 3,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 2,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 3,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 3,
+ 1,
+ 0,
+ 1,
+ 0,
+ 3,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 3,
+ 0,
+ 2,
+ 1,
+ 2,
+ 0,
+ 1,
+ 2,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 3,
+ 3,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 3,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 3,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 3,
+ 0,
+ 0,
+ 2,
+ 0,
+ 3,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 2,
+ 2,
+ 1,
+ 2,
+ 2,
+ 3,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 4,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 2,
+ 2,
+ 1,
+ 2,
+ 4,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 4,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 0,
+ 3,
+ 1,
+ 0,
+ 2,
+ 3,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 2,
+ 1,
+ 2,
+ 5,
+ 1,
+ 1,
+ 3,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 3,
+ 0,
+ 3,
+ 0,
+ 3,
+ 2,
+ 2,
+ 4,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 3,
+ 0,
+ 2,
+ 3,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 3,
+ 0,
+ 0,
+ 0,
+ 4,
+ 0,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 2,
+ 3,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 3,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 4,
+ 2,
+ 2,
+ 2,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 3,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 1,
+ 2,
+ 0,
+ 2,
+ 2,
+ 3,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 4,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 4,
+ 1,
+ 2,
+ 3,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 3,
+ 2,
+ 3,
+ 1,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 3,
+ 3,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 3,
+ 0,
+ 0,
+ 2,
+ 2,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 3,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 4,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 2,
+ 2,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 3,
+ 0,
+ 0,
+ 0,
+ 0,
+ 3,
+ 1,
+ 4,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 2,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 1,
+ 2,
+ 0,
+ 5,
+ 0,
+ 1,
+ 4,
+ 1,
+ 2,
+ 5,
+ 1,
+ 0,
+ 0,
+ 0,
+ 4,
+ 0,
+ 1,
+ 2,
+ 0,
+ 3,
+ 1,
+ 2,
+ 2,
+ 6,
+ 4,
+ 0,
+ 3,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 2,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 3,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 4,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 3,
+ 1,
+ 4,
+ 2,
+ 0,
+ 1,
+ 0,
+ 3,
+ 4,
+ 0,
+ 3,
+ 0,
+ 1,
+ 3,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 3,
+ 3,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 2,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 3,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 5,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 5,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 3,
+ 1,
+ 1,
+ 4,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 2,
+ 2,
+ 0,
+ 0,
+ 3,
+ 0,
+ 0,
+ 1,
+ 0,
+ 4,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 3,
+ 0,
+ 3,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 4,
+ 3,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 2,
+ 1,
+ 3,
+ 0,
+ 3,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 3,
+ 2,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 2,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 2,
+ 3,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 3,
+ 4,
+ 3,
+ 2,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 3,
+ 1,
+ 1,
+ 4,
+ 1,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 3,
+ 0,
+ 7,
+ 2,
+ 3,
+ 0,
+ 6,
+ 0,
+ 1,
+ 1,
+ 0,
+ 2,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 3,
+ 4,
+ 1,
+ 0,
+ 2,
+ 4,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 4,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes previous=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 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,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 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,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 2,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 2,
+ 0,
+ 1,
+ 3,
+ 0,
+ 0,
+ 1,
+ 4,
+ 0,
+ 0,
+ 1,
+ 1,
+ 3,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 3,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 2,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 2,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 3,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 2,
+ 0,
+ 2,
+ 1,
+ 2,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 2,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 3,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 2,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 3,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 3,
+ 2,
+ 1,
+ 0,
+ 0,
+ 3,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 3,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 3,
+ 3,
+ 3,
+ 0,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 0,
+ 2,
+ 2,
+ 4,
+ 0,
+ 0,
+ 0,
+ 2,
+ 2,
+ 1,
+ 0,
+ 3,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 0,
+ 1,
+ 3,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 0,
+ 1,
+ 2,
+ 2,
+ 2,
+ 3,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 3,
+ 1,
+ 3,
+ 0,
+ 2,
+ 0,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 3,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 2,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 2,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 2,
+ 2,
+ 1,
+ 0,
+ 2,
+ 0,
+ 2,
+ 2,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 3,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 3,
+ 2,
+ 0,
+ 3,
+ 1,
+ 2,
+ 0,
+ 3,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 1,
+ 2,
+ 0,
+ 0,
+ 3,
+ 1,
+ 1,
+ 3,
+ 0,
+ 1,
+ 4,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 3,
+ 1,
+ 0,
+ 2,
+ 0,
+ 2,
+ 2,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 3,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 3,
+ 1,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 3,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 3,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 2,
+ 3,
+ 2,
+ 0,
+ 2,
+ 2,
+ 1,
+ 2,
+ 5,
+ 0,
+ 1,
+ 0,
+ 4,
+ 1,
+ 5,
+ 0,
+ 2,
+ 4,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 4,
+ 0,
+ 0,
+ 1,
+ 3,
+ 4,
+ 1,
+ 3,
+ 2,
+ 4,
+ 1,
+ 4,
+ 2,
+ 4,
+ 1,
+ 4,
+ 1,
+ 3,
+ 3,
+ 2,
+ 3,
+ 3,
+ 2,
+ 1,
+ 0,
+ 1,
+ 4,
+ 2,
+ 1,
+ 3,
+ 0,
+ 2,
+ 1,
+ 2,
+ 2,
+ 1,
+ 0,
+ 0,
+ 3,
+ 0,
+ 0,
+ 5,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 3,
+ 1,
+ 0,
+ 3,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 3,
+ 2,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 2,
+ 4,
+ 3,
+ 2,
+ 1,
+ 3,
+ 1,
+ 2,
+ 4,
+ 1,
+ 4,
+ 1,
+ 5,
+ 0,
+ 0,
+ 0,
+ 0,
+ 4,
+ 0,
+ 2,
+ 1,
+ 2,
+ 1,
+ 0,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 2,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 3,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 3,
+ 0,
+ 1,
+ 0,
+ 1,
+ 3,
+ 0,
+ 3,
+ 3,
+ 0,
+ 0,
+ 3,
+ 2,
+ 2,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 3,
+ 2,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 2,
+ 0,
+ 2,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 1,
+ 2,
+ 1,
+ 4,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 1,
+ 0,
+ 3,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 3,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 2,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 2,
+ 1,
+ 2,
+ 3,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 1,
+ 2,
+ 2,
+ 0,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 0,
+ 2,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 2,
+ 2,
+ 2,
+ 0,
+ 0,
+ 1,
+ 1,
+ 3,
+ 0,
+ 2,
+ 3,
+ 2,
+ 1,
+ 1,
+ 1,
+ 2,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 3,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 1,
+ 1,
+ 2,
+ 0,
+ 3,
+ 1,
+ 3,
+ 2,
+ 1,
+ 2,
+ 0,
+ 2,
+ 2,
+ 1,
+ 0,
+ 2,
+ 1,
+ 0,
+ 0,
+ 4,
+ 2,
+ 1,
+ 2,
+ 0,
+ 1,
+ 2,
+ 1,
+ 3,
+ 3,
+ 0,
+ 3,
+ 1,
+ 1,
+ 3,
+ 3,
+ 3,
+ 2,
+ 2,
+ 2,
+ 2,
+ 1,
+ 1,
+ 2,
+ 2,
+ 3,
+ 0,
+ 6,
+ 1,
+ 4,
+ 0,
+ 0,
+ 0,
+ 4,
+ 0,
+ 0,
+ 2,
+ 3,
+ 3,
+ 1,
+ 2,
+ 3,
+ 3,
+ 0,
+ 2,
+ 1,
+ 1,
+ 0,
+ 1,
+ 5,
+ 0,
+ 0,
+ 0,
+ 1,
+ 2,
+ 3,
+ 0,
+ 1,
+ 1,
+ 3,
+ 0,
+ 2,
+ 1,
+ 4,
+ 3,
+ 3,
+ 2,
+ 3,
+ 2,
+ 2,
+ 3,
+ 0,
+ 0,
+ 3,
+ 1,
+ 3,
+ 2,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 3,
+ 2,
+ 0,
+ 0,
+ 3,
+ 0,
+ 4,
+ 3,
+ 0,
+ 0,
+ 1,
+ 2,
+ 1,
+ 1,
+ 0,
+ 2,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 2,
+ 1,
+ 2,
+ 1,
+ 1,
+ 0,
+ 1,
+ 2,
+ 0,
+ 3,
+ 3,
+ 1,
+ 2,
+ 2,
+ 1,
+ 2,
+ 3,
+ 0,
+ 1,
+ 2,
+ 0,
+ 2,
+ 0,
+ 3,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 3,
+ 0,
+ 0,
+ 1,
+ 4,
+ 0,
+ 1,
+ 2,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 4,
+ 1,
+ 1,
+ 1,
+ 1,
+ 3,
+ 3,
+ 2,
+ 0,
+ 2,
+ 2,
+ 0,
+ 5,
+ 0,
+ 2,
+ 1,
+ 1,
+ 3,
+ 0,
+ 2,
+ 2,
+ 0,
+ 0,
+ 3,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 4,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 3,
+ 1,
+ 0,
+ 3,
+ 1,
+ 1,
+ 0,
+ 1,
+ 0,
+ 3,
+ 1,
+ 0,
+ 2,
+ 0,
+ 1,
+ 5,
+ 3,
+ 0,
+ 1,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 4,
+ 1,
+ 3,
+ 0,
+ 3,
+ 0,
+ 0,
+ 0,
+ 1,
+ 3,
+ 2,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 1,
+ 1,
+ 3,
+ 0,
+ 1,
+ 0,
+ 2,
+ 1,
+ 2,
+ 2,
+ 0,
+ 2,
+ 0,
+ 1,
+ 3,
+ 2,
+ 2,
+ 3,
+ 0,
+ 3,
+ 0,
+ 1,
+ 0,
+ 3,
+ 2,
+ 1,
+ 1,
+ 2,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 1,
+ 2,
+ 2,
+ 5,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 4,
+ 1,
+ 3,
+ 1,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 1,
+ 2,
+ 3,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 0,
+ 1,
+ 3,
+ 3,
+ 1,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 3,
+ 0,
+ 3,
+ 2,
+ 0,
+ 3,
+ 1,
+ 3,
+ 4,
+ 2,
+ 2,
+ 5,
+ 3,
+ 2,
+ 1,
+ 2,
+ 0,
+ 1,
+ 0,
+ 0,
+ 4,
+ 0,
+ 5,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 1,
+ 0,
+ 1,
+ 5,
+ 0,
+ 0,
+ 4,
+ 0,
+ 2,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 6,
+ 3,
+ 0,
+ 0,
+ 0
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "previous"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no emp.var.rate=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.2,
+ -0.2,
+ -0.2,
+ -0.2,
+ -0.2,
+ -0.2,
+ -0.2,
+ -0.2,
+ -0.2,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes emp.var.rate=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.1,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.1,
+ -0.2,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -2.9,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3.4,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -3,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.8,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.7,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1,
+ -1.1
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "emp.var.rate"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no cons.price.idx=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 92.756,
+ 92.756,
+ 92.756,
+ 92.756,
+ 92.756,
+ 92.756,
+ 92.756,
+ 92.756,
+ 92.756,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes cons.price.idx=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 93.994,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 94.465,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.918,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.444,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.798,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 93.2,
+ 92.756,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 92.843,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 93.075,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.893,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.963,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.469,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.201,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.379,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.431,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.649,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 92.713,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.369,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.749,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 93.876,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.055,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.215,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.027,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.199,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.601,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767,
+ 94.767
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "cons.price.idx"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no cons.conf.idx=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -45.9,
+ -45.9,
+ -45.9,
+ -45.9,
+ -45.9,
+ -45.9,
+ -45.9,
+ -45.9,
+ -45.9,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes cons.conf.idx=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -36.4,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -41.8,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -42.7,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -36.1,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -40.4,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -42,
+ -45.9,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -50,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -47.1,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -46.2,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -40.8,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -33.6,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -31.4,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -29.8,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -26.9,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -30.1,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -33,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.8,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -34.6,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -40,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -39.8,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -40.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -38.3,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -37.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -49.5,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8,
+ -50.8
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "cons.conf.idx"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no euribor3m=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.956,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 5.045,
+ 5.045,
+ 5.045,
+ 5.045,
+ 5,
+ 5,
+ 5,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.936,
+ 4.921,
+ 4.918,
+ 4.918,
+ 4.912,
+ 4.912,
+ 4.912,
+ 4.86,
+ 4.827,
+ 4.827,
+ 4.794,
+ 4.76,
+ 4.733,
+ 4.733,
+ 4.7,
+ 4.7,
+ 4.7,
+ 4.7,
+ 4.7,
+ 4.663,
+ 4.663,
+ 4.663,
+ 4.663,
+ 4.663,
+ 4.592,
+ 4.592,
+ 4.474,
+ 4.406,
+ 4.406,
+ 4.406,
+ 4.406,
+ 4.406,
+ 4.343,
+ 4.343,
+ 4.343,
+ 4.286,
+ 4.286,
+ 4.286,
+ 4.286,
+ 4.286,
+ 4.245,
+ 4.245,
+ 4.245,
+ 4.245,
+ 4.245,
+ 4.245,
+ 4.223,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 3.901,
+ 3.879,
+ 3.879,
+ 3.853,
+ 3.816,
+ 3.743,
+ 3.669,
+ 3.563,
+ 3.563,
+ 3.488,
+ 3.428,
+ 3.329,
+ 3.282,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.799,
+ 1.778,
+ 1.757,
+ 1.757,
+ 1.757,
+ 1.757,
+ 1.757,
+ 1.757,
+ 1.757,
+ 1.757,
+ 1.757,
+ 1.757,
+ 1.757,
+ 1.757,
+ 1.757,
+ 1.726,
+ 1.726,
+ 1.703,
+ 1.703,
+ 1.703,
+ 1.703,
+ 1.703,
+ 1.703,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.65,
+ 1.65,
+ 1.65,
+ 1.64,
+ 1.64,
+ 1.64,
+ 1.64,
+ 1.64,
+ 1.629,
+ 1.629,
+ 1.629,
+ 1.629,
+ 1.629,
+ 1.629,
+ 1.629,
+ 1.629,
+ 1.614,
+ 1.614,
+ 1.614,
+ 1.614,
+ 1.614,
+ 1.614,
+ 1.602,
+ 1.602,
+ 1.602,
+ 1.584,
+ 1.56,
+ 1.56,
+ 1.56,
+ 1.56,
+ 1.556,
+ 1.556,
+ 1.556,
+ 1.556,
+ 1.556,
+ 1.556,
+ 1.556,
+ 1.548,
+ 1.538,
+ 1.538,
+ 1.538,
+ 1.538,
+ 1.538,
+ 1.538,
+ 1.538,
+ 1.538,
+ 1.538,
+ 1.538,
+ 1.538,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.52,
+ 1.52,
+ 1.52,
+ 1.52,
+ 1.52,
+ 1.52,
+ 1.52,
+ 1.52,
+ 1.51,
+ 1.51,
+ 1.51,
+ 1.51,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.392,
+ 1.392,
+ 1.392,
+ 1.392,
+ 1.392,
+ 1.392,
+ 1.392,
+ 1.392,
+ 1.392,
+ 1.392,
+ 1.392,
+ 1.392,
+ 1.392,
+ 1.392,
+ 1.384,
+ 1.384,
+ 1.384,
+ 1.384,
+ 1.384,
+ 1.384,
+ 1.384,
+ 1.384,
+ 1.372,
+ 1.372,
+ 1.372,
+ 1.372,
+ 1.372,
+ 1.372,
+ 1.372,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.286,
+ 1.286,
+ 1.286,
+ 1.286,
+ 1.286,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.235,
+ 1.235,
+ 1.235,
+ 1.235,
+ 1.224,
+ 1.224,
+ 1.224,
+ 1.224,
+ 1.224,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.206,
+ 1.206,
+ 1.206,
+ 1.206,
+ 1.206,
+ 1.099,
+ 1.099,
+ 1.099,
+ 1.099,
+ 1.099,
+ 1.099,
+ 1.099,
+ 1.085,
+ 1.085,
+ 1.085,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.048,
+ 1.048,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.018,
+ 1.018,
+ 1.007,
+ 0.979,
+ 0.979,
+ 0.979,
+ 0.969,
+ 0.944,
+ 0.944,
+ 0.937,
+ 0.927,
+ 0.927,
+ 0.914,
+ 0.914,
+ 0.908,
+ 0.908,
+ 0.908,
+ 0.908,
+ 0.908,
+ 0.908,
+ 0.908,
+ 0.908,
+ 0.908,
+ 0.908,
+ 0.908,
+ 0.903,
+ 0.899,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.843,
+ 0.843,
+ 0.843,
+ 0.843,
+ 0.843,
+ 0.843,
+ 0.843,
+ 0.843,
+ 0.843,
+ 0.843,
+ 0.843,
+ 0.843,
+ 0.843,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.834,
+ 0.834,
+ 0.834,
+ 0.834,
+ 0.834,
+ 0.834,
+ 0.834,
+ 0.834,
+ 0.834,
+ 0.829,
+ 0.829,
+ 0.829,
+ 0.829,
+ 0.829,
+ 0.825,
+ 0.825,
+ 0.825,
+ 0.825,
+ 0.825,
+ 0.825,
+ 0.825,
+ 0.825,
+ 0.825,
+ 0.825,
+ 0.825,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.819,
+ 0.819,
+ 0.819,
+ 0.819,
+ 0.819,
+ 0.819,
+ 0.819,
+ 0.819,
+ 0.819,
+ 0.819,
+ 0.819,
+ 0.819,
+ 0.819,
+ 0.813,
+ 0.813,
+ 0.813,
+ 0.809,
+ 0.809,
+ 0.809,
+ 0.809,
+ 0.809,
+ 0.809,
+ 0.809,
+ 0.809,
+ 0.809,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.788,
+ 0.788,
+ 0.788,
+ 0.788,
+ 0.788,
+ 0.781,
+ 0.781,
+ 0.781,
+ 0.781,
+ 0.781,
+ 0.781,
+ 0.781,
+ 0.781,
+ 0.781,
+ 0.781,
+ 0.778,
+ 0.778,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.771,
+ 0.771,
+ 0.771,
+ 0.771,
+ 0.77,
+ 0.77,
+ 0.77,
+ 0.77,
+ 0.77,
+ 0.77,
+ 0.768,
+ 0.768,
+ 0.768,
+ 0.768,
+ 0.768,
+ 0.768,
+ 0.768,
+ 0.768,
+ 0.768,
+ 0.766,
+ 0.766,
+ 0.762,
+ 0.755,
+ 0.749,
+ 0.743,
+ 0.743,
+ 0.743,
+ 0.741,
+ 0.741,
+ 0.741,
+ 0.741,
+ 0.741,
+ 0.741,
+ 0.741,
+ 0.741,
+ 0.741,
+ 0.741,
+ 0.741,
+ 0.741,
+ 0.739,
+ 0.739,
+ 0.75,
+ 0.75,
+ 0.75,
+ 0.75,
+ 0.75,
+ 0.753,
+ 0.753,
+ 0.753,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.752,
+ 0.752,
+ 0.752,
+ 0.752,
+ 0.744,
+ 0.744,
+ 0.744,
+ 0.744,
+ 0.744,
+ 0.744,
+ 0.744,
+ 0.744,
+ 0.744,
+ 0.744,
+ 0.744,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.741,
+ 0.741,
+ 0.741,
+ 0.741,
+ 0.743,
+ 0.743,
+ 0.743,
+ 0.743,
+ 0.743,
+ 0.743,
+ 0.743,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.733,
+ 0.733,
+ 0.733,
+ 0.733,
+ 0.73,
+ 0.73,
+ 0.73,
+ 0.73,
+ 0.73,
+ 0.73,
+ 0.73,
+ 0.731,
+ 0.731,
+ 0.731,
+ 0.731,
+ 0.731,
+ 0.731,
+ 0.731,
+ 0.731,
+ 0.731,
+ 0.731,
+ 0.731,
+ 0.731,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.718,
+ 0.718,
+ 0.718,
+ 0.718,
+ 0.718,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.719,
+ 0.721,
+ 0.721,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.718,
+ 0.718,
+ 0.718,
+ 0.718,
+ 0.718,
+ 0.718,
+ 0.718,
+ 0.717,
+ 0.717,
+ 0.717,
+ 0.717,
+ 0.717,
+ 0.717,
+ 0.717,
+ 0.717,
+ 0.717,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.712,
+ 0.712,
+ 0.712,
+ 0.712,
+ 0.71,
+ 0.71,
+ 0.71,
+ 0.71,
+ 0.71,
+ 0.709,
+ 0.709,
+ 0.709,
+ 0.709,
+ 0.708,
+ 0.708,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.706,
+ 0.706,
+ 0.706,
+ 0.706,
+ 0.706,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.7,
+ 0.7,
+ 0.7,
+ 0.7,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.654,
+ 0.654,
+ 0.654,
+ 0.654,
+ 0.654,
+ 0.654,
+ 0.654,
+ 0.653,
+ 0.653,
+ 0.653,
+ 0.653,
+ 0.653,
+ 0.653,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.651,
+ 0.651,
+ 0.651,
+ 0.651,
+ 0.65,
+ 0.65,
+ 0.65,
+ 0.65,
+ 0.65,
+ 0.65,
+ 0.65,
+ 0.65,
+ 0.649,
+ 0.649,
+ 0.649,
+ 0.649,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.643,
+ 0.643,
+ 0.643,
+ 0.643,
+ 0.639,
+ 0.639,
+ 0.637,
+ 0.635,
+ 0.635,
+ 0.636,
+ 0.636,
+ 0.636,
+ 0.636,
+ 0.636,
+ 0.636,
+ 0.636,
+ 0.636,
+ 0.636,
+ 0.636,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.634,
+ 0.634,
+ 0.635,
+ 0.635,
+ 0.638,
+ 0.638,
+ 0.64,
+ 0.64,
+ 0.64,
+ 0.64,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.643,
+ 0.643,
+ 0.643,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.659,
+ 0.659,
+ 0.659,
+ 0.659,
+ 0.663,
+ 0.663,
+ 0.663,
+ 0.663,
+ 0.668,
+ 0.668,
+ 0.668,
+ 0.668,
+ 0.668,
+ 0.668,
+ 0.668,
+ 0.668,
+ 0.668,
+ 0.672,
+ 0.672,
+ 0.672,
+ 0.672,
+ 0.672,
+ 0.672,
+ 0.672,
+ 0.672,
+ 0.677,
+ 0.677,
+ 0.677,
+ 0.677,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.683,
+ 0.683,
+ 0.684,
+ 0.684,
+ 0.684,
+ 0.684,
+ 0.684,
+ 0.685,
+ 0.685,
+ 0.685,
+ 0.685,
+ 0.69,
+ 0.692,
+ 0.692,
+ 0.692,
+ 0.695,
+ 0.695,
+ 0.697,
+ 0.697,
+ 0.697,
+ 0.697,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.701,
+ 0.701,
+ 0.701,
+ 0.701,
+ 0.701,
+ 0.701,
+ 0.702,
+ 0.702,
+ 0.702,
+ 0.702,
+ 0.702,
+ 0.702,
+ 0.702,
+ 0.702,
+ 0.702,
+ 0.702,
+ 0.702,
+ 0.704,
+ 0.704,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.711,
+ 0.711,
+ 0.711,
+ 0.713,
+ 0.713,
+ 0.713,
+ 0.713,
+ 0.713,
+ 0.713,
+ 0.713,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.719,
+ 0.719,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.723,
+ 0.723,
+ 0.723,
+ 0.727,
+ 0.727,
+ 0.729,
+ 0.729,
+ 0.729,
+ 0.729,
+ 0.729,
+ 0.732,
+ 0.732,
+ 0.732,
+ 0.732,
+ 0.733,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.748,
+ 0.748,
+ 0.748,
+ 0.748,
+ 0.748,
+ 0.748,
+ 0.748,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.767,
+ 0.767,
+ 0.767,
+ 0.767,
+ 0.767,
+ 0.767,
+ 0.782,
+ 0.782,
+ 0.782,
+ 0.782,
+ 0.782,
+ 0.782,
+ 0.782,
+ 0.782,
+ 0.79,
+ 0.79,
+ 0.79,
+ 0.79,
+ 0.793,
+ 0.793,
+ 0.793,
+ 0.793,
+ 0.793,
+ 0.793,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.802,
+ 0.81,
+ 0.81,
+ 0.81,
+ 0.81,
+ 0.81,
+ 0.822,
+ 0.822,
+ 0.822,
+ 0.822,
+ 0.822,
+ 0.822,
+ 0.822,
+ 0.827,
+ 0.827,
+ 0.827,
+ 0.827,
+ 0.827,
+ 0.827,
+ 0.827,
+ 0.827,
+ 0.835,
+ 0.835,
+ 0.835,
+ 0.835,
+ 0.835,
+ 0.835,
+ 0.84,
+ 0.84,
+ 0.84,
+ 0.84,
+ 0.84,
+ 0.84,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.87,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.881,
+ 0.881,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.885,
+ 0.889,
+ 0.889,
+ 0.889,
+ 0.889,
+ 0.889,
+ 0.889,
+ 0.889,
+ 0.893,
+ 0.893,
+ 0.893,
+ 0.893,
+ 0.893,
+ 0.893,
+ 0.893,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.905,
+ 0.905,
+ 0.905,
+ 0.905,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.903,
+ 0.903,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.895,
+ 0.895,
+ 0.894,
+ 0.894,
+ 0.894,
+ 0.891,
+ 0.89,
+ 0.89,
+ 0.89,
+ 0.89,
+ 0.891,
+ 0.891,
+ 0.891,
+ 0.889,
+ 0.889,
+ 0.89,
+ 0.89,
+ 0.89,
+ 0.888,
+ 0.888,
+ 0.888,
+ 0.888,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.88,
+ 0.88,
+ 0.88,
+ 0.88,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.878,
+ 0.878,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.877,
+ 0.877,
+ 0.877,
+ 0.877,
+ 0.877,
+ 0.877,
+ 0.877,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.876,
+ 0.879,
+ 0.879,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.88,
+ 0.88,
+ 0.88,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.942,
+ 0.942,
+ 0.942,
+ 0.942,
+ 0.942,
+ 0.942,
+ 0.953,
+ 0.953,
+ 0.956,
+ 0.959,
+ 0.959,
+ 0.959,
+ 0.959,
+ 0.959,
+ 0.959,
+ 0.965,
+ 0.965,
+ 0.965,
+ 0.972,
+ 0.972,
+ 0.972,
+ 0.972,
+ 0.972,
+ 0.972,
+ 0.977,
+ 0.977,
+ 0.977,
+ 0.977,
+ 0.977,
+ 0.977,
+ 0.977,
+ 0.977,
+ 0.977,
+ 0.977,
+ 0.977,
+ 0.977,
+ 0.977,
+ 0.977,
+ 0.982,
+ 0.982,
+ 0.982,
+ 0.982,
+ 0.982,
+ 0.982,
+ 0.982,
+ 0.982,
+ 0.985,
+ 0.985,
+ 0.987,
+ 0.987,
+ 0.987,
+ 0.987,
+ 0.987,
+ 0.987,
+ 0.987,
+ 0.987,
+ 0.987,
+ 0.987,
+ 0.987,
+ 0.987,
+ 0.987,
+ 0.993,
+ 0.993,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1.008,
+ 1.008,
+ 1.016,
+ 1.016,
+ 1.016,
+ 1.016,
+ 1.016,
+ 1.025,
+ 1.025,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.032,
+ 1.032,
+ 1.032,
+ 1.032,
+ 1.032,
+ 1.032,
+ 1.037,
+ 1.037,
+ 1.043,
+ 1.043,
+ 1.043,
+ 1.045,
+ 1.047,
+ 1.05,
+ 1.05,
+ 1.05,
+ 1.05,
+ 1.05,
+ 1.05,
+ 1.05,
+ 1.05,
+ 1.05,
+ 1.05,
+ 1.05,
+ 1.05,
+ 1.05,
+ 1.049,
+ 1.049,
+ 1.049,
+ 1.049,
+ 1.049,
+ 1.048,
+ 1.048,
+ 1.048,
+ 1.048,
+ 1.048,
+ 1.048,
+ 1.048,
+ 1.049,
+ 1.048,
+ 1.048,
+ 1.048,
+ 1.048,
+ 1.048,
+ 1.046,
+ 1.046,
+ 1.046,
+ 1.044,
+ 1.041,
+ 1.041,
+ 1.041,
+ 1.041,
+ 1.04,
+ 1.04,
+ 1.04,
+ 1.039,
+ 1.039,
+ 1.039,
+ 1.039,
+ 1.039,
+ 1.039,
+ 1.035,
+ 1.035,
+ 1.03,
+ 1.03,
+ 1.03,
+ 1.03,
+ 1.031,
+ 1.031,
+ 1.028,
+ 1.028,
+ 1.028,
+ 1.028,
+ 1.028,
+ 1.028
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes euribor3m=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.855,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.859,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.856,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.858,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.857,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.865,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.864,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.866,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.959,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.947,
+ 4.947,
+ 4.947,
+ 4.955,
+ 4.955,
+ 4.955,
+ 4.966,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.958,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.957,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.96,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.961,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.97,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.967,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.966,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.963,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.965,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.964,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 4.962,
+ 5.045,
+ 5.045,
+ 5.045,
+ 5.045,
+ 5,
+ 5,
+ 5,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.968,
+ 4.936,
+ 4.936,
+ 4.936,
+ 4.936,
+ 4.936,
+ 4.921,
+ 4.921,
+ 4.918,
+ 4.918,
+ 4.912,
+ 4.912,
+ 4.912,
+ 4.912,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.86,
+ 4.827,
+ 4.827,
+ 4.827,
+ 4.794,
+ 4.794,
+ 4.794,
+ 4.794,
+ 4.76,
+ 4.76,
+ 4.7,
+ 4.7,
+ 4.7,
+ 4.663,
+ 4.663,
+ 4.663,
+ 4.592,
+ 4.592,
+ 4.474,
+ 4.474,
+ 4.406,
+ 4.343,
+ 4.343,
+ 4.286,
+ 4.286,
+ 4.245,
+ 4.223,
+ 4.223,
+ 4.223,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.191,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.153,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.12,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.076,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 4.021,
+ 3.053,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.811,
+ 1.799,
+ 1.799,
+ 1.799,
+ 1.799,
+ 1.799,
+ 1.799,
+ 1.799,
+ 1.799,
+ 1.799,
+ 1.778,
+ 1.778,
+ 1.757,
+ 1.757,
+ 1.757,
+ 1.757,
+ 1.757,
+ 1.757,
+ 1.726,
+ 1.726,
+ 1.726,
+ 1.726,
+ 1.726,
+ 1.726,
+ 1.726,
+ 1.726,
+ 1.726,
+ 1.703,
+ 1.703,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.687,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.663,
+ 1.65,
+ 1.65,
+ 1.65,
+ 1.65,
+ 1.65,
+ 1.64,
+ 1.64,
+ 1.64,
+ 1.64,
+ 1.629,
+ 1.614,
+ 1.614,
+ 1.614,
+ 1.614,
+ 1.614,
+ 1.614,
+ 1.602,
+ 1.602,
+ 1.602,
+ 1.602,
+ 1.602,
+ 1.584,
+ 1.584,
+ 1.56,
+ 1.56,
+ 1.56,
+ 1.56,
+ 1.556,
+ 1.556,
+ 1.556,
+ 1.556,
+ 1.556,
+ 1.548,
+ 1.548,
+ 1.548,
+ 1.548,
+ 1.548,
+ 1.538,
+ 1.538,
+ 1.538,
+ 1.538,
+ 1.538,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.531,
+ 1.52,
+ 1.52,
+ 1.52,
+ 1.52,
+ 1.52,
+ 1.51,
+ 1.51,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.498,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.483,
+ 1.479,
+ 1.479,
+ 1.479,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.466,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.453,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.445,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.435,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.423,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.415,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.41,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.405,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.406,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.4,
+ 1.392,
+ 1.392,
+ 1.392,
+ 1.392,
+ 1.392,
+ 1.384,
+ 1.372,
+ 1.372,
+ 1.372,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.365,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.354,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.344,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.334,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.327,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.313,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.299,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.291,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.25,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.244,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.259,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.264,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.27,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.266,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.262,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.281,
+ 1.286,
+ 1.286,
+ 1.286,
+ 1.286,
+ 1.286,
+ 1.286,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.268,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.26,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.252,
+ 1.244,
+ 1.235,
+ 1.235,
+ 1.235,
+ 1.235,
+ 1.235,
+ 1.224,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.215,
+ 1.206,
+ 1.206,
+ 1.099,
+ 1.099,
+ 1.099,
+ 1.085,
+ 1.085,
+ 1.085,
+ 1.085,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.072,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.059,
+ 1.048,
+ 1.048,
+ 1.048,
+ 1.048,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.018,
+ 1.007,
+ 1.007,
+ 0.944,
+ 0.933,
+ 0.921,
+ 0.908,
+ 0.908,
+ 0.908,
+ 0.908,
+ 0.908,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.873,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.869,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.859,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.854,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.851,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.849,
+ 0.843,
+ 0.843,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.838,
+ 0.834,
+ 0.834,
+ 0.834,
+ 0.834,
+ 0.829,
+ 0.829,
+ 0.829,
+ 0.829,
+ 0.829,
+ 0.829,
+ 0.825,
+ 0.825,
+ 0.825,
+ 0.825,
+ 0.825,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.821,
+ 0.819,
+ 0.819,
+ 0.819,
+ 0.819,
+ 0.813,
+ 0.813,
+ 0.813,
+ 0.809,
+ 0.809,
+ 0.809,
+ 0.809,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.803,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.788,
+ 0.788,
+ 0.788,
+ 0.788,
+ 0.788,
+ 0.788,
+ 0.788,
+ 0.788,
+ 0.788,
+ 0.788,
+ 0.788,
+ 0.781,
+ 0.781,
+ 0.781,
+ 0.781,
+ 0.781,
+ 0.781,
+ 0.781,
+ 0.778,
+ 0.778,
+ 0.778,
+ 0.778,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.773,
+ 0.771,
+ 0.77,
+ 0.77,
+ 0.77,
+ 0.77,
+ 0.77,
+ 0.77,
+ 0.77,
+ 0.77,
+ 0.77,
+ 0.77,
+ 0.77,
+ 0.77,
+ 0.768,
+ 0.768,
+ 0.768,
+ 0.766,
+ 0.762,
+ 0.762,
+ 0.762,
+ 0.755,
+ 0.755,
+ 0.755,
+ 0.755,
+ 0.755,
+ 0.755,
+ 0.749,
+ 0.741,
+ 0.741,
+ 0.739,
+ 0.75,
+ 0.75,
+ 0.753,
+ 0.753,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.752,
+ 0.744,
+ 0.744,
+ 0.744,
+ 0.744,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.741,
+ 0.741,
+ 0.743,
+ 0.743,
+ 0.743,
+ 0.743,
+ 0.743,
+ 0.743,
+ 0.743,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.742,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.74,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.735,
+ 0.733,
+ 0.733,
+ 0.733,
+ 0.733,
+ 0.733,
+ 0.733,
+ 0.733,
+ 0.733,
+ 0.733,
+ 0.733,
+ 0.733,
+ 0.733,
+ 0.73,
+ 0.73,
+ 0.73,
+ 0.73,
+ 0.73,
+ 0.73,
+ 0.73,
+ 0.73,
+ 0.73,
+ 0.73,
+ 0.73,
+ 0.731,
+ 0.731,
+ 0.731,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.728,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.724,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.722,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.719,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.716,
+ 0.718,
+ 0.718,
+ 0.719,
+ 0.721,
+ 0.721,
+ 0.721,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.718,
+ 0.718,
+ 0.717,
+ 0.717,
+ 0.717,
+ 0.717,
+ 0.717,
+ 0.717,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.714,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.712,
+ 0.712,
+ 0.712,
+ 0.712,
+ 0.71,
+ 0.71,
+ 0.71,
+ 0.71,
+ 0.709,
+ 0.709,
+ 0.709,
+ 0.708,
+ 0.708,
+ 0.708,
+ 0.708,
+ 0.706,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.706,
+ 0.706,
+ 0.706,
+ 0.706,
+ 0.706,
+ 0.706,
+ 0.706,
+ 0.706,
+ 0.706,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.707,
+ 0.7,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.655,
+ 0.654,
+ 0.654,
+ 0.654,
+ 0.654,
+ 0.654,
+ 0.654,
+ 0.654,
+ 0.653,
+ 0.653,
+ 0.653,
+ 0.653,
+ 0.653,
+ 0.653,
+ 0.653,
+ 0.653,
+ 0.653,
+ 0.653,
+ 0.653,
+ 0.653,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.652,
+ 0.651,
+ 0.651,
+ 0.651,
+ 0.65,
+ 0.65,
+ 0.65,
+ 0.65,
+ 0.649,
+ 0.649,
+ 0.649,
+ 0.649,
+ 0.649,
+ 0.649,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.644,
+ 0.644,
+ 0.643,
+ 0.643,
+ 0.643,
+ 0.643,
+ 0.643,
+ 0.643,
+ 0.639,
+ 0.639,
+ 0.639,
+ 0.639,
+ 0.639,
+ 0.637,
+ 0.637,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.636,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.634,
+ 0.634,
+ 0.634,
+ 0.634,
+ 0.634,
+ 0.634,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.635,
+ 0.638,
+ 0.638,
+ 0.638,
+ 0.638,
+ 0.639,
+ 0.64,
+ 0.64,
+ 0.64,
+ 0.64,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.643,
+ 0.643,
+ 0.643,
+ 0.643,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.642,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.644,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.645,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.646,
+ 0.654,
+ 0.659,
+ 0.659,
+ 0.659,
+ 0.659,
+ 0.659,
+ 0.659,
+ 0.659,
+ 0.659,
+ 0.663,
+ 0.663,
+ 0.663,
+ 0.668,
+ 0.668,
+ 0.668,
+ 0.668,
+ 0.668,
+ 0.668,
+ 0.668,
+ 0.672,
+ 0.672,
+ 0.672,
+ 0.672,
+ 0.672,
+ 0.677,
+ 0.677,
+ 0.677,
+ 0.677,
+ 0.677,
+ 0.677,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.682,
+ 0.683,
+ 0.683,
+ 0.683,
+ 0.683,
+ 0.683,
+ 0.683,
+ 0.683,
+ 0.683,
+ 0.683,
+ 0.683,
+ 0.684,
+ 0.684,
+ 0.684,
+ 0.684,
+ 0.684,
+ 0.684,
+ 0.684,
+ 0.684,
+ 0.684,
+ 0.684,
+ 0.685,
+ 0.685,
+ 0.685,
+ 0.685,
+ 0.685,
+ 0.688,
+ 0.688,
+ 0.688,
+ 0.69,
+ 0.69,
+ 0.692,
+ 0.692,
+ 0.692,
+ 0.692,
+ 0.692,
+ 0.695,
+ 0.695,
+ 0.695,
+ 0.695,
+ 0.697,
+ 0.697,
+ 0.697,
+ 0.697,
+ 0.697,
+ 0.697,
+ 0.697,
+ 0.697,
+ 0.697,
+ 0.697,
+ 0.697,
+ 0.697,
+ 0.697,
+ 0.697,
+ 0.697,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.699,
+ 0.701,
+ 0.701,
+ 0.702,
+ 0.702,
+ 0.702,
+ 0.702,
+ 0.702,
+ 0.702,
+ 0.704,
+ 0.704,
+ 0.704,
+ 0.704,
+ 0.704,
+ 0.711,
+ 0.713,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.715,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.72,
+ 0.723,
+ 0.723,
+ 0.723,
+ 0.723,
+ 0.723,
+ 0.723,
+ 0.727,
+ 0.727,
+ 0.727,
+ 0.729,
+ 0.729,
+ 0.729,
+ 0.729,
+ 0.729,
+ 0.732,
+ 0.732,
+ 0.737,
+ 0.737,
+ 0.737,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.739,
+ 0.742,
+ 0.742,
+ 0.748,
+ 0.748,
+ 0.748,
+ 0.748,
+ 0.748,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.754,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.761,
+ 0.767,
+ 0.767,
+ 0.767,
+ 0.767,
+ 0.767,
+ 0.767,
+ 0.767,
+ 0.767,
+ 0.782,
+ 0.782,
+ 0.782,
+ 0.79,
+ 0.79,
+ 0.79,
+ 0.79,
+ 0.79,
+ 0.79,
+ 0.793,
+ 0.793,
+ 0.793,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.797,
+ 0.802,
+ 0.802,
+ 0.802,
+ 0.802,
+ 0.802,
+ 0.81,
+ 0.81,
+ 0.81,
+ 0.81,
+ 0.81,
+ 0.81,
+ 0.81,
+ 0.822,
+ 0.822,
+ 0.822,
+ 0.822,
+ 0.827,
+ 0.827,
+ 0.827,
+ 0.827,
+ 0.827,
+ 0.827,
+ 0.827,
+ 0.827,
+ 0.835,
+ 0.835,
+ 0.835,
+ 0.835,
+ 0.835,
+ 0.835,
+ 0.835,
+ 0.835,
+ 0.835,
+ 0.835,
+ 0.835,
+ 0.835,
+ 0.835,
+ 0.84,
+ 0.84,
+ 0.84,
+ 0.84,
+ 0.84,
+ 0.84,
+ 0.84,
+ 0.84,
+ 0.84,
+ 0.84,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.846,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.861,
+ 0.87,
+ 0.87,
+ 0.87,
+ 0.87,
+ 0.87,
+ 0.87,
+ 0.87,
+ 0.87,
+ 0.87,
+ 0.87,
+ 0.87,
+ 0.87,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.885,
+ 0.885,
+ 0.885,
+ 0.885,
+ 0.885,
+ 0.885,
+ 0.885,
+ 0.889,
+ 0.889,
+ 0.889,
+ 0.889,
+ 0.889,
+ 0.889,
+ 0.893,
+ 0.893,
+ 0.893,
+ 0.893,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.905,
+ 0.905,
+ 0.905,
+ 0.905,
+ 0.905,
+ 0.905,
+ 0.905,
+ 0.905,
+ 0.905,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.904,
+ 0.903,
+ 0.903,
+ 0.903,
+ 0.903,
+ 0.903,
+ 0.903,
+ 0.903,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.899,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.898,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.896,
+ 0.895,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.884,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.883,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.882,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.881,
+ 0.88,
+ 0.88,
+ 0.88,
+ 0.88,
+ 0.88,
+ 0.88,
+ 0.88,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.877,
+ 0.877,
+ 0.877,
+ 0.877,
+ 0.877,
+ 0.877,
+ 0.877,
+ 0.877,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.876,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.876,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.878,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.879,
+ 0.88,
+ 0.88,
+ 0.886,
+ 0.886,
+ 0.886,
+ 0.959,
+ 0.959,
+ 0.959,
+ 0.959,
+ 0.959,
+ 0.959,
+ 0.959,
+ 0.959,
+ 0.959,
+ 0.965,
+ 0.972,
+ 0.972,
+ 0.972,
+ 0.972,
+ 0.972,
+ 0.972,
+ 0.972,
+ 0.977,
+ 0.977,
+ 0.977,
+ 0.977,
+ 0.977,
+ 0.982,
+ 0.982,
+ 0.982,
+ 0.982,
+ 0.982,
+ 0.985,
+ 0.985,
+ 0.985,
+ 0.987,
+ 0.987,
+ 0.987,
+ 0.987,
+ 0.987,
+ 0.987,
+ 0.993,
+ 0.993,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1.008,
+ 1.008,
+ 1.016,
+ 1.016,
+ 1.016,
+ 1.025,
+ 1.025,
+ 1.025,
+ 1.025,
+ 1.025,
+ 1.025,
+ 1.025,
+ 1.025,
+ 1.025,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.029,
+ 1.032,
+ 1.032,
+ 1.032,
+ 1.032,
+ 1.032,
+ 1.032,
+ 1.032,
+ 1.032,
+ 1.032,
+ 1.037,
+ 1.037,
+ 1.037,
+ 1.037,
+ 1.043,
+ 1.043,
+ 1.043,
+ 1.043,
+ 1.043,
+ 1.043,
+ 1.05,
+ 1.05,
+ 1.05,
+ 1.05,
+ 1.05,
+ 1.05,
+ 1.049,
+ 1.049,
+ 1.049,
+ 1.049,
+ 1.048,
+ 1.05,
+ 1.05,
+ 1.049,
+ 1.049,
+ 1.046,
+ 1.046,
+ 1.046,
+ 1.046,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.044,
+ 1.041,
+ 1.041,
+ 1.041,
+ 1.041,
+ 1.04,
+ 1.04,
+ 1.04,
+ 1.04,
+ 1.04,
+ 1.04,
+ 1.04,
+ 1.039,
+ 1.039,
+ 1.039,
+ 1.035,
+ 1.035,
+ 1.035,
+ 1.035,
+ 1.035,
+ 1.03,
+ 1.03,
+ 1.031,
+ 1.031,
+ 1.031,
+ 1.031,
+ 1.031,
+ 1.028,
+ 1.028,
+ 1.028
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "euribor3m"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=no nr.employed=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5176.3,
+ 5176.3,
+ 5176.3,
+ 5176.3,
+ 5176.3,
+ 5176.3,
+ 5176.3,
+ 5176.3,
+ 5176.3,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=yes nr.employed=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "opacity": 0.7,
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5191,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5228.1,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5195.8,
+ 5176.3,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5099.1,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5076.2,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5017.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5023.5,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 5008.7,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4991.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6,
+ 4963.6
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "nr.employed"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Define a function to plot histograms of numerical features\n",
+ "\n",
+ "def hist_plot(column):\n",
+ " fig = px.histogram(df1, x=column, color='y', opacity=0.7)\n",
+ " fig.show()\n",
+ "for col in numerical_cols:\n",
+ " hist_plot(col)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 47,
+ "id": "7f5259bf",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=%{x} count=%{y} ",
+ "legendgroup": "no",
+ "marker": {
+ "color": "#636efa",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "no",
+ "offsetgroup": "no",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no",
+ "no"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ },
+ {
+ "alignmentgroup": "True",
+ "bingroup": "x",
+ "hovertemplate": "y=%{x} count=%{y} ",
+ "legendgroup": "yes",
+ "marker": {
+ "color": "#EF553B",
+ "pattern": {
+ "shape": ""
+ }
+ },
+ "name": "yes",
+ "offsetgroup": "yes",
+ "orientation": "v",
+ "showlegend": true,
+ "type": "histogram",
+ "x": [
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes",
+ "yes"
+ ],
+ "xaxis": "x",
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "barmode": "relative",
+ "legend": {
+ "title": {
+ "text": "y"
+ },
+ "tracegroupgap": 0
+ },
+ "margin": {
+ "t": 60
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "fillpattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "title": {
+ "text": "Distribution of the Target Variable y"
+ },
+ "xaxis": {
+ "anchor": "y",
+ "categoryarray": [
+ "no",
+ "yes"
+ ],
+ "categoryorder": "array",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "y"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "count"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Assuming df1 is your DataFrame and 'y' is your target variable\n",
+ "fig = px.histogram(df1, x='y', color='y')\n",
+ "fig.update_layout(title='Distribution of the Target Variable y')\n",
+ "fig.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 23,
+ "id": "7af41320",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Drop the 'default' column from the dataset\n",
+ "df2=df1.drop(['default'], axis=1) "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 24,
+ "id": "2a12724c",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Index(['age', 'job', 'marital', 'education', 'housing', 'loan', 'contact',\n",
+ " 'month', 'day_of_week', 'duration', 'campaign', 'pdays', 'previous',\n",
+ " 'poutcome', 'emp.var.rate', 'cons.price.idx', 'cons.conf.idx',\n",
+ " 'euribor3m', 'nr.employed', 'y'],\n",
+ " dtype='object')"
+ ]
+ },
+ "execution_count": 24,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df2.columns"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 25,
+ "id": "f02301b7",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Index(['job', 'marital', 'education', 'housing', 'loan', 'contact', 'month',\n",
+ " 'day_of_week', 'poutcome', 'y'],\n",
+ " dtype='object')"
+ ]
+ },
+ "execution_count": 25,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "categorical_cols = df2.select_dtypes(include=['object', 'category']).columns\n",
+ "categorical_cols"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 26,
+ "id": "bb7c0b4e",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " age \n",
+ " job \n",
+ " marital \n",
+ " education \n",
+ " housing \n",
+ " loan \n",
+ " contact \n",
+ " month \n",
+ " day_of_week \n",
+ " duration \n",
+ " campaign \n",
+ " pdays \n",
+ " previous \n",
+ " poutcome \n",
+ " emp.var.rate \n",
+ " cons.price.idx \n",
+ " cons.conf.idx \n",
+ " euribor3m \n",
+ " nr.employed \n",
+ " y \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " 56 \n",
+ " 3 \n",
+ " 1 \n",
+ " 0 \n",
+ " 0 \n",
+ " 0 \n",
+ " 1 \n",
+ " 6 \n",
+ " 1 \n",
+ " 261 \n",
+ " 1 \n",
+ " 999 \n",
+ " 0 \n",
+ " 1 \n",
+ " 1.1 \n",
+ " 93.994 \n",
+ " -36.4 \n",
+ " 4.857 \n",
+ " 5191.0 \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " 37 \n",
+ " 7 \n",
+ " 1 \n",
+ " 3 \n",
+ " 1 \n",
+ " 0 \n",
+ " 1 \n",
+ " 6 \n",
+ " 1 \n",
+ " 226 \n",
+ " 1 \n",
+ " 999 \n",
+ " 0 \n",
+ " 1 \n",
+ " 1.1 \n",
+ " 93.994 \n",
+ " -36.4 \n",
+ " 4.857 \n",
+ " 5191.0 \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " 40 \n",
+ " 0 \n",
+ " 1 \n",
+ " 1 \n",
+ " 0 \n",
+ " 0 \n",
+ " 1 \n",
+ " 6 \n",
+ " 1 \n",
+ " 151 \n",
+ " 1 \n",
+ " 999 \n",
+ " 0 \n",
+ " 1 \n",
+ " 1.1 \n",
+ " 93.994 \n",
+ " -36.4 \n",
+ " 4.857 \n",
+ " 5191.0 \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " 56 \n",
+ " 7 \n",
+ " 1 \n",
+ " 3 \n",
+ " 0 \n",
+ " 1 \n",
+ " 1 \n",
+ " 6 \n",
+ " 1 \n",
+ " 307 \n",
+ " 1 \n",
+ " 999 \n",
+ " 0 \n",
+ " 1 \n",
+ " 1.1 \n",
+ " 93.994 \n",
+ " -36.4 \n",
+ " 4.857 \n",
+ " 5191.0 \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " 6 \n",
+ " 59 \n",
+ " 0 \n",
+ " 1 \n",
+ " 5 \n",
+ " 0 \n",
+ " 0 \n",
+ " 1 \n",
+ " 6 \n",
+ " 1 \n",
+ " 139 \n",
+ " 1 \n",
+ " 999 \n",
+ " 0 \n",
+ " 1 \n",
+ " 1.1 \n",
+ " 93.994 \n",
+ " -36.4 \n",
+ " 4.857 \n",
+ " 5191.0 \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " age job marital education housing loan contact month day_of_week \\\n",
+ "0 56 3 1 0 0 0 1 6 1 \n",
+ "2 37 7 1 3 1 0 1 6 1 \n",
+ "3 40 0 1 1 0 0 1 6 1 \n",
+ "4 56 7 1 3 0 1 1 6 1 \n",
+ "6 59 0 1 5 0 0 1 6 1 \n",
+ "\n",
+ " duration campaign pdays previous poutcome emp.var.rate \\\n",
+ "0 261 1 999 0 1 1.1 \n",
+ "2 226 1 999 0 1 1.1 \n",
+ "3 151 1 999 0 1 1.1 \n",
+ "4 307 1 999 0 1 1.1 \n",
+ "6 139 1 999 0 1 1.1 \n",
+ "\n",
+ " cons.price.idx cons.conf.idx euribor3m nr.employed y \n",
+ "0 93.994 -36.4 4.857 5191.0 0 \n",
+ "2 93.994 -36.4 4.857 5191.0 0 \n",
+ "3 93.994 -36.4 4.857 5191.0 0 \n",
+ "4 93.994 -36.4 4.857 5191.0 0 \n",
+ "6 93.994 -36.4 4.857 5191.0 0 "
+ ]
+ },
+ "execution_count": 26,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# Encode the categorical features using LabelEncoder\n",
+ "from sklearn.preprocessing import LabelEncoder\n",
+ "le = LabelEncoder()\n",
+ "for col in categorical_cols:\n",
+ " df2[col] = le.fit_transform(df2[col])\n",
+ "df2.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 27,
+ "id": "c7ff38d3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "X=df2.drop('y',axis=1)\n",
+ "y=df2['y']"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 28,
+ "id": "2f812e5c",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Encode the categorical features using LabelEncoder\n",
+ "\n",
+ "from sklearn.preprocessing import StandardScaler\n",
+ "scaler = StandardScaler()\n",
+ "X_scaled = scaler.fit_transform(X)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 36,
+ "id": "e9b0094e",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "(22866, 19) (7622, 19)\n"
+ ]
+ }
+ ],
+ "source": [
+ "from sklearn.model_selection import train_test_split\n",
+ "\n",
+ "X_train,X_test,y_train,y_test=train_test_split(X_scaled,y, random_state=42)\n",
+ "print(X_train.shape,X_test.shape)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 37,
+ "id": "886cce3f",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Define a function to train a model and print its metrics\n",
+ "\n",
+ "def train(model_name, model):\n",
+ " model.fit(X_train, y_train)\n",
+ " y_pred=model.predict(X_test)\n",
+ " accuracy=accuracy_score(y_test, y_pred)\n",
+ " precision=precision_score(y_test, y_pred)\n",
+ " recall=recall_score(y_test, y_pred)\n",
+ " f1=f1_score(y_test, y_pred)\n",
+ " \n",
+ " metrics[model_name]={\n",
+ " 'Accuracy': accuracy,\n",
+ " 'Precision': precision,\n",
+ " 'Recall': recall,\n",
+ " 'F1 Score': f1\n",
+ " }\n",
+ " \n",
+ " print(f\"{model_name}'s Metrics:\")\n",
+ " print(f\" Accuracy: {round(accuracy * 100, 2)}%\")\n",
+ " print(f\" Precision: {round(precision, 2)}\")\n",
+ " print(f\" Recall: {round(recall, 2)}\")\n",
+ " print(f\" F1 Score: {round(f1, 2)}\")\n",
+ " print()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 38,
+ "id": "a18f74c9",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Random Forest's Metrics:\n",
+ " Accuracy: 87.4%\n",
+ " Precision: 0.5\n",
+ " Recall: 0.87\n",
+ " F1 Score: 0.64\n",
+ "\n",
+ "Decision Tree's Metrics:\n",
+ " Accuracy: 88.09%\n",
+ " Precision: 0.53\n",
+ " Recall: 0.53\n",
+ " F1 Score: 0.53\n",
+ "\n",
+ "KNN's Metrics:\n",
+ " Accuracy: 89.07%\n",
+ " Precision: 0.61\n",
+ " Recall: 0.39\n",
+ " F1 Score: 0.47\n",
+ "\n",
+ "XGBoost's Metrics:\n",
+ " Accuracy: 90.11%\n",
+ " Precision: 0.63\n",
+ " Recall: 0.54\n",
+ " F1 Score: 0.58\n",
+ "\n",
+ "Adaboost's Metrics:\n",
+ " Accuracy: 89.98%\n",
+ " Precision: 0.68\n",
+ " Recall: 0.4\n",
+ " F1 Score: 0.5\n",
+ "\n",
+ "Logistic Regression's Metrics:\n",
+ " Accuracy: 89.95%\n",
+ " Precision: 0.67\n",
+ " Recall: 0.41\n",
+ " F1 Score: 0.51\n",
+ "\n",
+ "Naive Bayes's Metrics:\n",
+ " Accuracy: 82.98%\n",
+ " Precision: 0.39\n",
+ " Recall: 0.57\n",
+ " F1 Score: 0.46\n",
+ "\n",
+ "SVC's Metrics:\n",
+ " Accuracy: 89.69%\n",
+ " Precision: 0.67\n",
+ " Recall: 0.37\n",
+ " F1 Score: 0.48\n",
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Import classifiers and metrics\n",
+ "\n",
+ "from sklearn.ensemble import RandomForestClassifier, AdaBoostClassifier\n",
+ "from sklearn.tree import DecisionTreeClassifier\n",
+ "from sklearn.neighbors import KNeighborsClassifier\n",
+ "from sklearn.linear_model import LogisticRegression\n",
+ "from xgboost import XGBClassifier\n",
+ "from sklearn.svm import SVC\n",
+ "from sklearn.naive_bayes import GaussianNB\n",
+ "from sklearn.metrics import accuracy_score, precision_score, recall_score, f1_score\n",
+ "\n",
+ "metrics = {}\n",
+ "\n",
+ "# Train and Evaluate the models\n",
+ "\n",
+ "rf = RandomForestClassifier(max_depth=10, class_weight='balanced', random_state=42, n_estimators=120)\n",
+ "train('Random Forest', rf)\n",
+ "\n",
+ "dt = DecisionTreeClassifier()\n",
+ "train('Decision Tree', dt)\n",
+ "\n",
+ "knn = KNeighborsClassifier()\n",
+ "train('KNN', knn)\n",
+ "\n",
+ "xgb = XGBClassifier()\n",
+ "train('XGBoost', xgb)\n",
+ "\n",
+ "ada = AdaBoostClassifier()\n",
+ "train('Adaboost', ada)\n",
+ "\n",
+ "lr = LogisticRegression()\n",
+ "train('Logistic Regression', lr)\n",
+ "\n",
+ "nb = GaussianNB()\n",
+ "train('Naive Bayes', nb)\n",
+ "\n",
+ "svc = SVC()\n",
+ "train('SVC', svc)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 49,
+ "id": "e89fcf76",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " Accuracy \n",
+ " Precision \n",
+ " Recall \n",
+ " F1 Score \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " Random Forest \n",
+ " 0.874049 \n",
+ " 0.502693 \n",
+ " 0.866873 \n",
+ " 0.636364 \n",
+ " \n",
+ " \n",
+ " Decision Tree \n",
+ " 0.880871 \n",
+ " 0.531411 \n",
+ " 0.532508 \n",
+ " 0.531959 \n",
+ " \n",
+ " \n",
+ " KNN \n",
+ " 0.890711 \n",
+ " 0.611111 \n",
+ " 0.385965 \n",
+ " 0.473118 \n",
+ " \n",
+ " \n",
+ " XGBoost \n",
+ " 0.901076 \n",
+ " 0.629674 \n",
+ " 0.538700 \n",
+ " 0.580645 \n",
+ " \n",
+ " \n",
+ " Adaboost \n",
+ " 0.899764 \n",
+ " 0.681416 \n",
+ " 0.397317 \n",
+ " 0.501956 \n",
+ " \n",
+ " \n",
+ " Logistic Regression \n",
+ " 0.899501 \n",
+ " 0.671164 \n",
+ " 0.410733 \n",
+ " 0.509603 \n",
+ " \n",
+ " \n",
+ " Naive Bayes \n",
+ " 0.829835 \n",
+ " 0.386269 \n",
+ " 0.574819 \n",
+ " 0.462049 \n",
+ " \n",
+ " \n",
+ " SVC \n",
+ " 0.896877 \n",
+ " 0.669759 \n",
+ " 0.372549 \n",
+ " 0.478780 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Accuracy Precision Recall F1 Score\n",
+ "Random Forest 0.874049 0.502693 0.866873 0.636364\n",
+ "Decision Tree 0.880871 0.531411 0.532508 0.531959\n",
+ "KNN 0.890711 0.611111 0.385965 0.473118\n",
+ "XGBoost 0.901076 0.629674 0.538700 0.580645\n",
+ "Adaboost 0.899764 0.681416 0.397317 0.501956\n",
+ "Logistic Regression 0.899501 0.671164 0.410733 0.509603\n",
+ "Naive Bayes 0.829835 0.386269 0.574819 0.462049\n",
+ "SVC 0.896877 0.669759 0.372549 0.478780"
+ ]
+ },
+ "execution_count": 49,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# Convert the metrics dictionary to a DataFrame for better visualization\n",
+ "\n",
+ "metrics_df=pd.DataFrame(data=metrics)\n",
+ "metrics_df=metrics_df.T\n",
+ "metrics_df"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 54,
+ "id": "284c8458",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " Models \n",
+ " Accuracy \n",
+ " Precision \n",
+ " Recall \n",
+ " F1 Score \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " Random Forest \n",
+ " 0.874049 \n",
+ " 0.502693 \n",
+ " 0.866873 \n",
+ " 0.636364 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " Decision Tree \n",
+ " 0.880871 \n",
+ " 0.531411 \n",
+ " 0.532508 \n",
+ " 0.531959 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " KNN \n",
+ " 0.890711 \n",
+ " 0.611111 \n",
+ " 0.385965 \n",
+ " 0.473118 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " XGBoost \n",
+ " 0.901076 \n",
+ " 0.629674 \n",
+ " 0.538700 \n",
+ " 0.580645 \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " Adaboost \n",
+ " 0.899764 \n",
+ " 0.681416 \n",
+ " 0.397317 \n",
+ " 0.501956 \n",
+ " \n",
+ " \n",
+ " 5 \n",
+ " Logistic Regression \n",
+ " 0.899501 \n",
+ " 0.671164 \n",
+ " 0.410733 \n",
+ " 0.509603 \n",
+ " \n",
+ " \n",
+ " 6 \n",
+ " Naive Bayes \n",
+ " 0.829835 \n",
+ " 0.386269 \n",
+ " 0.574819 \n",
+ " 0.462049 \n",
+ " \n",
+ " \n",
+ " 7 \n",
+ " SVC \n",
+ " 0.896877 \n",
+ " 0.669759 \n",
+ " 0.372549 \n",
+ " 0.478780 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Models Accuracy Precision Recall F1 Score\n",
+ "0 Random Forest 0.874049 0.502693 0.866873 0.636364\n",
+ "1 Decision Tree 0.880871 0.531411 0.532508 0.531959\n",
+ "2 KNN 0.890711 0.611111 0.385965 0.473118\n",
+ "3 XGBoost 0.901076 0.629674 0.538700 0.580645\n",
+ "4 Adaboost 0.899764 0.681416 0.397317 0.501956\n",
+ "5 Logistic Regression 0.899501 0.671164 0.410733 0.509603\n",
+ "6 Naive Bayes 0.829835 0.386269 0.574819 0.462049\n",
+ "7 SVC 0.896877 0.669759 0.372549 0.478780"
+ ]
+ },
+ "execution_count": 54,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "metrics_df=metrics_df.reset_index()\n",
+ "metrics_df.rename(columns={'index': 'Models'}, inplace=True)\n",
+ "metrics_df"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 55,
+ "id": "b4a568d2",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "colors = {\n",
+ " 'Accuracy': '#1f77b4', \n",
+ " 'Precision': '#ff7f0e', \n",
+ " 'Recall': '#2ca02c', \n",
+ " 'F1 Score': '#d62728' \n",
+ "}"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 56,
+ "id": "b326a205",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "hovertemplate": "Models=%{x} Accuracy=%{y} ",
+ "legendgroup": "",
+ "line": {
+ "color": "#1f77b4",
+ "dash": "solid"
+ },
+ "marker": {
+ "symbol": "circle"
+ },
+ "mode": "lines",
+ "name": "",
+ "orientation": "v",
+ "showlegend": false,
+ "type": "scatter",
+ "x": [
+ "Random Forest",
+ "Decision Tree",
+ "KNN",
+ "XGBoost",
+ "Adaboost",
+ "Logistic Regression",
+ "Naive Bayes",
+ "SVC"
+ ],
+ "xaxis": "x",
+ "y": [
+ 0.874048806087641,
+ 0.8808711624245604,
+ 0.8907110994489635,
+ 0.9010758331146681,
+ 0.8997638415114143,
+ 0.8995014431907635,
+ 0.8298346890579901,
+ 0.896877459984256
+ ],
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "legend": {
+ "tracegroupgap": 0
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#f2f5fa"
+ },
+ "error_y": {
+ "color": "#f2f5fa"
+ },
+ "marker": {
+ "line": {
+ "color": "rgb(17,17,17)",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "rgb(17,17,17)",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#A2B1C6",
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "minorgridcolor": "#506784",
+ "startlinecolor": "#A2B1C6"
+ },
+ "baxis": {
+ "endlinecolor": "#A2B1C6",
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "minorgridcolor": "#506784",
+ "startlinecolor": "#A2B1C6"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "marker": {
+ "line": {
+ "color": "#283442"
+ }
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "line": {
+ "color": "#283442"
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#506784"
+ },
+ "line": {
+ "color": "rgb(17,17,17)"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#2a3f5f"
+ },
+ "line": {
+ "color": "rgb(17,17,17)"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#f2f5fa",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#f2f5fa"
+ },
+ "geo": {
+ "bgcolor": "rgb(17,17,17)",
+ "lakecolor": "rgb(17,17,17)",
+ "landcolor": "rgb(17,17,17)",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "#506784"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "dark"
+ },
+ "paper_bgcolor": "rgb(17,17,17)",
+ "plot_bgcolor": "rgb(17,17,17)",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ },
+ "bgcolor": "rgb(17,17,17)",
+ "radialaxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "rgb(17,17,17)",
+ "gridcolor": "#506784",
+ "gridwidth": 2,
+ "linecolor": "#506784",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "#C8D4E3"
+ },
+ "yaxis": {
+ "backgroundcolor": "rgb(17,17,17)",
+ "gridcolor": "#506784",
+ "gridwidth": 2,
+ "linecolor": "#506784",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "#C8D4E3"
+ },
+ "zaxis": {
+ "backgroundcolor": "rgb(17,17,17)",
+ "gridcolor": "#506784",
+ "gridwidth": 2,
+ "linecolor": "#506784",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "#C8D4E3"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#f2f5fa"
+ }
+ },
+ "sliderdefaults": {
+ "bgcolor": "#C8D4E3",
+ "bordercolor": "rgb(17,17,17)",
+ "borderwidth": 1,
+ "tickwidth": 0
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ },
+ "bgcolor": "rgb(17,17,17)",
+ "caxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "updatemenudefaults": {
+ "bgcolor": "#506784",
+ "borderwidth": 0
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "#283442",
+ "linecolor": "#506784",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "#283442",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "#283442",
+ "linecolor": "#506784",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "#283442",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "title": {
+ "text": "Accuracy Over Models"
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "Models"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "Accuracy"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Plot accuracy across different models\n",
+ "\n",
+ "fig_accuracy = px.line(metrics_df, x=metrics_df['Models'], y='Accuracy', title='Accuracy Over Models', \n",
+ " template='plotly_dark', color_discrete_sequence=[colors['Accuracy']])\n",
+ "\n",
+ "fig_accuracy.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 57,
+ "id": "ab3e62ed",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "hovertemplate": "Models=%{x} Precision=%{y} ",
+ "legendgroup": "",
+ "line": {
+ "color": "#ff7f0e",
+ "dash": "solid"
+ },
+ "marker": {
+ "symbol": "circle"
+ },
+ "mode": "lines",
+ "name": "",
+ "orientation": "v",
+ "showlegend": false,
+ "type": "scatter",
+ "x": [
+ "Random Forest",
+ "Decision Tree",
+ "KNN",
+ "XGBoost",
+ "Adaboost",
+ "Logistic Regression",
+ "Naive Bayes",
+ "SVC"
+ ],
+ "xaxis": "x",
+ "y": [
+ 0.5026929982046678,
+ 0.5314109165808445,
+ 0.6111111111111112,
+ 0.6296743063932448,
+ 0.6814159292035398,
+ 0.6711635750421585,
+ 0.38626907073509015,
+ 0.6697588126159555
+ ],
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "legend": {
+ "tracegroupgap": 0
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#f2f5fa"
+ },
+ "error_y": {
+ "color": "#f2f5fa"
+ },
+ "marker": {
+ "line": {
+ "color": "rgb(17,17,17)",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "rgb(17,17,17)",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#A2B1C6",
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "minorgridcolor": "#506784",
+ "startlinecolor": "#A2B1C6"
+ },
+ "baxis": {
+ "endlinecolor": "#A2B1C6",
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "minorgridcolor": "#506784",
+ "startlinecolor": "#A2B1C6"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "marker": {
+ "line": {
+ "color": "#283442"
+ }
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "line": {
+ "color": "#283442"
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#506784"
+ },
+ "line": {
+ "color": "rgb(17,17,17)"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#2a3f5f"
+ },
+ "line": {
+ "color": "rgb(17,17,17)"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#f2f5fa",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#f2f5fa"
+ },
+ "geo": {
+ "bgcolor": "rgb(17,17,17)",
+ "lakecolor": "rgb(17,17,17)",
+ "landcolor": "rgb(17,17,17)",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "#506784"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "dark"
+ },
+ "paper_bgcolor": "rgb(17,17,17)",
+ "plot_bgcolor": "rgb(17,17,17)",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ },
+ "bgcolor": "rgb(17,17,17)",
+ "radialaxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "rgb(17,17,17)",
+ "gridcolor": "#506784",
+ "gridwidth": 2,
+ "linecolor": "#506784",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "#C8D4E3"
+ },
+ "yaxis": {
+ "backgroundcolor": "rgb(17,17,17)",
+ "gridcolor": "#506784",
+ "gridwidth": 2,
+ "linecolor": "#506784",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "#C8D4E3"
+ },
+ "zaxis": {
+ "backgroundcolor": "rgb(17,17,17)",
+ "gridcolor": "#506784",
+ "gridwidth": 2,
+ "linecolor": "#506784",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "#C8D4E3"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#f2f5fa"
+ }
+ },
+ "sliderdefaults": {
+ "bgcolor": "#C8D4E3",
+ "bordercolor": "rgb(17,17,17)",
+ "borderwidth": 1,
+ "tickwidth": 0
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ },
+ "bgcolor": "rgb(17,17,17)",
+ "caxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "updatemenudefaults": {
+ "bgcolor": "#506784",
+ "borderwidth": 0
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "#283442",
+ "linecolor": "#506784",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "#283442",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "#283442",
+ "linecolor": "#506784",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "#283442",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "title": {
+ "text": "Precision Over Models"
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "Models"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "Precision"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Plot precision across different models\n",
+ "\n",
+ "fig_precision = px.line(metrics_df, x=metrics_df['Models'], y='Precision', title='Precision Over Models', \n",
+ " template='plotly_dark', color_discrete_sequence=[colors['Precision']])\n",
+ "fig_precision.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 58,
+ "id": "3556eb90",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "hovertemplate": "Models=%{x} Recall=%{y} ",
+ "legendgroup": "",
+ "line": {
+ "color": "#2ca02c",
+ "dash": "solid"
+ },
+ "marker": {
+ "symbol": "circle"
+ },
+ "mode": "lines",
+ "name": "",
+ "orientation": "v",
+ "showlegend": false,
+ "type": "scatter",
+ "x": [
+ "Random Forest",
+ "Decision Tree",
+ "KNN",
+ "XGBoost",
+ "Adaboost",
+ "Logistic Regression",
+ "Naive Bayes",
+ "SVC"
+ ],
+ "xaxis": "x",
+ "y": [
+ 0.8668730650154799,
+ 0.5325077399380805,
+ 0.38596491228070173,
+ 0.5386996904024768,
+ 0.3973168214654283,
+ 0.4107327141382869,
+ 0.5748194014447885,
+ 0.37254901960784315
+ ],
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "legend": {
+ "tracegroupgap": 0
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#f2f5fa"
+ },
+ "error_y": {
+ "color": "#f2f5fa"
+ },
+ "marker": {
+ "line": {
+ "color": "rgb(17,17,17)",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "rgb(17,17,17)",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#A2B1C6",
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "minorgridcolor": "#506784",
+ "startlinecolor": "#A2B1C6"
+ },
+ "baxis": {
+ "endlinecolor": "#A2B1C6",
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "minorgridcolor": "#506784",
+ "startlinecolor": "#A2B1C6"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "marker": {
+ "line": {
+ "color": "#283442"
+ }
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "line": {
+ "color": "#283442"
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#506784"
+ },
+ "line": {
+ "color": "rgb(17,17,17)"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#2a3f5f"
+ },
+ "line": {
+ "color": "rgb(17,17,17)"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#f2f5fa",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#f2f5fa"
+ },
+ "geo": {
+ "bgcolor": "rgb(17,17,17)",
+ "lakecolor": "rgb(17,17,17)",
+ "landcolor": "rgb(17,17,17)",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "#506784"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "dark"
+ },
+ "paper_bgcolor": "rgb(17,17,17)",
+ "plot_bgcolor": "rgb(17,17,17)",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ },
+ "bgcolor": "rgb(17,17,17)",
+ "radialaxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "rgb(17,17,17)",
+ "gridcolor": "#506784",
+ "gridwidth": 2,
+ "linecolor": "#506784",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "#C8D4E3"
+ },
+ "yaxis": {
+ "backgroundcolor": "rgb(17,17,17)",
+ "gridcolor": "#506784",
+ "gridwidth": 2,
+ "linecolor": "#506784",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "#C8D4E3"
+ },
+ "zaxis": {
+ "backgroundcolor": "rgb(17,17,17)",
+ "gridcolor": "#506784",
+ "gridwidth": 2,
+ "linecolor": "#506784",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "#C8D4E3"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#f2f5fa"
+ }
+ },
+ "sliderdefaults": {
+ "bgcolor": "#C8D4E3",
+ "bordercolor": "rgb(17,17,17)",
+ "borderwidth": 1,
+ "tickwidth": 0
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ },
+ "bgcolor": "rgb(17,17,17)",
+ "caxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "updatemenudefaults": {
+ "bgcolor": "#506784",
+ "borderwidth": 0
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "#283442",
+ "linecolor": "#506784",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "#283442",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "#283442",
+ "linecolor": "#506784",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "#283442",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "title": {
+ "text": "Recall Over Models"
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "Models"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "Recall"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Plot recall across different models\n",
+ "\n",
+ "fig_recall = px.line(metrics_df, x=metrics_df['Models'], y='Recall', title='Recall Over Models', \n",
+ " template='plotly_dark', color_discrete_sequence=[colors['Recall']])\n",
+ "fig_recall.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 59,
+ "id": "d18532dc",
+ "metadata": {
+ "scrolled": true
+ },
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "hovertemplate": "Models=%{x} F1 Score=%{y} ",
+ "legendgroup": "",
+ "line": {
+ "color": "#d62728",
+ "dash": "solid"
+ },
+ "marker": {
+ "symbol": "circle"
+ },
+ "mode": "lines",
+ "name": "",
+ "orientation": "v",
+ "showlegend": false,
+ "type": "scatter",
+ "x": [
+ "Random Forest",
+ "Decision Tree",
+ "KNN",
+ "XGBoost",
+ "Adaboost",
+ "Logistic Regression",
+ "Naive Bayes",
+ "SVC"
+ ],
+ "xaxis": "x",
+ "y": [
+ 0.6363636363636365,
+ 0.5319587628865979,
+ 0.4731182795698925,
+ 0.5806451612903226,
+ 0.5019556714471969,
+ 0.5096030729833547,
+ 0.4620489423475736,
+ 0.47877984084880637
+ ],
+ "yaxis": "y"
+ }
+ ],
+ "layout": {
+ "legend": {
+ "tracegroupgap": 0
+ },
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#f2f5fa"
+ },
+ "error_y": {
+ "color": "#f2f5fa"
+ },
+ "marker": {
+ "line": {
+ "color": "rgb(17,17,17)",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "rgb(17,17,17)",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#A2B1C6",
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "minorgridcolor": "#506784",
+ "startlinecolor": "#A2B1C6"
+ },
+ "baxis": {
+ "endlinecolor": "#A2B1C6",
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "minorgridcolor": "#506784",
+ "startlinecolor": "#A2B1C6"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "marker": {
+ "line": {
+ "color": "#283442"
+ }
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "line": {
+ "color": "#283442"
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#506784"
+ },
+ "line": {
+ "color": "rgb(17,17,17)"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#2a3f5f"
+ },
+ "line": {
+ "color": "rgb(17,17,17)"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#f2f5fa",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#f2f5fa"
+ },
+ "geo": {
+ "bgcolor": "rgb(17,17,17)",
+ "lakecolor": "rgb(17,17,17)",
+ "landcolor": "rgb(17,17,17)",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "#506784"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "dark"
+ },
+ "paper_bgcolor": "rgb(17,17,17)",
+ "plot_bgcolor": "rgb(17,17,17)",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ },
+ "bgcolor": "rgb(17,17,17)",
+ "radialaxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "rgb(17,17,17)",
+ "gridcolor": "#506784",
+ "gridwidth": 2,
+ "linecolor": "#506784",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "#C8D4E3"
+ },
+ "yaxis": {
+ "backgroundcolor": "rgb(17,17,17)",
+ "gridcolor": "#506784",
+ "gridwidth": 2,
+ "linecolor": "#506784",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "#C8D4E3"
+ },
+ "zaxis": {
+ "backgroundcolor": "rgb(17,17,17)",
+ "gridcolor": "#506784",
+ "gridwidth": 2,
+ "linecolor": "#506784",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "#C8D4E3"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#f2f5fa"
+ }
+ },
+ "sliderdefaults": {
+ "bgcolor": "#C8D4E3",
+ "bordercolor": "rgb(17,17,17)",
+ "borderwidth": 1,
+ "tickwidth": 0
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ },
+ "bgcolor": "rgb(17,17,17)",
+ "caxis": {
+ "gridcolor": "#506784",
+ "linecolor": "#506784",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "updatemenudefaults": {
+ "bgcolor": "#506784",
+ "borderwidth": 0
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "#283442",
+ "linecolor": "#506784",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "#283442",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "#283442",
+ "linecolor": "#506784",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "#283442",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "title": {
+ "text": "F1 Score Over Models"
+ },
+ "xaxis": {
+ "anchor": "y",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "Models"
+ }
+ },
+ "yaxis": {
+ "anchor": "x",
+ "domain": [
+ 0,
+ 1
+ ],
+ "title": {
+ "text": "F1 Score"
+ }
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Plot F1 score across different models\n",
+ "\n",
+ "fig_f1 = px.line(metrics_df, x=metrics_df['Models'], y='F1 Score', title='F1 Score Over Models', \n",
+ " template='plotly_dark', color_discrete_sequence=[colors['F1 Score']])\n",
+ "fig_f1.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 60,
+ "id": "9b30cea8",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " Models \n",
+ " Accuracy \n",
+ " Precision \n",
+ " Recall \n",
+ " F1 Score \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " Random Forest \n",
+ " 0.874049 \n",
+ " 0.502693 \n",
+ " 0.866873 \n",
+ " 0.636364 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " Decision Tree \n",
+ " 0.880871 \n",
+ " 0.531411 \n",
+ " 0.532508 \n",
+ " 0.531959 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " KNN \n",
+ " 0.890711 \n",
+ " 0.611111 \n",
+ " 0.385965 \n",
+ " 0.473118 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " XGBoost \n",
+ " 0.901076 \n",
+ " 0.629674 \n",
+ " 0.538700 \n",
+ " 0.580645 \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " Adaboost \n",
+ " 0.899764 \n",
+ " 0.681416 \n",
+ " 0.397317 \n",
+ " 0.501956 \n",
+ " \n",
+ " \n",
+ " 5 \n",
+ " Logistic Regression \n",
+ " 0.899501 \n",
+ " 0.671164 \n",
+ " 0.410733 \n",
+ " 0.509603 \n",
+ " \n",
+ " \n",
+ " 6 \n",
+ " Naive Bayes \n",
+ " 0.829835 \n",
+ " 0.386269 \n",
+ " 0.574819 \n",
+ " 0.462049 \n",
+ " \n",
+ " \n",
+ " 7 \n",
+ " SVC \n",
+ " 0.896877 \n",
+ " 0.669759 \n",
+ " 0.372549 \n",
+ " 0.478780 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Models Accuracy Precision Recall F1 Score\n",
+ "0 Random Forest 0.874049 0.502693 0.866873 0.636364\n",
+ "1 Decision Tree 0.880871 0.531411 0.532508 0.531959\n",
+ "2 KNN 0.890711 0.611111 0.385965 0.473118\n",
+ "3 XGBoost 0.901076 0.629674 0.538700 0.580645\n",
+ "4 Adaboost 0.899764 0.681416 0.397317 0.501956\n",
+ "5 Logistic Regression 0.899501 0.671164 0.410733 0.509603\n",
+ "6 Naive Bayes 0.829835 0.386269 0.574819 0.462049\n",
+ "7 SVC 0.896877 0.669759 0.372549 0.478780"
+ ]
+ },
+ "execution_count": 60,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "metrics_df"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "e89e41c6",
+ "metadata": {},
+ "source": [
+ "## Conclusion\n",
+ "\n",
+ "The model metrics on the unbalanced dataset reveal the following:\n",
+ "\n",
+ "- **Accuracy**: All models exhibit high accuracy (>82%), with XGBoost leading at 90.11%. However, this can be misleading in unbalanced datasets.\n",
+ "- **Precision**: Adaboost (0.68) and Logistic Regression (0.67) have the highest precision, indicating fewer false positives.\n",
+ "- **Recall**: Random Forest (0.87) excels in recall, capturing more positive cases effectively.\n",
+ "- **F1 Score**: Random Forest (0.63) balances precision and recall best, making it the most reliable overall.\n",
+ "\n",
+ "**Random Forest** emerges as the top performer due to its high recall and balanced F1 score. Ensemble methods like XGBoost and Adaboost also perform well, especially in precision. To further improve performance, balancing the dataset is recommended."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "b04eb1a6",
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.10.4"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
From be5c3a26ef8d337af4b0a70e862fbc64218752ae Mon Sep 17 00:00:00 2001
From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com>
Date: Tue, 9 Jul 2024 01:24:13 +0530
Subject: [PATCH 7/8] Create README.md
---
Term Deposit Prediction/Images/README.md | 61 ++++++++++++++++++++++++
1 file changed, 61 insertions(+)
create mode 100644 Term Deposit Prediction/Images/README.md
diff --git a/Term Deposit Prediction/Images/README.md b/Term Deposit Prediction/Images/README.md
new file mode 100644
index 000000000..9258b4111
--- /dev/null
+++ b/Term Deposit Prediction/Images/README.md
@@ -0,0 +1,61 @@
+1. **Age Distribution**:
+ - Most clients are in the age range of 30-40 years.
+ - Age distribution is visualized using a pie chart.
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/2c7fae04-f030-4e9c-b3e3-e621390a6d2d)
+
+
+2. **Job Distribution**:
+ - The most common job types are blue-collar, management, and technician.
+ - Job distribution is visualized using a bar chart.
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/b0d6a595-40c0-46f5-9b2f-3b2ac2728097)
+
+
+3. **Education Level**:
+ - Most clients have a university degree, followed by high school education.
+ - Education distribution is visualized using a bar chart.
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/11d9f16c-7233-4e3d-b7d4-21e387123f92)
+
+
+4. **Loan Status**:
+ - Majority of clients do not have personal loans, housing loans, or defaults.
+ - Loan status distribution is visualized using a pie chart.
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/a14127e0-d8fc-4b78-a9ad-9d573d0ef489)
+
+
+5. **Marital Status**:
+ - Most clients are married, followed by single and divorced.
+ - Marital status distribution is visualized using a pie chart.
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/2de201d4-a4d4-4d4a-8b39-587068057977)
+
+
+6. **Contact Type**:
+ - The preferred contact type is cellular.
+ - Contact type distribution is visualized using a histogram.
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/e6de612d-8229-4aef-93f3-2abcd6ce78a7)
+
+
+7. **Call Duration**:
+ - Total call duration peaks in certain months and days of the week.
+ - Call duration by month and day is visualized using line charts.
+
+
+
+
+
+
+
+8. **Correlation Analysis**:
+ - Heatmap reveals the correlation between numerical features.
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/2b5505c4-b4c4-4a43-bfe0-87065db6f15a)
+
+
+9. **Models Performance Comparision**:
+
+ ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/8ecf69f4-e2da-4ead-8683-0ce3c14ad324)
From 6ee296703d9d8fba48b30cbef2ecd35a84bf77d3 Mon Sep 17 00:00:00 2001
From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com>
Date: Tue, 9 Jul 2024 01:25:09 +0530
Subject: [PATCH 8/8] Add files via upload
---
Term Deposit Prediction/Images/img1.png | Bin 0 -> 38676 bytes
Term Deposit Prediction/Images/img10.png | Bin 0 -> 14783 bytes
Term Deposit Prediction/Images/img11.png | Bin 0 -> 31053 bytes
Term Deposit Prediction/Images/img12.png | Bin 0 -> 34658 bytes
Term Deposit Prediction/Images/img13.png | Bin 0 -> 34119 bytes
Term Deposit Prediction/Images/img14.png | Bin 0 -> 31349 bytes
Term Deposit Prediction/Images/img2.png | Bin 0 -> 45380 bytes
Term Deposit Prediction/Images/img3.png | Bin 0 -> 29297 bytes
Term Deposit Prediction/Images/img4.png | Bin 0 -> 33447 bytes
Term Deposit Prediction/Images/img5.png | Bin 0 -> 27035 bytes
Term Deposit Prediction/Images/img6.png | Bin 0 -> 11620 bytes
Term Deposit Prediction/Images/img7.png | Bin 0 -> 38371 bytes
Term Deposit Prediction/Images/img8.png | Bin 0 -> 33485 bytes
Term Deposit Prediction/Images/img9.png | Bin 0 -> 109066 bytes
14 files changed, 0 insertions(+), 0 deletions(-)
create mode 100644 Term Deposit Prediction/Images/img1.png
create mode 100644 Term Deposit Prediction/Images/img10.png
create mode 100644 Term Deposit Prediction/Images/img11.png
create mode 100644 Term Deposit Prediction/Images/img12.png
create mode 100644 Term Deposit Prediction/Images/img13.png
create mode 100644 Term Deposit Prediction/Images/img14.png
create mode 100644 Term Deposit Prediction/Images/img2.png
create mode 100644 Term Deposit Prediction/Images/img3.png
create mode 100644 Term Deposit Prediction/Images/img4.png
create mode 100644 Term Deposit Prediction/Images/img5.png
create mode 100644 Term Deposit Prediction/Images/img6.png
create mode 100644 Term Deposit Prediction/Images/img7.png
create mode 100644 Term Deposit Prediction/Images/img8.png
create mode 100644 Term Deposit Prediction/Images/img9.png
diff --git a/Term Deposit Prediction/Images/img1.png b/Term Deposit Prediction/Images/img1.png
new file mode 100644
index 0000000000000000000000000000000000000000..a1ae9c1b2a641e0df8b121f101596ee7a95a2bd2
GIT binary patch
literal 38676
zcmeFZXH-*N_dOblf=E+DMXFeUAgC0P8ahaCp;wVEAcWpU1OX|6bO^mAgx;%wh?GbN
z=_1m52?0Xjp7=cP`}^N<%ZEGehx_4X4E12hK6~xG_FQw#wNAn{)D);F?ofb0AgULN
zvRWVzDJKX-{Dk~6@ISKRhEIThh+tX@(xB2GOl!aoq&8BjQXo)8%+)iCOTf=p-Y6Qt
zKp^T)!XKh;=b~32P-5{5St%Va)6Ll{emY~b7kfJ@*NH96I_}ice)-N0j`%?QjPth^
zQjzu1OG_j@YIOvx>iDTvG3iEAef95=uF(%#Jmb1XI{jvna=9NqeUJ(%zw=i1mFjnq
ziv~}%xE_fsFRXFRW@Xdqu$@OQ@_PD(+73jilhT0M0I##}b`r#Yua2pR2r~qMc14K^
z27*ApJV|f-z4)?24wwnNg66Mj{Jj9R-OKvtB0xcs=JU)$`dZ=_$f2+)s5Lcwp1*6LZrJUxwcB?3BizH*#`WwmgfqBW#Fd8bu661ohK({y)SI
z=G%HhBWBO{Dx|
zvwE~vtW@QcmQreGZ4iXDgz_fo!+Gd;rm~hGjWR1g>t5(3y1xsBPd~Q`r0x@NOmxpQ
z5_DXkK+Qq9&5MmIHRt)R;b4c2G{Li7`I)BQ%m
zvcBW3aZyx;mAfu2Za-nYdJRZz!L8*su%l&m1iInj)=8aHrlmi%sE)>~3{I%jk*J|-
zw{y*Dkbk6yPEiSDws3>>XV%1#ZXl%6)L(PH(e4vVsY$}i={&2tS=5I1yk_DF%gvP?
zjj5PKJ8utuA5o_7gIhv)-99rk|2)~+@f=gW_%5BvsbuI;-BcRRujSM}dNdGG5S^Ga
z054z^c~REVSbToYzCEz9?F|`<3xo!kZeK`Caz#?e=-@Qy~gQ_b*^{8}$AFdNNa-Jtj_^RRbuemEy@
zd);=H^Vy3Sl(J@}AY8y~12vtTd$j+7D&s
zvG*2|3*&)V4-Htc%R-GC^5+%~4AP(Fzf$SAg{-8r=iCtTLB#Et6>+Cc!WTlx5*^kA
z!y`7#)s9~d8{>VX;vQ1Ew!Ns8b<_Lp4lL`C*4_at7&&|X+q6h%ygBzJ)o4zpzp^&Y
z*I%OQ=K92Zgi9b~*7-MNFTL~`G)BBtL+E29#*YTIGvCGUW)g_?+Hl&ca~=s{X58eF
z&Mh;_GBbjSma^?-PTqOc3kPXW7Ow=kKiqSY6&eRb&{YkQv=c1b>fJNoyJ
zoLlqq+ck)vdgbCeS9?+gzQev5{ho}Uy)Z(gi`S%S%0k<&l?|Kthc-f(I5BHzFR4--
zZu{I86H;`*vk5OM)}5*z!nf?E3sZUfEVg+Mr@UzN`XFreBH5M9~+}
zT3oiYsT@9lWa)-M62?Bg#KdeDZAWRkpDFg0yjl5j&4ZEvkF<#${8`Uq3sp82WA!l=
z>H=&QrSRj~rPQgV59bFn_V{0OR;k`&D3AE=ZU}js*4ayBw{*;H_XCybnBwc<(NCd_
zj!W@WN>$RqF?x0do?fxlDl|rT2?+!3TyP5n-Kz8atk3aYDz9oTmdD
z+FVuK83JWa)5Y~-#IYQX0d@_het(P%U-LYDULivh_!v4cy7po)V3S#PMr6EL%~o_M
zW99;ur_n7oa%9>1?RQ6_UfD4_2TX1vk=xgi$1d9Lo!FZjW4HnL%$|`@R08zIEWOYa
zK08mRP>f?r_eJ!x=7sa05UITuu|kAjW#M+(=Kg7-mH-yUg5ZDb7I^%}(P|r$zL$8=
zKD~VrrS*Hz`q}cXROT^h)54zv#=23wNOWV{EnVUM_aqy3N|TgJ!ai#Z*tSSRRT*TA
zneAT6@VU)g={j!6W>rJIYHZU-I?_icfVr$CK_>GGVfIB2#E2u}r0F+jb8J|Q^ZK;r
zG)r-4@BJ7X2WdJqxC(w2o>(@SGt&+|Ybp{C16=1%@G(X9B&%p$e;46DS?tP8)H
zUaK=-3Fz`%E|i|GE6j5>#q3Pijx6trkP2o~z+xlU3wf)P%;B*AAzk|CB>Rg3=;^p4
zQcT&<-gbM1DL2x_8}t|Sc+&u7oCV4m7StmF?!gx&d#xm(g^iGTn=b6cbpPZ
z`7cQe$)u&?5k>U7%3%&}22>U_IdAe3yBQiq_doyUF6!RVFV5Nd1~qM*JV|epsndfz^i6
z>;S~9SkGX!p$0
zojHlX>5zBm8<#bCRp7tC{H&cf~{8@cdded)UYTrGE#Z(_Jp6M|{A>KTO$5-ww
zp%2{qSGNONIrLW7HxL&l8L+V!fyeIeo(gG&?E37~;M#ER~D*
z^W_&^2+drp*fGgsxbhV0{H%$Z0l|IC)$Ht%_v(4vc8{%YC0l1{Vt>grE@s`a@^
zeqrW#-ihH$i-LE@1zv7Sl+Ufyxn;CUUMMzXt=F1_-3OnXXWDI5_H8(MuZ^D#2+Pws
z;q%X3E_BehUrJ=EZNrjGP;C+o#-1nFPpfqJ
zcnooV#RC471<#JuEe9JKo#J%P&U||x?WM27CSSIk{#qKFr@^+>FwCE}j$e3}wj?+j
zPZ&}O%$jw}a0h00&s?Z-K<5-R*W+W07+dQkAJ1u+(Ea7c3ttyp`7J@HrFdwn_jI4g
zMq%J+Sz(>Uo4@bgWvBGq15N4f*%%$}<}yr`$*PK`z4^uBBI*quE!T
zbi1Re-9IMcD`d!$d|&&!4WPSiu?VcviX(JB$r%Af(`?ij>xb2#o;Wof&Ug|+t}
zgx2G><|>2Hf{a0NgWiaTy5e{)S(}};Dw6VP&MYfxkX>Xd8$QdtKGK(M+Vba|6XOws
z^49s>0GxbsTSC&Bm5Q@^OaENIT?PtTkTBkcEs;sYBUkepEH><&B!`%0n}kQFsd>nO
zgq{2q;R7Le_3XlXJ^vK>*+hf)k95hdhe-(4*_t^rXb9xgd_IoOi2TG$k`|z?$O?5~yPv0~iv@Orun;N5qmI`*qw1uHmM-E%O*Fd23XM{97
zSidXDtmq}yBVox&@1#_Hrn?aF9Xr4mHFAv-xLKpeCliyWZsl%2yf~C)K%nPT1Y<~3
zBJfSnQ;UM$%DEayXs|gIr~SsPwuo=DHr+R2_iu_Fz{siZ2o|uJV`4e+yCw++?O(@f
z`X>jkfr;MNsbw&wJ{iy6vt$y1eb&wpO}h##sp;RLiz?OY5RbS=s2}#$1-|+bTA)G6
zX)o$fB4au52JG@#8;?tg2Y#7?paBr&iE$|B8x&}!u{6S6VoNoI-{aWYKsmvCbG`y-3gVIIYvtd76i(r%%mq5q8ZA5ad
zx`mI1;}!(xM{kuF6xbDu_V-)b_qvKd;~wvy0l%Z-cZ@R6+V_rUeKC^bvYgk|z0zy=
zslUK$Jnr*Pz0;2-hE0m^RIzs(
zJHOpL6v_Uez$m82NLZ|_C@9m9iQ-$CLwl?NM(^8BDwO5}W{ru~Jr9#VS7b}K1=Oqb
zv2u-UIP268T+;N95j1^wRr0$Wt;4&|#YOWLNXEM1
z40tko#F1?wN9S%vjbA4{?J=s4JfUonHSUx
z8n1&TDG#)oBfz=|+@3U2mq4V5D_2$K!?@BmvvL~A`(z`2mY)YN56>?
zorAr$p+aI%u++>TshyrF8nhq@e`Z@Gf84BdPcstid8JrHOqCDiC|_6baMGW{aHV02
zg)mXH#*s^++W9$$M@;xIcJ7JI+b?@_*6NuNkh6SaquT2_0EAWIp1-nn%&=kjf?X|iLTB6FDTbSQOU1wIv44H{&x%Z(aBsW}%ob~v~_?(~)2GR7^2Ih4@
z9*u-&&J_=_d2Nx$wY;!X8XWc&PoU*l>4aSZh4rC70&d8&)KrT+9t%X=
zUzCGgcC^5Tyb|}>O|uTIjeXu*9Lf8}ez<`eb{Qnyoe6)Ww~Rv@IZc+8$v`e#@=`KF
zH{GHPI8m?d!=i6;>Q||Z9Q8X*u(eOQzk;99nbHEXr$)@af77OUj@#B%*CDeU^fis@
z%xj&@sUnlbT=ATFmuN-K&j%9mrRSLrMvFEU0De@<$pvHTW0bMaV7S2%S;A2XDtcaS
z)>YPO9!3Y|dS){;PR=4)XQ%P1wyZwdy9PTdaN6>nE%1BQ72Mk?L^FVDT54OR+kA>toUJS0QGv4Xgr)2V23%zKaobqW
z61LcH!UJ|wQihtvm1}FwRs2Y{;b_}tk_?o!HFTd2M7ysvZ;aGNj_90EvcN9C4SksM
z79~SADe7p}9X!TBFxJyg8fwXQ{_P~~T&L7N0GC#Qv>5cZg
z0m(9Y{cr3$o@-Hn-sbNvWETHH*H|y7eIR-_hRL?+-xOE^Bv0YBsV72!o83>1Z@;h5
zS6B!}_x~v@dpFMu3X0W<+sm1C2!2CsE8fs#;&V8#y$YH
zFX-qc;E0Iecgv50#t-Lf=#QLOo3NT6u7Y|443zoet1H_h-ZAmiA-MZXQdj)W?!nE?
zHyW1=8@X%V-+eD2Xw~4IzHT}699EH#iA4Qf0{Okb%qrwVB_Zo%e$Z5JcV_)z8sxLx
zY})1_5nHoW%TmDXQ_q}-$=<5)e7Xj%z73s+H~x$JA83)2LJwacpK`gKPv(4X9OiKvFx%<06nYQA
zt}xbXS|D=%6YpMV94`u?Qj}Qp@>3$Eda+Qtt;T=w+nfKjq6rWUUZ&^@(Tk;jgVoRz
z7IqM9dXTR62-n){>HqQvXg5g=dv!+PT&ExqpY(tg6kEe?a4>2rYVpZf<=(mf1b`W(IKeZ%sn6wP8(ht;ehJ>>#q@pTGS%1z>kh{`Sd`$HHxhWz3%mm#1qUERbK1L!dt{<~Z+CfAlcbxKMyjaxvK^_RCV;N2c
z%&R_{c_^GLP~|yM$lH<_aJ8FvN<<|33P|!Np`u0_5^+W%a+1c1-0W0=U6w4GZko^k
zoS9%B$a1L#s5Am|198r`8F2)-#PqsK2-tu^BI!8tGYb;AxYL$XK(yNge+z)N!qTEI
zjztm2uVVn`U=lxFac!xMjwJ?lFaX~3#km(&>2}s?l$Rq7+~m0tX24avrE#Vo1X>6+
z5d#L$JZ%>hIqCC7Q!YfCi2ZUryB)TDs+N~RBso$^akan5`{CEar}s#S2@`7KMjIE#
zw;8;)1`%CaS7KTk6rTqS{*~t4WI8eu1`*_+|G55BCi7!Mdp|9?{%<0Xt=@w&G4G%9@cvc*-B&hEn%pK-V
zFPDCY*~rTu@SZy~>OQ?;*Tb~)i%p?#<$odMJmg#ypOGiqD@eTYS}$LnZOe+i5y2at
zdH#Oe1g$)`0;av}4M9o=`ozT&OPc?ede7X`tY2)(A%T0hr;aJ5
z3784R9Q1GDW(eH-5B;NKcFjnw_&>ATRRdppQW4@)b{(`vP+M{ZnaeIfJ
zo=rqh9#1AxkPy75R2Fh+irhxhfCVYES!|;Baiza|DG2m3jQT}mHG(hO!ozlO)X|a*
zJcsPf@kTJ3lxD=~=CaDSsBJV%T?TwBOZA5Mo^QfyudaSjmiue3CTZ@>dwC#QB))q
zg8e0v@j0d*a`M5yacSOHRrOiU$96UdbLd?v{-=tm4LRd#KamQgQ`ybeSwXOfcuRC^LA`W
z*DMV@4+HQb;1$-Ts7N~%nwr5|rJFbYv!=6dWgqenHMOl6?so@{b(i&Jfr0HSJwAuOgwT|>@UlQ2=_Hem
z`Pra1&zvV5d`@=@0Y;+9?7JHOR4Cb?Z&E5m%U&?QI{3ZLn31-KUF*1>)78|>?CBMK
zG=Ee>4GV{;iRI00yO-XI;sZ-~ri4@<-rV!DLVp4QP)n}0JW*B)lsD7Xd{XuovPR{rx)~Y4apb_!tYbZ+
zHxisLzNZrz0__ASt5Nd8fH!&}DMX;)E3+X$rlMzBngcmYe?u(!WwNzO8hQQ#!UQ6h
zCmc6x?z28;oks6m0Hw^m9ZlYkw-^AX2AN9{d?WGqg+yW8#JMAY8_95=Qe)OvRdEc!
zumn7`u`-&|9-3!)3IP1;z++g7E0$IZBw0>yjN`oDkuu=3>CU*wN;^>dqIw|rgoTIH
z<)ExDyeuG4X8PGI9_){E=O;0|)#R1M6D8c4-PB4~O#TcDk{)jg1W!~nFSpfX?8Phc
zOS5GGmFK}c?E!oOV8Y;3BRZc$ucC^Kc0GC%Cb+@*_^Ib>s{b1#EQ*U_@Bqwd-$Z$G
zAD$_P+yG5Ux9UQY|0{ZM(3cqK;zQfAg)RU9^q)vYg~w(OttgG=xZ6#wOX&U(EIbP$
zfNIu$i>P}gt@cfSH&AuuW>U?4{ukUW9pT{kWrr5;MKgDuS>FEuo
z4mrmo)RD2{N5EnYg`TNfI?c|*C1U&9vO7=V
zf7Flys3EKT4leEx@(nMi*3XSaYq2>G_`=p}4F?jM2E$_6zYxwQ0-yn!7E_(B2{!<`
zOPd;<`KDr&L=qRFI_wC`r`o73YNs~)7wj6!9#ZL~Gfefv@>|9f>G~7@l|*#73{Mmi
zcBY&FkDjWmOSs77_ls=_9h_E=!)gS9#SKCo
zW=uf$PXp1EppJJ?xe9->CSZWOe~II`ffC_(uL*j7|E@M6Ru-D-Z;jS~l`R~bn0*8Tbb-xfv7`&(zeJB*yY#oVNW~v&1jjF-
zCXV|XL+|DV__O?@K6MRv}MjeYsk^sbH7WXkXdve;SkBoP?;XCSoO
zZ~w8#G_!hGOUmQ#RAKF__lVG(LLgxUsYV+ve?=*HBNo|7A$!yAML|mKpN5a2t?(lP
zoDCMYUA!pNy+HR%ONE@DS&_B8w60yfE`DpVX0BO438pscr^#2P{K+YtFWyJ^uy-%|
z6qb@=$gYeDE45m8C_sD|jfs)(p~L8`CT@47u0hL=H7z*sDm4}L^71ij+n
zBR++2>zkf~=^g7rtgH$0Q*UL*92-BcCD3IYu4uvDo$AQizEi@4A-cu$jc(-cu*8hs
z#a*UuaphBr5VkVAkokDH5}z(o%G*Y=G
z`@#!O6ZNYj0FqmXu)4Dl1Tb837>BmD&gr?4_02|VdWDUq2TOuTX8TgvCvbj&s2POFW-b79ycVDe{G6o%@tB;v(~*E
zt&0hTS`EE`ZQe61EAPBZt1;(QD4kY$40#ATCS+D2Tm;e=F?cH*Vx-EQt9-}QQ1edy
z&P@@)DrIzNVpLUPh}$5yZhSuiew`P+X$+?Ks3!Tab5p6#jaPeqSP^fKe`^1^ra$+c
zhu~-~v81Ga6QMEg>@DzDM{G?=r{UbS(|#wG8qeKbYmWn4A2J$eYatq>h4mKv<_|u6
zGa|fz-mBi(w-y_sjXoGQgZccfaFldEUpjnrP`+Wln@vnzcjpN(`phhGuo9acv<`N18`_LQb|EhWl^AtgZlIl^8Iac$n24edy4qS<8HBFz<|VR^nedru`v+RReANyCV|>Hem4uYKQ;`fdfDfmdzDtKv8`Y
z>trK<<`z*4blt5WtWdi?ix6=WgXLxv-_PfO(r=FDE9)-vo@sqJKhul)KMANEl0Do=
zXsb;aKvq)UIVundfN@qlJu1V!A`2mfV2ioZ6GP{@GiMVaGrE2#?lj%43!>%i*pRrb
zhC|J>;1=
z9GIeEFfhf@$N$DrUG<+U&Lxoa^36JgQ5a2$cguyO>KMz`p<&9?&sg#(7m7Ccx`5ct0e&6CZ8E4}``$Q7B4RvOHIW2p1nlCiZZja^L1?dJwOCG^zw)eah_hzT|p#U*9d)!n)TsxGB+
z9*HEDr1R64xF#eZHI-0E%wNa+kD}6x7D~yJS8phoszv-LwHfPg74vboR$HTky
zx-fz`D2-VbP`ztY^j?gjxvnS~C2vD{KIJZ506?ok&Pn^RK*e=^*;zK30n`TO5_o65
zPHTC&@SYh`dn$*$-Djpd-xo+~MUTRFZ6w>T(}2kD<}>mGZ2?&s%?SqCv%V)rthBTx
zS=kR1kRQf2eODaT5#w{xqxkybEqb+N(_7n?b6_Ar2O0>1XkGn!m_6R9u>I7KdTTD|
z7@>X8rUtk`^<^-yp0fH)9<*v8Nu1AtW75&e9##TmODKTSvMUKSzmx|B9ch^^3^Q)7
z5`j>EjgSPyZp5P%8GaH_H3u@{_m{f}PS7tmfV=|B<_$wJ5P_zQT*8%|wd9CEg#<4R
zHtt%%K^yl3fsY(_GCDWuyh#RAd@+koXfkwTD=&{E1CcgpUwBCu!ts$QMCU83qXs`D
z{FgSz^rGh~T#r0rX2Zmz*Vx@ZBzF39B4oz8BR)`ri$7@C73=(#XokR_b1|O}FG-Zd
z(2Mwe#Sh`-2T#dKTY%LnOOlJKK-PAu;uVb^OrkV@)Xp$KQCD;dUmwl*M
z0o%*wu**k%%60IBbzLYam1Idz)z0R}xPq%KZ#{+$wmPLUW*5gB$Wc`bU0l9#Vwh2>
zs2u9sQd~y)NUSRLAs_^f-p5pYt8tzfHqZKT0B}WEq@d`y3Xg<@-gv|-Gy$iw{z)BY
zn}_;?YAtv=KQIYtYAy~`K|~fqQ@Gzc2f{guj*sb*{6UV6Gbz-w{ziZ@W&1dQij%+v
zv#VWa{ZyY6-qAWhw-wq;#pKxyJ>RewmkN8VvP)}*d9Kx-YL&Viu(}@GfnC|Rk(6q_
z3X(!>#=q{kQe8|PUr>CIfkjT=8$iI65F-7J5=9+XlxHNvc-12Yu{$3|AKz41+c1k9
z{O%P76dzkRV@#&73>LR()hg$DW0%!l^QD&uhji-^s$&C;7r}zaglBfGPS3J~Z~Tv>
zzSr|s%uxf-w0)S02TCTD#;KQBcKeOC8m4Xo_LKfCl7&ig!@jy{9`aA?OO&|0X6*nbf;J-O4BGvaTZ7E|!=(yk`~%b^bYmhW
zp?$nZJCk>*SXT|!HH-hj^?o6k*-vcGU^Bh&a)=QCD&FsJ{wGfg*68}w2?kC>3Q^(X
zmxCJasW@hL6L^8z{CO+8eDqU2>3FD|1yoz?jaiD!=SjWwgP9{01N
z6e1p*t=4M?8LU6sWe?qjYBs2u-m>v&iR`>4$d4g6XPC12E?O}ue#@IBiF*fbRWd|fw
zGn-Ppwcrzmk;kjFRvzFIQU!oq2A*H2`9^CSD$-86UT>ZwgY|zrJjYuZ2nnXB?k6)c
z7V-HAOqNPd{VSDftjALEmwrc&&c5tBE>j6N{ck{COqF*ZtUBV1QDFqkQRy)%OS$$-
zRAFL!{j;A?yDYy-#^$L11!FN#zKf05Q?V_Gf6prlsA|7AC8!w;(;Sy;CdcSr7#a*D
zW*n(8{-gFMScGDu*~a&yUPZm=DPrLDN_o;X6?G5V*8&MMgfg~@|2IQ>Lr-?#_IhCg
zO}VQY)?=o5i0O&A&E)(etHEQ-Wi8=CFI&~%^H!&)O|-{PqZwjb-}zayl0X(NK-vAO
zAc|T3ew*K+p@hCCweW@`icZ?gN9Iq#qY2BZJDl48LQK1gVBPp4L9_1=H$0vB{SBu#
z8o=~mv_)Nez)Ii@Q!P%2_3RJI@J8=1unznrcUCs(ks
zr1OtjIkY-M%XP?Y9nL8^#qI{vG+9?m5{`7OjYm`HB>?~bS5fB9xW&{`1U#eU!@0{c
zrD0!q{P4l!1cy#}1lM3S_ha|dnnH^P@&F
zxOz8dx-mKwK|>h4Khd)&;;}NZ6(cFbl+lD3X`U`lwI$P)w75jCYfdEaN)od6mbF5e
znsy(Yq%KhYntj(hF*h&8K&B5eb%$`auOMAJ5Luu**M*&OnAP+}-Lw4lmBrzK#nO|k
z+Ny6u{jrJU8RF4uNYLPo04-w4SWa}nz{jA*oU)WcUhD<@O-=?C%b&s7I=R*LKJORr
zLmkg!+sKH69v?eWfTVIB`NlI4jiuu+BMz`E<=h;{7L_IzN_&(|q>JRDw3Nr-RtppWVjRw-m4f%gPQ2K9;l
zLQ`|xyfBU47DqFX#=*t&=6NEAKP&)s_*mCkI^b|>|Lh_G5gU7NbBLUGI;SyoWH76p
z{kg_3lVx<2#9o7fJa{jr;Z+NMOW-rM`kvC`JDmI7&h<=O#*dL>F7(
zS}MFmMqnXdN-{)?vVy8?Sl#{q>{y4IAEuGzjAp+}VSDX3ZQAaUE6Mqv;;zT@PZ`@+
zh?nym-U&msqZ6CTx*)%=T&^uOD$Q@wN@Laf<2>Y$T84ROUe2npma2O%&o+O>-trKj
zNFd$)sW#|wVB0hPkb4R%rR%52w(pb9S;FtkJ^E&wMX5YJ{kWx9(wC;^$uIDH%F<_R
z$fSe1nXH$XEH5k_|DI+W%kc1t^{}e}cbuR)m5#c8N$-1MXNPZp19Lizo6rq0t~yQ#
z+)r0FH7x%VU=8!e7X?-tQqO#*XbGNO9^ckvmhar=WKAvkH!wi&eROG=GI;h=
z?r@7TIakMISA53l@(ek@!_2-y?_m$MDFS#LfHdqT&qo1%(o1cZZs_iW>a2Yd;JIU?
zHa0FPsp(8R_{A};kNUn=nC^QTv^Q_y{o}1^B2LpJ2d}%kabVLFyWWsY&u6?6R{C{+|{9Z)XifTz>rPG
z5;06N|77H$-+_YW=|PO4X)$avV;gq?)=ElgDBHw&Lw1DNF*ev06Ym+(+4M4)(5&K0Dn0gb~!K+ADcD|>vrVq1Fn4Oiu8odM8M@;_B;)k`g
z_~rN1Ya%wV
zZ^XJ{VYgE3^4C6z)MZw0E%CM3XBG{$7{Vsma@~E+m}?8g#E*UHxM=tO
zD$u+mC0hL|+E>g!MRz4_V;jfoYuGLOWSpU6fC_9@XLTR_!EBdx=$op2)+HZ&)Sz!?M5zB3MPX^`
zhwoLWwCTE>tb&iXC9LegA5s)k)g`YGbYw#q~q6PB4-aAXPL(800WJ{NXAFH
zmpW^xyON8s?hYrN6N|<^M`7DS*n;ahrU}@mF*VrC{IR#P%
zLi*5&a8%D6uiL<;2i0|gVHzZOj*iGGy^aA>kQz6S-K}p!T4xYCU{lt@QmjMX
z4DOw#(GNj>^wUO*$Q$7~Q;o)>&1n`EQO)NCOA!jluH`K-gLrQ8|wg=|4uK+)aNF
z?P|NM=Vf=3mwKs5$N2Tb!ggPdh)AG0SALKIBOdYuCfI3U@oAiIH~CaKl&r=LumzKU%<5V#y$`
z0mtRj7o!@TxhI7+w%mg~SuYZPut#%Xp=w9)*-2z^?ey3_^
z
zR#0^}{FoWAYGzaXOFjn~Y(^Z;E!ov~cvwny!T6X#l5L>^!Bfy^y(wg)?8HO;?Nsx&
z1ID7rp3(sK6ut7&F_)nzkjGOb{{m-%cBGDBO-h6qjw?RDR$p?#vchse!DiTQI4pVB4Nw(pGWlZX8PscARjz{BhR4I-sMq%2Ei+O&DmS4!o)Eym$-hLr;P7~#Awg{ogvwIP6
zb0f{;mq5AuhcLIkG{t~fHfkR)BKksK`HH=ca=o)9k6h7ES=I^f#?twm&eoAeDf9LU
zYQ5))xYo)MYz?n_rW{~YY`kpYD4cq#u^UQP>u%+yn2TyEkX?ZFQXfa~GT|zl&Xumh!bZ
zvweusE(<5^yISZeRJN}3+lQ1zHPf;VRS1q~>)P@pY0-_b&g@FQwUsui{Wl%ur)mN<
ze%+o+jcsErNM0OFFhO{(Pc-Oe51=@W#0y%>MGIeh?OHu^dd5xjPwx~h8~D#KJVJYF
z89W?6B-hBzt98rtx&Ey4dBka9|AZi<9!fLgQZ;Vu8ATlpF^VpoMT=j11SBBPu(hgw
zO53TB3bl-J({NZe$Tj*jXIlY
zbZ*!z;i%`PDLdECzwtSjc8b=;ApMK=YUx&@*S=_^e-bX#7(6a(b7)
zMAwFD8?N48wY9-o=Q3l0g7Uk!Q!#(PpP*PNcOaoiZezH5%)cbvLG6Tyz=}VZbai9A
z?XpwGbV?{3-`rTQGf_T_`efqvt%QGUF&Zhb9VWCfjh#Wz&!-k*d7E@NLOJTq3d!ao
z-*~yzdllR;sJhEC_*t?vr#wxkF;L><{1$Aa@VEKM+fb}o-B#zOp(eeSm`Q;UwTN2<
zv*hzFiCb96)@aKj^QoV5ifIN*F>=#{s{}W(rFo6KWQkcfS7if4`?b<+Jg)yfs)SCB
z@RS4BQCa}*Z@v0Eci#7*ec`o;z^}$;b;in``OhGEKm|DYPE343Lg$DeN?wuB*!b<(
zg&aimQg81m|Nd-%UN}7F(WrmLu$2vV>{pq()`0KIIyYAx*lM8;GczMR_4Gs<7J4Z-Pq9~jfhmv+R#pkYxN^_2CoA?&G~zW#b8J_;*?=
z=~W2NuK9okdUO4l6RN_Ns5}$#r{melp*}jKA5;zK4fkXlw%ddNRe)5v?HZ`YswDxS
z_(fN&w>7h7RDg#K^lY!CSfO_TM_mL#q`2)?Kl{h?`LHXaNhU
zh&cWcjBKsVoZ-M2(4Y-slicJIc9JjLA)#Ntc&WA~DkHkuT--T^n|^U8z^t;hbyb(=
z;)f9CbW9KIJY(SMh8S^XbeTBS6o80LXXXmk1G$qwJwSVB&
zamBgYnCcPL9s>TvCipGAmVUyG$er-&B%mMenXq9KLYEeJMD_TE)>MaE87OPn5&Msh
z*P5SnP9g~Pt*#nZid{Ys3)~JEAgS4c)vyqf5?Wtn^<>TI=USSGnjg~m9GjF<(W9oUk6utI1URU6yAD_r&2W`!*tU>lV
zo9?-PE2=$lcEm2e2~@{xcUu8ZG?x|?kKOy~?}fcxoVntH*w$_;`@kIHZ6XwgJuvKx
zLzIo33SF+2{r7PV#4WLxf}&&VE3w($P=8jfe1&0q9g)#%q8fXI7CGzfcZ60h#F*ji
zOjh=#|Jfs_7K(`FpPDX81G2Z)a3txChs{J07pL#n4>}p$<$6)4J)Uj(fdj3&tm>(G
z+AR*RwrxWJy_f6dpWFN-sm{k5Vb`Zuqa2K?k__u1-#&ia^|4$PzO#KrGyBXk0so-?
zX-~G}#cSKTOISv|jZ^uu-5l3GW!!m!IJmzCbg=Yk{c;L6KuBxx2W7qzMOAfoKiFX5
z>jcs#L|@^3v=3l=r$e}gRZTPwr4kkUG7C4KQuDQN{i(Qu)q@yJ`YkN7)d~A#&&c-O
zo4=(Ooym9XKs^vn~j^g8|U2=h7K#ZG*?sw?`16!
zyQe5P9#ztmDTRxmd0V0pUw*Asro!q@6JvCE7>aX^u@kVCZ?Mem;kajRe~K7xd(Pi1
zzOpF&%c{|YVR1Bwy&*8y3uf<^j+-f@H#KTc+=x3zHUf{u9uKROo-9Ms31mj@G`$4runy37(581H265)C_j&V^y8<51QETN$sJH
z>FwX&NTA}|0-lBfzC7b=cbAWoM&`fI!UTaT3iBM3ysAS<=(~KL?&l>QmJVVpeK$6_
zIf_=WZKaVrO{&-#ydx?d>)rzEabso@>7OA1l!*u?A)vC5nD%5YJ9@}EIClSkELO?}HaX>l*0TJnL5gAIl8wEj!63L;vyBh=nff>3xq=xQ>cMtdT
zzR!1j{JM|hcCKq*d#}Cr+H0NXxfV&F+qTPWBvkPVy3z(5vL+v-eU=Gp%30fT=l=*(
zX*4S=cuL0GmDBaC6;o-vGoVu?$IoDT3(K~2sXn})L+-lmpWa|4yQb!KJln5$RK1BK
zREjksSh58a9vQA9ATMQgx8KD;BLKe;wTm@jJJuJbR@#gnhq9?g_hvrtysjB#y+vXm}XG
zQLKwUdjXBv@gFTYl4Sa`u3XwJO}FYm{O7>s7UV2vJDeAlNM|$oZhL43Wi}@#d(REE
zY!)`=WWIgkUsK!T;%IEcJWTM+Y=c?(;v%Q_{*gd)bZB=@(qf4~emWET23~Kv2;MzM
zI{!QQ`SqV$F3v>8JUsP+EClWL-=K+PWveHrcTz#&gWGYusPd^t&SCH)J}pbOv8-Yv
zlLdld)`2n=)75%uRas6CH})%ljP`~U<^GF4OIIG?Q1I#KfWNHY(sZpKLEE5fxJ}1nto`30K3rp!_U_jN2$qydyA@O)UQYE+h*~n-P>63Z~
z$j8+l6H;oQST(U~j_MmUCKuM1W!Rbz-7k(*Cad26rT(oYHzcw)aVFU=_VcH)myS*S
z*-Q6=sS+HA@O1>S#GlA(C|3IfdVH#}Zz~_7|5pC5owUrkIiRq;dVhV&NU!U?cO+09
z87>K`tnMjcxtZp7OfBYlvgD|O
zI^Ykf2uqe^q?S0~UmS?slPh{D&
zinc1j@XG*mn(?!qn0g*T6cg&t#|lS_-3GnoiopDX2YLh|Y*xelceHU5&7YW`z{|x0
zhH%U0gc&1a2zl~7@3}3+Ii^cpB!-p0Z&isrZ(ihnMgM(>(eRfs<-3h{#O5xjlyAuo
z6Z}(%LxcKKV|*o*8HWu6NI7xGnl{$(|3OYUa{s~LrXH(sAMJ}fW560%v!UW+
zHRdyb$n~zCG1Z|VH>{2Nxl;2N_tvd0~E|!CFVDY6!VYo3n%FsT9Crw*S(Pe7*(Y
zm=Qyj&`ITZ&BVw!o82OF5c9PhvZ`R2`KRqcIsHNv>yVFIB+0U4__1;SMQa7yID`+9Ok$Ygwm+YZed0CvM$PT|
zt_l$^v`%~PK$mC6r`ZtKb*_nkO3St^SOeAI)R0l|ZYY{ch)FK$%tm>FCGJH%`(%5a
z>QeYMxCk;z{)h18g@N{}P5vOsMV`|)OR5=p3SEx`zbQMP2G=XGi`lc=`^V>3edE~_
z%sky?jz?kN=Teb)CPEAC+q-OJLzQ7ty5z3b0WzG7_0!RAJ6r+#+xzw}!p4WIKMf^=
z6q}LAt)AeA5qchF2{&V(LY$K#D*lx*^9#=Th6p`+QdFC$;iLIv8yszNS-|&@wPG
z?_qx8Kh=^tJhC73w$?S3e+5fU{PQo`(u$)yMF~U=GGo^T#s=K?Pez5b_A3Q?=nz
z?@^LIh3t)ftr*Y!n>^pwPy&8+{!?;&I`>%K$*igG711{ahQW=#<$vo_BXJO|kb@{Q
z-$?U9dvs@4-LzoskmkGr)Z@W>s~^neQMy%yB5ug+!jOGmNTM6ZPEo-~%|*rgD8H(i
zZFP>8tg)@%O8SL26Qh^S){Aph{q84Rl5n5N4A$vSc|OQkexv$ASpbslQ9qadgmvdX
zZXI^haY&-7V;=>~@9+hEO_XHBTgC>#43b2Tf@7LmvPQScnnbgB9#0a+ZiNy3%Q2+)
z@IjN0(RgV{ly&l_Qwg~#-u5VOhQRkBgE)pP_FnabFDC9|-I%2t#KRVa@ak=PW(GP&
zsJd(P)DW#j33b|cMQeC0#_Vxlp7Eg3Pn=fW0ycZ;el;d@>mzdH=TCD7$IkVmLR+Xz
zz7UsvP4-z8Coyx^o+r^`f4Fw(3A>Us4mh{bW3$^iOh4tIsW$`eJsW_GkN_f;2-7G`@L
zCiQz8%Maimw@d4vFmZ7SOd;%@Hm(-`hF~|#f{gW_jpP=RD)|1I5xkoYAf33PdjP$Px%+(s#D_iZ-*F`xs<%NY
zsDOxIePYAZ^R0nD0S1NJ;ebsbFStJ@!|dDD%}c8dnQt=!p8C>#XB=
z%{AMcaE!xT8urT)I_GQDynYfBb5b#UYegy84`eR96Z?D^_V+{JoQz2u`(>BA{y&wp
zBn_Z<-EGSpBfkom!GR&Q}ik{f*!D2j4FRv%1`}pMQhqG+KQ-Vb4;2q7q7mB
z6nuOAy!fnHd027=9oCKU*INlH3cgg#&%7Ufx(q_hG^~S*r{qMiAN3=St}(k&PYJCx7g?VoqW`*J?0-Z
zd{17R${VR1#TGeDyzLGAF{Da3?3iSj!7+dyFeNwGBKnowKB6M>b{GvPRa}|_Uvs@N
zps91V{@)?+zf&Z`EQ8)}hi}}^i3fbg*d|MV_ZD59u555qG
z?~Vz8yr6<>w*{`e2}R{3N?=^Uc8`aF%jlj6CW&NCm+0yzTv}lcc4$K6f5dGa46O2b
zqQ>u*IKipm$+LK(GrpPOK&sc$v$IT(z)V_w67LD!{RqW|%oGRQvZl(LZ{0x&`c;Jt
ze~8pTYAaU4Q#fzLPDd)STQyoU;BDtT0Q=sXVV~M)O#{N#bdPwJOJ}q>RrQbAVf`Mr
zgKAD27h_scq_^O!T#wENAZFcTy^03n6H7XeJ_5k^@faPkN7~k=TMO9rub$`?+8KV$
zV+=rJe5c`?Xf!h=x;=09@yszsLlZccKKJ3n!IXaAXwljgIe*jqlq62;4QJ
zuc?QD<}(Y0*~;rLhYC9HNIqx%SpBnw1DV4>)XrId(Y4YqzXi;`aawY+WF|ivIF>J;
z9yyM8qT*{3*I+e;%%BP>Q4-gWACEmCkLm#2%{#F;Kx!rVEB3}0&l|~^%2JUV5In0o
z=9>_a0EQ$yJ}H*tfmh?x9b(f+KPp!R2%gjR|4aSKun&NEhubGu*l-1K1U#DDxt=Fl
zvSfc>+8Rs{c__wZ?T-y<%o$MHu(=zV}goC{WO1#SpztAr!DrC9K_
z8uKJt{0{ct^>0C%G4i3uW8PWaFkc0mk`xuX#M6Fo3^-m*O6OXgK#}p@T{{BdoehR^4S06pN
zD=kU_2e5hV4=z$B=%JQ70OpK=9zv3CNtmR3#kMezV#ktrhJI*%6LPl=GZskEA4V<<
zHvYV+C+(;^ydF%q)7L`)r7bzlithiu5&~XXzBy_P!;KThK-UR;Bmch5R+k5`MyyaGf~lWhqHbp&@eh
zT>_9M4EYip7fe$CGeOx+@Y4cM6<|9Uqr=9H!G;uJV
z2x}fGSC7O?ZX56LVJ3(R_DHNQdmgYzlMDxVlmDLkN0aj$pDmn3Vb;E`7J>euAW004
z%IhI>HZX#DNY#9*g;pshS5Ocl$%)%kU+{1RcoA<5uml?yEJ6qvlrOoQyG=9!TtVUh
z7ox&=oeN=P&=ME0=Z5++#2BSK$x6Vp@EH4z1IfWG0wfvEP}avviZa@mEVd9BB25ki
z_LzmiabbOOX97koCHiH_`2uAN70ZHeh(m5bA}|Z#9Va15vYQ7($h#M#klucpG6EHr
z3n=rfRKVxTxn4v*mW&W!jcg)6(_4%(K{aEhh6kUi`F9aLaK{QiFr)tacV!c9BMBJJ
zs@>Tf<>wzF5m*lO028|*U>Zz`K5gY6EWZuRNaY%qAWjG0-k$wU9O1H?guvp?cMG#-
zpbmT>$BPA-#*C?{C``)vnVqVF#243#lYs}2tw!UsjyRHI#uuu7}8%t
zXSYnC?);>Af4;2hxQR!x)8hP`2r_+~4Q?rZ1n_NuOAyr41NTEGHD1ML5&xpQG;D;l
zpPoV>4>4vPy+eclthpmHg`@0z_779#0lf229+`VSBT{pYp!CQ;WLu7LGKaB)iLruKJg=&>wV?oL>tK^*mXAqofaPkpO
zqLUbP2I>v*%&$m&gN~EImQbL(#&m$-PF_Dez8_V4m587Z7rIjVW?NBeF2zgrG8(KR
z8n`_O7J8l?2Z=Yg)RMwsf6&bhHc;8~T(K+NuKr+a37_|nED$j>GDDuL6KEUkfYUZDQZJZ!C!?#j;z8?%)vS1hH9)azANL
zuM9ur_9Hk-smkGNsR`dPh=BfVs#
ztXmN8jQ@!Jc%oKu$2!U)F29jqRU0I)wh0MeK__ldtd$qG#{7`V3|iw}oY9X)lxOd<>-UDJwfftJf=ptQ!<=>wu=cxhAHM=Ip{NAc3b8E@
zQC_SNpzl(%<;4gHatauSD|)x8`z5WwhpQm$4CR_t
z#6p{vN_rX#|9(o|>KJuMTZ%)lRb2k&@vw)NK<_b^%<@0k-s#W;+WSz?COA|4HP9BA`PW
zOkE9ZP_Zcsg_g=sJwz*#-1KzY7WXh5F(21lzf4HhO&8HFpt$UMm16P$bFA^41MI*f
z8^tIr{z5x_U^Bx7)P#Pd@v6LOmPsFuvLB3=e=&NbH$=MhzRGQBJ2U36qp^&^E0@ow
zqRb&y254#Ntj(l+#wL8o)s(Erh!Hyc4`z%%&P-5hl-1zsf)hc?>Db$QF*7mL6_>rP
zTx|6oC*r=^!5>j`guk&?IIo7(+L|H>OqfL|d*aBlcYRWQUvG}y?tXs9xY+&}Mdtz7
zuw@=hbGTGIev34aS?GU6ax6<_gNE*|6Mw`F;#`--a4)y5aYc)n%EDX%O0${nGcDO+
zrO*)7=<5xnY{|X3wea$n!f-2PdMi%%(9}g+ZYpDQTR`R_)(%e)<^ibM{w$<1uJMHb*8By%^mn&_j3>(r7fUuH*pZ-E1A
zf3GzZ!%QN;WLy6FN|wGa%M3I;b65<%TA99hSYG(gm+!WIc;q_{sW47u_
zHOH|aD9l0g8U|cyOdne}(tGJ7sYrCon06$#kz+uZ85>>huw{9%m~ETyoT4LOi~qFu
zC21Q!m;DRijk&HJBYmXHto>sT`wSxYe@aV5JUE#G2V&q0kA0G(R3CX*S2<6xJ
zc?}eo2-@8@LHsb@d-)I&6Ob4Ox$BGftXD~-Gd8DxLlO4Wqj(@4wYunPVT!0|)JdLS
zm{aH6?ks*e)vy)rSl1}yb9MQxrux)mT_P5xnsjn{f{yZDEr8=;*Rdz8@M7#z7e
z!Z9XDTegN*X)v!-u?vdt;-@KU@8RJMlCu8q7tp
zTX?1G6kg@LUyF)b9T;I&IhMftMm}+sxS!bCAGT+&x#Rl(R81RkQXReCbM)@G`jbwq9kihRzrBz}+j)yAJ%dGL-rj6Cu
z$FO-^|C@xE(=F1vY7+SX*dT4!Opd^z4hh{e2fD
zE#IfCR99MzS@!$Pj+Xb5&-Oa(yoB`x!tOkDdaKxahRoCI*$wLqicMLE%Pj?Jzb}J*
zK7B*pa<-x{L+!v!SI~3h0Hyfi*Gg!=@^C~7aIKQ6F^s53PBX?^E9$p|!Ne4_+co6q
zt)0ebo_$|kR9M!iCibtXA~v7Q&KyiG6<3TGq>Ig|E3&Qp6~-QM-$giq_c6`YWO{01
z^(3887mqvlXncnr(NgpWR`RTeD
z`4-d#q5;41IVMW79h1;EIdAWYp;QdAJV0Y_Vl4Mi3?Tof8d|;QIL-9$v5y;
zS7BFm(K0{3NEeNQ`fX05gd9)9>Xjzr(`maxv*rByGLLPdjp-NiTa6uu4JI0&eD_Pw
z7=}0^FG(T2N^j~QcmK6Hpi#lJCcPGkas+>^n?K&Tn;Bfa{)AEgpW3KDcSU!(Bd@{p
zRhtURA@057cG$n-x~oStltLOldi>eJ-33%0(=fXmS&8L#x8`sman~hsEL^gz9@Tcq
z=TA%h5eD+V$)GuFyBl8WiQi+a*!6iCU(<+is7+paGH-^b?q#TLU1AM7Uh?fHK)eSq
zf-CgiY*LDe4@LN-3T&ZYgeQ6X0?|}z?r)(qAg*Z-@w+q7VQ@iSnemo}I-bk+V`Me<
zAlK*b;tTBxLV#8l0FE&+aI4yWb=9>4A02E(DrDzrw_J%JPEM|%sb+=2G}&@)a5AS4
zKj8vPD_>=Rw5VvgDaGzDDu@=2h%6T1yj3K1mZ|gZGD)%Lt*!C0Ik^jt)om=FBl->7C
z!4}1%Px3aBJT!rdS+q)o+B(pDf;pfjFP#p8^2TIlGh3vx>eSU+^V!sV8Q<+JyMHKn
zG#Ss?pWU&%V++3IwumCuBVR!3oE~zjL(o%CMLC7O6Z!E9I>^+RH)ljE9toAkn9tmm^&1hNufo9>>j`xKgR?wa5i3cl&5K
zgOdpwX|crI+-IKyD2_vz;o#Ne&Nv5|{UdxJCSO=0$IoK^9g+N8il3_v*`iddnX%YM
z!Z=w70GQfaW2=VSnktIEx%dllhky&Kd;SRwW)R8{!wi36ceQECA3
zB!5=1;dt^n7z#aR;HXR_>-&vF!&!v#x>P^FhA#Qdd@ndRWuq=^wntHiQoh8wTfReH
zfa!92yh;F}4`haKTlW+M*yk*@k#7I~Q4plAh(zX2utNMl9#q@?b%p{n`jcQAr)5FV;J!gn@
zpv0`qI5WH|C?QG_r{}!s@_R4OiC|{;gN`m^hzZNNFPIJ~atRadq6PPe1TIppu3%#S
zSj83?ZP%+*vqst%Z>1!O)e3n+Oho4t;^CvYX@wr23K+s=W1D5b17yy_!2_H$D}UEy
zk30kT`s&@|w+^1QQHbOxat94ffoP|pLu0N-IhN8_w|`{7=V^LmvayU6BuLQg3F|7&
z){#ySQH=7Y_lpk}0#vKBQl43e#tZ6dK>@v#Z->+-b;J^lzZh$DPGD*qQa=8x|B5`(
zrJGr&@l+`c%fhHC$AD_M!T{%ZvJCsY@iRynw`V`L=mTD!r;+Kj^h<4w3*QHeR
zqsFQID-PJE7b?(9O8}Mz*24`j04`HY*F*4xN@2X*kApGZ*Bld|Jq7n`Peo2ZDLE<+
z!H?6D(Jb77sWfIM))xe%%AoSbQ|Mb%UnW(49P!LHh`gJ}J`rOgX+o%J6>ls_SbG|l
z$@MH}vnwO9jac2KhaFwJRP<41LFM1EP8153EtM55+?rk5R#Juo8OP*3d=ae|J&L!a
zd=d1c=i7S$Dlw!MFcZS`R-y=}qxH_dpTb7%+yf51$efM!Uf>oMvr``If60V1I1b)|
z2d25176BBZGVrk`BIkoQyk9`8WxUvEt%JeibfTw@ADWiE_sk~l5~MPTJXt#?v2A^0
z-X!BcRQovzZZ8_u4V&ou;MAH0T%**WP&n#SKW@I)lTVK>9{&
zK#DHT3Vh%*tN09wsA$ddp!iy5)RnCR57U;v6O+;C!a_*g+d^zi_$L6Tuy%oo
z1EVdGCc3?%NSkjH>yMz+nh5pb%vqV7K~lZiJC=f}3^3yF{Ax-5!a=Q8xQoR+OpmIH
zWQKqEciCg2E)PT;FgXR^Y|5$m(ILj~tYdaR;CsjAQ<1@Mv?vSdhlKAtIoVV(xlpAl{=LL5YpJk$Ka!srCYS$7176R7RAG&d(!1
z_Em+?Fz$RR8Y?gAI`nM^yVe{H|APqgl65=0&tW}wXb@eS-ho{HkvD*N-#-$OGPYkg
zh2cHE?f71)10VW2cB0t4gp#`;8HQ-2y_?CHI={X%EAKW+S9|ADRLE6Pg5+wWi*aReGJ*O0hp
zhLffGIk~wZ@PqUWT?r1j=wUfaJk@AoTQp?W3K$Y(qE0V0eA2B9L4Ox{^(lq96NS5x
zQDi*OC0L^tXI7-S#HSbfX6+khAhU)RehdPPH+V;{($^4QzW=t}|579P^C_^5m_vLsCOyL*h^Pa{>yI
z;0(Qi4>o(_%$@n}K)!rU{0p8ltQ2x|!zeWUPhA_G*Nq)dC_h)Bs
zqwZWj6O@>&@)!r*5Zq2~!zLZb#KEC?m6MO6~f&SUZhi+-yJSvUh29$z7^c
zY}|xY$!Km_s9jYp96q=dpTURVy+8kS6EfJPg|@K_T$Uvtm+$=YoVjcD18h5r?IBaN
z;sU>FxLL+p5@INPBH8Da{5C7akFz6b2Nm@QmAKw-(Cn0Lrc)p(Fgu?K1(~^eMuBm9
ziCa%|t5jo$j|7`&HN(^*DtGn4TgKTR^BB)Ms{T(&bYS$@%t95^H%!z>{GA
zmWu7>OwB;?SF{GAU7hz$I_4DGJtW{~?nxf(B{R3E?s*M@@$_QGLno3B5}CuJ6(7
z&*h~ijypDGRN~rgV?=G&70NnmiFiuebQ8le<_O6e&uh({HiSn80zPhcVPZ)YMDE*V
zWr;pZpm_!P{Uvb_;{DViWaWcDS^SDr-_v;+H|Dwe*I>u&8vSbp3;$NVnw{fn5(H3t
zCOt1h-t${6Yjjhx9pKKL}H3m<(mXKKymIE&h?wzi3dDs{Q%&3&(p3hv3qg&HM_Pb6>QLU4(JJM!+?{7#d5
zqu3C6Cx7l-8HamTH?jve2S>myi=nOZN_c^&KC>$&0GU@{d=FSpd}ZR`EVexPx73j{
zDw{Tn!w30ROX}BS@=Y8CnsP2C+hnNqB^SGI15WM19n3<%^__6Wii1HkHc%iqZe5C8
zytsw#>PxuVy5pIzA}5vBshiHfe9u*}>|4h&-$ptO#CsN#v@nSz3dXyb={4ogRkpIb
z$>wm!HwK|(CI+50a-l4}oQ
zS9&Y09)s-Q2TX8fQbA8sgO+c}$n{bQqnOO
z#Ts3jY%9c5kB`u{*XyzSx70{gcPGe^OPEtqE%(M(ViYu9fCvXt_Sc2eW8)oQtP{4k
zF{7s}!8$sn1X$I&Xu!74Dk+DoHmdp#+buQQxmW(aaMPLgDD8gW^p`eu(e==JrCXbk
zjIyKT`TwZ#-LI`Vdm#qDUt_uE3>AAZ>b2qyHPf0;Cgy^o(-1=k7s)%ovvkoCkIiZl
z%`1KDj*%p9T`dyBzpi0HM6EF+ii^}fi_1>O=>f6pdO)b(%>*Tc+eKUSrMKRoAB9GIUuBhEa*j&@UybcF)w+<9cAekGNSfmG2
z4Th*YvIv9+VC+Pb9d3Id+RG;{GeU#7x^!NC^zC$WKGnM8S$euSS{0C$VuGJbpE2|R
z2-;0z9+5xa_Zw)N^f*Js#XYUJ#UhsNxj-Hqhv_LI)QX*B!b;L%QPQ#Zj8ssSOo)fJ
zuPH2n8Qx!@NyWq2L)*eLtd=qynF1`LUEU5TUY6f@rL1GS
zSicwXPZB}-Rn|0AWzsGM!EN#B(m&``mwT2e_bo?#1&SR3g-GJCikm%~(wcvzIi-x|c5F
zf@dlx_wxtlH0a3H_pUUY|JzUTk9mSfSK=e^mUxE>BWR+|}0$F5V7*$~dp439O{XMYD@IX}#
z$p2g{SoK%Q)uUJi**fEM<~gwU)h#mx1m|8)(x3tB`GanuBAZQQH#*{3#JaMo!5g7n
zqM6M6KBtw37llgdcHI*@CGkr8ckMPKC)cb6nXtZvj9k`$5}P(
zU+mlsI#bviL!03J{b=-*?oH#?=uj@Rd-cy)m*uR{-P+l}X@SZra9R{=lDetpZg+S}
zw{6Z2rJ02co+e|6I;Rf8g>&1|*)$0sFxp=o1<{
zE>pCn8+F0c__e_e9%Vi($lSI5rDX!0O?AT*Qy)@n2HEWF;3W_qS?Qj|ldngv>y=%|
zU470V(
zvSL3q1u`JtDo*%F$@ycWqo)Mjr++gl3JF9f=O@w#t{iK3LXB@8?h?GnYiHHU=P}A*
zBG4cCjiJAIPo2e7B3o=#O&2a6dy?^}F!{TFO}xC~&(kx)S>MTCp_YwFFb`?z80?Vq
zFsB6xFke#4O4puU%s#KlOthL%xtV*#_e!#F%Mn`o$k^g!EY6zYW6|j|Dg8*$8KW+T
z35gJ`U|~@skN=37=B<;c6e?5DsL~;BB$#$=NMJUQm#5BEQO7n^nFsX*tg|)daM}(4
zp{2^Zt5Ou}zRs1+cayp^^X37fIpebNh&@i@m51Olg%0$PqI`rPH?rN<*Lg-N0ZL-)tO^rR#
zFhqQ4QJSRYGWYxf2yK#sWpCQ@JUw}O!MY^`z3tgkm{_>x`%PC
zhIBr+s1p02p_x7HymUi?dgt?1$xbE-KN?xteru*)FPK{?6lY9T$Z1h@SK!SXn58
z8R*b^Vc+ydNZ3AxpZDt(s-ylE6RDhUD5-8nbm&&W^D!gIg9#eSbXii#SOnRTv=j7~
zUjj{xfGe{873gaKxmEzaGqY-!aT#X)t$Srf(~B;Ty^{ddXqoDHD_D+;aYhsMGBrNP
zsq1{`FNv+g{%4<;$6NY2v8SU8%8CNq4#SRa)Xb5r@Uk;G2oM^_0YdN5pj1Qj9Frl4
z!)F({_+0bOE)_@#%q|?|u+X@3Z*M!IY~4*^2VLuUj_hq&uN
zDrU2K_it9{ua>=?(4ntwY+Mx`#1dw*`Fw_^|a*Gd0mpN@)D69zkQE0*Ee;2%*=o)c6p_+4Fm
zIQr6L9R?*3=J8?_7pO!R`Aw{<{MNFj+-(or$Cd-{TqZ7ZWM_9kGxqbk-*
zQCThpEMumUglBg1Z=t_#ig>ATq76diB{qkjs9Th`|88FO9I9UF#*;<->5>PxQP7|n
zbhjGWe~@t%T=x!>lQ72aA$HWs`-S~(sAcGfxROofl0RAL(WOj$49IZ22@yVZpTu*c
zw#ifRaZ*=TyhBYYDBv0>XT3skBxSb$Ru3HhRBcv3d%o%6NOlyB(&HmbPx0moM@wlh
zLf6VhfT>uF;_^aB&9n$Or0?AZ7y1EXS5?LHwJQFcTp?ldVs&T%{y8&ThTYZ-Fli4~
zCBEN+m{0=)fAq}WQ4;;bK)aZ_+4FlPCb<0UG~pm9||
z)L+Ua@~(u3Vha7)>6oF+)t{zK37ZRbMlLI&3jjcA06--OZp7KG_k+qUVc01gt%1#R
z=p9EZs5o!e3}t?Q0jh8tQL}d=D1e!})bGM>{TZ0eMwK)Zm&*$Zz9ZANk&+FYN2}u!
zTGn>H?DF&JPa#cC=fmKk@hZripdO%eky&DPASTP~sUUYXbFaK@68NAS*=2LfB$eIX$S0E&$eoRPpy82`S
zb;w_%t)9CILmUy&CC^{huiIqSOTYybF02~1vQW0ioTT6BmU@pYLk33*tWOX2z-RMd
zPJrIn$@E4VrE_P|uFJ1eI+gA&!Eu_GTVK93+5PD&F`^xz^K1{KQe*Xh6{kA2{BfJ5
z6|Pby#BS?efGE8v-B?+aPRRMeY5em&1R_U_S@BP-51kwIs5xbf9n2=$BBH#UGbpjR
zH$(;L#)#ZO=ofQnTh`6sm@6G(*r6x+_P@?m6PT!Mq9s)l99${`muebJVkx;l
zJG}{?7FfOm4ZGQ>mV@WdM8mttnriT+&$;Fl0W
zL{4M*Z^twWV{R`NY2PSAnx_cGJ)Op7ee}F|DRR&kx0>Ivs6AdpIJxR8x`Cpe^i{55
zyDik*1Lu^_{tOjbGsmC#QBa5<#5UX@&*S~mL7Bx$s^(v*Df5&xn*ddmQSu_O0d#ktFV<~%!XtX8&l8==biH=aznMww^Ijel7l-4bkH`$JALB2F-@(*V!Mb
ztL$n5sdYjYzSaJY=-bFVm+qN^lI|d8POz;qK_Vb-1&Bm9)bK4mUtIfTu5Bz80-7qV
zObamD|9+$Q5>y^&8!do?PSyX!bm7|j$wF{p9L9F`J$EIiZ%egs?^ew2NnfOui<`$>
zJID=)By#o#rde*$4a^!2kqb}xTdGBEvK6L0aLN#$X=D`Z;CYkd#1Ux^W&=~Xf3*G{
zJ=vpoxN~$Y$;oxj;sCnzue;TX*wt2R7(FvUM3%bMh1aJl~jZF({V^s52-|
zeJIuNcjy?3MIoKU=c!K*gGg%5D&EHP#dz%jfyh=XTF`pq)U^kQy8z
z>AO?Y?OISf*+%X7u#-EOYnCFr+xP6_iJ~e}R
zPzrAte;tolt8QDg=AN#XZ7wCZWk(V{KWAPdLfQw)hSi1v4=p5>
zwjA_x^!x5Y!}wc0k{T{;f6qP9oIjD+BS~b)!5JFp-xTTrGXOW
z%nQ(oZbzE{0-?LZ-=6*4Nn&MwOUmR$Ep?MrqSaPTf3!2yykU(vADY@0QI&SEkn5)S
zr{OUD^nUwlM5E+ttH_(x9Q>$fH8>HXpzBK;3oGcSm^_1!ldS;_9VRKV=P35f$z;z;
zKBiD|&uE?vucbVjsUXn(^+IV;sAeVgFM$PuSH-Z_L-outp+7RjDOMW-xjX7?bOR!K
zd!Kf$w|XWJFerlt|H{O}17A^iYaRY87fdQb3Wr)q2H80T_SYJR42Oi!^b+fNDfbC|
zL`Ae2<-Z+{UX5sfncvMr@fiqjDtTNSa&xo48(ZDn1AR%9fuqLkBhZ%4El%9{B7|J!
z&1xV^JbE<#rR!kXa%uzf7FQE8X6tlv2)$vC(9~7tms**t3U)PD34Gd9uK?e^Sk%Sn
z>{XgK3>N~avo+^WS&_(WqUQv|f(1`rjwHr%qziA7e*nUh%9QUsKQ%lBji(@S*Nw}x
zUN38yu9uU1bS3#nL3R57i1|^P^2%N|E1F7;73nHX>Z!@TYY=)F08Em;v3h1y)aK
zLpSYEgzdH%%IK4s=rrM_z&722^f1Sja@hp3k5>sa{o7v>)wi{SMQJud>zbkF{w_0yfm@yQ)yJl+4xv0S{=hDT}e`vM=9F
zp3`?^Q_3(n%*B&9ilbHvmKd75H|700hLUR$+%wT7*cT}a^z~#j(gCNAy;&<2Zuk_}
zLc~lgDciIxUIBVt`?yqx{ULLu+yWIa;sAajX3%}`CT8g4qfPj7waH6JBgGhJJKuVv
zY@eAXgY+^5{`*5nX1Jbsy4}*dkqfyPm&RYD^Fxd&9xS$}$QoIhhyqhJ2q%;7yK31|
z!~Asm{{FEajzF%Q_P&Fw3Ix(CSSJW}P`v#LD`D*X;6H)9A_k>}M%v`jK2|Jz3K#z#
zXsV?BDoaqUWX-&BziQ*pHoXnLkzlj^c!fMzX3Wi)%>~fWi&>*o%hXQx;Ey&X;ZYXo
z&xpVr*4sYp9yC-A2<3tM5@;5YV3qj@IX9`hz6J3U-PVn}@Rv{ynp){pwFdmDxrnrU&Q{0-I7)63k1wTx(x%=2UvdY$z;wEE$s+NbjnrG;P+KI
z2eh;XiJ2Ttgq;1$EX8pb0O?#cd6w8Zdr
z`pd$y3-e>xg-VQLCD-n~=NVDeW~4k^j4mLU5CsTi6$ks#UhLW&G`Qna{uKPyJ4@qw_xvvdOyQU9;|_
zG+-Yz+}w~kIQh*{c6s8DM6}7)AF>mo>2i%}YiHtis-B*-GqXP*>XN_GDz(x~No|)$
zmp5Lu>3|c`S`px!MZE(67N}W0u4c9ZPdAh*JFPV|W}7h6PiIyo%9Hg5{$sUA2Haxx
zA71-59Qr>)ovNmFBj^ma{`G4BWI2Wc0opML`D=cW@a=AVA{KQe*sn)q+bv5%AaZ-C3Cz+Kv!{F?nBV&OdzsJvunrHU
zaWA`2h$!)91dsDTWfRith*714sMx5!Wg@D!pHH$sPdZB#I;8&Qj|%$wlf2*l
z;jDuC+R7IGlRQtF;dasApcjm{H73OcaaYpI$SIot)PVnDQp)AWSf)PnvroGlwz0)I|ijGlSurc$}J6yh~fH@0sKpt^n%4y!O
z6cv~7Sp|Q8<9jzHRcx%o*!yB6K9pU;VITKSgg-g&8`bWOy9``WT4h$EK-zpjIX&mY
zBcSDdABc{(i4m;50{tu1Zs8;}iE)d;`OR(+s2vwM!qp!cUvmb92b`6q2XtB4
znPCG%?;W1b58G{D(|jpDMbfA{*6lLw3#(*X%cmk*V?QP7BJ
zrio$rQtpBXmk^wync@zm1V|8hgAM2uZNfd$BaAN0AkY+<0s@pw#4SnirIml$0
z6^_WfIAq0$^Y7SfnyZZ#cPSqju(44>g~sgi{uYBfJD%r%gGS2}v-b}>m~saPbQki-
zn!I9pT$Ib0V4ei7)1dvp=M+~4fho%x#QFD;{!p8}a$8Hkr7^5GIsHo+CVjl}qoMAG
zzfM6vmCM0oEmJR{=kN3)azL}n28eeOh7|*Wl2l$(Hx?Vw$CELQdP4IUuXm|Zz
z|8-`^qxc`;S`}IrTjV!COlv0(w=<25p_8Q)?O}o~bM6qZR+5(GR?8kJr3KfGp03L}
zb78Re_c41P;`JxHuS5&k~FbE1x1zXdHdvRI%)NqP?#L`x-eNn^omQI)Q-xb`vp|7|k6{bT9>HmsLk!+$d8
z8Z`Gb{-?+25^MZlAOlM|+*RQBwig6KOK&bt{}4t1IhGmZ!;jx+c0!ONxKL34z{t6R
zJ=3q+k-8UcD9e@Mu
zi!RNM4h}hn*ZiYAE>-g2P0D>l!#!0j9|u7-@
zDBD+?6^*%^~85cNFz^q-Y{!N@5U2-g0e=FT&$sbr1gL0qx0UU?8H
zA`w|+F|d&)p>s(zf)NNH2m&Io6tRFx3w6D4X%7TYA>b-ak(MAWWPymZWEYmDhPD*x
zy&FOdkew5G_PO8o>pfr2`I3`!=AHk{J9B3KKjj}^2nP>k=g4$n_@+L`IvGtzstLtP
zG86WUJ9b!-hF0(m3y{)Bb_)8r6Ni>YwAF!87OOk9H9jWpMw^y?m|RiyiK?69QJ%*-
zuQVRnylEXabW{`DR-EQXvaYhf!(3Zf3_EY$*ZT!(FH8iKc;lN_dvj-J5P^4ogvVYE
zIP8La=asA^ntXwW4mzX!TGd4L8y~s;)ZedA544+eY91DSj|%wXYy
zHv!i>5Tpk>{#mCc*CEXO>k_pWOyGl^qXvdr6aH|HA1^cXF*(0Pg01hdJp0+uO5Mig
zfyY?&Mkt*Kh?I*F4q%*Vai{$H7p^X&rzG7IhbI3LKsfE0_2R(6(wEKX^xbx|L*b
z^huTw19Ic22G;qu!M95Rw~|ve4p8Ye*8^&JA50y*Z(qZ26xpbDP=5$=C!42RJ?H^b
z3}DL8cE8g7jgr(*`XBf}VKKDJeB(JrBQW7BZ!F}34}6&TY(YYI`Mm3@tWl&M<49zNd(@Udn6)RaOxJ`=Ps$Hk)
zv>r%~E9+XCV>Xp6xUKe?@qr*kwLlyH(PwU^>IKF5U-RtosSs{Y!`pVmY#!@Bxw3EF
zDTKmamcm4fR&D@Y&hI_J^=^*B!9t8bMK-~DaHyM`A?4jW+145~2Hi{>y4ic5C5AbU
z(Ok>j&bHlbJx0D8<5osXVP_UNkMTv4B>VCRxzo+jNtTMc^e4c`K|C-bsXZJFBc%u+
zK#}t5mkg!XeXI3sg33?7RFi{?4n&l5ot71(kwq44jKvw2I9C+*@CWFxPDtzMoqkKM
zqV*ZdbR88nr=GU-2$KUV7A}~Rbfw=GFhlJ+Vt9V!jkEb}S;zZm<@N?$_KEAF^Fy2-
zH@QLIsi}F=3M=nGq;_LUggDm#2Ky$XmL^-jyN4a-uD=YOQPf=UTOW3~H`7EycrukA
zc^j|$DY|lFkh(>(GI#`%(QRvp!=>9zn(-bQWrdISvPU>>Y@A|1%@+F^h1`Pa*Q*>|
z{`V!++US1i$gi0RAB6>ds{?F9V6cyC#{$98tfl9xH@Y}(ae+VOE
z$SFqmK>1Hp^gS_%An?zw3d1@e!J>M>(|O7_><|puj)}Aiv9cYs*2;bN{#TEhyMIYa
z255~x$Suv&;XbKjy9CwTx*Gn{B4J5OTPbzduHSQl5$(o32&;p>i+s$vBvbK1#h9j+
zZed_oGn+s<(;gF-Qc;1A7b)BPE=v$4@hsf*B!-ho9~g`$Nws}&he~#ID3RHYZ$?&W
z)@^H=Pr1Q@?4baoKV9A6Zk9$&{JGG+#a`>T&0IUG8Q`W=f1kkd!eI?&^oU;f#u68P
z>dbvtNthTn3H7Hc2nj`|e+RwT!O>tId3&?8ezF$&`JBX|lin?8yO!oToa5m4SZ{hN
zhjf*4O-%dJsg0u86cS3JY!js?ULMGq9nkmJWNhTY#b-TJB|w;@L7j6sf!(`4#euB9q|lRYpI>M6#Z}%-Bsnw`yIMG0JqO
z@=eQEzI4&7Gvb)P@f^?GPDFTOE5-&;BR|8vDI$>#P@65~N^gqOTq*#P`8is=urQjI
zZfk=vpp3R&lLxRX^7+j9y(_(x{=DaQ7CV)r^`MgzH3PNc;+yXH1m|%~1X#M&j$P(2
z%u#`&UF8i!oI%#O4TmzZ(%R2Kj0~%i2eXryP1Myd+S%=`F`?y6aYT=EeF&$JOrhpJ
zca@GUU6WK>3;p=%j$2q%Qj5}KI_Szi^7BNX==Q}r1goV{H}14KVv+H65tu@j#ko}^
z{=T99r{2c!tXPVicwt=!hG?7@Y%|rh^wXZ?tNNY@B&-hFTm?4oqObtJ42x_$0%e5%
eSEr|!cSKsFc-7jJo^bGNFw@KC7>bF@)4u?0FZdk*
literal 0
HcmV?d00001
diff --git a/Term Deposit Prediction/Images/img10.png b/Term Deposit Prediction/Images/img10.png
new file mode 100644
index 0000000000000000000000000000000000000000..7eb18ae2309dc0d5577d6d0eda6f53c93eaf7bb8
GIT binary patch
literal 14783
zcmeHu2UL?;yKaA5ep>*q&FRbs5B9fPK3~Vq?drofIxtV3WP2oAc!Cx
zDTx9J9gIkCk_e#$V(2y8FF5!APxecao)V4c?SggK^6o$D)i%V;Lf7(j2&<};&TV~2dK1HXdd|RgVQy=YamcL
z=H#C3G2ru0-Z#vBK%i4Ctp7*ayk6OZKuX3pHLn>5+AK|QdRsf8APaa*I`-wu4v#lt
za#C3Wes!^nR_vb)g^rsGDaD}vI1w+M*BX5}N7sFsljlrMGD3H8>*EQiuXpdS8{TO@
zYDS0rLMnKu{4@HN-J?9E0xpK)qYsKhU$8uv#<3p-+T`j(mYVE!YG^lV>=%==og9P8
zHm!Ab5lhwQ%cjCK969)YaJm7nGFE`OIiP&yhFWQj$x!7+jbM>sfyJ?1yG`aF+hlYe
zqfFy0r|ENf%veH=nYRw7?ByC)ttQ8~>V%T$bTe>o+-1AElNGws
z5xNve%?=N<@+D~z)>CYPFWCgmB$0QVOW)0=g?iWtEBjsy+v(5dOQ9**_fg5s2eQ<@
zZ1^~H1`@8cv$GSsn5xh;ug8Feufc*`_KqJvPENt^IUrH=$tJ?sJ0B{amu$;WVSV^+
zZMZltiYDMF_3rD_t<0(IOfo~I-+y`BJoG?+Ah5TrFe~`-DG^m{3ejn>#2h(bVmg!m
ztV>ML-dG=v@tyyH35^mC$I%;UAt~z9qXDaw~jKe{MIO
z64e|=-|56P+L2%Gr-B|_+1v0s@W=T#N;C#eNAkyZbv%lDHqkb(OmAEz`;~=QGmcgk
z7Z(Sr@YvgXHmwhG@n;|GlpUN2KiCYP5vJ>=rdXOzDXY%r$=1!!z%qJC6Uc)6C
z+maLrEto1|Z||p1b<$J%_h(H9c`U_Lx8muo9WraUtmWaeKDjmb^=;TdFMmIIoKMoi
zcrR+(IGN`3`0+`nmL7#EEB8d`S6_Tg?;j6>R%d7O^Z4@$5mnN5;nQiCUUzvuj=P&8
zxI}FuQ#B5P_O{wI61pIG)v%?ZFv+q^X2rQ_<7A$_L9hM6==XM8?}FS>HFSFc9k-`H
z)Td^=Fy9b|w7p-AJUI@jYKux>Dhlw!TGYa=>*|`Mr>1@Nv{RmREIZ1?H^IJ?scw$@
zBw8nM;>}b|u1^F-Ny*4ww?3-9C??(L8TbS`DfN>%HnF4r59#uRrChnaCbdM;A4MGt
zxpJu$rK;eq_w4$kdXf{;2<*eGc%)_jv+~_XZe$$nuGY-rJ$|(7@nh&V(@(G5$3)8}r3 tKJ^j-Zm
zzJ%$Lij}&VmRcC4nzFaicrfoQDb%owuP*Zz`b{brrS+MKv@R*m;^*(_-t554AhlJb
zU|-v$Ao0>`J}pyuufu;ym*2CV4x(XF$c<*c`(SMfyH~7MSx>lQ9U^PBq(TX~x)jj*
zxD>pR(Kh|3EfKO~XS9l9Y;D>|WEQ5PAqkzG#dQdi>89^?Z}b-_(N{P5kc1$74@ySWe*Q`v3mX3f|lnaGu$J&jj!r6?%N
z!@7tbq)g$iz3K#Jsv@Cn&Ww*8?5c8qywYd8=5$%CO6eJ9z5dEBZMe^NS~UZ{B~-e7
zZvvX#LJ}UwLHVZE?HkvBXuD4r1*6Y0Hwar_3i=4bUftqHK<5nS{bdCm{bxe*7{XL7
zp+Fg&Rh@uZ5nCi0cRKVp_4;@8xntyq&04Ls^@yd+bn=u&Kc!BWD>iO#1&KSaBT1iM{qy0lOVZ9+CsF!_rlMvC99c`&G
zrLf_1PvR5}J?XU$Rx^;@-GmuzOqT5Fx(hEEha)Y=QEk@9UE-%>>pwh@1P@0B`?u7r|{{fJUk1f7eBw*p=QtW
zMnvo%ga+g+8yr7dtFExsbe`6R7Fx2K3fFqL_iY;)PnQ($n1l%TbVkny<>>D^-dTVtL8n*q6
zekyF^VEdUJih^%6EAIYU7Vwo3Dpz)Y`77O!vA@+^^8tKHZ5*v3(1_pidCjiCJXh8w
z6zce`ay@cqhcn`IIGvD3?d$5}^ha$(a{HXSj3n_pTGK`tLC-{5D_n;%-`>j9O9DG=c
z2!M#Y?`jTp^c6L`DXwe_GJ+I8Y%6zTvo~L>6SFx6OGD}c$1$N|S#`B*f)-5<-`ess
zPikvi*u`f}1TZHXGferG^A17|uGG0ow4K}R=D*9oyt}pPJ?9g)sG*)R1Oi0LWM@yp_*
zA(zkN`kFW`2kTH*6FrIGiJ<(IZgd`bb}Ww(&&7^knV3_%F8NEvUBRi*6?>sLCDN8@
zEo{J{C97{mg<@0-H&e_K1_Gqc0L+BYl)fBi$(NjzVC%m(S%1Z|_jtv`_JPR3n{Uqk
zey~MZu1ZfE-t1u5cB0hDN~s1J^*Wq-GBIasRG}t&R9A*#95i%+g4?v=UVUsa3%3%f
z?kbZgX%x~J4_UKZk1+5f6o8X>69zI3cZq0BmIi-!OtA?)-txq*2F{1$8X~`b$H6{?%=lKI{Jn<@W!Zcq1CdzCPn`nZ)7(u
zAPM6ANES;prW_CSr?+}YCz!|A4xwRJj&n^L7lO_N>b67y6XUzQ
zQsXuWoZ+Ja;C(QLI8;NAZNdxa^skci#vfGq+_(V!LaFaeQEhyq-`p}O*=>pvi~KOe5FhQuF}a6A*6=BsVv=zsLS_0
zGPS#2__%56aV~YtK-t
zeSthBNa>bF*U8!tyUh;AuzdoCTqGeqUICr-rIkxbD0sAo1)ke!yI%*dRrGw5ptzOv
z2G;PaTCF5*JoVUP9mM>_mZyNP#1^ZMY+1Xn%oEe+@BP&@sZvgkw{{jNUvpfcl|f)$$?9>FFFW;-FruQ+e!jq
zh!Xd(D;AYdA>0(W!GOV|7WiUqye+t~Z_Z8aptH_1XgWx(UwA55s%)1KKz@zk$)c}l
zL~FHJsyR@?#`kjS<`GNf^NBbzR1jLwuBph4fsQ{6*O>oYMe#uzn>f9R-63~n<|j*`
zgb#R{khbHPoTi!mZioQ@kKA~>NH`uNts-n9ytqQ+&|GAj4a>U9|;J2BZjW;r!sZQ6f
z$}iq4d%RJ@TA)_x(Xd+({_4wyPTIPUQRdO}yfBm8S^*=!tc
za5ZGzXUn0;?tarJ{)wr}<2H9iR$;pD%)jlcwFT5(wEA6mDihJz7i43F
z^q8LA9m}P{^3$ewvPSQ2Z8pBbD)c_oB;MQDTWNQ^!R)NfR%iOrAVTPp)Shae*xihJ
zom`2tZK5aIT#pie4Qkn=kx{1Z6JZtVY}_xy4b~hf5+#A~(3;ZAmu&)Ut$Z0pwRWj$
zUN%sk;d;d9BEj+8PQX0osn-MDJUq;vRP)`0ZlUwW?^2ZS!A{^WTd
zPh}^q=Iz6z-kxT5cA33*kTo~CmufZzy>_kb7~ba0S_QR%v|5?7Idi*l%?hr%71^d8M2Bl_^AcQC
zHr0pu(*1?hQjUkM*}J<=hK>seQBZFxrS{gzOA(g!h%d&E@=|9E*Wnc>zb(%(H#WAk
zom$5a?)w?X{m6BK?&ME8Xj&qz(nx(?jO|dQPZf2h-=`Q;ej(VOrgA1tc$k0UfMUd$
zI^p%XBt50o5}rPUDOUAtbkK)}*6sI==7tQ@qiCDslfuHJmGT|})PPug<>$Ga=JM{a
zGHXEvlQR-*pa=8kbENY`@16n+(05L^KHcP#dW9PWvqLVTqh|d`b>19rWNaq6-}Ge1
zq{p)Da83+8CU5lYA_lAdkX?yhkGgVKM%}+2pvtG&z={?01xar2@}0eB4AN%U#YtnM
z`aXq;M)kn}k;|%Ks4IBXmOGmRa(~7BJ#n8DJoNZhU(W14vc(!hkacj#3+-2CQdJih
zHi;;|$dj4PT1yM{d)UvR7bgeyGKZ}dO9QSjr=k4MxgGS!D{9n>r7l`|dzgWTIE2yl
zeLPY%rwLjEevA*bSBR+|*Ju12?E(W5}U#DvW|Ndx}pvSv*DzI1=VzGMy2oBtOxl
zR6~qJu2#4C3yNb#$0~>3iVsfuudP~!sxNWNp}ULJiKWfR{o%yEwMR2x^uTG}Fohhh(#VULDou(2KFG?q3r=VPc@*b|+(P%jlFgFxn_FQmzF9_n$OoZWQ4Q%ug;-rXli#`uf;c0`+~0kXb5~
z9R4Qtm6Q^dkgH*%KyDIJmbXq{xYhqNrk}Pr)T*G~M4Q{SQsmR|I=JDx-}h<1r^$J4
z{dwGCwc~Ufb%B!HynScK%3;@92KUgRa!`3>t(E-*|1ygX#mnsV&=xgh$os&mcWAz-
z8Bs&a5+zjOngG8Qw_CzChsnT%$Z7tBj@-R*^`cYsd`Ur)^7od&gZly+X`8QVJ
zvtgA|IOaPCViyQ>Z!}e`G8I%v{^DcM7IiSm6_WQ`veo%^tkfy>YB_l|ufsthlCoc{
z%JU@o##8kMkR_|Rb|yxuR+|g`XP!OUXH?_&ZiiM;)9UDnCWhOWBYtB8pi5Qv10RA{
zZ%n?Igo=!M$Hy)H_-y9Oa|q=iPs>oHbk5o2{6`$Xd?h6TSsV1=rE}^L;QG53_P_AO
zfq3s4uJ`8N-puvwGobgaSSUi<{($!^UGn|NmBA^K!r=5r+-jTf>~%M&&um;MMC_R~
zB5tF}`y8ANumQz7xWnyFL8oX>F~Ag8@BAtFpT9_-Ux$SlU6*iPh~O8!hZn{-XX@
z3;(Y(K5^2(GeHF}D_)@t^fdcw<`(*1-)}PT)ifS#^EkO0`#&2LN1DQ}(_*WaP(fPP
z!eQ>CLWU+Nhwk3jy>iXK3j|>+E|Y5tR-${x@)XJhhjEhid1A|EHpxR7A%_c)j_kn&
zBaO9yo=?~1=Fz+90a~A}h0(Xt`)+<8ptIAJoKPRV+*^pa*S6stzhY);ndqge@Dpoi
z+>5nbOLjl^vBvDa6HL?E<8xMnnr`g(kq0D!AaPmeHK&(St)+wg_nR|GgtJnR@r;)K
z@>3VOfe{{DDuakb<(H=w#;?vnuOT(KLrubU9pTFDcj@kjRThKY>$I<*`M({u4(D`
z`BV+c5qeFCUF~y@Kr{pyS!iAHuQ?$T#pMWm0^R(#E>O8efz&kK2OV~)uBSHc@!@{J3aELMe~o#KaB^}(
z2EFh!E!p>laquWOUeiXDG&Rn*Zy+m57Oc~O??%PUHS&4=Ia%hHU^lcQ$`ki9(^O>34*t$|FyUj^1l%Y-1
z;nQ!#exF2WN>5C2mIp~LmrEP2ic_*LjIFeLeb>Fna
zgWe@xA$WT#4t3>U$7avfSXxR=<0KDr4NuRJ_s{QBg<
z@1)?LR3RdBB^a%35riD#?K!xC@nEr?QLD9EuDn;$)5xYT*E@s5G`nFim%8K5Ng
zA~DBPY#oY!=P~+&AV%F^QDkK0HOn>p_QxEF4O1?Upr9KQ(=8E3x#=D6?pZ_%A~ZNXDF?6YuSzj)(Ji=#KOGP_=#LqMHkJ_8cX81siUT
zv$&m9-R^9|efqOsYbUq=bymplEpXv-6k3wG|L7b7W?3@%DVtwrpTwMZFL+8Qw|~CR
z|Hd`OFG;w(qDb`kiZamQo-6kFgzhai|C-r+t`!#(r_*|sX{P)GEGOg*vVC4;zFJ?c
zHbWQ`K_5H=BC75wz(D}9;_`&<@y&zq?a{67x~+rup#q$X0%-1VzRy_Mr@zJcC)o`=
zohT6M5^i%Q-Mq_{@@PyWBc(w7dLb)h{zFeLyp*1i#|o^3UsXo!uK58rC$x*rU8L3C
za~>H^@oKl{MskeZHPi0Z4Ss&O$rbf@k=E9liz&)>=gKZcaYx=~Ma5WxdjZL#d@W~i
zcqCO)vV3`DR`j7Zok%nb2{OV-TBg~BQTtn#=@$>(&wG?_U=U^k1n)Dhx}*bN_oYi1
zziM8BomYsZX1}nZYT;yP;@H8hMH_YjFrvCd>o+q>nzTA@zbaqN`W{Nk!1~|2Jo$9>MQU+@L;gbz
zAN1tYcnm4Do8vr+bjKZ)*b^n=KKSg>!={kmE>l~_8&xyD#}H}4$KN^;^8+yL9SL(Y
zunM>sBLMZ(_Mw&HWE}agKPk~_yN$Xo;gZFFI^!Pb;~{LiP)?6z+qO_vZg6Z>XmFf8
z4=N~j<3CNTSUg2N4?1U(VzZKlRr1lcQ4aY>J4CkIiwcpeJn(
zxU;mHZjv?Lo(H-2f}HEe244
zQMrlspxW=*IrbF-vaEfF{W(ANhL}Qo`#%fq|1jSF_sxHt2mfPsiQUO-D*E-V*L)uU
zkU{T_M%wMqL+)rshWAo4QWig`_jb_pzK^|9HONaMEi&Wp{
zt67LIQfeae?=zexjkwE$Le^&G+5}xYNT0dbf_Q<>-Wz&-P}!YL!g8owWk6qPbQi#9
z8m)XsGG4{1F